Skip to content

Commit f9f1483

Browse files
pgjonessethmlarson
authored andcommitted
Drop Python 3.3 and add 3.7 (#170)
3.3 was end of life in September 2017. This helps ensure that the CI passes.
1 parent ec8c671 commit f9f1483

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ sudo: required
44

55
python:
66
- "2.7"
7-
- "3.3"
87
- "3.4"
98
- "3.5"
109
- "3.6"
10+
- "3.7"
1111
- pypy
1212

1313
install:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@
4949
'Programming Language :: Python :: 2',
5050
'Programming Language :: Python :: 2.7',
5151
'Programming Language :: Python :: 3',
52-
'Programming Language :: Python :: 3.3',
5352
'Programming Language :: Python :: 3.4',
5453
'Programming Language :: Python :: 3.5',
5554
'Programming Language :: Python :: 3.6',
55+
'Programming Language :: Python :: 3.7',
5656
'Programming Language :: Python :: Implementation :: CPython',
5757
],
5858
)

tox.ini

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py27, py33, py34, py35, py36, pypy, lint
2+
envlist = py27, py34, py35, py36, py37, pypy, lint
33

44
[testenv]
55
deps= -r{toxinidir}/test_requirements.txt
@@ -12,7 +12,7 @@ commands=
1212
commands= py.test hpack {toxinidir}/test/
1313

1414
[testenv:lint]
15-
basepython=python3.5
15+
basepython=python3.7
1616
deps = flake8==3.5.0
1717
commands = flake8 --max-complexity 10 hpack test utils
1818

@@ -23,5 +23,5 @@ deps=
2323
commands= py.test {toxinidir}/bench/ --benchmark-only --benchmark-group-by=name --benchmark-autosave --benchmark-compare --benchmark-min-rounds=500000
2424

2525
[testenv:create_test_output]
26-
basepython=python3.5
26+
basepython=python3.7
2727
commands = python {toxinidir}/utils/create_test_output.py {posargs}

0 commit comments

Comments
 (0)