From 6ed5d66c03d01c44e02bd3db54b861bf209dd45c Mon Sep 17 00:00:00 2001 From: Mads Jensen Date: Wed, 1 Jan 2020 15:42:45 +0100 Subject: [PATCH] Added Python 3.8 to test matrix (#1002) --- .travis.yml | 9 +++++++++ setup.py | 2 ++ tox.ini | 2 ++ 3 files changed, 13 insertions(+) diff --git a/.travis.yml b/.travis.yml index 9178900a..c2dbfc82 100644 --- a/.travis.yml +++ b/.travis.yml @@ -35,6 +35,15 @@ matrix: sudo: true env: DJANGO="3.0" + - python: 3.8 + dist: bionic + sudo: true + env: DJANGO="2.2" + - python: 3.8 + dist: bionic + sudo: true + env: DJANGO="3.0" + addons: apt: packages: diff --git a/setup.py b/setup.py index 34cde15b..ad65adb5 100755 --- a/setup.py +++ b/setup.py @@ -86,6 +86,8 @@ setup( 'Programming Language :: Python', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', diff --git a/tox.ini b/tox.ini index 8b0f69bb..1472bcb9 100644 --- a/tox.ini +++ b/tox.ini @@ -7,6 +7,7 @@ python = 3.5: py35 3.6: py36 3.7: py37 + 3.8: py38 [travis:env] DJANGO = @@ -40,6 +41,7 @@ basepython = py35: python3.5 py36: python3.6 py37: python3.7 + py38: python3.8 [testenv:lint] basepython = python3 -- 2.45.2