Merge pull request #428 from tonybaloney/patch-1

Add support and test for Python 3.9, 3.10, and 3.11
This commit is contained in:
Anthony Shaw 2022-10-31 08:46:31 +09:00 коммит произвёл GitHub
Родитель 3b5485a923 03863121ea
Коммит 001f4d211e
2 изменённых файлов: 4 добавлений и 1 удалений

2
.github/workflows/pythonpackage.yml поставляемый
Просмотреть файл

@ -9,7 +9,7 @@ jobs:
strategy:
max-parallel: 5
matrix:
python-version: [2.7, 3.6, 3.7, 3.8, 3.9, "3.10"]
python-version: [2.7, 3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
steps:
- uses: actions/checkout@v1

Просмотреть файл

@ -31,6 +31,9 @@ CLASSIFIERS = [
'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',
'Programming Language :: Python :: 3.11',
'License :: OSI Approved :: MIT License',
]