From cdcdf293954b33b46d3a2943356bd54fd3098734 Mon Sep 17 00:00:00 2001 From: Aarni Koskela Date: Wed, 27 Sep 2023 10:18:10 +0300 Subject: [PATCH 1/3] azure-core: remove six dependency --- sdk/core/azure-core/CHANGELOG.md | 1 + sdk/core/azure-core/setup.py | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/core/azure-core/CHANGELOG.md b/sdk/core/azure-core/CHANGELOG.md index 671f763f22c6..cf9de5653a0c 100644 --- a/sdk/core/azure-core/CHANGELOG.md +++ b/sdk/core/azure-core/CHANGELOG.md @@ -28,6 +28,7 @@ ### Other Changes - Added `opentelemetry-api` as an optional dependency for tracing. This can be installed with `pip install azure-core[tracing]`. #39563 +- Remove `six` as a dependency as unused. ## 1.32.0 (2024-10-31) diff --git a/sdk/core/azure-core/setup.py b/sdk/core/azure-core/setup.py index 35eab93130ab..075d2032da8b 100644 --- a/sdk/core/azure-core/setup.py +++ b/sdk/core/azure-core/setup.py @@ -70,7 +70,6 @@ python_requires=">=3.8", install_requires=[ "requests>=2.21.0", - "six>=1.11.0", "typing-extensions>=4.6.0", ], extras_require={ From 6460084a84dbd95dc7f9154928a83b22e514e1cf Mon Sep 17 00:00:00 2001 From: Krista Pratico Date: Wed, 28 May 2025 14:03:35 -0700 Subject: [PATCH 2/3] Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --- sdk/core/azure-core/CHANGELOG.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/sdk/core/azure-core/CHANGELOG.md b/sdk/core/azure-core/CHANGELOG.md index cf9de5653a0c..65d7710fc72b 100644 --- a/sdk/core/azure-core/CHANGELOG.md +++ b/sdk/core/azure-core/CHANGELOG.md @@ -28,8 +28,7 @@ ### Other Changes - Added `opentelemetry-api` as an optional dependency for tracing. This can be installed with `pip install azure-core[tracing]`. #39563 -- Remove `six` as a dependency as unused. - +- Removed `six` as a dependency since it was unused. ## 1.32.0 (2024-10-31) ### Features Added From 92f32f1191b832b7fb1bc4179d921b0f018f7e3e Mon Sep 17 00:00:00 2001 From: Krista Pratico Date: Wed, 28 May 2025 15:33:30 -0700 Subject: [PATCH 3/3] move comment to latest changelog entry --- sdk/core/azure-core/CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sdk/core/azure-core/CHANGELOG.md b/sdk/core/azure-core/CHANGELOG.md index d70566c07fc5..9324781ce769 100644 --- a/sdk/core/azure-core/CHANGELOG.md +++ b/sdk/core/azure-core/CHANGELOG.md @@ -12,6 +12,7 @@ - A timeout error when using the `aiohttp` transport (the default for async SDKs) will now be raised as a `azure.core.exceptions.ServiceResponseTimeoutError`, a subtype of the previously raised `ServiceResponseError`. - When using with `aiohttp` 3.10 or later, a connection timeout error will now be raised as a `azure.core.exceptions.ServiceRequestTimeoutError`, which can be retried. +- Removed `six` as a dependency since it was unused. ## 1.34.0 (2025-05-01) @@ -57,7 +58,7 @@ ### Other Changes - Added `opentelemetry-api` as an optional dependency for tracing. This can be installed with `pip install azure-core[tracing]`. #39563 -- Removed `six` as a dependency since it was unused. + ## 1.32.0 (2024-10-31) ### Features Added