Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove Python 3.12 exclusion for Apache Beam #41990

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions airflow/providers/apache/beam/provider.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,18 +61,17 @@ versions:

dependencies:
- apache-airflow>=2.8.0
# Apache Beam > 2.53.0 and pyarrow > 14.0.1 fix https://nvd.nist.gov/vuln/detail/CVE-2023-47248.
- apache-beam>=2.53.0
# Apache Beam 2.59.0 removes some problematic requests exclusions that were present in 2.58.*
# Limiting it to >= 2.59.0 will allow to speed up resolution of dependencies.
- apache-beam>=2.59.0
- pyarrow>=14.0.1

additional-extras:
- name: google
dependencies:
- apache-beam[gcp]

# Apache Beam currently does not support Python 3.12
# There is an issue tracking it https://github.com/apache/beam/issues/29149
excluded-python-versions: ['3.12']
excluded-python-versions: []

integrations:
- integration-name: Apache Beam
Expand Down
6 changes: 2 additions & 4 deletions generated/provider_dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,17 +76,15 @@
"apache.beam": {
"deps": [
"apache-airflow>=2.8.0",
"apache-beam>=2.53.0",
"apache-beam>=2.59.0",
"pyarrow>=14.0.1"
],
"devel-deps": [],
"plugins": [],
"cross-providers-deps": [
"google"
],
"excluded-python-versions": [
"3.12"
],
"excluded-python-versions": [],
"state": "ready"
},
"apache.cassandra": {
Expand Down
Loading