From e9874e2f96c27e24aafbc54436465abd8f152f8a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=96=E4=BF=A1=E6=B6=9B?= Date: Thu, 19 Mar 2020 00:11:10 +0800 Subject: python3.8: add travis test and setup.py class. (#1157) --- .travis.yml | 1 + changelog.rst | 5 ++--- setup.py | 1 + tox.ini | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index b0b89ac9..eddaf1f0 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,6 +7,7 @@ language: python python: - "3.6" - "3.7" + - "3.8" before_install: - which python diff --git a/changelog.rst b/changelog.rst index 59c4f1fd..9972583a 100644 --- a/changelog.rst +++ b/changelog.rst @@ -16,9 +16,8 @@ Bug fixes: Internal: --------- -* Drop Python3.4 support. (Thanks: `laixintao`_) -* Drop Python2.7 support. (Thanks: `laixintao`_) -* Drop Python3.5 support. (Thanks: `laixintao`_) +* Drop Python2.7, 3.4, 3.5 support. (Thanks: `laixintao`_) +* Support Python3.8. (Thanks: `laixintao`_) * Fix dead link in development guide. (Thanks: `BrownShibaDog`_) diff --git a/setup.py b/setup.py index 937c2740..3f523c2f 100644 --- a/setup.py +++ b/setup.py @@ -50,6 +50,7 @@ setup( "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Programming Language :: SQL", "Topic :: Database", "Topic :: Database :: Front-Ends", diff --git a/tox.ini b/tox.ini index ae55b2bf..c71025ff 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py36, py37 +envlist = py36, py37, py38 [testenv] deps = pytest>=2.7.0,<=3.0.7 mock>=1.0.1 -- cgit v1.2.3