8000 Add Python 3.8 support (#822) · RecentProgress/PyMySQL@9dcefe9 · GitHub
[go: up one dir, main page]

Skip to content

Commit 9dcefe9

Browse files
Djaillamethane
authored andcommitted
Add Python 3.8 support (PyMySQL#822)
1 parent ec8306b commit 9dcefe9

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ matrix:
1717
python: "3.6"
1818
- env:
1919
- DB=mariadb:10.1
20-
python: "pypy3.5"
20+
python: "pypy3"
2121
- env:
2222
- DB=mariadb:10.2
2323
python: "2.7"
2424
- env:
2525
- DB=mariadb:10.3
26-
python: "3.7-dev"
26+
python: "3.7"
2727
- env:
2828
- DB=mysql:5.5
2929
python: "3.5"
@@ -36,7 +36,7 @@ matrix:
3636
- env:
3737
- DB=mysql:8.0
3838
- TEST_AUTH=yes
39-
python: "3.7-dev"
39+
python: "3.8"
4040
- env:
4141
- DB=mysql:8.0
4242
- TEST_AUTH=yes

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
'Programming Language :: Python :: 3.5',
2929
'Programming Language :: Python :: 3.6',
3030
'Programming Language :: Python :: 3.7',
31+
'Programming Language :: Python :: 3.8',
3132
'Programming Language :: Python :: Implementation :: CPython',
3233
'Programming Language :: Python :: Implementation :: PyPy',
3334
'Intended Audience :: Developers',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27,py35,py36,py37,pypy,pypy3
2+
envlist = py{27,35,36,37,38,py,py3}
33

44
[testenv]
55
commands = pytest -v pymysql/tests/

0 commit comments

Comments
 (0)
0