python-httpbin/fix-setup-py.patch
Matej Cepl 7a3966f616 Accepting request 969571 from home:bnavigator:branches:devel:languages:python:flask
- Truncate werkzeug.patch as Flask changed their behavior back to
  returning relative URLs.
- Update fix-setup-py.patch accordingly
- Update _service file (rerun modifies the archive, but keeps same
  tag)

OBS-URL: https://build.opensuse.org/request/show/969571
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-httpbin?expand=0&rev=20
2022-04-12 23:11:11 +00:00

15 lines
677 B
Diff

Index: python-httpbin-0.7.0+git20181107.f8ec666/setup.py
===================================================================
--- python-httpbin-0.7.0+git20181107.f8ec666.orig/setup.py
+++ python-httpbin-0.7.0+git20181107.f8ec666/setup.py
@@ -35,7 +35,7 @@ setup(
packages=find_packages(),
include_package_data = True, # include files listed in MANIFEST.in
install_requires=[
- 'Flask', 'MarkupSafe', 'decorator', 'itsdangerous', 'six', 'brotlipy',
- 'raven[flask]', 'werkzeug>=0.14.1', 'gevent', 'flasgger'
+ 'Flask>=2.1', 'MarkupSafe', 'decorator', 'itsdangerous', 'six', 'brotli',
+ 'werkzeug>=2.0', 'gevent', 'flasgger'
],
)