From 208f76d6fe867cf1fa5e1916b6bf1d052ba053d8 Mon Sep 17 00:00:00 2001 From: Chris Barnes Date: Mon, 15 Jul 2019 14:35:38 -0400 Subject: [PATCH] restrict version to 3.7 --- .travis.yml | 25 ++++++++++++------------- setup.py | 4 ++-- tox.ini | 7 ++++--- 3 files changed, 18 insertions(+), 18 deletions(-) diff --git a/.travis.yml b/.travis.yml index 37066db..5bc2256 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,7 @@ language: python +dist: xenial python: - - 3.5 + - 3.7 stages: - test @@ -36,20 +37,18 @@ deploy_template: &deploy_template jobs: include: - - <<: *test_template - python: 3.5 - - <<: *test_template - python: 3.6 +# - <<: *test_template +# python: 3.5 +# - <<: *test_template +# python: 3.6 - <<: *test_template python: 3.7 - dist: xenial - sudo: required - - <<: *deploy_template - env: - - CIBW_BUILD=cp35-* - - <<: *deploy_template - env: - - CIBW_BUILD=cp36-* +# - <<: *deploy_template +# env: +# - CIBW_BUILD=cp35-* +# - <<: *deploy_template +# env: +# - CIBW_BUILD=cp36-* - <<: *deploy_template env: - CIBW_BUILD=cp37-* diff --git a/setup.py b/setup.py index 5e46379..48117a2 100644 --- a/setup.py +++ b/setup.py @@ -42,8 +42,8 @@ "License :: OSI Approved :: MIT License", "Natural Language :: English", "Programming Language :: Rust", - "Programming Language :: Python :: 3.5", - "Programming Language :: Python :: 3.6", + # "Programming Language :: Python :: 3.5", + # "Programming Language :: Python :: 3.6", "Programming Language :: Python :: 3.7", ], description="Python wrapper around rust-n5.", diff --git a/tox.ini b/tox.ini index 0b25a75..e3a9e16 100644 --- a/tox.ini +++ b/tox.ini @@ -1,11 +1,12 @@ [tox] -envlist = py35, py36, py37 +;envlist = py35, py36, py37 +envlist = py37 [travis] python = 3.7: py37 - 3.6: py36 - 3.5: py35 +; 3.6: py36 +; 3.5: py35 [flake8] max-line-length = 98