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

Test on Python 3.10 #249

Merged
merged 1 commit into from Nov 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/test.yaml
Expand Up @@ -13,8 +13,11 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ 3.6, 3.7, 3.8 ]
python-version: [ 3.6, 3.7, 3.8, 3.9, "3.10" ]
django: [ 22, 31, 32 ]
exclude:
- python-version: "3.10"
django: 22
services:
postgres:
image: postgres
Expand Down
3 changes: 3 additions & 0 deletions setup.py
Expand Up @@ -37,12 +37,15 @@ def _pyimp():
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 :: Implementation :: CPython
Programming Language :: Python :: Implementation :: PyPy
Framework :: Django
Framework :: Django :: 2.2
Framework :: Django :: 3.0
Framework :: Django :: 3.1
Framework :: Django :: 3.2
Operating System :: OS Independent
Topic :: Communications
Topic :: System :: Distributed Computing
Expand Down
4 changes: 3 additions & 1 deletion tox.ini
@@ -1,8 +1,10 @@
[tox]
envlist =
py310-django{31,32}
py39-django{22,31,32}
py38-django{22,31,32}
py36-django{22,31,32}
py37-django{22,31,32}
py36-django{22,31,32}
pypy3-django{22,31,32}

flake8
Expand Down