potiuk commented on code in PR #46891:
URL: https://github.com/apache/airflow/pull/46891#discussion_r2211841088
##########
providers/apache/beam/pyproject.toml:
##########
@@ -57,20 +57,21 @@ requires-python = ">=3.10"
# After you modify the dependencies, and rebuild your Breeze CI image with
``breeze ci-image build``
dependencies = [
"apache-airflow>=2.10.0",
- 'apache-beam>=2.60.0',
- "pyarrow>=16.1.0",
- "numpy>=1.26.0",
-
+ 'apache-beam>=2.60.0; python_version < "3.13"',
+ "pyarrow>=16.1.0; python_version < '3.13'",
+ "numpy>=1.22.4; python_version<'3.11'",
+ "numpy>=1.23.2; python_version<'3.12' and python_version>='3.11'",
+ "numpy>=1.26.0; python_version>='3.12' and python_version < '3.13'",
Review Comment:
Nope. Beam is excluded from 3.13 for now. We should likely change some deps
here when work on it's compatibility.
--
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]