From 37f02c47f8eb4d6e7b3c22401dba57b00780dc5d Mon Sep 17 00:00:00 2001 From: Bastien Vallet Date: Thu, 24 Oct 2019 13:08:52 +0200 Subject: [PATCH] Refs #29926 -- Added Python 3.8 to classifiers and tox.ini. --- setup.py | 1 + tox.ini | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 909d2bb7a3..9e0611e609 100644 --- a/setup.py +++ b/setup.py @@ -100,6 +100,7 @@ setup( 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: 3 :: Only', 'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP :: Dynamic Content', diff --git a/tox.ini b/tox.ini index e0823dd9ac..8ead652d9d 100644 --- a/tox.ini +++ b/tox.ini @@ -22,7 +22,7 @@ passenv = DJANGO_SETTINGS_MODULE PYTHONPATH HOME DISPLAY OBJC_DISABLE_INITIALIZE setenv = PYTHONDONTWRITEBYTECODE=1 deps = - py{3,36,37}: -rtests/requirements/py3.txt + py{3,36,37,38}: -rtests/requirements/py3.txt postgres: -rtests/requirements/postgres.txt mysql: -rtests/requirements/mysql.txt oracle: -rtests/requirements/oracle.txt