Skip to content

Commit

Permalink
Add support for Python 3.10.
Browse files Browse the repository at this point in the history
  • Loading branch information
ngnpope committed Jan 12, 2022
1 parent 9f27789 commit 989ae6a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest']
python: ['3.9']
python: ['3.10']
steps:
- name: Check out source
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
strategy:
matrix:
os: ['ubuntu-latest']
python: ['3.7', '3.8', '3.9']
python: ['3.7', '3.8', '3.9', '3.10']
framework: ['django~=3.2.0', 'django~=4.0.0', 'flask~=1.1.0', 'flask~=2.0.0']
exclude:
- os: 'ubuntu-latest'
Expand Down
1 change: 1 addition & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: Implementation :: CPython
Topic :: Internet :: WWW/HTTP
Topic :: Software Development :: Libraries :: Python Modules
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py37, py38, py39
envlist = py37, py38, py39, py310

[testenv]
commands = pytest
Expand Down

0 comments on commit 989ae6a

Please sign in to comment.