Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create wheels.yml for github actions #244

Merged
merged 24 commits into from
Jul 5, 2022
Prev Previous commit
Next Next commit
try try try
  • Loading branch information
vmoens committed Jul 5, 2022
commit cad166a021cd0db76af4112f1e6566b7ff1e1f5d
2 changes: 1 addition & 1 deletion .circleci/unittest/linux/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ python -m pip install "git+https://github.com/pytorch/functorch.git"
python -c "import functorch"

printf "* Installing torchrl\n"
python -m pip install -e ".[atari,dm_control,gym_continuous,rendering,tests,utils]"
python -m pip install ".[atari,dm_control,gym_continuous,rendering,tests,utils]"

if [[ $OSTYPE == 'darwin'* ]]; then
PRIVATE_MUJOCO_GL=glfw
Expand Down
2 changes: 1 addition & 1 deletion .circleci/unittest/linux_optdeps/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ python -m pip install "git+https://github.com/pytorch/functorch.git"
python -c "import functorch"

printf "* Installing torchrl\n"
python -m pip install -e .
python -m pip install .

# smoke test
python -c "import torchrl"
2 changes: 1 addition & 1 deletion .circleci/unittest/linux_stable/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ printf "* Installing torchrl\n"
printf "g++ version: "
gcc --version

python -m pip install -e ".[atari,dm_control,gym_continuous,rendering,tests,utils]"
python -m pip install ".[atari,dm_control,gym_continuous,rendering,tests,utils]"

if [[ $OSTYPE == 'darwin'* ]]; then
PRIVATE_MUJOCO_GL=glfw
Expand Down