Skip to content

Commit

Permalink
Avoid 1.1.8 version of msgraph-core (#45044)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
potiuk authored Dec 18, 2024
1 parent 09d8a80 commit 3310b86
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion generated/provider_dependencies.json
Original file line number Diff line number Diff line change
Expand Up @@ -838,7 +838,7 @@
"microsoft-kiota-http>=1.3.0,!=1.3.4",
"microsoft-kiota-serialization-json==1.0.0",
"microsoft-kiota-serialization-text==1.0.0",
"msgraph-core>=1.0.0"
"msgraph-core>=1.0.0,!=1.1.8"
],
"devel-deps": [
"pywinrm>=0.4"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@ dependencies:
- azure-mgmt-datafactory>=2.0.0
- azure-mgmt-containerregistry>=8.0.0
- azure-mgmt-containerinstance>=10.1.0
- msgraph-core>=1.0.0
# msgraph-core 1.1.8 has a bug which causes ABCMeta object is not subscriptable error
# See https://github.com/microsoftgraph/msgraph-sdk-python-core/issues/781
- msgraph-core>=1.0.0,!=1.1.8
# msgraph-core has transient import failures with microsoft-kiota-http==1.3.4
# See https://github.com/microsoftgraph/msgraph-sdk-python-core/issues/706
- microsoft-kiota-http>=1.3.0,!=1.3.4
Expand Down

0 comments on commit 3310b86

Please sign in to comment.