Skip to content

Commit adc6e25

Browse files
committed
update test requirements and Python versions
1 parent b718776 commit adc6e25

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.travis.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ matrix:
2828
- python: "3.7"
2929
dist: xenial
3030
env: TOXENV=py37
31+
- python: "3.8"
32+
dist: xenial
33+
env: TOXENV=py38
3134
- python: "pypy-5.3.1"
3235
dist: trusty
3336
env: TOXENV=pypy

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,18 +58,19 @@
5858
'Programming Language :: Python :: 2',
5959
'Programming Language :: Python :: 2.7',
6060
'Programming Language :: Python :: 3',
61-
'Programming Language :: Python :: 3.3',
6261
'Programming Language :: Python :: 3.4',
6362
'Programming Language :: Python :: 3.5',
6463
'Programming Language :: Python :: 3.6',
64+
'Programming Language :: Python :: 3.7',
65+
'Programming Language :: Python :: 3.8',
6566
'Programming Language :: Python :: Implementation :: CPython',
6667
'Programming Language :: Python :: Implementation :: PyPy',
6768
],
6869
install_requires=[
6970
'hyperframe>=5.2.0, <6',
70-
'hpack>=2.3,<4',
71+
'hpack>=3.0,<4',
7172
],
7273
extras_require={
73-
':python_version == "2.7" or python_version == "3.3"': ['enum34>=1.1.6, <2'],
74+
':python_version == "2.7"': ['enum34>=1.1.6, <2'],
7475
}
7576
)

test_requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
pytest==4.6.5 # rq.filter: < 5
2-
pytest-cov==2.7.1
2+
pytest-cov==2.8.1
3+
pytest-xdist==1.31.0
34
coverage==4.5.4
4-
pytest-xdist==1.29.0
55
hypothesis

tox.ini

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

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

0 commit comments

Comments
 (0)