Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
restrict version to 3.7
Browse files Browse the repository at this point in the history
  • Loading branch information
clbarnes committed Jul 15, 2019
1 parent 7ad054d commit 208f76d
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
25 changes: 12 additions & 13 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
language: python
dist: xenial
python:
- 3.5
- 3.7

stages:
- test
Expand Down Expand Up @@ -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-*
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.",
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 208f76d

Please sign in to comment.