From 0b499b74c398a46611e167c102c54114798a9f45 Mon Sep 17 00:00:00 2001 From: Reggie McLean Date: Wed, 6 Nov 2024 20:26:45 +0100 Subject: [PATCH] updating dependencies to not use head of master gymnasium branch --- docker/Dockerfile | 2 -- pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 5d68cd546..bc8adaaa7 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -16,8 +16,6 @@ COPY . /usr/local/metaworld/ WORKDIR /usr/local/metaworld/ RUN free -g RUN pip install .[testing] -RUN git clone https://github.com/Farama-Foundation/Gymnasium.git -RUN pip install -e Gymnasium ENTRYPOINT ["/usr/local/metaworld/docker/entrypoint"] diff --git a/pyproject.toml b/pyproject.toml index 64fdb2c69..c967383c6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ 'Topic :: Scientific/Engineering :: Artificial Intelligence', ] dependencies = [ - "gymnasium>=1.0.0a1", + "gymnasium==1.0.0", "mujoco>=3.0.0", "numpy>=1.18", "scipy>=1.4.1",