File tree Expand file tree Collapse file tree
.github/unittest/linux_libs/scripts_gym Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -185,20 +185,22 @@ printf "* Testing gym 0.13\n"
185185run_tests
186186uv pip uninstall gym atari-py
187187
188- # Test gym 0.19 (broken metadata, use pip instead of uv )
188+ # Test gym 0.19 (broken metadata, use pip with --no-build-isolation )
189189printf " * Testing gym 0.19\n"
190- pip install wheel==0.38.4
191- pip install gym==0.19
190+ pip install wheel==0.38.4 setuptools==65.3.0
191+ pip install gym==0.19 --no-build-isolation
192192run_tests
193193pip uninstall -y gym wheel
194+ uv pip install setuptools wheel # restore latest versions
194195
195196# Test gym 0.20
196197printf " * Testing gym 0.20\n"
197- pip install wheel==0.38.4
198- pip install ' gym[atari]==0.20'
198+ pip install wheel==0.38.4 setuptools==65.3.0
199+ pip install ' gym[atari]==0.20' --no-build-isolation
199200pip install ale-py==0.7
200201run_tests
201202pip uninstall -y gym ale-py wheel
203+ uv pip install setuptools wheel # restore latest versions
202204
203205# Test gym 0.25
204206printf " * Testing gym 0.25\n"
You can’t perform that action at this time.
0 commit comments