python-hyper/fix-dependencies.patch
Tomáš Chvátal afd0919147 Accepting request 689405 from home:jayvdb:wpt
- Add pr-402-http20-enable-push-fix.patch from upstream
  to fix http20 connection initialisation
- Improve fix-dependencies.patch removing upper constraints
- Merge hyper executable into main package
- Remove bcond test
- Simplify test invocation
- Add missing test dependency 'futures' on Python 2.7
- Update to version 0.7.0+git88.18b629b:
  * Add a fix to make it possible to add window_manager to HTTP20Adapter.
  * Add support for brotli compression
  * Fix crash on getting unsupported content-encoding
  * fix HTTP/1.1 response body length
  * fix HTTP/1.1 response body length
  * fix some error
  * Add test function for length of the HTTP/1.1 response-body.
  * fix HEAD request body length
  * fix test_release (http2bin to nghttp2.org/httpbin)
- Initial spec for version 0.7.0+git88.18b629b, adding
  fix-test.patch to de-vendor the tests and
  fix-dependencies.patch to unpin dependencies

OBS-URL: https://build.opensuse.org/request/show/689405
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-hyper?expand=0&rev=1
2019-04-11 09:59:14 +00:00

8 lines
266 B
Diff

--- a/setup.py
+++ b/setup.py
@@ -79,3 +79,3 @@
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', 'brotlipy>=0.7.0'
],