Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

travis: remove py33 and added py36 #1089

Merged
merged 1 commit into from Oct 6, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 3 additions & 2 deletions .travis.yml
Expand Up @@ -2,16 +2,17 @@ language: python

matrix:
include:
# Based on https://docs.python.org/devguide/#status-of-python-branches
- python: 2.6
env: TOXENV=python2.6
- python: 2.7
env: TOXENV=python2.7
- python: 3.3
env: TOXENV=python3.3
- python: 3.4
env: TOXENV=python3.4
- python: 3.5
env: TOXENV=python3.5
- python: 3.6
env: TOXENV=python3.6
- python: pypy
env: TOXENV=pypy
- python: 3.5
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Expand Up @@ -6,14 +6,14 @@ environment:

- PYTHON: "C:\\Python26"
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python33"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python26-x64"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python33-x64"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"

install:
# We need tox installed for the tests
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Expand Up @@ -2,7 +2,7 @@
# env names must be a valid python binary name, unless they have a
# separate configuration
envlist =
python{2.6,2.7,3.3,3.4,3.5}, pypy{,3}, crosspython{2,3}, docs
python{2.6,2.7,3.4,3.5,3.6}, pypy{,3}, crosspython{2,3}, docs

[testenv]
deps =
Expand Down