Skip to content

Commit bec4406

Browse files
committed
Test py36 instead of py34
1 parent 5da199b commit bec4406

4 files changed

Lines changed: 14 additions & 15 deletions

File tree

.travis.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,19 @@
11
language: python
2-
python: 3.5
3-
env: # These should match the tox env list
4-
- TOXENV=py27
5-
- TOXENV=py34
6-
- TOXENV=py35
7-
- TOXENV=pypy
2+
sudo: false
3+
matrix:
4+
include: # These should match the tox env list
5+
- env: TOXENV=py27
6+
- env: TOXENV=py35
7+
python: 3.5
8+
- env: TOXENV=py36
9+
python: 3.6
10+
- env: TOXENV=pypy
811
install: pip install coveralls tox
912
script: tox
1013
before_install:
1114
# Install git-lfs for a test
1215
- './get-git-lfs.py && export PATH="/tmp/git-lfs:$PATH"'
13-
after_success:
14-
- coveralls
15-
sudo: false
16+
after_success: coveralls
1617
cache:
1718
directories:
1819
- $HOME/.cache/pip

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
environment:
22
matrix:
33
- TOXENV: py27
4-
- TOXENV: py35
4+
- TOXENV: py36
55

66
install:
7-
- "SET PATH=C:\\Python35;C:\\Python35\\Scripts;%PATH%"
7+
- "SET PATH=C:\\Python36;C:\\Python36\\Scripts;%PATH%"
88
- pip install tox
99

1010
# Not a C# project

get-git-lfs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env python3.4
1+
#!/usr/bin/env python3
22
"""This is a script to install git-lfs to a tempdir for use in tests"""
33
import io
44
import os.path

setup.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@
1414
classifiers=[
1515
'License :: OSI Approved :: MIT License',
1616
'Programming Language :: Python :: 2',
17-
'Programming Language :: Python :: 2.6',
1817
'Programming Language :: Python :: 2.7',
1918
'Programming Language :: Python :: 3',
20-
'Programming Language :: Python :: 3.4',
2119
'Programming Language :: Python :: 3.5',
20+
'Programming Language :: Python :: 3.6',
2221
'Programming Language :: Python :: Implementation :: CPython',
2322
'Programming Language :: Python :: Implementation :: PyPy',
2423
],
@@ -27,7 +26,6 @@
2726
install_requires=[
2827
# quickfix to prevent pep8 conflicts
2928
'flake8!=2.5.3',
30-
'argparse',
3129
'autopep8>=1.1',
3230
'pyyaml',
3331
'simplejson',

0 commit comments

Comments
 (0)