mirror of
https://git.freebsd.org/ports.git
synced 2025-06-14 17:20:29 -04:00
Latest PyPI released (0.7.0) fails several tests that have been resolved in branch:development but not yet released. - Add patches to make hyper work with h2 > 3.0 [1] Changelog: https://github.com/Lukasa/hyper/blob/development/HISTORY.rst [1] https://github.com/Lukasa/hyper/pull/402
11 lines
471 B
Python
11 lines
471 B
Python
--- setup.py.orig 2019-05-17 11:59:54 UTC
|
|
+++ setup.py
|
|
@@ -77,7 +77,7 @@ setup(
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
],
|
|
install_requires=[
|
|
- 'h2>=2.4,<3.0,!=2.5.0', 'hyperframe>=3.2,<4.0', 'rfc3986>=1.1.0,<2.0', 'brotlipy>=0.7.0,<1.0'
|
|
+ 'h2>=2.4,!=2.5.0', 'hyperframe>=3.2', 'rfc3986>=1.1.0,<2.0', 'brotlipy>=0.7.0,<1.0'
|
|
],
|
|
tests_require=['pytest', 'requests', 'mock'],
|
|
cmdclass={'test': PyTest},
|