Skip to content

Commit a89b170

Browse files
committed
Drop 3.3
1 parent 1062283 commit a89b170

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ python:
77
- pypy2.7-6.0
88
- pypy3.5-6.0
99
- 2.7
10-
- 3.3 # probably irrelevant but so far supporting it has been free
1110
- 3.4
1211
- 3.5
1312
- 3.6

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.3-3.6), Python 2.7, and PyPy.
115+
Currently it supports Python 3 (testing on 3.4-3.7), 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

bench/benchmarks/benchmarks.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ def time_server_basic_get_with_realistic_headers():
4545
def _run_basic_get_repeatedly():
4646
from timeit import default_timer
4747
REPEAT = 10000
48-
while True:
48+
#while True:
49+
for _ in range(7):
4950
start = default_timer()
5051
for _ in range(REPEAT):
5152
time_server_basic_get_with_realistic_headers()

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.3+ (PyPy works great)
47+
* Requirements: Python 2.7 or Python 3.4+ (PyPy works great)
4848

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

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@
2626
"Programming Language :: Python :: 2",
2727
"Programming Language :: Python :: 2.7",
2828
"Programming Language :: Python :: 3",
29-
"Programming Language :: Python :: 3.3",
3029
"Programming Language :: Python :: 3.4",
3130
"Programming Language :: Python :: 3.5",
31+
"Programming Language :: Python :: 3.6",
32+
"Programming Language :: Python :: 3.7",
3233
"Topic :: Internet :: WWW/HTTP",
3334
"Topic :: System :: Networking",
3435
],

0 commit comments

Comments
 (0)