Skip to content

Commit 936263c

Browse files
committed
Update the supported Python versions
Python 3.4 has reached end of life whereas 3.7 and 3.8 have been released.
1 parent 68e32db commit 936263c

File tree

5 files changed

+5
-6
lines changed

5 files changed

+5
-6
lines changed

.travis.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ python:
77
- pypy
88
- pypy3
99
- 2.7
10-
- 3.4
1110
- 3.5
1211
- 3.6
1312
- 3.7
14-
- 3.8-dev
13+
- 3.8
1514

1615
before_install:
1716
- pip install -U pip setuptools wheel

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ library.
112112
It has a test suite with 100.0% coverage for both statements and
113113
branches.
114114

115-
Currently it supports Python 3 (testing on 3.4-3.7), Python 2.7, and PyPy.
115+
Currently it supports Python 3 (testing on 3.5-3.8), Python 2.7, and PyPy.
116116
(Originally it had a Cython wrapper for `http-parser
117117
<https://github.com/nodejs/http-parser>`_ and a beautiful nested state
118118
machine implemented with ``yield from`` to postprocess the output. But

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ whatever. But h11 makes it much easier to implement something like
4444
Vital statistics
4545
----------------
4646

47-
* Requirements: Python 2.7 or Python 3.4+ (PyPy works great)
47+
* Requirements: Python 2.7 or Python 3.5+ (PyPy works great)
4848

4949
* Install: ``pip install h11``
5050

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,10 @@
2626
"Programming Language :: Python :: 2",
2727
"Programming Language :: Python :: 2.7",
2828
"Programming Language :: Python :: 3",
29-
"Programming Language :: Python :: 3.4",
3029
"Programming Language :: Python :: 3.5",
3130
"Programming Language :: Python :: 3.6",
3231
"Programming Language :: Python :: 3.7",
32+
"Programming Language :: Python :: 3.8",
3333
"Topic :: Internet :: WWW/HTTP",
3434
"Topic :: System :: Networking",
3535
],

tox.ini

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

44
[testenv]
55
deps= -r{toxinidir}/test-requirements.txt

0 commit comments

Comments
 (0)