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
5 changes: 3 additions & 2 deletions generated/provider_dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -854,10 +854,11 @@
"microsoft-kiota-http>=1.3.0,!=1.3.4",
"microsoft-kiota-serialization-json==1.0.0",
"microsoft-kiota-serialization-text==1.0.0",
"msal-extensions>=1.1.0",
"msgraph-core>=1.0.0,!=1.1.8"
],
"devel-deps": [
"pywinrm>=0.4"
"pywinrm>=0.5.0"
],
"plugins": [],
"cross-providers-deps": [
Expand Down Expand Up @@ -899,7 +900,7 @@
"microsoft.winrm": {
"deps": [
"apache-airflow>=2.9.0",
"pywinrm>=0.4"
"pywinrm>=0.5.0"
],
"devel-deps": [],
"plugins": [],
Expand Down
1 change: 1 addition & 0 deletions providers/microsoft/azure/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ PIP package Version required
``microsoft-kiota-serialization-json`` ``==1.0.0``
``microsoft-kiota-serialization-text`` ``==1.0.0``
``microsoft-kiota-abstractions`` ``<1.4.0``
``msal-extensions`` ``>=1.1.0``
====================================== ===================

Cross provider package dependencies
Expand Down
3 changes: 2 additions & 1 deletion providers/microsoft/azure/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,7 @@ dependencies = [
# microsoft-kiota-abstractions 1.4.0 breaks MyPy static checks on main
# see https://github.com/apache/airflow/issues/43036
"microsoft-kiota-abstractions<1.4.0",
"msal-extensions>=1.1.0",
]

# The optional dependencies should be modified in place in the generated file
Expand Down Expand Up @@ -119,7 +120,7 @@ dev = [
"apache-airflow-providers-oracle",
"apache-airflow-providers-sftp",
# Additional devel dependencies (do not remove this line and add extra development dependencies)
"pywinrm>=0.4",
"pywinrm>=0.5.0",
]

[tool.uv.sources]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -486,12 +486,13 @@ def get_provider_info():
"microsoft-kiota-serialization-json==1.0.0",
"microsoft-kiota-serialization-text==1.0.0",
"microsoft-kiota-abstractions<1.4.0",
"msal-extensions>=1.1.0",
],
"optional-dependencies": {
"amazon": ["apache-airflow-providers-amazon"],
"common.compat": ["apache-airflow-providers-common-compat"],
"oracle": ["apache-airflow-providers-oracle"],
"sftp": ["apache-airflow-providers-sftp"],
},
"devel-dependencies": ["pywinrm>=0.4"],
"devel-dependencies": ["pywinrm>=0.5.0"],
}
2 changes: 1 addition & 1 deletion providers/microsoft/winrm/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Requirements
PIP package Version required
================== ==================
``apache-airflow`` ``>=2.9.0``
``pywinrm`` ``>=0.4``
``pywinrm`` ``>=0.5.0``
================== ==================

The changelog for the provider package can be found in the
Expand Down
2 changes: 1 addition & 1 deletion providers/microsoft/winrm/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ requires-python = "~=3.9"
# After you modify the dependencies, and rebuild your Breeze CI image with ``breeze ci-image build``
dependencies = [
"apache-airflow>=2.9.0",
"pywinrm>=0.4",
"pywinrm>=0.5.0",
]

[dependency-groups]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,6 @@ def get_provider_info():
"python-modules": ["airflow.providers.microsoft.winrm.hooks.winrm"],
}
],
"dependencies": ["apache-airflow>=2.9.0", "pywinrm>=0.4"],
"dependencies": ["apache-airflow>=2.9.0", "pywinrm>=0.5.0"],
"devel-dependencies": [],
}