Skip to content

Commit

Permalink
Add Python 3.7 to supported versions
Browse files Browse the repository at this point in the history
  • Loading branch information
xolox committed Aug 2, 2019
1 parent 2eec43b commit dc4c5d3
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
15 changes: 9 additions & 6 deletions .travis.yml
@@ -1,11 +1,14 @@
sudo: true
language: python
python:
- "2.7"
- "3.4"
- "3.5"
- "3.6"
- "pypy"
matrix:
include:
- python: 2.7
- python: 3.4
- python: 3.5
- python: 3.6
- python: 3.7
dist: xenial
- python: pypy
install:
- scripts/install-on-travis.sh
script:
Expand Down
3 changes: 2 additions & 1 deletion README.rst
Expand Up @@ -12,7 +12,8 @@ Linux_ systems. Supported backup destinations include local disks (possibly
encrypted using LUKS_) and remote systems that are running an SSH_ server or
`rsync daemon`_. Each backup produces a timestamped snapshot and these
snapshots are rotated according to a rotation scheme that you can configure.
The package is currently tested on cPython 2.7, 3.4, 3.5, 3.6 and PyPy (2.7).
The package is currently tested on cPython 2.7, 3.4, 3.5, 3.6, 3.7 and PyPy
(2.7).

.. contents::
:depth: 3
Expand Down
1 change: 1 addition & 0 deletions setup.py
Expand Up @@ -85,6 +85,7 @@ def get_absolute_path(*args):
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py34, py35, py36, pypy
envlist = py27, py34, py35, py36, py37, pypy

[testenv]
deps = -rrequirements-tests.txt
Expand Down

0 comments on commit dc4c5d3

Please sign in to comment.