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
2 changes: 1 addition & 1 deletion generated/provider_dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@
"apache-airflow-providers-common-sql>=1.23.0",
"apache-airflow>=2.9.0",
"methodtools>=0.4.7",
"pymssql>=2.3.0"
"pymssql>=2.3.0,!=2.3.3"
],
"devel-deps": [],
"plugins": [],
Expand Down
8 changes: 4 additions & 4 deletions providers/microsoft/mssql/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@ The package supports the following python versions: 3.9,3.10,3.11,3.12
Requirements
------------

======================================= ==================
======================================= ===================
PIP package Version required
======================================= ==================
======================================= ===================
``apache-airflow`` ``>=2.9.0``
``apache-airflow-providers-common-sql`` ``>=1.23.0``
``pymssql`` ``>=2.3.0``
``pymssql`` ``>=2.3.0,!=2.3.3``
``methodtools`` ``>=0.4.7``
======================================= ==================
======================================= ===================

Cross provider package dependencies
-----------------------------------
Expand Down
8 changes: 7 additions & 1 deletion providers/microsoft/mssql/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,13 @@ requires-python = "~=3.9"
dependencies = [
"apache-airflow>=2.9.0",
"apache-airflow-providers-common-sql>=1.23.0",
"pymssql>=2.3.0",
# pymssql 2.3.3 release to PyPI has been broken on 1st of April 2025
# and it is not possible to install it on Linux. We need to exclude it
# and either it will be fixed in the next release or we will need to
# remove the exclusion if it is fixed and missing packages are uploaded
# to PyPI.
# Issue: https://github.com/pymssql/pymssql/issues/927
"pymssql>=2.3.0,!=2.3.3",
# The methodtools dependency can be removed with min airflow version >=2.9.1
# as it was added in https://github.com/apache/airflow/pull/37757
"methodtools>=0.4.7",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ def get_provider_info():
"dependencies": [
"apache-airflow>=2.9.0",
"apache-airflow-providers-common-sql>=1.23.0",
"pymssql>=2.3.0",
"pymssql>=2.3.0,!=2.3.3",
"methodtools>=0.4.7",
],
"optional-dependencies": {"openlineage": ["apache-airflow-providers-openlineage"]},
Expand Down
Loading