Add Python 3.10 to Test Suite (#2968)

This commit is contained in:
Bibo-Joshi 2022-04-24 19:30:18 +02:00 committed by Hinrich Mahler
parent 7c113f5c75
commit 3c8953cc5a
2 changed files with 2 additions and 1 deletions

View file

@ -13,7 +13,7 @@ jobs:
runs-on: ${{matrix.os}}
strategy:
matrix:
python-version: [3.7, 3.8, 3.9]
python-version: ['3.7', '3.8', '3.9', '3.10']
os: [ubuntu-latest, windows-latest, macos-latest]
fail-fast: False
steps:

View file

@ -90,6 +90,7 @@ def get_setup_kwargs(raw=False):
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
],
python_requires='>=3.7',
)