From 3ee15f8a20e7cc3724c0cfec719031bb39ebd9f2 Mon Sep 17 00:00:00 2001 From: Djailla Date: Wed, 23 Oct 2019 00:57:22 +0200 Subject: [PATCH] Add support of python 3.8 --- .travis.yml | 4 +++- setup.py | 1 + tox.ini | 6 +++--- 3 files changed, 7 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 98eb22a16..451938721 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,9 @@ matrix: - python: 3.6 env: TOXENV=py36-crypto,py36-nocrypto,py36-contrib_crypto - python: 3.7 - env: TOXENV=lint,typing,py37-crypto,py37-nocrypto,py37-contrib_crypto + env: TOXENV=py37-crypto,py37-nocrypto,py37-contrib_crypto + - python: 3.8 + env: TOXENV=lint,typing,py38-crypto,py38-nocrypto,py38-contrib_crypto install: - pip install -U pip - pip install -U tox coveralls diff --git a/setup.py b/setup.py index 907ac5e2e..f17f89ab9 100755 --- a/setup.py +++ b/setup.py @@ -64,6 +64,7 @@ def get_version(package): "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", "Topic :: Utilities", ], python_requires=">=3, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", diff --git a/tox.ini b/tox.ini index 3434b3ae4..c9b1d9271 100644 --- a/tox.ini +++ b/tox.ini @@ -2,9 +2,9 @@ envlist = lint typing - py{35,36,37}-crypto - py{35,36,37}-contrib_crypto - py{35,36,37}-nocrypto + py{35,36,37,38}-crypto + py{35,36,37,38}-contrib_crypto + py{35,36,37,38}-nocrypto [testenv]