Add Python 3.8 to CI builds

This commit is contained in:
Dan 2019-11-27 14:11:38 +01:00
parent 147f089d4b
commit 79e31f0c03
3 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
environment:
CIBW_BUILD: cp34-* cp35-* cp36-* cp37-*
CIBW_BUILD: cp34-* cp35-* cp36-* cp37-* cp38-*
CIBW_BUILD_VERBOSITY: 3
CIBW_TEST_COMMAND: cd {project} && python setup.py test -q

View File

@ -4,7 +4,7 @@ python: "3.7"
env:
global:
- CIBW_BUILD="cp34-* cp35-* cp36-* cp37-*"
- CIBW_BUILD="cp34-* cp35-* cp36-* cp37-* cp38-*"
- CIBW_BUILD_VERBOSITY=3
- CIBW_TEST_COMMAND="cd {project} && python3 setup.py test -q"
- BUILD_OUTPUT_PATH="$(uname | perl -ne 'print lc')-tgcrypto-wheels"

View File

@ -45,6 +45,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",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",