From e0ee9f5d7e2912951aa91f829f3545c732d59766 Mon Sep 17 00:00:00 2001 From: Ernesto Vargas Date: Wed, 13 Feb 2019 21:00:46 -0600 Subject: [PATCH 1/2] added python 3.5, 3.6, 3.7 tests --- .travis.yml | 3 +++ setup.py | 7 +++++++ 2 files changed, 10 insertions(+) diff --git a/.travis.yml b/.travis.yml index b0853f5..b252390 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,6 +2,9 @@ language: python python: - "2.6" - "2.7" + - "3.5" + - "3.6" + - "3.7" install: - "pip install --use-mirrors coverage coveralls" - "pip install --use-mirrors -r test_requirements.txt" diff --git a/setup.py b/setup.py index f6ccadf..828a42f 100644 --- a/setup.py +++ b/setup.py @@ -20,4 +20,11 @@ license='GPLv2', keywords='pylint celery plugin', zip_safe=False, # https://github.com/landscapeio/prospector/issues/18#issuecomment-49857277 + classifiers=( + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + ) ) From 475056bbff53b5c5d415ac2c15fc467d79733782 Mon Sep 17 00:00:00 2001 From: Ernesto Vargas Date: Wed, 13 Feb 2019 21:46:22 -0600 Subject: [PATCH 2/2] update 3.7-dev --- .travis.yml | 10 +++++----- setup.py | 2 +- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index b252390..c5b7b35 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,12 +4,12 @@ python: - "2.7" - "3.5" - "3.6" - - "3.7" + - "3.7-dev" install: - - "pip install --use-mirrors coverage coveralls" - - "pip install --use-mirrors -r test_requirements.txt" - - "pip install --use-mirrors git+https://github.com/landscapeio/pylint-plugin-utils.git@develop" - - "pip install --use-mirrors --editable ." + - "pip install coverage coveralls" + - "pip install -r test_requirements.txt" + - "pip install git+https://github.com/landscapeio/pylint-plugin-utils.git@develop" + - "pip install --editable ." script: coverage run test/test_func.py after_success: diff --git a/setup.py b/setup.py index 828a42f..6ce6845 100644 --- a/setup.py +++ b/setup.py @@ -25,6 +25,6 @@ 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', - 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.7-dev', ) )