Add Python 3.8 support
This commit is contained in:
parent
4374386c12
commit
0052584d08
|
@ -7,6 +7,7 @@ python:
|
|||
- 3.5
|
||||
- 3.6
|
||||
- 3.7
|
||||
- 3.8
|
||||
- pypy
|
||||
- pypy3
|
||||
env:
|
||||
|
|
|
@ -5,7 +5,7 @@ Changelog
|
|||
0.40 (unreleased)
|
||||
-----------------
|
||||
|
||||
- Nothing changed yet.
|
||||
- Add Pyhton 3.8 support.
|
||||
|
||||
|
||||
0.39 (2019-06-06)
|
||||
|
|
|
@ -8,6 +8,7 @@ environment:
|
|||
- PYTHON: "C:\\Python35"
|
||||
- PYTHON: "C:\\Python36"
|
||||
- PYTHON: "C:\\Python37"
|
||||
- PYTHON: "C:\\Python38"
|
||||
|
||||
init:
|
||||
- "echo %PYTHON%"
|
||||
|
|
1
setup.py
1
setup.py
|
@ -48,6 +48,7 @@ setup(
|
|||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
'Programming Language :: Python :: 3.7',
|
||||
'Programming Language :: Python :: 3.8',
|
||||
'Programming Language :: Python :: Implementation :: CPython',
|
||||
'Programming Language :: Python :: Implementation :: PyPy',
|
||||
],
|
||||
|
|
Loading…
Reference in New Issue