Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Python 3.10 support and classifiers #623

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,15 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.6', '3.7', '3.8', '3.9']
django-version: ['2.2', '3.0', '3.1']
python-version: ['3.6', '3.7', '3.8', '3.9', '3.10']
django-version: ['2.2', '3.0', '3.1', '3.2']
include:
- django-version: 'main'
python-version: '3.8'
- django-version: 'main'
python-version: '3.9'
- django-version: 'main'
python-version: '3.10'

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 3 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ classifiers =
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Framework :: Django :: 3.2
Andrew-Chen-Wang marked this conversation as resolved.
Show resolved Hide resolved
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Programming Language :: Python
Expand All @@ -20,7 +21,8 @@ classifiers =
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Internet :: WWW/HTTP
Programming Language :: Python :: 3.10
Andrew-Chen-Wang marked this conversation as resolved.
Show resolved Hide resolved
Topic :: Internet :: WWW/HTTP
Topic :: System :: Networking

[options]
Expand Down
5 changes: 3 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
skipsdist = True
usedevelop = true
envlist =
py{36,37,38,39}-dj{22,30,31,32}
py{38,39}-djmain
py{36,37,38,39,310}-dj{22,30,31,32}
py{38,39,310}-djmain
flake8

[gh-actions]
Expand All @@ -12,6 +12,7 @@ python =
3.7: py37
3.8: py38
3.9: py39, flake8
3.10: py310

[gh-actions:env]
DJANGO =
Expand Down