Skip to content

Commit 01301d5

Browse files
committed
pin numpy + pymatgen versions in setup.py + requirements.txt
1 parent f955a4b commit 01301d5

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.circleci/config.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,6 @@ jobs:
5656
tar -zxvf vampire-5.0-linux.tar.gz
5757
export PATH=/root/atomate/linux/:$PATH
5858
pip install --quiet -r requirements.txt -r requirements-ci.txt
59-
pip install git+https://github.com/materialsproject/pymatgen.git --upgrade
60-
pip install git+https://github.com/materialsproject/custodian.git --upgrade
61-
pip install git+https://github.com/materialsproject/fireworks.git --upgrade
6259
# Add executables and path.
6360
for EXEPATH in `pwd`/cmd_line/*/Linux_64bit; do export PATH=$PATH:$EXEPATH; done
6461
pip install --quiet -e .

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ FireWorks==1.9.7
33
maggma==0.29.2
44
monty==2021.6.10
55
networkx==2.5.1
6-
numpy==1.20.3
7-
pandas==1.2.4
6+
numpy>=1.20.3,<1.22.0
7+
pandas==1.2.5
88
paramiko==2.7.2
99
pydash==5.0.0
1010
pymatgen-analysis-diffusion==2021.4.29

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@
2727
"maggma>=0.26.0",
2828
"monty>=2.0.6",
2929
"networkx",
30-
"numpy",
30+
"numpy>=1.20.3,<1.22.0",
3131
"pandas",
3232
"paramiko",
3333
"pydash>=4.1.0",
3434
"pymatgen-analysis-diffusion>=2021.4.29",
35-
"pymatgen>=2020.9.14",
35+
"pymatgen>=2020.9.14,<=2022.0.10",
3636
"pyyaml>=5.1.2",
3737
"ruamel.yaml",
3838
"scipy",

0 commit comments

Comments
 (0)