tvalentyn commented on code in PR #66952:
URL: https://github.com/apache/airflow/pull/66952#discussion_r3554630320
##########
providers/apache/beam/pyproject.toml:
##########
@@ -61,7 +61,11 @@ requires-python = ">=3.10"
dependencies = [
"apache-airflow>=2.11.0",
"apache-airflow-providers-common-compat>=1.12.0",
- "apache-beam>=2.69.0",
+ "apache-beam>=2.72.0",
+ # For Python>=3.11, the apache-beam package depends on envoy-data-plane.
+ # Currently, there is only one compatible version(1.0.3) of
envoy-data-plane available for these
+ # Python versions, and it explicitly requires a prerelease version of
betterproto.
+ "betterproto==2.0.0b6; python_version >= '3.11'",
Review Comment:
I am not sure why we need this particular dep here -- is it because beam has
a python version constraint on envoy-data-plane?
If so, consider the following instead, which matches the beam constraint.
```suggestion
"envoy-data-plane>=1.0.3,<2; python_version >= '3.11'",
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]