This is an automated email from the ASF dual-hosted git repository.
jrmccluskey pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git
The following commit(s) were added to refs/heads/master by this push:
new ad7d7bc973c Update Dataflow internal client test (#32471)
ad7d7bc973c is described below
commit ad7d7bc973ce60d0904b8367f9a19f1a761b82b6
Author: Jack McCluskey <[email protected]>
AuthorDate: Tue Sep 17 10:28:11 2024 -0400
Update Dataflow internal client test (#32471)
* Update Dataflow internal client test
* update to python 3.9
* restore 3.8 to versions list
* restore unit test
---
sdks/python/apache_beam/runners/dataflow/internal/apiclient.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sdks/python/apache_beam/runners/dataflow/internal/apiclient.py
b/sdks/python/apache_beam/runners/dataflow/internal/apiclient.py
index 97996bd6cbb..20cae582f32 100644
--- a/sdks/python/apache_beam/runners/dataflow/internal/apiclient.py
+++ b/sdks/python/apache_beam/runners/dataflow/internal/apiclient.py
@@ -82,7 +82,7 @@ _FNAPI_ENVIRONMENT_MAJOR_VERSION = '8'
_LOGGER = logging.getLogger(__name__)
-_PYTHON_VERSIONS_SUPPORTED_BY_DATAFLOW = ['3.9', '3.10', '3.11', '3.12']
+_PYTHON_VERSIONS_SUPPORTED_BY_DATAFLOW = ['3.8', '3.9', '3.10', '3.11', '3.12']
class Environment(object):