Skip to content

Commit 1c07f33

Browse files
authored
support python 3.8 (dbcli#837)
1 parent 6e66172 commit 1c07f33

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.travis.yml

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ language: python
22
python:
33
- "3.6"
44
- "3.7"
5+
- "3.8"
56

67
matrix:
78
include:

changelog.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Bug Fixes:
1616

1717
Internal:
1818
---------
19-
* deprecate python versions 2.7, 3.4, 3.5
19+
* deprecate python versions 2.7, 3.4, 3.5; support python 3.8
2020

2121
1.20.1
2222
======

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,7 @@ def run_tests(self):
102102
'Programming Language :: Python :: 3',
103103
'Programming Language :: Python :: 3.6',
104104
'Programming Language :: Python :: 3.7',
105+
'Programming Language :: Python :: 3.8',
105106
'Programming Language :: SQL',
106107
'Topic :: Database',
107108
'Topic :: Database :: Front-Ends',

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36, py37
2+
envlist = py36, py37, py38
33

44
[testenv]
55
deps = pytest

0 commit comments

Comments
 (0)