From 79e31f0c030142421d4b103ab05840f506b6427c Mon Sep 17 00:00:00 2001 From: Dan <14043624+delivrance@users.noreply.github.com> Date: Wed, 27 Nov 2019 14:11:38 +0100 Subject: [PATCH] Add Python 3.8 to CI builds --- .appveyor.yml | 2 +- .travis.yml | 2 +- setup.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.appveyor.yml b/.appveyor.yml index 8d041e6..e5920a9 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -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 diff --git a/.travis.yml b/.travis.yml index 6e17d3d..3bd0be4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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" diff --git a/setup.py b/setup.py index 856a8f1..3247e03 100644 --- a/setup.py +++ b/setup.py @@ -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",