1
0
Fork 0

python3.8: add travis test and setup.py class. (#1157)

This commit is contained in:
赖信涛 2020-03-19 00:11:10 +08:00 committed by GitHub
parent 61c81b05f5
commit e9874e2f96
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 5 additions and 4 deletions

View File

@ -7,6 +7,7 @@ language: python
python:
- "3.6"
- "3.7"
- "3.8"
before_install:
- which python

View File

@ -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`_)

View File

@ -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",

View File

@ -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