Skip to content

Commit f23b45d

Browse files
committed
bump wandb version to support python 3.12
1 parent 8d6aeb7 commit f23b45d

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

.github/workflows/docs-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212

1313
jobs:
1414
docs-test:
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-22.04
1616
strategy:
1717
matrix:
1818
group: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]

.github/workflows/linux-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ permissions:
1212

1313
jobs:
1414
linux-test:
15-
runs-on: ubuntu-latest
15+
runs-on: ubuntu-22.04
1616
strategy:
1717
matrix:
1818
python-version: ['3.9', '3.10', '3.11', '3.12']

.github/workflows/linux-tutorials-test.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ jobs:
3232
export root_dir=$(pwd)
3333
cd tutorials/${{ matrix.tutorial }}
3434
pip install $(grep -ivE "pettingzoo" requirements.txt)
35-
pip install -e $root_dir[all,testing]
35+
pip install -e $root_dir[all]
36+
pip install -e $root_dir[testing]
3637
AutoROM -v
3738
for f in *.py; do xvfb-run -a -s "-screen 0 1024x768x24" python "$f"; done
3839
@@ -56,6 +57,7 @@ jobs:
5657
export root_dir=$(pwd)
5758
cd tutorials/${{ matrix.tutorial }}
5859
pip install $(grep -ivE "pettingzoo" requirements.txt)
59-
pip install -e $root_dir[all,testing]
60+
pip install -e $root_dir[all]
61+
pip install -e $root_dir[testing]
6062
AutoROM -v
6163
for f in *.py; do xvfb-run -a -s "-screen 0 1024x768x24" python "$f"; done

tutorials/AgileRL/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ gymnasium>=0.28.1
99
imageio>=2.31.1
1010
Pillow>=9.5.0
1111
PyYAML>=5.4.1
12-
wandb>=0.13.10
12+
wandb>=0.16.0
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
pettingzoo==1.24.0
1+
numpy>=1.21.0
2+
pettingzoo>=1.24.0

0 commit comments

Comments
 (0)