Skip to content

Commit

Permalink
Fix Meltingpot dockerfile (#102)
Browse files Browse the repository at this point in the history
  • Loading branch information
elliottower authored Jul 21, 2023
1 parent 25f3883 commit dbcc17a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions bin/meltingpot.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion shimmy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ def __call__(self, *args: list[Any], **kwargs: Any):
]


__version__ = "1.2.0"
__version__ = "1.2.1"


try:
Expand Down

0 comments on commit dbcc17a

Please sign in to comment.