Skip to content

Commit

Permalink
be more flexible with other dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
arambert authored and rkishony committed Feb 26, 2025
1 parent 4b56aac commit 86f72fc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pyquibbler/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,18 +29,18 @@
long_description=long_description,
long_description_content_type='text/markdown',
packages=find_packages(),
install_requires=["matplotlib==3.9.1",
install_requires=["matplotlib>=3.9.1",
"numpy>=2.0.1",
"varname==0.13",
"varname>=0.13",

# TODO: These following packages are not strictly needed.
# They enhance interactive functionality within Jupyter lab.
# We might want to consider whether to define them as "required"
"ipynbname==2021.3.2",
"flask==2.1.1",
"flask_cors==3.0.10",
"ipynbname>=2021.3.2",
"flask>=2.1.1",
"flask_cors>=3.0.10",
"ipycytoscape",
"ipywidgets==8.1",
"ipywidgets>=8.1",
"traitlets",
"IPython",
],
Expand Down

0 comments on commit 86f72fc

Please sign in to comment.