Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
8 changes: 5 additions & 3 deletions providers/jdbc/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,14 +98,16 @@ Requirements

The minimum Apache Airflow version supported by this provider distribution is ``2.11.0``.

========================================== ==================
========================================== =============================================================================
PIP package Version required
========================================== ==================
========================================== =============================================================================
``apache-airflow`` ``>=2.11.0``
``apache-airflow-providers-common-compat`` ``>=1.14.0``
``apache-airflow-providers-common-sql`` ``>=1.32.0``
``jaydebeapi`` ``>=1.1.1``
========================================== ==================
``jpype1`` ``>=1.4.0,!=1.7.0; sys_platform == "darwin" and platform_machine == "arm64"``
``jpype1`` ``>=1.4.0; sys_platform != "darwin" or platform_machine != "arm64"``
========================================== =============================================================================

Cross provider package dependencies
-----------------------------------
Expand Down
7 changes: 7 additions & 0 deletions providers/jdbc/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,13 @@ dependencies = [
"apache-airflow-providers-common-compat>=1.14.0",
"apache-airflow-providers-common-sql>=1.32.0",
"jaydebeapi>=1.1.1",
# jpype1 1.7.0 stopped shipping prebuilt macOS arm64 wheels and requires compilation
# against a properly configured JDK on Apple Silicon, which breaks `uv sync` out of
# the box. Exclude only 1.7.0 on darwin-arm64 — upstream is planning to restore the
# wheels in 1.7.1 (see https://github.com/jpype-project/jpype/issues/1357). Other
# platforms (including macOS x86_64) still get all published versions.
"jpype1>=1.4.0,!=1.7.0; sys_platform == 'darwin' and platform_machine == 'arm64'",
"jpype1>=1.4.0; sys_platform != 'darwin' or platform_machine != 'arm64'",
Comment thread
potiuk marked this conversation as resolved.
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FYI also in parallel to Slack: Also fails now on Python 3.11+3.12+3.13+3.14, only 3.10 seem to be working

]

[dependency-groups]
Expand Down
Loading
Loading