Update python and package version requirements

This commit is contained in:
Atsushi Togo 2021-11-02 22:53:53 +09:00
parent febccc9fe8
commit 5fea85e0c6
3 changed files with 9 additions and 9 deletions

View File

@ -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

View File

@ -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

View File

@ -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",