File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
linux_olddeps/scripts_gym_0_13 Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -31,15 +31,15 @@ git submodule sync && git submodule update --init --recursive
31
31
printf " Installing PyTorch with cu121"
32
32
if [[ " $TORCH_VERSION " == " nightly" ]]; then
33
33
if [ " ${CU_VERSION:- } " == cpu ] ; then
34
- pip3 install --pre torch numpy==1.26.4 --index-url https://download.pytorch.org/whl/nightly/cpu -U
34
+ pip3 install --pre torch " numpy<2.0.0 " --index-url https://download.pytorch.org/whl/nightly/cpu -U
35
35
else
36
- pip3 install --pre torch numpy==1.26.4 --index-url https://download.pytorch.org/whl/nightly/cu121 -U
36
+ pip3 install --pre torch " numpy<2.0.0 " --index-url https://download.pytorch.org/whl/nightly/cu121 -U
37
37
fi
38
38
elif [[ " $TORCH_VERSION " == " stable" ]]; then
39
39
if [ " ${CU_VERSION:- } " == cpu ] ; then
40
- pip3 install torch numpy==1.26.4 --index-url https://download.pytorch.org/whl/cpu
40
+ pip3 install torch " numpy<2.0.0 " --index-url https://download.pytorch.org/whl/cpu
41
41
else
42
- pip3 install torch numpy==1.26.4 --index-url https://download.pytorch.org/whl/cu121
42
+ pip3 install torch " numpy<2.0.0 " --index-url https://download.pytorch.org/whl/cu121
43
43
fi
44
44
else
45
45
printf " Failed to install pytorch"
Original file line number Diff line number Diff line change @@ -27,3 +27,4 @@ dependencies:
27
27
- pyopengl==3.1.4
28
28
- ray
29
29
- av
30
+ - h5py
Original file line number Diff line number Diff line change 157
157
pytest.mark.filterwarnings(
158
158
"ignore:The current behavior of MLP when not providing `num_cells` is that the number"
159
159
),
160
+ pytest.mark.filterwarnings(
161
+ "ignore:dep_util is Deprecated. Use functions from setuptools instead"
162
+ ),
160
163
]
161
164
162
165
You can’t perform that action at this time.
0 commit comments