Skip to content

Commit b4b5944

Browse files
committed
[Versioning] Fix moviepy 2.0 incompatibility
ghstack-source-id: 1597321 Pull Request resolved: #2594
1 parent a126a6f commit b4b5944

File tree

11 files changed

+11
-11
lines changed

11 files changed

+11
-11
lines changed

.github/unittest/linux/scripts/environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies:
99
- future
1010
- cloudpickle
1111
- pygame
12-
- moviepy
12+
- moviepy<2.0.0
1313
- tqdm
1414
- pytest
1515
- pytest-cov

.github/unittest/linux_distributed/scripts/environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies:
99
- future
1010
- cloudpickle
1111
- pygame
12-
- moviepy
12+
- moviepy<2.0.0
1313
- tqdm
1414
- pytest
1515
- pytest-cov

.github/unittest/linux_libs/scripts_envpool/environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies:
99
- future
1010
- cloudpickle
1111
- pygame
12-
- moviepy
12+
- moviepy<2.0.0
1313
- pytest-cov
1414
- pytest-mock
1515
- pytest-instafail

.github/unittest/linux_libs/scripts_gym/environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
- future
1212
- cloudpickle
1313
- pygame
14-
- moviepy
14+
- moviepy<2.0.0
1515
- tqdm
1616
- pytest
1717
- pytest-cov

.github/unittest/linux_libs/scripts_robohive/environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies:
1111
- future
1212
- cloudpickle
1313
- pygame
14-
- moviepy
14+
- moviepy<2.0.0
1515
- tqdm
1616
- pytest
1717
- pytest-cov

.github/unittest/linux_olddeps/scripts_gym_0_13/environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ dependencies:
1010
- cloudpickle
1111
- gym[atari]==0.13
1212
- pygame
13-
- moviepy
13+
- moviepy<2.0.0
1414
- tqdm
1515
- pytest
1616
- pytest-cov

.github/unittest/linux_sota/scripts/environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ dependencies:
99
- future
1010
- cloudpickle
1111
- pygame
12-
- moviepy
12+
- moviepy<2.0.0
1313
- tqdm
1414
- pytest
1515
- pytest-cov

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -921,7 +921,7 @@ make of torchrl:
921921
pip3 install tqdm tensorboard "hydra-core>=1.1" hydra-submitit-launcher
922922
923923
# rendering
924-
pip3 install moviepy
924+
pip3 install "moviepy<2.0.0"
925925
926926
# deepmind control suite
927927
pip3 install dm_control

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def _main(argv):
208208
],
209209
"dm_control": ["dm_control"],
210210
"gym_continuous": ["gymnasium<1.0", "mujoco"],
211-
"rendering": ["moviepy"],
211+
"rendering": ["moviepy<2.0.0"],
212212
"tests": ["pytest", "pyyaml", "pytest-instafail", "scipy"],
213213
"utils": [
214214
"tensorboard",

sota-check/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export MUJOCO_GL=egl
2626
conda create -n rl-sota-bench python=3.10 -y
2727
conda install anaconda::libglu -y
2828
pip3 install --pre torch torchvision --index-url https://download.pytorch.org/whl/nightly/cu121
29-
pip3 install "gymnasium[accept-rom-license,atari,mujoco]" vmas tqdm wandb pygame moviepy imageio submitit hydra-core transformers
29+
pip3 install "gymnasium[accept-rom-license,atari,mujoco]" vmas tqdm wandb pygame "moviepy<2.0.0" imageio submitit hydra-core transformers
3030

3131
cd /path/to/tensordict
3232
python setup.py develop

sota-implementations/multiagent/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Install vmas and dependencies:
2727

2828
```bash
2929
pip install vmas
30-
pip install wandb moviepy
30+
pip install wandb "moviepy<2.0.0"
3131
pip install hydra-core
3232
```
3333

0 commit comments

Comments
 (0)