Skip to content

Commit

Permalink
WIP: unpin the dependencies for now
Browse files Browse the repository at this point in the history
  • Loading branch information
catanzaromj committed Mar 16, 2024
1 parent a6a7616 commit fbc7479
Showing 1 changed file with 19 additions and 23 deletions.
42 changes: 19 additions & 23 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,35 +30,31 @@
include_package_data=True,
extras_require={
"testing": [ # `pip install -e ".[testing]"``
"pytest~=6.2.5",
"networkx~=2.5.1",
"matplotlib~=3.3.4",
"python-igraph~=0.9.6",
"plotly~=5.3.1",
"ipywidgets~=7.6.5",
"pytest", # ~=6.2.5",
"networkx", # ~=2.5.1",
"matplotlib", # ~=3.3.4",
"python-igraph", # ~=0.9.6",
"plotly", # ~=5.3.1",
"ipywidgets", # ~=7.6.5",
],
"docs": [ # `pip install -e ".[docs]"``
"sktda_docs_config", # latest
"sphinx~=4.2.0",
"pandas~=1.1.5",
"sphinx-gallery~=0.10.0",

"sktda_docs_config", # latest
"sphinx", # ~=4.2.0",
"pandas", # ~=1.1.5",
"sphinx-gallery", # ~=0.10.0",
# for building docs for plotlyviz stuff
"networkx~=2.5.1",
"matplotlib~=3.3.4",
"python-igraph~=0.9.6",
"plotly~=5.3.1",
"ipywidgets~=7.6.5",
"ipython~=7.16.1",
"nbsphinx~=0.8.7",

"networkx", # ~=2.5.1",
"matplotlib", # ~=3.3.4",
"python-igraph", # ~=0.9.6",
"plotly", # ~=5.3.1",
"ipywidgets", # ~=7.6.5",
"ipython", # ~=7.16.1",
"nbsphinx", # ~=0.8.7",
# required for building some jupyter notebooks.
# uncomment if rebuilding the notebooks.

## Plotly-Demo.ipynb
#"cmocean~=2.0",
#"kaleido~=0.2.1",

# "cmocean~=2.0",
# "kaleido~=0.2.1",
## Confidence-Graphs.ipynb
# "tensorflow~=2.2.0",
# "pillow",
Expand Down

0 comments on commit fbc7479

Please sign in to comment.