From 3c54692964ae723c2ebd6de16c8da647870aca7e Mon Sep 17 00:00:00 2001 From: Axel Haustant Date: Mon, 20 Aug 2018 16:57:23 +0200 Subject: [PATCH 1/2] Expose Python3.6 and Python 3.7 compatibility and remove Python 3.3 --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 37eb8da0..5a259e61 100755 --- a/setup.py +++ b/setup.py @@ -58,8 +58,9 @@ 'Intended Audience :: Developers', 'Operating System :: OS Independent', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Topic :: Database'] ) From 8ec3f5b7d6619da484a9bab1c6b281b62f5006b5 Mon Sep 17 00:00:00 2001 From: Axel Haustant Date: Mon, 20 Aug 2018 17:38:49 +0200 Subject: [PATCH 2/2] Try to upgrade tested python versions --- .travis.yml | 6 ++++-- tox.ini | 4 +--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7c46a5cd..b1fd9439 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,10 +1,12 @@ sudo: required -dist: trusty +dist: xenial language: python python: - '2.7' + - '3.4' + - '3.5' - '3.6' - - nightly + - '3.7' addons: hosts: - riak-test diff --git a/tox.ini b/tox.ini index f411b799..5b9d1056 100644 --- a/tox.ini +++ b/tox.ini @@ -3,12 +3,10 @@ # test suite on all supported python versions. [tox] -envlist = py2, py3 +envlist = py{27,34,35,36,37} [testenv] -install_command = pip install --upgrade {packages} commands = {envpython} setup.py test deps = - pip pytz passenv = RUN_* SKIP_* RIAK_*