Skip to content

Commit dc4c5d3

Browse files
committed
Add Python 3.7 to supported versions
1 parent 2eec43b commit dc4c5d3

4 files changed

Lines changed: 13 additions & 8 deletions

File tree

.travis.yml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
sudo: true
22
language: python
3-
python:
4-
- "2.7"
5-
- "3.4"
6-
- "3.5"
7-
- "3.6"
8-
- "pypy"
3+
matrix:
4+
include:
5+
- python: 2.7
6+
- python: 3.4
7+
- python: 3.5
8+
- python: 3.6
9+
- python: 3.7
10+
dist: xenial
11+
- python: pypy
912
install:
1013
- scripts/install-on-travis.sh
1114
script:

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ Linux_ systems. Supported backup destinations include local disks (possibly
1212
encrypted using LUKS_) and remote systems that are running an SSH_ server or
1313
`rsync daemon`_. Each backup produces a timestamped snapshot and these
1414
snapshots are rotated according to a rotation scheme that you can configure.
15-
The package is currently tested on cPython 2.7, 3.4, 3.5, 3.6 and PyPy (2.7).
15+
The package is currently tested on cPython 2.7, 3.4, 3.5, 3.6, 3.7 and PyPy
16+
(2.7).
1617

1718
.. contents::
1819
:depth: 3

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ def get_absolute_path(*args):
8585
'Programming Language :: Python :: 3.4',
8686
'Programming Language :: Python :: 3.5',
8787
'Programming Language :: Python :: 3.6',
88+
'Programming Language :: Python :: 3.7',
8889
'Programming Language :: Python :: Implementation :: CPython',
8990
'Programming Language :: Python :: Implementation :: PyPy',
9091
'Topic :: Software Development',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py34, py35, py36, pypy
2+
envlist = py27, py34, py35, py36, py37, pypy
33

44
[testenv]
55
deps = -rrequirements-tests.txt

0 commit comments

Comments
 (0)