summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author赖信涛 <laixintao@users.noreply.github.com>2020-03-19 00:11:10 +0800
committerGitHub <noreply@github.com>2020-03-18 09:11:10 -0700
commite9874e2f96c27e24aafbc54436465abd8f152f8a (patch)
treef6592402a2817628cebc848322f87db53fad9c16
parent61c81b05f50a073f62629bdcf8eb4317d7a2084c (diff)
python3.8: add travis test and setup.py class. (#1157)
-rw-r--r--.travis.yml1
-rw-r--r--changelog.rst5
-rw-r--r--setup.py1
-rw-r--r--tox.ini2
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