ADD version 0.19.0 in py-gym recipe (#33701)

* ADD version 0.19.0 in py-gym recipe

* Fix py-gym download url and dependencies for v0.19.0

* Fix stupid error in previous commit: no change in py-cloudpickle dep

* Yes, I should've paid more attention! O:)

I think now it is right, thanks!
This commit is contained in:
Emilio J. Padrón González 2022-11-06 00:28:58 +01:00 committed by GitHub
parent 0f32f7d0e9
commit e550f48b17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,16 +14,16 @@ class PyGym(PythonPackage):
environments."""
homepage = "https://github.com/openai/gym"
pypi = "gym/0.18.0.tar.gz"
pypi = "gym/gym-0.18.0.tar.gz"
version("0.19.0", sha256="940069b983806e1ccc400fa6d47b4e34e462accf6a4fb0acb0a5e509ad0f502d")
version("0.18.0", sha256="a0dcd25c1373f3938f4cb4565f74f434fba6faefb73a42d09c9dddd0c08af53e")
depends_on("python@3.6:", type=("build", "run"))
depends_on("py-setuptools", type="build")
depends_on("py-scipy", type=("build", "run"))
depends_on("py-numpy@1.10.4:", type=("build", "run"))
depends_on("py-scipy", type=("build", "run"), when="@0.18.0")
depends_on("py-numpy@1.10.4:", type=("build", "run"), when="@0.18.0")
depends_on("py-numpy@1.18.0:", type=("build", "run"), when="@0.19.0")
depends_on("py-pyglet@1.4.0:1.5.0", type=("build", "run"), when="@0.18.0")
depends_on("py-pyglet@1.4.0:1.5.15", type=("build", "run"), when="@0.18.1")
depends_on("pil@:8.2.0", type=("build", "run"), when="@0.18.1")
depends_on("pil@:7.2.0", type=("build", "run"), when="@0.18.0")
depends_on("py-cloudpickle@1.2.0:1.6", type=("build", "run"))