Skip to content

Commit 9c63f16

Browse files
committed
Remove upper bound limit
1 parent ef463fb commit 9c63f16

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/colab.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ on:
1616

1717
jobs:
1818
colab:
19-
runs-on: ubuntu-latest
19+
runs-on: ubuntu-22.04
2020
env:
2121
COLAB_ALWAYS_INSTALL_XVFB: 1
2222
QLEARNING_NUM_TRAINING_STEPS: 5

colab/Colab_UnityEnvironment_1_Run.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -217,7 +217,7 @@
217217
"\n",
218218
"from mlagents_envs.registry import default_registry\n",
219219
"\n",
220-
"env = default_registry[env_id].make(timeout_wait=120)"
220+
"env = default_registry[env_id].make()"
221221
],
222222
"execution_count": 3,
223223
"outputs": [

ml-agents/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def run(self):
6262
"Pillow>=4.2.1",
6363
"protobuf>=3.6,<3.21",
6464
"pyyaml>=3.1.0",
65-
"torch>=2.1.1,<=2.8.0",
65+
"torch>=2.1.1",
6666
"tensorboard>=2.14",
6767
# adding six explicit dependency since tensorboard needs it but doesn't declare it as a dep
6868
"six>=1.16",

0 commit comments

Comments
 (0)