Skip to content

Commit

Permalink
Opened restrictions of some dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
dajtmullaj committed Sep 27, 2022
1 parent e4b1595 commit 5c87747
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 24 deletions.
18 changes: 9 additions & 9 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
pandas==1.1.3
numpy==1.19.2
pandas>=1.1.3
numpy>=1.19.2
matplotlib==3.3.2
seaborn==0.11.1
umap-learn==0.5.1
scikit-learn==0.23.2
umap-learn>=0.5.1
scikit-learn==0.24.2
bokeh>=2.2.3
scipy==1.5.2
mordred==1.2.0
networkx==2.5
pytest==6.2.5
pytest-cov==3.0.0
scipy>=1.5.2
mordred>=1.2.0
networkx>=2.5
pytest>=6.2.5
pytest-cov>=3.0.0
16 changes: 8 additions & 8 deletions requirements_conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ channels:
- defaults
dependencies:
- rdkit
- pandas==1.1.3
- numpy==1.19.2
- pandas
- numpy
- matplotlib==3.3.2
- seaborn==0.11.1
- umap-learn==0.5.1
- scikit-learn==0.23.2
- bokeh>=2.2.3
- scipy==1.5.2
- mordred==1.2.0
- networkx==2.5
- umap-learn
- scikit-learn==0.24.2
- bokeh
- scipy
- mordred
- networkx
# testing
- pytest
- pytest-cov
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@
],
keywords="chemoinformatics, dimension reduction",
install_requires=[
"pandas==1.1.3",
"numpy==1.19.2",
"pandas>=1.1.3",
"numpy>=1.19.2",
"matplotlib==3.3.2",
"seaborn==0.11.1",
"umap-learn==0.5.1",
"scikit-learn==0.23.2",
"umap-learn>=0.5.1",
"scikit-learn==0.24.2",
"bokeh>=2.2.3",
"scipy==1.5.2",
"mordred==1.2.0",
"networkx==2.5"
"scipy>=1.5.2",
"mordred>=1.2.0",
"networkx>=2.5"
],
test_suite="pytest",
tests_require=[
Expand Down

0 comments on commit 5c87747

Please sign in to comment.