Skip to content

Commit ba4454e

Browse files
authored
Drop Python 3.4 suppot, enable Python 3.8 tests (#156)
1 parent 6eac961 commit ba4454e

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.travis.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ matrix:
88
env: TOXENV=py27
99
- python: pypy
1010
env: TOXENV=pypy
11-
- python: 3.4
12-
env: TOXENV=py34
1311
- python: 3.5
1412
env: TOXENV=py35
1513
- python: 3.6
1614
env: TOXENV=py36
1715
- python: 3.7
1816
env: TOXENV=py37
17+
- python: 3.8
18+
env: TOXENV=py38
1919
- python: pypy3
2020
env: TOXENV=pypy3
2121
- python: 3.7
@@ -49,7 +49,7 @@ deploy:
4949
tags: true
5050
all_branches: true
5151
repo: scrapy/w3lib
52-
condition: "$TOXENV == py27"
52+
condition: "$TOXENV == py37"
5353

5454
cache:
5555
directories:

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This is a Python library of web-related functions, such as:
2727
Requirements
2828
============
2929

30-
Python 2.7 or Python 3.4+
30+
Python 2.7 or Python 3.5+
3131

3232
Install
3333
=======

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@
2121
'Programming Language :: Python :: 2',
2222
'Programming Language :: Python :: 2.7',
2323
'Programming Language :: Python :: 3',
24-
'Programming Language :: Python :: 3.4',
2524
'Programming Language :: Python :: 3.5',
2625
'Programming Language :: Python :: 3.6',
2726
'Programming Language :: Python :: 3.7',
27+
'Programming Language :: Python :: 3.8',
2828
'Programming Language :: Python :: Implementation :: CPython',
2929
'Programming Language :: Python :: Implementation :: PyPy',
3030
'Topic :: Internet :: WWW/HTTP',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

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

99
[testenv]
1010
deps =

0 commit comments

Comments
 (0)