Skip to content

Commit

Permalink
fix agilerl tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mwydmuch committed Jan 7, 2025
1 parent f23b45d commit 17872c5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/linux-tutorials-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,8 @@ jobs:
export PATH=/path/to/parallel:$PATH
export root_dir=$(pwd)
cd tutorials/${{ matrix.tutorial }}
pip install $(grep -ivE "pettingzoo" requirements.txt)
grep -ivE "pettingzoo" requirements.txt > _requirements.txt
pip install -r _requirements.txt
pip install -e $root_dir[all]
pip install -e $root_dir[testing]
AutoROM -v
Expand All @@ -56,7 +57,8 @@ jobs:
export PATH=/path/to/parallel:$PATH
export root_dir=$(pwd)
cd tutorials/${{ matrix.tutorial }}
pip install $(grep -ivE "pettingzoo" requirements.txt)
grep -ivE "pettingzoo" requirements.txt > _requirements.txt
pip install -r _requirements.txt
pip install -e $root_dir[all]
pip install -e $root_dir[testing]
AutoROM -v
Expand Down
3 changes: 1 addition & 2 deletions tutorials/AgileRL/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
agilerl==0.1.22
agilerl==0.1.22; python_version >= '3.9'
pettingzoo[classic,atari,mpe]>=1.23.1
SuperSuit>=3.9.0
torch>=2.0.1
Expand All @@ -9,4 +9,3 @@ gymnasium>=0.28.1
imageio>=2.31.1
Pillow>=9.5.0
PyYAML>=5.4.1
wandb>=0.16.0

0 comments on commit 17872c5

Please sign in to comment.