From d387e8f685e0f81abd365388cdc94c5c43844f99 Mon Sep 17 00:00:00 2001 From: Marc Hernandez Cabot Date: Tue, 10 Dec 2019 16:43:57 +0100 Subject: [PATCH 1/2] add new python envs to tox and create gitignore --- .gitignore | 4 ++++ .travis.yml | 4 ++++ tox.ini | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0358150 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +.coverage +.tox +*egg-info +*.pyc diff --git a/.travis.yml b/.travis.yml index 6cdc049..dd1b29e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,10 @@ matrix: env: TOXENV=pypy3 - python: 3.6 env: TOXENV=py36 + - python: 3.7 + env: TOXENV=py37 + - python: 3.8 + env: TOXENV=py38 install: - | diff --git a/tox.ini b/tox.ini index 1d1cd89..1254727 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py27, pypy, py35, py36, pypy3 +envlist = py27, pypy, py35, py36, py37, py38, pypy3 [testenv] deps = From faa5ef672ae1fa611996a377065eba66da997e3a Mon Sep 17 00:00:00 2001 From: Marc Hernandez Cabot Date: Tue, 17 Dec 2019 12:03:11 +0100 Subject: [PATCH 2/2] update README.md and setup.py --- README.rst | 2 +- setup.py | 6 ++++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index ab0b708..52cdd3e 100644 --- a/README.rst +++ b/README.rst @@ -20,7 +20,7 @@ Note: Queuelib isn't thread-safe. Requirements ============ -* Python 2.7 or Python 3.3 +* Python 2.7 or Python 3.5+ * no external library requirements Installation diff --git a/setup.py b/setup.py index 8f5ef59..8db4235 100644 --- a/setup.py +++ b/setup.py @@ -19,8 +19,10 @@ 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - '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', + 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', ]