Skip to content

Commit

Permalink
Relax the dependency bounds to newest compatible versions
Browse files Browse the repository at this point in the history
Relax the dependency bounds in `setup.py` to permit the newest versions
that are compatible with the current httpbin code, that is permit
the test suite to pass.
  • Loading branch information
mgorny committed Aug 1, 2023
1 parent 2ed10ab commit f67bf70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
packages=find_packages(),
include_package_data = True, # include files listed in MANIFEST.in
install_requires=[
'Flask<1.0.3', 'MarkupSafe<2.1', 'decorator', 'itsdangerous<2', 'brotlipy',
'raven[flask]', 'werkzeug==0.14.1', 'gevent', 'flasgger', 'jinja2==2.10'
'Flask<1.1', 'MarkupSafe<2.1', 'decorator', 'itsdangerous<2.1', 'brotlipy',
'raven[flask]', 'werkzeug<0.15', 'gevent', 'flasgger', 'jinja2<3.1'
],
)

0 comments on commit f67bf70

Please sign in to comment.