File tree Expand file tree Collapse file tree 5 files changed +19
-16
lines changed Expand file tree Collapse file tree 5 files changed +19
-16
lines changed Original file line number Diff line number Diff line change 3
3
py3test :
4
4
working_directory : ~/atomate
5
5
docker :
6
- - image : materialsvirtuallab/circle-ci-pmg-py3:3.7.3
7
- - image : circleci/mongo:latest
6
+ - image : continuumio/miniconda3
7
+ - image : circleci/mongo
8
+ - image : gcc
8
9
steps :
9
10
- checkout
10
11
- restore_cache :
11
12
key : deps1-{{ .Branch }}-{{ checksum "requirements.txt" }}
12
13
- run :
13
14
command : |
14
15
export PATH=$HOME/miniconda3/bin:$PATH
15
- conda create --quiet --yes --name test_env python=3.7
16
+ conda create --quiet --yes --name test_env python=3.8
16
17
source activate test_env
17
18
conda install --quiet --yes numpy scipy matplotlib sympy pandas
18
19
conda install --quiet --yes -c conda-forge openbabel
@@ -36,16 +37,17 @@ jobs:
36
37
py3devtest :
37
38
working_directory : ~/atomate
38
39
docker :
39
- - image : materialsvirtuallab/circle-ci-pmg-py3:3.7.3
40
- - image : circleci/mongo:latest
40
+ - image : continuumio/miniconda3
41
+ - image : circleci/mongo
42
+ - image : gcc
41
43
steps :
42
44
- checkout
43
45
- restore_cache :
44
46
key : deps1-{{ .Branch }}-{{ checksum "requirements.txt" }}
45
47
- run :
46
48
command : |
47
49
export PATH=$HOME/miniconda3/bin:$PATH
48
- conda create --quiet --yes --name test_env python=3.7
50
+ conda create --quiet --yes --name test_env python=3.8
49
51
source activate test_env
50
52
conda install --quiet --yes numpy scipy matplotlib sympy pandas
51
53
conda install --quiet --yes -c conda-forge openbabel
Original file line number Diff line number Diff line change 23
23
- name : Setup Python
24
24
uses : actions/setup-python@v2
25
25
with :
26
- python-version : 3.7
26
+ python-version : 3.8
27
27
28
28
- name : Install OpenBabel
29
29
run : |
Original file line number Diff line number Diff line change 29
29
rev : v2.31.0
30
30
hooks :
31
31
- id : pyupgrade
32
- args : [--py37 -plus]
32
+ args : [--py38 -plus]
33
33
34
34
- repo : https://github.com/PyCQA/isort
35
35
rev : 5.10.1
Original file line number Diff line number Diff line change @@ -3,12 +3,12 @@ FireWorks==1.9.7
3
3
maggma == 0.29.2
4
4
monty == 2021.6.10
5
5
networkx == 2.5.1
6
- numpy >= 1.20.3 , < 1.22.0
6
+ numpy
7
7
pandas == 1.2.5
8
8
paramiko == 2.7.2
9
9
pydash == 5.0.0
10
- pymatgen-analysis-diffusion == 2021.4.29
11
- pymatgen == 2022.0.10
10
+ pymatgen-analysis-diffusion
11
+ pymatgen
12
12
pymongo < 4.0.0
13
13
pyyaml == 5.4.1
14
14
ruamel.yaml == 0.17.9
Original file line number Diff line number Diff line change 27
27
"maggma>=0.26.0" ,
28
28
"monty>=2.0.6" ,
29
29
"networkx" ,
30
- "numpy>=1.20.3,<1.22.0 " ,
30
+ "numpy" ,
31
31
"pandas" ,
32
32
"paramiko" ,
33
33
"pydash>=4.1.0" ,
34
- "pymatgen-analysis-diffusion>=2021.4.29 " ,
35
- "pymatgen>=2020.9.14,<=2022.0.10 " ,
34
+ "pymatgen-analysis-diffusion" ,
35
+ "pymatgen" ,
36
36
"pymongo<4.0.0" ,
37
37
"pyyaml>=5.1.2" ,
38
38
"ruamel.yaml" ,
51
51
},
52
52
classifiers = [
53
53
"Programming Language :: Python :: 3" ,
54
- "Programming Language :: Python :: 3.6" ,
55
- "Programming Language :: Python :: 3.7" ,
54
+ "Programming Language :: Python :: 3.8" ,
55
+ "Programming Language :: Python :: 3.9" ,
56
+ "Programming Language :: Python :: 3.10" ,
56
57
"Development Status :: 5 - Production/Stable" ,
57
58
"Intended Audience :: Science/Research" ,
58
59
"Intended Audience :: System Administrators" ,
You can’t perform that action at this time.
0 commit comments