Skip to content

Commit 40dddb1

Browse files
Moved to Python 3.10 in the CI (#123)
1 parent 959e307 commit 40dddb1

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ jobs:
2020
run: |
2121
if [ -z $ACT ]
2222
then
23-
_ver="[3.8, 3.9]"
23+
_ver="['3.8', '3.9', '3.10']"
2424
_cache="1"
2525
else
26-
_ver="[3.8]"
26+
_ver="['3.8']"
2727
_cache="0"
2828
fi
2929
echo "::set-output name=version_matrix::$_ver"

pytest.ini

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,13 @@ filterwarnings =
2020

2121
# Issue #119
2222
ignore:Encoding a StructuredValue with type tfp.distributions.Deterministic_ACTTypeSpec:UserWarning
23+
24+
# This warning stems from tensorflow and tf-agents and will presumably
25+
# be fixed by them before v3.12
26+
ignore:The distutils package is deprecated and slated for removal in Python 3.12. Use setuptools or check PEP 632 for potential alternatives:DeprecationWarning
27+
28+
# Also an issue internal to tensorflow
29+
ignore:Call to deprecated create function .*Descriptor.*:DeprecationWarning
30+
31+
# Also internal to tensorflow
32+
ignore:non-integer arguments to randrange.*:DeprecationWarning

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ flatbuffers==2.0
1010
future==0.18.2
1111
gast==0.4.0
1212
gin==0.1.006
13-
gin-config==0.4.0
13+
gin-config==0.5.0
1414
google-auth-oauthlib==0.4.5
1515
google-auth==1.35.0
1616
google-pasta==0.2.0
@@ -24,7 +24,7 @@ markdown==3.3.4
2424
numpy==1.22.1
2525
oauthlib==3.1.1
2626
opt-einsum==3.3.0
27-
pillow==8.3.1
27+
pillow==9.2.0
2828
protobuf==3.17.3
2929
psutil==5.9.0
3030
pyasn1==0.4.8
@@ -33,7 +33,7 @@ pyglet==1.5.0
3333
requests==2.26.0
3434
requests-oauthlib==1.3.0
3535
rsa==4.7.2
36-
scipy==1.7.1
36+
scipy==1.7.2
3737
setuptools==57.4.0
3838
six==1.16.0
3939
tb-nightly==2.11.0a20220823

0 commit comments

Comments
 (0)