functions-framework 3.7.0__tar.gz → 3.8.0__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.
Files changed (48) hide show
  1. {functions_framework-3.7.0 → functions_framework-3.8.0}/PKG-INFO +1 -1
  2. {functions_framework-3.7.0 → functions_framework-3.8.0}/setup.py +1 -1
  3. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework/__init__.py +1 -1
  4. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework.egg-info/PKG-INFO +1 -1
  5. {functions_framework-3.7.0 → functions_framework-3.8.0}/LICENSE +0 -0
  6. {functions_framework-3.7.0 → functions_framework-3.8.0}/README.md +0 -0
  7. {functions_framework-3.7.0 → functions_framework-3.8.0}/setup.cfg +0 -0
  8. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework/__main__.py +0 -0
  9. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework/_cli.py +0 -0
  10. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework/_function_registry.py +0 -0
  11. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework/_http/__init__.py +0 -0
  12. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework/_http/flask.py +0 -0
  13. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework/_http/gunicorn.py +0 -0
  14. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework/_typed_event.py +0 -0
  15. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework/background_event.py +0 -0
  16. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework/event_conversion.py +0 -0
  17. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework/exceptions.py +0 -0
  18. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework/execution_id.py +0 -0
  19. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework/py.typed +0 -0
  20. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework/request_timeout.py +0 -0
  21. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework.egg-info/SOURCES.txt +0 -0
  22. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework.egg-info/dependency_links.txt +0 -0
  23. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework.egg-info/entry_points.txt +0 -0
  24. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework.egg-info/namespace_packages.txt +0 -0
  25. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework.egg-info/requires.txt +0 -0
  26. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/functions_framework.egg-info/top_level.txt +0 -0
  27. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/google/__init__.py +0 -0
  28. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/google/cloud/__init__.py +0 -0
  29. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/google/cloud/functions/__init__.py +0 -0
  30. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/google/cloud/functions/context.py +0 -0
  31. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/google/cloud/functions_v1/__init__.py +0 -0
  32. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/google/cloud/functions_v1/context.py +0 -0
  33. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/google/cloud/functions_v1beta2/__init__.py +0 -0
  34. {functions_framework-3.7.0 → functions_framework-3.8.0}/src/google/cloud/functions_v1beta2/context.py +0 -0
  35. {functions_framework-3.7.0 → functions_framework-3.8.0}/tests/test_cli.py +0 -0
  36. {functions_framework-3.7.0 → functions_framework-3.8.0}/tests/test_cloud_event_functions.py +0 -0
  37. {functions_framework-3.7.0 → functions_framework-3.8.0}/tests/test_convert.py +0 -0
  38. {functions_framework-3.7.0 → functions_framework-3.8.0}/tests/test_decorator_functions.py +0 -0
  39. {functions_framework-3.7.0 → functions_framework-3.8.0}/tests/test_execution_id.py +0 -0
  40. {functions_framework-3.7.0 → functions_framework-3.8.0}/tests/test_function_registry.py +0 -0
  41. {functions_framework-3.7.0 → functions_framework-3.8.0}/tests/test_functions.py +0 -0
  42. {functions_framework-3.7.0 → functions_framework-3.8.0}/tests/test_http.py +0 -0
  43. {functions_framework-3.7.0 → functions_framework-3.8.0}/tests/test_main.py +0 -0
  44. {functions_framework-3.7.0 → functions_framework-3.8.0}/tests/test_samples.py +0 -0
  45. {functions_framework-3.7.0 → functions_framework-3.8.0}/tests/test_timeouts.py +0 -0
  46. {functions_framework-3.7.0 → functions_framework-3.8.0}/tests/test_typed_event_functions.py +0 -0
  47. {functions_framework-3.7.0 → functions_framework-3.8.0}/tests/test_typing.py +0 -0
  48. {functions_framework-3.7.0 → functions_framework-3.8.0}/tests/test_view_functions.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: functions-framework
3
- Version: 3.7.0
3
+ Version: 3.8.0
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
@@ -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.7.0",
28
+ version="3.8.0",
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",
@@ -437,7 +437,7 @@ def _configure_app_execution_id_logging():
437
437
  "stream": "ext://functions_framework.execution_id.logging_stream",
438
438
  },
439
439
  },
440
- "root": {"level": "INFO", "handlers": ["wsgi"]},
440
+ "root": {"level": "WARNING", "handlers": ["wsgi"]},
441
441
  }
442
442
  )
443
443
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: functions-framework
3
- Version: 3.7.0
3
+ Version: 3.8.0
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