Skip to content

Commit 3310b86

Browse files
authored
Avoid 1.1.8 version of msgraph-core (#45044)
The 1.1.8 version of msgraph-core is buggy - importing some basic classes causes import error "ABCMeta" is not subscriptable. We are removing the version from azure provider dependencies hoping that it will be fixed in the next version. microsoftgraph/msgraph-sdk-python-core#781
1 parent 09d8a80 commit 3310b86

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

generated/provider_dependencies.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -838,7 +838,7 @@
838838
"microsoft-kiota-http>=1.3.0,!=1.3.4",
839839
"microsoft-kiota-serialization-json==1.0.0",
840840
"microsoft-kiota-serialization-text==1.0.0",
841-
"msgraph-core>=1.0.0"
841+
"msgraph-core>=1.0.0,!=1.1.8"
842842
],
843843
"devel-deps": [
844844
"pywinrm>=0.4"

providers/src/airflow/providers/microsoft/azure/provider.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,9 @@ dependencies:
109109
- azure-mgmt-datafactory>=2.0.0
110110
- azure-mgmt-containerregistry>=8.0.0
111111
- azure-mgmt-containerinstance>=10.1.0
112-
- msgraph-core>=1.0.0
112+
# msgraph-core 1.1.8 has a bug which causes ABCMeta object is not subscriptable error
113+
# See https://github.com/microsoftgraph/msgraph-sdk-python-core/issues/781
114+
- msgraph-core>=1.0.0,!=1.1.8
113115
# msgraph-core has transient import failures with microsoft-kiota-http==1.3.4
114116
# See https://github.com/microsoftgraph/msgraph-sdk-python-core/issues/706
115117
- microsoft-kiota-http>=1.3.0,!=1.3.4

0 commit comments

Comments
 (0)