File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change 12
12
workflow_dispatch :
13
13
14
14
jobs :
15
+ test3_12 :
16
+ name : Test Py3.12
17
+ runs-on : ubuntu-latest
18
+ steps :
19
+ - uses : actions/checkout@v3
20
+ - uses : actions/setup-python@v4
21
+ with :
22
+ python-version : ' 3.12'
23
+ - name : Run tests
24
+ run : |
25
+ python --version
26
+ pip install -q -e .[dev]
27
+ python -m unittest discover --pattern '*test*.py'
15
28
test3_11 :
16
29
name : Test Py3.11
17
30
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ def get_version():
90
90
"Programming Language :: Python :: 3.9" ,
91
91
"Programming Language :: Python :: 3.10" , # Colab
92
92
"Programming Language :: Python :: 3.11" ,
93
+ "Programming Language :: Python :: 3.12" ,
93
94
"Operating System :: OS Independent" ,
94
95
"Topic :: Scientific/Engineering :: Artificial Intelligence" ,
95
96
],
You can’t perform that action at this time.
0 commit comments