Skip to content

Commit f63a574

Browse files
authored
Merge pull request #1089 from ssbarnea/travis-py36
travis: remove py33 and added py36
2 parents 3ccfd1f + 567842b commit f63a574

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,17 @@ language: python
22

33
matrix:
44
include:
5+
# Based on https://docs.python.org/devguide/#status-of-python-branches
56
- python: 2.6
67
env: TOXENV=python2.6
78
- python: 2.7
89
env: TOXENV=python2.7
9-
- python: 3.3
10-
env: TOXENV=python3.3
1110
- python: 3.4
1211
env: TOXENV=python3.4
1312
- python: 3.5
1413
env: TOXENV=python3.5
14+
- python: 3.6
15+
env: TOXENV=python3.6
1516
- python: pypy
1617
env: TOXENV=pypy
1718
- python: 3.5

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ environment:
66

77
- PYTHON: "C:\\Python26"
88
- PYTHON: "C:\\Python27"
9-
- PYTHON: "C:\\Python33"
109
- PYTHON: "C:\\Python34"
1110
- PYTHON: "C:\\Python35"
11+
- PYTHON: "C:\\Python36"
1212
- PYTHON: "C:\\Python26-x64"
1313
- PYTHON: "C:\\Python27-x64"
14-
- PYTHON: "C:\\Python33-x64"
1514
- PYTHON: "C:\\Python34-x64"
1615
- PYTHON: "C:\\Python35-x64"
16+
- PYTHON: "C:\\Python36-x64"
1717

1818
install:
1919
# We need tox installed for the tests

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# env names must be a valid python binary name, unless they have a
33
# separate configuration
44
envlist =
5-
python{2.6,2.7,3.3,3.4,3.5}, pypy{,3}, crosspython{2,3}, docs
5+
python{2.6,2.7,3.4,3.5,3.6}, pypy{,3}, crosspython{2,3}, docs
66

77
[testenv]
88
deps =

0 commit comments

Comments
 (0)