Skip to content

Commit 8d74a7b

Browse files
authored
fix: Correct cloudevents dependency to allow 1.11.0 (#405)
Python 3.7 is no longer supported so don't allow versions prior to 1.11.0 but allow 1.11.0 as Python 3.8 is still supported by the framework.
1 parent 2cf966f commit 8d74a7b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ dependencies = [
2727
"click>=7.0,<9.0",
2828
"watchdog>=1.0.0",
2929
"gunicorn>=22.0.0; platform_system!='Windows'",
30-
"cloudevents>=1.12.0,<=1.12.0", # Must support python 3.7
30+
"cloudevents>=1.11.0,<=1.12.0", # Must support python 3.8
3131
"Werkzeug>=0.14,<4.0.0",
3232
"starlette>=0.37.0,<1.0.0; python_version>='3.8'",
3333
"uvicorn>=0.18.0,<1.0.0; python_version>='3.8'",

0 commit comments

Comments
 (0)