This is an automated email from the ASF dual-hosted git repository.
potiuk pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new 35fde2f481a Change the runtime for Google Cloud Function system test
(#57623)
35fde2f481a is described below
commit 35fde2f481a5cbbb672328d97e5b1d116de28243
Author: M. Olcay Tercanlı <[email protected]>
AuthorDate: Mon Nov 3 01:40:49 2025 +0100
Change the runtime for Google Cloud Function system test (#57623)
---
.../tests/system/google/cloud/cloud_functions/example_functions.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/providers/google/tests/system/google/cloud/cloud_functions/example_functions.py
b/providers/google/tests/system/google/cloud/cloud_functions/example_functions.py
index e3911997fae..e8ff7d27fb6 100644
---
a/providers/google/tests/system/google/cloud/cloud_functions/example_functions.py
+++
b/providers/google/tests/system/google/cloud/cloud_functions/example_functions.py
@@ -47,7 +47,7 @@ SHORT_FUNCTION_NAME = "hello_world"
FUNCTION_NAME =
f"projects/{PROJECT_ID}/locations/{LOCATION}/functions/{SHORT_FUNCTION_NAME}"
SOURCE_ARCHIVE_URL =
"gs://airflow-system-tests-resources/cloud-functions/main_function.zip"
ENTRYPOINT = "hello_world"
-RUNTIME = "python38"
+RUNTIME = "python312"
SOURCE_UPLOAD_URL = ""
ZIP_PATH = ""