Skip to content

Commit 9d7ba03

Browse files
committed
Upgrade lower bounds for Python 3.10 compatibility
1 parent 7b1e94d commit 9d7ba03

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

setup.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,22 @@ def read_version(package):
2323
'clickclick>=1.2,<21',
2424
'jsonschema>=2.5.1,<5',
2525
'PyYAML>=5.1,<7',
26-
'requests>=2.9.1,<3',
26+
'requests>=2.27,<3',
2727
'inflection>=0.3.1,<0.6',
28-
'werkzeug>=1.0,<2.3',
28+
'werkzeug>=2.0,<2.3',
2929
'importlib-metadata>=1 ; python_version<"3.8"',
3030
'packaging>=20',
3131
]
3232

3333
swagger_ui_require = 'swagger-ui-bundle>=0.0.2,<0.1'
3434

3535
flask_require = [
36-
'flask>=1.0.4,<2.3',
36+
'flask>=2,<2.3',
3737
'itsdangerous>=0.24',
3838
]
3939
aiohttp_require = [
40-
'aiohttp>=2.3.10,<4',
41-
'aiohttp-jinja2>=0.14.0,<2',
42-
'MarkupSafe>=0.23',
40+
'aiohttp>=3.2,<4',
41+
'aiohttp-jinja2>=1.3,<2',
4342
]
4443

4544
tests_require = [

0 commit comments

Comments
 (0)