Skip to content

Commit 2dd71cd

Browse files
authored
Merge pull request #120 from WMD-group/loosen_requirements
Loosen requirements
2 parents f66d12c + e3c58ec commit 2dd71cd

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

requirements.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
numpy == 1.23.3
2-
scipy ==1.10.1
1+
numpy >= 1.23.3
2+
scipy >=1.10.1
33
pymatgen > 2022.9.21
4-
seaborn ==0.13.0
5-
matplotlib==3.7.1
6-
scikit-learn==1.3.0
7-
umap-learn ==0.5.3
8-
adjustText ==0.8
4+
seaborn >=0.13.0
5+
matplotlib>=3.7.1
6+
scikit-learn>=1.3.0
7+
umap-learn >=0.5.3
8+
adjustText >=0.8

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

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

8-
VERSION = "0.4"
8+
VERSION = "0.4.1"
99
DESCRIPTION = "Element Embeddings"
1010
with open(os.path.join(module_dir, "README.md"), encoding="utf-8") as f:
1111
LONG_DESCRIPTION = f.read()
@@ -28,14 +28,14 @@
2828
},
2929
test_suite="elementembeddings.tests.test",
3030
install_requires=[
31-
"numpy==1.23.3",
32-
"scipy==1.10.1",
31+
"numpy>=1.23.3",
32+
"scipy>=1.10.1",
3333
"pymatgen>2022.9.21",
34-
"seaborn==0.13.0",
35-
"matplotlib==3.7.1",
36-
"scikit-learn==1.3.0",
37-
"umap-learn==0.5.3",
38-
"adjustText==0.8",
34+
"seaborn>=0.13.0",
35+
"matplotlib>=3.7.1",
36+
"scikit-learn>=1.3.0",
37+
"umap-learn>=0.5.3",
38+
"adjustText>=0.8",
3939
],
4040
extras_require={
4141
"dev": [

0 commit comments

Comments
 (0)