Skip to content

Commit

Permalink
Wheel version downgrade to openai/gym#3202
Browse files Browse the repository at this point in the history
  • Loading branch information
passalis committed May 15, 2023
1 parent 3f649d2 commit 614747c
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test_packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
python3 -m venv venv
source venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install wheel
python3 -m pip install wheel==0.38.4
python3 -m pip install opendr-toolkit-engine
python3 -m pip install opendr-toolkit
# run the test
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tests_suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ jobs:
python3 -m venv venv
source venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install wheel
python3 -m pip install wheel==0.38.4
# install all tools one at a time
while read f; do
Expand Down Expand Up @@ -308,7 +308,7 @@ jobs:
python3 -m venv venv
source venv/bin/activate
python3 -m pip install --upgrade pip
python3 -m pip install wheel
python3 -m pip install wheel==0.38.4
# get the name of the wheel to install based on the test being run
package=$(sed "s/_/-/g" <<< ${{ matrix.package }})
Expand Down
4 changes: 2 additions & 2 deletions bin/install_nvidia.sh
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ pip3 install google-auth-oauthlib==0.4.6
pip3 install graphviz==0.8.4
pip3 install greenlet==1.1.2
pip3 install grpcio==1.42.0
pip3 install git+https://github.com/openai/gym.git@9180d12e1b66e7e2a1a622614f787a6ec147ac40
pip3 install gym==0.21.0
pip3 install hyperlink==21.0.0
pip3 install idna==3.3
pip3 install idna-ssl==1.1.0
Expand Down Expand Up @@ -288,7 +288,7 @@ pip3 install yacs==0.1.8
pip3 install yarl==1.7.2
pip3 install zipp==3.6.0
pip3 install zope.interface==5.4.0
pip3 install wheel
pip3 install wheel==0.38.4
pip3 install pytorch-lightning==1.2.3
pip3 install omegaconf==2.3.0
pip3 install ninja
Expand Down
4 changes: 2 additions & 2 deletions docs/reference/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ First, install the required dependencies:
sudo apt install python3.8-venv libfreetype6-dev git build-essential cmake python3-dev wget libopenblas-dev libsndfile1 libboost-dev libeigen3-dev
python3 -m venv venv
source venv/bin/activate
pip install wheel
pip install wheel==0.38.4
```
Then, you install the Python API of the toolkit using pip:
```bash
Expand All @@ -57,7 +57,7 @@ For example, if you stick with the default PyTorch version (1.8) and use CUDA11.
sudo apt install python3.8-venv libfreetype6-dev git build-essential cmake python3-dev wget libopenblas-dev libsndfile1 libboost-dev libeigen3-dev
python3 -m venv venv
source venv/bin/activate
pip install wheel
pip install wheel==0.38.4
pip install torch==1.13.1+cu116 torchvision==0.14.1 torchaudio==0.13.1 -f https://download.pytorch.org/whl/torch_stable.html
pip install 'git+https://github.com/facebookresearch/detectron2.git'
pip install mxnet-cu112==1.8.0post0
Expand Down
3 changes: 2 additions & 1 deletion src/opendr/planning/end_to_end_planning/dependencies.ini
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ python=vcstool
catkin_tools
roslibpy
empy
git+https://github.com/openai/gym.git@9180d12e1b66e7e2a1a622614f787a6ec147ac40
wheel==0.38.4
gym==0.20.0
stable-baselines3==1.1.0
scipy

Expand Down

0 comments on commit 614747c

Please sign in to comment.