py-pymatgen: add 2022.9.8 (#38714)

This commit is contained in:
Manuela Kuhn 2023-07-05 07:12:18 +02:00 committed by GitHub
parent 2978911520
commit a99b7886e9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,32 +15,38 @@ class PyPymatgen(PythonPackage):
homepage = "http://www.pymatgen.org/" homepage = "http://www.pymatgen.org/"
pypi = "pymatgen/pymatgen-4.7.2.tar.gz" pypi = "pymatgen/pymatgen-4.7.2.tar.gz"
version("2022.9.8", sha256="2250e05b81af3313bc0fc70cb558c2f528ed4eefb32d943ed9bd7a9756f03652")
version("2021.3.9", sha256="a6f22d69133a48b7801bfd5e6a2878b47b4b4b2ef1a377b87c6c573be14cbf16") version("2021.3.9", sha256="a6f22d69133a48b7801bfd5e6a2878b47b4b4b2ef1a377b87c6c573be14cbf16")
version( version(
"2020.12.31", sha256="5002490facd47c55d2dae42c35712e061c1f5d881180485c0543a899589856d6" "2020.12.31", sha256="5002490facd47c55d2dae42c35712e061c1f5d881180485c0543a899589856d6"
) )
depends_on("py-setuptools@18.0:", type="build") depends_on("python@3.8:", when="@2022.1.8:", type=("build", "run"))
# to prevent: 'PyThreadState' {aka 'struct _ts'} has no member named
# 'use_tracing'; did you mean 'tracing'?
depends_on("python@:3.9", when="@:2021.3.9", type=("build", "run"))
depends_on("py-setuptools@43:", type="build")
depends_on("py-cython@0.29.23:", when="@2022.1.7:", type="build")
depends_on("py-numpy@1.20.1:", when="@2021.1.1:", type=("build", "run"))
depends_on("py-numpy@1.9:", type=("build", "run")) depends_on("py-numpy@1.9:", type=("build", "run"))
depends_on("py-requests", type=("build", "run")) depends_on("py-requests", type=("build", "run"))
depends_on("py-ruamel-yaml@0.17:", when="@2022.4.26:", type=("build", "run"))
depends_on("py-ruamel-yaml@0.15.6:", when="@2021.1.1:", type=("build", "run"))
depends_on("py-monty@3.0.2:", when="@2021.1.1:", type=("build", "run"))
depends_on("py-monty@0.9.6:", type=("build", "run")) depends_on("py-monty@0.9.6:", type=("build", "run"))
depends_on("py-scipy@1.5.0:", when="@2021.1.1:", type=("build", "run"))
depends_on("py-scipy@0.14:", type=("build", "run")) depends_on("py-scipy@0.14:", type=("build", "run"))
depends_on("py-tabulate", type=("build", "run")) depends_on("py-tabulate", type=("build", "run"))
depends_on("py-spglib@1.9.9.44:", when="@2021.1.1:", type=("build", "run"))
depends_on("py-spglib@1.9.8.7:", type=("build", "run")) depends_on("py-spglib@1.9.8.7:", type=("build", "run"))
depends_on("py-networkx@2.2:", when="@2021.1.1:", type=("build", "run"))
depends_on("py-matplotlib@1.5:", type=("build", "run")) depends_on("py-matplotlib@1.5:", type=("build", "run"))
depends_on("py-palettable@2.1.1:", type=("build", "run"))
# dependencies of never versions
depends_on("py-matplotlib@1.5:", when="@2021.1.1:", type=("build", "run"))
depends_on("py-monty@3.0.2:", when="@2021.1.1:", type=("build", "run"))
depends_on("py-numpy@1.20.1:", when="@2021.1.1:", type=("build", "run"))
depends_on("py-palettable@3.1.1:", when="@2021.1.1:", type=("build", "run")) depends_on("py-palettable@3.1.1:", when="@2021.1.1:", type=("build", "run"))
depends_on("py-palettable@2.1.1:", type=("build", "run"))
depends_on("py-sympy", when="@2021.1.1:", type=("build", "run"))
depends_on("py-pandas", when="@2021.1.1:", type=("build", "run")) depends_on("py-pandas", when="@2021.1.1:", type=("build", "run"))
depends_on("py-plotly@4.5.0:", when="@2021.1.1:", type=("build", "run")) depends_on("py-plotly@4.5.0:", when="@2021.1.1:", type=("build", "run"))
depends_on("py-ruamel-yaml@0.15.6:", when="@2021.1.1:", type=("build", "run"))
depends_on("py-scipy@1.5.0:", when="@2021.1.1:", type=("build", "run"))
depends_on("py-spglib@1.9.9.44:", when="@2021.1.1:", type=("build", "run"))
depends_on("py-sympy", when="@2021.1.1:", type=("build", "run"))
depends_on("py-uncertainties@3.1.4:", when="@2021.1.1:", type=("build", "run")) depends_on("py-uncertainties@3.1.4:", when="@2021.1.1:", type=("build", "run"))
depends_on("py-networkx@2.2:", when="@2021.1.1:", type=("build", "run")) depends_on("py-pybtex", when="@2022.1.9:", type=("build", "run"))
depends_on("py-tqdm", when="@2022.1.9:", type=("build", "run"))