Skip to content

Commit b77e727

Browse files
authored
Merge pull request #258 from PanderMusubi/python310
2 parents 512c61e + aef0303 commit b77e727

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
strategy:
2323
matrix:
2424
os: [ubuntu-latest, macos-latest, windows-latest]
25-
python: [3.6, 3.7, 3.8, 3.9]
25+
python: ['3.6', '3.7', '3.8', '3.9', '3.10']
2626
fail-fast: false
2727
runs-on: ${{ matrix.os }}
2828
steps:

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,12 +39,15 @@
3939
'Environment :: Web Environment',
4040
'Intended Audience :: Developers',
4141
'License :: OSI Approved :: MIT License',
42+
'Operating System :: OS Independent',
4243
'Programming Language :: Python',
4344
'Programming Language :: Python :: 3',
4445
'Programming Language :: Python :: 3.6',
4546
'Programming Language :: Python :: 3.7',
4647
'Programming Language :: Python :: 3.8',
4748
'Programming Language :: Python :: 3.9',
49+
'Programming Language :: Python :: 3.10',
50+
'Framework :: Flask',
4851
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
4952
'Topic :: Software Development :: Libraries :: Python Modules'
5053
]

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36, py37, py38, py39, flake8, docs
2+
envlist = py36, py37, py38, py39, py310, flake8, docs
33
skip_missing_interpreters = true
44

55
[gh-actions]
@@ -8,6 +8,7 @@ python =
88
3.7: py37
99
3.8: py38
1010
3.9: py39
11+
3.10: py310
1112

1213
[testenv]
1314
deps =

0 commit comments

Comments
 (0)