functions-framework 3.10.0__tar.gz → 3.10.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {functions_framework-3.10.0 → functions_framework-3.10.2}/PKG-INFO +4 -3
- {functions_framework-3.10.0 → functions_framework-3.10.2}/pyproject.toml +4 -3
- {functions_framework-3.10.0 → functions_framework-3.10.2}/setup.py +5 -2
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework.egg-info/PKG-INFO +4 -3
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework.egg-info/requires.txt +7 -2
- {functions_framework-3.10.0 → functions_framework-3.10.2}/LICENSE +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/README.md +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/setup.cfg +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/__init__.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/__main__.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/_cli.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/_function_registry.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/_http/__init__.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/_http/asgi.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/_http/flask.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/_http/gunicorn.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/_typed_event.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/aio/__init__.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/background_event.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/event_conversion.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/exceptions.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/execution_id.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/py.typed +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/request_timeout.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework.egg-info/SOURCES.txt +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework.egg-info/dependency_links.txt +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework.egg-info/entry_points.txt +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework.egg-info/namespace_packages.txt +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework.egg-info/top_level.txt +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/google/__init__.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/google/cloud/__init__.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/google/cloud/functions/__init__.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/google/cloud/functions/context.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/google/cloud/functions_v1/__init__.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/google/cloud/functions_v1/context.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/google/cloud/functions_v1beta2/__init__.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/src/google/cloud/functions_v1beta2/context.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_aio.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_asgi.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_cli.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_cloud_event_functions.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_convert.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_decorator_functions.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_execution_id.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_execution_id_async.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_function_registry.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_functions.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_http.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_main.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_samples.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_timeouts.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_typed_event_functions.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_typing.py +0 -0
- {functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_view_functions.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: functions-framework
|
|
3
|
-
Version: 3.10.
|
|
3
|
+
Version: 3.10.2
|
|
4
4
|
Summary: An open source FaaS (Function as a service) framework for writing portable Python functions -- brought to you by the Google Cloud Functions team.
|
|
5
5
|
Home-page: https://github.com/googlecloudplatform/functions-framework-python
|
|
6
6
|
Author: Google LLC
|
|
@@ -24,9 +24,10 @@ Requires-Dist: flask<4.0,>=2.0
|
|
|
24
24
|
Requires-Dist: click<9.0,>=7.0
|
|
25
25
|
Requires-Dist: watchdog>=1.0.0
|
|
26
26
|
Requires-Dist: gunicorn>=22.0.0; platform_system != "Windows"
|
|
27
|
-
Requires-Dist: cloudevents<=1.12.0,>=1.
|
|
27
|
+
Requires-Dist: cloudevents<=1.12.0,>=1.11.0
|
|
28
28
|
Requires-Dist: Werkzeug<4.0.0,>=0.14
|
|
29
|
-
Requires-Dist: starlette<1.0.0,>=0.37.0; python_version >= "3.8"
|
|
29
|
+
Requires-Dist: starlette<1.0.0,>=0.37.0; python_version >= "3.8" and python_version < "3.10"
|
|
30
|
+
Requires-Dist: starlette<2.0.0,>=1.0.1; python_version >= "3.10"
|
|
30
31
|
Requires-Dist: uvicorn<1.0.0,>=0.18.0; python_version >= "3.8"
|
|
31
32
|
Requires-Dist: uvicorn-worker<1.0.0,>=0.2.0; python_version >= "3.8"
|
|
32
33
|
Dynamic: author
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "functions-framework"
|
|
3
|
-
version = "3.10.
|
|
3
|
+
version = "3.10.2"
|
|
4
4
|
description = "An open source FaaS (Function as a service) framework for writing portable Python functions -- brought to you by the Google Cloud Functions team."
|
|
5
5
|
readme = "README.md"
|
|
6
6
|
requires-python = ">=3.7, <4"
|
|
@@ -27,9 +27,10 @@ dependencies = [
|
|
|
27
27
|
"click>=7.0,<9.0",
|
|
28
28
|
"watchdog>=1.0.0",
|
|
29
29
|
"gunicorn>=22.0.0; platform_system!='Windows'",
|
|
30
|
-
"cloudevents>=1.
|
|
30
|
+
"cloudevents>=1.11.0,<=1.12.0", # Must support python 3.8
|
|
31
31
|
"Werkzeug>=0.14,<4.0.0",
|
|
32
|
-
"starlette>=0.37.0,<1.0.0; python_version>='3.8'",
|
|
32
|
+
"starlette>=0.37.0,<1.0.0; python_version>='3.8' and python_version<'3.10'",
|
|
33
|
+
"starlette>=1.0.1,<2.0.0; python_version>='3.10'",
|
|
33
34
|
"uvicorn>=0.18.0,<1.0.0; python_version>='3.8'",
|
|
34
35
|
"uvicorn-worker>=0.2.0,<1.0.0; python_version>='3.8'",
|
|
35
36
|
]
|
|
@@ -25,7 +25,7 @@ with open(path.join(here, "README.md"), encoding="utf-8") as f:
|
|
|
25
25
|
|
|
26
26
|
setup(
|
|
27
27
|
name="functions-framework",
|
|
28
|
-
version="3.10.
|
|
28
|
+
version="3.10.2",
|
|
29
29
|
description="An open source FaaS (Function as a service) framework for writing portable Python functions -- brought to you by the Google Cloud Functions team.",
|
|
30
30
|
long_description=long_description,
|
|
31
31
|
long_description_content_type="text/markdown",
|
|
@@ -58,7 +58,10 @@ setup(
|
|
|
58
58
|
"Werkzeug>=0.14,<4.0.0",
|
|
59
59
|
],
|
|
60
60
|
extras_require={
|
|
61
|
-
"async": [
|
|
61
|
+
"async": [
|
|
62
|
+
"starlette>=0.37.0,<1.0.0; python_version<'3.10'",
|
|
63
|
+
"starlette>=1.0.1,<2.0.0; python_version>='3.10'",
|
|
64
|
+
],
|
|
62
65
|
},
|
|
63
66
|
entry_points={
|
|
64
67
|
"console_scripts": [
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: functions-framework
|
|
3
|
-
Version: 3.10.
|
|
3
|
+
Version: 3.10.2
|
|
4
4
|
Summary: An open source FaaS (Function as a service) framework for writing portable Python functions -- brought to you by the Google Cloud Functions team.
|
|
5
5
|
Home-page: https://github.com/googlecloudplatform/functions-framework-python
|
|
6
6
|
Author: Google LLC
|
|
@@ -24,9 +24,10 @@ Requires-Dist: flask<4.0,>=2.0
|
|
|
24
24
|
Requires-Dist: click<9.0,>=7.0
|
|
25
25
|
Requires-Dist: watchdog>=1.0.0
|
|
26
26
|
Requires-Dist: gunicorn>=22.0.0; platform_system != "Windows"
|
|
27
|
-
Requires-Dist: cloudevents<=1.12.0,>=1.
|
|
27
|
+
Requires-Dist: cloudevents<=1.12.0,>=1.11.0
|
|
28
28
|
Requires-Dist: Werkzeug<4.0.0,>=0.14
|
|
29
|
-
Requires-Dist: starlette<1.0.0,>=0.37.0; python_version >= "3.8"
|
|
29
|
+
Requires-Dist: starlette<1.0.0,>=0.37.0; python_version >= "3.8" and python_version < "3.10"
|
|
30
|
+
Requires-Dist: starlette<2.0.0,>=1.0.1; python_version >= "3.10"
|
|
30
31
|
Requires-Dist: uvicorn<1.0.0,>=0.18.0; python_version >= "3.8"
|
|
31
32
|
Requires-Dist: uvicorn-worker<1.0.0,>=0.2.0; python_version >= "3.8"
|
|
32
33
|
Dynamic: author
|
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
flask<4.0,>=2.0
|
|
2
2
|
click<9.0,>=7.0
|
|
3
3
|
watchdog>=1.0.0
|
|
4
|
-
cloudevents<=1.12.0,>=1.
|
|
4
|
+
cloudevents<=1.12.0,>=1.11.0
|
|
5
5
|
Werkzeug<4.0.0,>=0.14
|
|
6
6
|
|
|
7
7
|
[:platform_system != "Windows"]
|
|
8
8
|
gunicorn>=22.0.0
|
|
9
9
|
|
|
10
|
+
[:python_version >= "3.10"]
|
|
11
|
+
starlette<2.0.0,>=1.0.1
|
|
12
|
+
|
|
10
13
|
[:python_version >= "3.8"]
|
|
11
|
-
starlette<1.0.0,>=0.37.0
|
|
12
14
|
uvicorn<1.0.0,>=0.18.0
|
|
13
15
|
uvicorn-worker<1.0.0,>=0.2.0
|
|
16
|
+
|
|
17
|
+
[:python_version >= "3.8" and python_version < "3.10"]
|
|
18
|
+
starlette<1.0.0,>=0.37.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/__init__.py
RENAMED
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/__main__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/_http/__init__.py
RENAMED
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/_http/asgi.py
RENAMED
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/_http/flask.py
RENAMED
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/_http/gunicorn.py
RENAMED
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/_typed_event.py
RENAMED
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/aio/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/exceptions.py
RENAMED
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/execution_id.py
RENAMED
|
File without changes
|
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/src/functions_framework/request_timeout.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/src/google/cloud/functions/__init__.py
RENAMED
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/src/google/cloud/functions/context.py
RENAMED
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/src/google/cloud/functions_v1/__init__.py
RENAMED
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/src/google/cloud/functions_v1/context.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_cloud_event_functions.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{functions_framework-3.10.0 → functions_framework-3.10.2}/tests/test_typed_event_functions.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|