add python3.10 release (#877)

* add missing python3.9 classifier

* add python3.10 release

* run tests on 3.10

* Revert "run tests on 3.10"

This reverts commit ceed64249e54b6ec622b06c59bf47da7c6dfc1b0.
This commit is contained in:
JC Louis
2022-01-12 09:42:13 +01:00
committed by GitHub
parent 076319d542
commit cabbecb96c
4 changed files with 6 additions and 4 deletions

View File

@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
os: [windows-latest, macos-latest]
python: [3.7, 3.8, 3.9]
python: ["3.7", "3.8", "3.9", "3.10"]
steps:
- name: Checkout repository

View File

@ -34,7 +34,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python: [3.7, 3.8, 3.9]
python: ["3.7", "3.8", "3.9", "3.10"]
steps:
- name: Checkout repository
uses: actions/checkout@v2
@ -80,7 +80,7 @@ jobs:
strategy:
matrix:
os: [windows-latest, macos-10.15]
python: [3.7, 3.8, 3.9]
python: ["3.7", "3.8", "3.9", "3.10"]
steps:
- name: Checkout repository
uses: actions/checkout@v2

View File

@ -16,7 +16,7 @@ jobs:
runs-on: windows-latest
strategy:
matrix:
python: [3.7, 3.8, 3.9]
python: ["3.7", "3.8", "3.9", "3.10"]
steps:
- name: Checkout repository
uses: actions/checkout@v1

View File

@ -30,6 +30,8 @@ setup(
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
package_dir={"": "py_src"},