From dbcc17aa9fe79661bfb676ac9f4b3c9edf31f51c Mon Sep 17 00:00:00 2001 From: Elliot Tower Date: Fri, 21 Jul 2023 01:22:32 -0400 Subject: [PATCH] Fix Meltingpot dockerfile (#102) --- bin/meltingpot.Dockerfile | 5 +++++ shimmy/__init__.py | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/bin/meltingpot.Dockerfile b/bin/meltingpot.Dockerfile index 99e028d8..68e38a1d 100644 --- a/bin/meltingpot.Dockerfile +++ b/bin/meltingpot.Dockerfile @@ -64,6 +64,11 @@ RUN mkdir -p /workspaces/meltingpot/meltingpot \ # Clone Melting Pot repository and install dependencies RUN git clone https://github.com/deepmind/meltingpot.git RUN cp -r meltingpot/ /workspaces/meltingpot/ && rm -R meltingpot/ + +# Checkout the last commit with 3.9 support that passed CI (July 17 2023) +# Newer versions and pypi wheels caused issues +RUN cd /workspaces/meltingpot/meltingpot && git checkout ed2e6e79ca49a14a22aa4b6117ac407f39fbef81 + RUN pip install -e /workspaces/meltingpot/meltingpot # Set Python path for meltingpot diff --git a/shimmy/__init__.py b/shimmy/__init__.py index b0c0b709..e5cfbb04 100644 --- a/shimmy/__init__.py +++ b/shimmy/__init__.py @@ -73,7 +73,7 @@ def __call__(self, *args: list[Any], **kwargs: Any): ] -__version__ = "1.2.0" +__version__ = "1.2.1" try: