Skip to content

Commit a93808b

Browse files
committed
Drop Python 3.4, add Python 3.8
1 parent c60ef4c commit a93808b

File tree

4 files changed

+13
-20
lines changed

4 files changed

+13
-20
lines changed

.travis.yml

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,15 @@
11
sudo: false
22
language: python
33
matrix:
4-
include:
5-
- os: linux
6-
python: "2.7"
7-
- os: linux
8-
python: "3.4"
9-
- os: linux
10-
python: "3.5"
11-
- os: linux
12-
python: "3.6"
13-
- os: linux
14-
dist: xenial
15-
python: "3.7"
16-
- os: linux
17-
python: "pypy"
184
- os: osx
195
language: generic
6+
- python: pypy
7+
- python: 2.7
8+
- python: 3.5
9+
- python: 3.6
10+
- python: 3.7
11+
- python: 3.8
12+
- python: 3.9-dev
2013
install:
2114
- scripts/install-on-travis.sh
2215
script:

README.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ copy/pasting these scripts around I decided to bring the main features together
3030
in a properly documented Python package and upload it to the `Python Package
3131
Index`_.
3232

33-
The `rotate-backups` package is currently tested on cPython 2.7, 3.4, 3.5, 3.6,
34-
3.7 and PyPy (2.7). It's tested on Linux and Mac OS X and may work on other
35-
unixes but definitely won't work on Windows right now.
33+
The `rotate-backups` package is currently tested on cPython 2.7, 3.5+ and PyPy
34+
(2.7). It's tested on Linux and Mac OS X and may work on other unixes but
35+
definitely won't work on Windows right now.
3636

3737
.. contents::
3838
:local:

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Setup script for the `rotate-backups' package.
44
#
55
# Author: Peter Odding <peter@peterodding.com>
6-
# Last Change: February 11, 2020
6+
# Last Change: February 18, 2020
77
# URL: https://github.com/xolox/python-rotate-backups
88

99
"""
@@ -87,10 +87,10 @@ def get_absolute_path(*args):
8787
'Programming Language :: Python :: 2',
8888
'Programming Language :: Python :: 2.7',
8989
'Programming Language :: Python :: 3',
90-
'Programming Language :: Python :: 3.4',
9190
'Programming Language :: Python :: 3.5',
9291
'Programming Language :: Python :: 3.6',
9392
'Programming Language :: Python :: 3.7',
93+
'Programming Language :: Python :: 3.8',
9494
'Programming Language :: Python :: Implementation :: CPython',
9595
'Programming Language :: Python :: Implementation :: PyPy',
9696
'Topic :: Software Development :: Libraries :: Python Modules',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# directory.
55

66
[tox]
7-
envlist = py27, py34, py35, py36, py37, pypy
7+
envlist = py27, py35, py36, py37, py38, pypy
88

99
[testenv]
1010
deps = -rrequirements-tests.txt

0 commit comments

Comments
 (0)