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
17 changes: 12 additions & 5 deletions providers/jdbc/docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -98,16 +98,23 @@ 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"``
========================================== =============================================================================
``jpype1`` ``>=1.4.0,!=1.7.0; python_version == "3.10" and sys_platform == "darwin" and platform_machine == "arm64"``
``jpype1`` ``>=1.4.0; python_version == "3.10" and (sys_platform != "darwin" or platform_machine != "arm64")``
``jpype1`` ``>=1.4.1,!=1.7.0; python_version == "3.11" and sys_platform == "darwin" and platform_machine == "arm64"``
``jpype1`` ``>=1.4.1; python_version == "3.11" and (sys_platform != "darwin" or platform_machine != "arm64")``
``jpype1`` ``>=1.5.0,!=1.7.0; python_version == "3.12" and sys_platform == "darwin" and platform_machine == "arm64"``
``jpype1`` ``>=1.5.0; python_version == "3.12" and (sys_platform != "darwin" or platform_machine != "arm64")``
``jpype1`` ``>=1.5.1,!=1.7.0; python_version == "3.13" and sys_platform == "darwin" and platform_machine == "arm64"``
``jpype1`` ``>=1.5.1; python_version == "3.13" and (sys_platform != "darwin" or platform_machine != "arm64")``
``jpype1`` ``>=1.7.0; python_version >= "3.14"``
========================================== ==========================================================================================================

Cross provider package dependencies
-----------------------------------
Expand Down
20 changes: 13 additions & 7 deletions providers/jdbc/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,19 @@ 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'",
# jpype1 lower bound depends on Python version — earliest release with
# prebuilt binary wheels for that interpreter.
# jpype1 1.7.0 stopped shipping macOS arm64 wheels; upstream plans to restore
# them in 1.7.1 (https://github.com/jpype-project/jpype/issues/1357).
"jpype1>=1.4.0,!=1.7.0; python_version == '3.10' and sys_platform == 'darwin' and platform_machine == 'arm64'",
"jpype1>=1.4.0; python_version == '3.10' and (sys_platform != 'darwin' or platform_machine != 'arm64')",
"jpype1>=1.4.1,!=1.7.0; python_version == '3.11' and sys_platform == 'darwin' and platform_machine == 'arm64'",
"jpype1>=1.4.1; python_version == '3.11' and (sys_platform != 'darwin' or platform_machine != 'arm64')",
"jpype1>=1.5.0,!=1.7.0; python_version == '3.12' and sys_platform == 'darwin' and platform_machine == 'arm64'",
"jpype1>=1.5.0; python_version == '3.12' and (sys_platform != 'darwin' or platform_machine != 'arm64')",
"jpype1>=1.5.1,!=1.7.0; python_version == '3.13' and sys_platform == 'darwin' and platform_machine == 'arm64'",
"jpype1>=1.5.1; python_version == '3.13' and (sys_platform != 'darwin' or platform_machine != 'arm64')",
"jpype1>=1.7.0; python_version >= '3.14'",
]

[dependency-groups]
Expand Down
Loading
Loading