Skip to content

Commit e2422d1

Browse files
committed
amend
1 parent 695fd2c commit e2422d1

File tree

87 files changed

+619
-778
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

87 files changed

+619
-778
lines changed

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

Lines changed: 0 additions & 37 deletions
This file was deleted.
Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
pip
2+
protobuf
3+
hypothesis
4+
future
5+
cloudpickle
6+
pygame
7+
moviepy<2.0.0
8+
tqdm
9+
pytest
10+
pytest-cov
11+
pytest-mock
12+
pytest-instafail
13+
pytest-rerunfailures
14+
pytest-timeout
15+
pytest-asyncio
16+
expecttest
17+
pybind11[global]
18+
pyyaml
19+
scipy
20+
hydra-core
21+
tensorboard
22+
imageio==2.26.0
23+
wandb
24+
dm_control
25+
mujoco<3.3.6
26+
mlflow
27+
av
28+
coverage
29+
ray
30+
transformers
31+
ninja
32+
timm

.github/unittest/linux/scripts/run_all.sh

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ if [[ $OSTYPE != 'darwin'* ]]; then
2727
apt-get upgrade -y libstdc++6
2828
apt-get dist-upgrade -y
2929
else
30-
apt-get install -y g++ gcc
30+
apt-get install -y g++ gcc cmake
3131
fi
3232

3333
fi
@@ -79,12 +79,13 @@ export LAZY_LEGACY_OP=False
7979
export RL_LOGGING_LEVEL=DEBUG
8080
export TOKENIZERS_PARALLELISM=true
8181

82-
# Install dependencies from environment.yml using uv
83-
uv pip install hypothesis future cloudpickle pygame "moviepy<2.0.0" tqdm \
84-
pytest pytest-cov pytest-mock pytest-instafail pytest-rerunfailures \
85-
pytest-timeout pytest-asyncio expecttest "pybind11[global]" pyyaml scipy \
86-
hydra-core tensorboard "imageio==2.26.0" wandb dm_control "mujoco<3.3.6" \
87-
mlflow av coverage ray transformers ninja timm protobuf setuptools
82+
# Install build dependencies FIRST (required for C++ extensions)
83+
printf "* Installing build dependencies\n"
84+
uv pip install setuptools wheel ninja "pybind11[global]"
85+
86+
# Install dependencies from requirements.txt
87+
printf "* Installing dependencies from requirements.txt\n"
88+
uv pip install -r "${this_dir}/requirements.txt"
8889

8990
# Install pip for compatibility with packages that expect it
9091
uv pip install pip

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

Lines changed: 0 additions & 34 deletions
This file was deleted.
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
pip
2+
protobuf
3+
hypothesis
4+
future
5+
cloudpickle
6+
pygame
7+
moviepy<2.0.0
8+
tqdm
9+
pytest
10+
pytest-cov
11+
pytest-mock
12+
pytest-instafail
13+
pytest-rerunfailures
14+
pytest-asyncio
15+
expecttest
16+
pybind11[global]
17+
pyyaml
18+
scipy
19+
hydra-core
20+
tensorboard
21+
imageio==2.26.0
22+
wandb
23+
dm_control
24+
mujoco<3.3.6
25+
mlflow
26+
av
27+
coverage
28+
ray
29+
virtualenv

.github/unittest/linux_distributed/scripts/setup_env.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ set -e
99

1010
this_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
1111
# Avoid error: "fatal: unsafe repository"
12-
apt-get update && apt-get install -y git curl wget gcc g++
12+
apt-get update && apt-get install -y git curl wget gcc g++ cmake
1313
git config --global --add safe.directory '*'
1414
root_dir="$(git rev-parse --show-toplevel)"
1515
env_dir="${root_dir}/.venv"

.github/unittest/linux_libs/scripts_ataridqn/environment.yml

Lines changed: 0 additions & 27 deletions
This file was deleted.

.github/unittest/linux_libs/scripts_ataridqn/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ source "${root_dir}/.venv/bin/activate"
1414

1515
# Install build dependencies EARLY (required for --no-build-isolation)
1616
printf "* Installing build dependencies\n"
17-
uv pip install setuptools ninja "pybind11[global]"
17+
uv pip install setuptools wheel ninja "pybind11[global]"
1818

1919
if [ "${CU_VERSION:-}" == cpu ] ; then
2020
version="cpu"
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
pip
2+
gsutil
3+
hypothesis
4+
future
5+
cloudpickle
6+
pytest
7+
pytest-cov
8+
pytest-mock
9+
pytest-instafail
10+
pytest-rerunfailures
11+
pytest-error-for-skips
12+
pytest-asyncio
13+
expecttest
14+
pybind11[global]
15+
pyyaml
16+
scipy
17+
hydra-core
18+
tqdm
19+
h5py
20+
datasets
21+
pillow

.github/unittest/linux_libs/scripts_brax/environment.yml

Lines changed: 0 additions & 24 deletions
This file was deleted.

0 commit comments

Comments
 (0)