Skip to content

Commit a7d9ff0

Browse files
felixonmarspgjones
authored andcommitted
Require newer h11
The test suite currently doesn't run with older h11: ``` ==================================== ERRORS ==================================== _____________________ ERROR collecting test/test_server.py _____________________ test/test_server.py:289: in <module> ) -> List[h11.Event]: E AttributeError: module 'h11' has no attribute 'Event' ``` Although `h11.Event` is only used in the test suite, I think we shouldn't declare support for versions we cannot test with.
1 parent b722026 commit a7d9ff0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@
4747
'Programming Language :: Python :: Implementation :: PyPy',
4848
],
4949
install_requires=[
50-
'h11>=0.9.0,<1',
50+
'h11>=0.13.0,<1',
5151
],
5252
)

0 commit comments

Comments
 (0)