Skip to content
This repository was archived by the owner on Oct 9, 2021. It is now read-only.

Commit ed80370

Browse files
committed
Support for Python 3.7
1 parent 4622643 commit ed80370

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.appveyor.yml

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ environment:
77
- PYTHON: C:\Python34-x64
88
- PYTHON: C:\Python35-x64
99
- PYTHON: C:\Python36-x64
10+
- PYTHON: C:\Python37-x64
1011

1112
init:
1213
- SET PATH=%PYTHON%;%PATH%

.travis.yml

+10-13
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,17 @@
11
language: python
2-
python:
3-
- "2.6"
4-
- "2.7"
5-
- "3.3"
6-
- "3.4"
7-
- "3.5"
8-
- "3.6"
9-
# command to install dependencies
2+
matrix:
3+
include:
4+
- python: 2.6
5+
- python: 2.7
6+
- python: 3.4
7+
- python: 3.5
8+
- python: 3.6
9+
- python: 3.7
10+
dist: xenial
11+
sudo: true
1012
install:
11-
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then travis_retry pip install unittest2; fi
1213
- if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then travis_retry pip install coveralls; fi
1314
- travis_retry pip install -r dev-requirements.txt
14-
# use new travis-ci container-based infrastructure
15-
sudo: false
16-
# command to run tests
1715
script: nosetests
18-
# command to run after tests
1916
after_success:
2017
- if [[ $TRAVIS_PYTHON_VERSION != '2.6' ]]; then coveralls; fi

dev-requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
PyYAML<=3.13
22
coverage==4.5.3
3-
mock<=2.0.0
3+
mock==2.0.0; python_version <= "2.7"
44
nose==1.3.7
55
nose-capturestderr==1.2
66
nose-exclude==0.5.0
77
nose-watch==0.9.2
88
testfixtures==6.8.2
9+
unittest2==1.1.0; python_version == "2.6"

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@
4040
'Programming Language :: Python :: 3.4',
4141
'Programming Language :: Python :: 3.5',
4242
'Programming Language :: Python :: 3.6',
43+
'Programming Language :: Python :: 3.7',
4344
'Topic :: Text Editors',
4445
],
4546
)

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26, py27, py33, py34, py35, py36
2+
envlist = py26, py27, py33, py34, py35, py36, py37
33
[testenv]
44
deps =
55
-rdev-requirements.txt

0 commit comments

Comments
 (0)