Skip to content

Commit 99b4789

Browse files
committed
Test py36 instead of py34
1 parent 0a93f3b commit 99b4789

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

.travis.yml

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
language: python
2-
python: 3.5
32
dist: trusty
43
sudo: required
54
services:
65
- docker
7-
env: # These should match the tox env list
8-
- TOXENV=py27
9-
- TOXENV=py34
10-
- TOXENV=py35
11-
- TOXENV=pypy
12-
- TOXENV=py27 LATEST_GIT=1
6+
matrix:
7+
include:
8+
- env: TOXENV=py27
9+
- env: TOXENV=py27 LATEST_GIT=1
10+
- env: TOXENV=py35
11+
python: 3.5
12+
- env: TOXENV=py36
13+
python: 3.6
14+
- env: TOXENV=pypy
1315
install: pip install coveralls tox
1416
script: tox
1517
before_install:
@@ -22,11 +24,8 @@ before_install:
2224
export PATH="/tmp/git/bin:$PATH"
2325
fi
2426
- git --version
25-
- |
26-
./get-swift.sh
27-
export PATH="/tmp/swift/usr/bin:$PATH"
28-
after_success:
29-
- coveralls
27+
- './get-swift.sh && export PATH="/tmp/swift/usr/bin:$PATH"'
28+
after_success: coveralls
3029
cache:
3130
directories:
3231
- $HOME/.cache/pip

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ environment:
44
TOX_TESTENV_PASSENV: COVERAGE_IGNORE_WINDOWS
55
matrix:
66
- TOXENV: py27
7-
- TOXENV: py35
7+
- TOXENV: py36
88

99
install:
10-
- "SET PATH=C:\\Python35;C:\\Python35\\Scripts;%PATH%"
10+
- "SET PATH=C:\\Python36;C:\\Python36\\Scripts;%PATH%"
1111
- pip install tox virtualenv --upgrade
1212
- "mkdir -p C:\\Temp"
1313
- "SET TMPDIR=C:\\Temp"

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@
2020
'Programming Language :: Python :: 2',
2121
'Programming Language :: Python :: 2.7',
2222
'Programming Language :: Python :: 3',
23-
'Programming Language :: Python :: 3.4',
2423
'Programming Language :: Python :: 3.5',
24+
'Programming Language :: Python :: 3.6',
2525
'Programming Language :: Python :: Implementation :: CPython',
2626
'Programming Language :: Python :: Implementation :: PyPy',
2727
],

0 commit comments

Comments
 (0)