From ce5b49fe642a07ff51a41952e62f8cfdaa892bbd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Barrois?= Date: Tue, 2 Mar 2021 16:35:01 +0100 Subject: Add support for Python 3.7 / 3.8 --- .github/workflows/test.yml | 5 +++++ ChangeLog | 4 +++- setup.cfg | 1 + tox.ini | 2 +- 4 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 5c82537..473ce6d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -19,6 +19,11 @@ jobs: django-family: - 111 - 22 + include: + - python-version: 3.7 + django-family: 22 + - python-version: 3.8 + django-family: 22 exclude: - python-version: pypy3 django-family: 111 diff --git a/ChangeLog b/ChangeLog index ea12236..80fa0fd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -4,7 +4,9 @@ ChangeLog 2.8.6 (unreleased) ------------------ -- Nothing changed yet. +*New:* + + * Add support for Python 3.7 / Python 3.8 2.8.5 (2020-04-29) diff --git a/setup.cfg b/setup.cfg index eb2e497..6973ec1 100644 --- a/setup.cfg +++ b/setup.cfg @@ -24,6 +24,7 @@ classifiers = Programming Language :: Python :: 3.5 Programming Language :: Python :: 3.6 Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 Topic :: Software Development :: Libraries :: Python Modules [options] diff --git a/tox.ini b/tox.ini index d5cab59..ef6d7b9 100644 --- a/tox.ini +++ b/tox.ini @@ -1,7 +1,7 @@ [tox] envlist = py{27,34,35,36,37}-django111 - py{35,36,37}-django22 + py{35,36,37,38}-django22 pypy3-django{111,22} lint -- cgit v1.2.1