From aedc64e8bc5199e5ffab931100ef96e231331820 Mon Sep 17 00:00:00 2001 From: Sergey Petrov Date: Sat, 26 Oct 2019 03:04:48 +0300 Subject: [PATCH] Add Python 3.8 as supported --- .drone.jsonnet | 2 ++ README.md | 4 ++-- setup.py | 1 + tox.ini | 2 +- 4 files changed, 6 insertions(+), 3 deletions(-) diff --git a/.drone.jsonnet b/.drone.jsonnet index 3f56600..9e1df48 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -38,6 +38,7 @@ local Pipeline(py_version) = { Pipeline("3.5"), Pipeline("3.6"), Pipeline("3.7"), + Pipeline("3.8"), { kind: "pipeline", name: "upload release", @@ -49,6 +50,7 @@ local Pipeline(py_version) = { "tests (Python 3.5)", "tests (Python 3.6)", "tests (Python 3.7)", + "tests (Python 3.8)", ], steps: [ { diff --git a/README.md b/README.md index 6d5d517..4b87217 100644 --- a/README.md +++ b/README.md @@ -64,8 +64,8 @@ pytest You can use `tox` for running tests with all supported Python versions: ```shell -pyenv install 3.5.6; pyenv install 3.6.7; pyenv install 3.7.1 -pyenv local 3.7.1 3.6.7 3.5.6 +pyenv install 3.5.6; pyenv install 3.6.7; pyenv install 3.7.1; pyenv install 3.8.0 +pyenv local 3.8.0 3.7.1 3.6.7 3.5.6 pip install tox tox ``` diff --git a/setup.py b/setup.py index 2b4ffdc..288b625 100755 --- a/setup.py +++ b/setup.py @@ -27,6 +27,7 @@ setup( 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Topic :: Software Development :: Libraries', ], description='A python library for interacting with the Apple Push Notification Service via HTTP/2 protocol' diff --git a/tox.ini b/tox.ini index f2b7bfc..7526f03 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py35, py36, py37 +envlist = py35, py36, py37, py38 [testenv] commands = pytest {posargs}