From 4c70d64a13946c19d0d741d1961b8f88a6e49fa0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Bielawski?= Date: Wed, 3 Nov 2021 11:50:40 +0000 Subject: [PATCH] Test on Python 3.10 --- .github/workflows/test.yaml | 5 ++++- setup.py | 3 +++ tox.ini | 4 +++- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index c8fe651f..3d55a041 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -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 diff --git a/setup.py b/setup.py index 1d5de675..0d63d549 100644 --- a/setup.py +++ b/setup.py @@ -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 diff --git a/tox.ini b/tox.ini index a5c2fcf4..f8bccdda 100644 --- a/tox.ini +++ b/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