Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
Loosen requirements
  • Loading branch information
AntObi authored Jan 30, 2024
1 parent 25638fb commit e3c58ec
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

module_dir = os.path.dirname(os.path.abspath(__file__))

VERSION = "0.4"
VERSION = "0.4.1"
DESCRIPTION = "Element Embeddings"
with open(os.path.join(module_dir, "README.md"), encoding="utf-8") as f:
LONG_DESCRIPTION = f.read()
Expand All @@ -28,14 +28,14 @@
},
test_suite="elementembeddings.tests.test",
install_requires=[
"numpy==1.23.3",
"scipy==1.10.1",
"numpy>=1.23.3",
"scipy>=1.10.1",
"pymatgen>2022.9.21",
"seaborn==0.13.0",
"matplotlib==3.7.1",
"scikit-learn==1.3.0",
"umap-learn==0.5.3",
"adjustText==0.8",
"seaborn>=0.13.0",
"matplotlib>=3.7.1",
"scikit-learn>=1.3.0",
"umap-learn>=0.5.3",
"adjustText>=0.8",
],
extras_require={
"dev": [
Expand Down

0 comments on commit e3c58ec

Please sign in to comment.