From f387c3996553d6d71691dd55716732ffe6925aba Mon Sep 17 00:00:00 2001 From: sudobangbang Date: Tue, 23 Apr 2024 15:36:26 -0700 Subject: [PATCH] Downgrade to apache-beam==2.48.0 `apache-beam==2.53.0` has the python3.8 requirement it seems. Do we think this would work well or should I just go back to getting a different python version running on CentOS? https://github.com/apache/beam/blob/v2.53.0/sdks/python/setup.py#L220 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 47a2619..f991b18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,7 +20,7 @@ keywords=["virtualenv", "dependencies"] authors=[{ name = "Nathan Zimmerman", email = "npzimmerman@gmail.com"}] license= { text = "MIT" } requires-python=">=3.7" -dependencies = ["apache-beam==2.53.0", "pyspark==3.5.1", "psutil==5.9.8"] +dependencies = ["apache-beam==2.48.0", "pyspark==3.5.1", "psutil==5.9.8"] dynamic = ["version", "readme"] [project.urls]