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",