Skip to content

Commit 2a386c0

Browse files
author
Stefan Majoor
committed
Lessen restrictions on requirements, to allow more options for running it in different environments.
1 parent fc2f620 commit 2a386c0

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

setup.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@
3434
'Topic :: Software Development :: Libraries :: Python Modules'
3535
],
3636
install_requires=[
37-
'python-dotenv == 0.21.1',
38-
'aio-pika == 9.3.1',
39-
'hypercorn == 0.14.3',
40-
'quart == 0.11.2',
41-
'frozendict == 2.4.6',
42-
'aiohttp == 3.11.10',
43-
'Jinja2 == 3.0.3',
44-
'werkzeug == 2.1.2',
37+
'python-dotenv >= 0.21.1',
38+
'aio-pika >= 9.3.1',
39+
'hypercorn >= 0.14.3',
40+
'quart >= 0.11.2',
41+
'frozendict >= 2.4.6',
42+
'aiohttp >= 3.11.10',
43+
'Jinja2 >= 3.0.3',
44+
'werkzeug >= 2.1.2',
4545
],
4646
test_suite='tests'
4747
)

0 commit comments

Comments
 (0)