mirror of https://github.com/phonopy/phono3py.git
Update python and package version requirements
This commit is contained in:
parent
febccc9fe8
commit
5fea85e0c6
|
@ -26,11 +26,11 @@ build:
|
||||||
|
|
||||||
requirements:
|
requirements:
|
||||||
build:
|
build:
|
||||||
- python>=3.5
|
- python>=3.6
|
||||||
- pip
|
- pip
|
||||||
- numpy>=1.11
|
- numpy>=1.11
|
||||||
- scipy
|
- scipy
|
||||||
- matplotlib-base
|
- matplotlib-base>=2.0.0
|
||||||
- pyyaml
|
- pyyaml
|
||||||
- h5py
|
- h5py
|
||||||
- phonopy>=2.12,<2.13
|
- phonopy>=2.12,<2.13
|
||||||
|
@ -39,11 +39,11 @@ requirements:
|
||||||
- spglib
|
- spglib
|
||||||
|
|
||||||
run:
|
run:
|
||||||
- python>=3.5
|
- python>=3.6
|
||||||
- pip
|
- pip
|
||||||
- numpy>=1.11
|
- numpy>=1.11
|
||||||
- scipy
|
- scipy
|
||||||
- matplotlib-base
|
- matplotlib-base>=2.0.0
|
||||||
- pyyaml
|
- pyyaml
|
||||||
- h5py
|
- h5py
|
||||||
- phonopy>=2.12,<2.13
|
- phonopy>=2.12,<2.13
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
numpy
|
numpy >= 1.11.0
|
||||||
PyYAML
|
PyYAML
|
||||||
matplotlib
|
matplotlib >= 2.0.0
|
||||||
h5py
|
h5py
|
||||||
phonopy >=2.12,<2.13
|
phonopy >=2.12,<2.13
|
||||||
|
|
6
setup.py
6
setup.py
|
@ -373,12 +373,12 @@ if __name__ == "__main__":
|
||||||
author_email="atz.togo@gmail.com",
|
author_email="atz.togo@gmail.com",
|
||||||
url="http://phonopy.github.io/phono3py/",
|
url="http://phonopy.github.io/phono3py/",
|
||||||
packages=packages_phono3py,
|
packages=packages_phono3py,
|
||||||
python_requires=">=3.5",
|
python_requires=">=3.6",
|
||||||
install_requires=[
|
install_requires=[
|
||||||
"numpy",
|
"numpy>=1.11.0",
|
||||||
"scipy",
|
"scipy",
|
||||||
"PyYAML",
|
"PyYAML",
|
||||||
"matplotlib",
|
"matplotlib>=2.0.0",
|
||||||
"h5py",
|
"h5py",
|
||||||
"spglib",
|
"spglib",
|
||||||
"phonopy>=2.12,<2.13",
|
"phonopy>=2.12,<2.13",
|
||||||
|
|
Loading…
Reference in New Issue