From 6922e0fcf9f981a8a36b7797c85af330d588d4c6 Mon Sep 17 00:00:00 2001 From: ZelinWang Date: Mon, 28 Apr 2025 09:56:35 +0800 Subject: [PATCH 1/4] Update setup.py --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index f211a0249..ee0ab593d 100644 --- a/setup.py +++ b/setup.py @@ -87,6 +87,7 @@ 'packaging', 'tqdm', 'wheel==0.30.0', + 'setuptools==0.70.0', 'microsoft-security-utilities-secret-masker~=1.0.0b4' ], package_data={ From 0f26b83eeb9867744b0852ca1ca1f042a36e50e1 Mon Sep 17 00:00:00 2001 From: ZelinWang Date: Mon, 28 Apr 2025 09:59:01 +0800 Subject: [PATCH 2/4] update --- HISTORY.rst | 4 ++++ azdev/__init__.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index 6daac0a05..84e13c484 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,6 +2,10 @@ Release History =============== +0.2.4 +++++++ +* pin setuptools to 0.70.0 + 0.2.3 ++++++ * `azdev linter`: Fix `list index out of range` in missing_command_test_coverage regex diff --git a/azdev/__init__.py b/azdev/__init__.py index 7ac22d695..031203697 100644 --- a/azdev/__init__.py +++ b/azdev/__init__.py @@ -4,4 +4,4 @@ # license information. # ----------------------------------------------------------------------------- -__VERSION__ = '0.2.3' +__VERSION__ = '0.2.4' From f0d6c928e4756141788273719e234a738da48530 Mon Sep 17 00:00:00 2001 From: ZelinWang Date: Mon, 28 Apr 2025 10:00:40 +0800 Subject: [PATCH 3/4] update --- HISTORY.rst | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 84e13c484..a27c8265b 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -4,7 +4,7 @@ Release History =============== 0.2.4 ++++++ -* pin setuptools to 0.70.0 +* pin setuptools to 70.0.0 0.2.3 ++++++ diff --git a/setup.py b/setup.py index ee0ab593d..de7067d0c 100644 --- a/setup.py +++ b/setup.py @@ -87,7 +87,7 @@ 'packaging', 'tqdm', 'wheel==0.30.0', - 'setuptools==0.70.0', + 'setuptools==70.0.0', 'microsoft-security-utilities-secret-masker~=1.0.0b4' ], package_data={ From 61755d0cfc68b26b140a794646a6d50fb9fa1856 Mon Sep 17 00:00:00 2001 From: ZelinWang Date: Mon, 28 Apr 2025 13:06:32 +0800 Subject: [PATCH 4/4] Update test_profile_context.py --- azdev/operations/testtool/tests/test_profile_context.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azdev/operations/testtool/tests/test_profile_context.py b/azdev/operations/testtool/tests/test_profile_context.py index 2578b4e27..02b2ff259 100644 --- a/azdev/operations/testtool/tests/test_profile_context.py +++ b/azdev/operations/testtool/tests/test_profile_context.py @@ -14,7 +14,7 @@ class TestProfileContext(unittest.TestCase): def test_profile_ok(self): - target_profiles = ['latest', '2017-03-09-profile', '2018-03-01-hybrid', '2019-03-01-hybrid'] + target_profiles = ['latest'] for profile in target_profiles: with ProfileContext(profile):