From 18de784680acf70b96cfd9ce36a689346df14b34 Mon Sep 17 00:00:00 2001 From: Thales Menato Date: Tue, 27 Sep 2022 11:30:17 -0400 Subject: [PATCH] feat: add pants310 to GCF --- .../pants/backend/google_cloud_function/python/target_types.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/python/pants/backend/google_cloud_function/python/target_types.py b/src/python/pants/backend/google_cloud_function/python/target_types.py index 62b2d9a622b..1b665a41619 100644 --- a/src/python/pants/backend/google_cloud_function/python/target_types.py +++ b/src/python/pants/backend/google_cloud_function/python/target_types.py @@ -201,6 +201,7 @@ class PythonGoogleCloudFunctionRuntimes(Enum): PYTHON_37 = "python37" PYTHON_38 = "python38" PYTHON_39 = "python39" + PYTHON_310 = "python310" class PythonGoogleCloudFunctionRuntime(StringField):