Skip to content

Commit

Permalink
Merge pull request #185 from Lux-AI-Challenge/fix-notebooks
Browse files Browse the repository at this point in the history
Fixes kaggle notebooks where  importlib-metadata >=5.0 had breaking bugs with gym
  • Loading branch information
StoneT2000 authored Jan 25, 2023
2 parents cfb49a6 + 2596eab commit f0fe6f4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion luxai_s2/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def read(fname):
long_description="Code for the Lux AI Challenge Season 2",
packages=find_packages(exclude="kits"),
entry_points={"console_scripts": ["luxai-s2 = luxai_runner.cli:main"]},
version="2.0.4",
version="2.0.5",
python_requires=">=3.7",
install_requires=[
"numpy",
Expand All @@ -29,5 +29,6 @@ def read(fname):
"omegaconf",
"gym==0.21.0",
"scipy",
"importlib-metadata<5.0" # fixes bug where they deprecated an endpoint that openai gym uses
],
)

0 comments on commit f0fe6f4

Please sign in to comment.