From db8f3a9b83d140ca582814f0aa6af24318c9cafc Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 28 Jun 2020 11:53:52 -0400 Subject: [PATCH 1/3] add py3.{7,8} support --- setup.py | 4 ++++ tox.ini | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0374e01..c51a55a 100644 --- a/setup.py +++ b/setup.py @@ -69,12 +69,16 @@ def get_message_catalogs(): "Topic :: Communications :: File Sharing", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: System :: Filesystems", + "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", + "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.1", "Programming Language :: Python :: 3.2", "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", ], ) diff --git a/tox.ini b/tox.ini index 7469812..0862e62 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27,py33,py34,py35,py36 +envlist = py27,py33,py34,py35,py36,py37,py38 [testenv] commands = python setup.py test From eb22a85510b1adc6abffcf8d03438675223eff63 Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 28 Jun 2020 11:58:21 -0400 Subject: [PATCH 2/3] travis: add python 3.{7,8} support --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index a601012..f474b48 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,11 @@ language: python dist: xenial -sudo: required python: - "2.7" - "3.6" - "3.7" - "3.7-dev" + - "3.8" - "3.8-dev" addons: From 211379781c532c4ae0563a652a8a9b97369ca8ce Mon Sep 17 00:00:00 2001 From: Rui Chen Date: Sun, 28 Jun 2020 12:06:41 -0400 Subject: [PATCH 3/3] travis: fix allow_failures syntax issue --- .travis.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index f474b48..e2e24d8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,9 +15,8 @@ addons: matrix: allow_failures: - python: - - "3.7-dev" - - "3.8-dev" + - python: "3.7-dev" + - python: "3.8-dev" install: - pip install --upgrade pip