From 3b71e7a898fd562908f368313a99bc9a744f7cf0 Mon Sep 17 00:00:00 2001 From: Jiarui Guo Date: Tue, 28 Jul 2026 15:38:17 -0700 Subject: [PATCH] [Translation] Bump azure-core minimum to 1.37.0 to fix mindependency The mindependency CI check pins azure-core to the declared floor of 1.30.0, which conflicts with the azure-identity dev requirement of azure-core>=1.31.0. Resolution then falls back to fetching an older azure-identity from pypi.org, which is blocked on CI agents, so the check fails deterministically and the Build stage takes the Release stage down with it. Raise the floor to 1.37.0, matching the sibling azure-ai-translation-text package whose mindependency check passes. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Copilot-Session: 1463e8ad-d7bf-45ad-aea2-c50defc1914b --- sdk/translation/azure-ai-translation-document/CHANGELOG.md | 1 + sdk/translation/azure-ai-translation-document/setup.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/sdk/translation/azure-ai-translation-document/CHANGELOG.md b/sdk/translation/azure-ai-translation-document/CHANGELOG.md index b457c194ffd0..becb3d4edf40 100644 --- a/sdk/translation/azure-ai-translation-document/CHANGELOG.md +++ b/sdk/translation/azure-ai-translation-document/CHANGELOG.md @@ -37,6 +37,7 @@ ### Other Changes - This version and all future versions will require Python 3.9+. Python 3.8 is no longer supported. +- Bumped the minimum required `azure-core` version from `1.30.0` to `1.37.0`. ## 1.1.0 (2024-11-15) diff --git a/sdk/translation/azure-ai-translation-document/setup.py b/sdk/translation/azure-ai-translation-document/setup.py index d404ba9554ef..e256d6256163 100644 --- a/sdk/translation/azure-ai-translation-document/setup.py +++ b/sdk/translation/azure-ai-translation-document/setup.py @@ -65,7 +65,7 @@ }, install_requires=[ "isodate>=0.6.1", - "azure-core>=1.30.0", + "azure-core>=1.37.0", "typing-extensions>=4.6.0", ], python_requires=">=3.9",