From c8c252dd84a4ce81b802ad4c8279a4e3f8c4fd5e Mon Sep 17 00:00:00 2001 From: Julie Zhu Date: Tue, 10 Feb 2026 10:59:27 +1100 Subject: [PATCH 1/2] fix package issue --- src/aosm/HISTORY.rst | 4 ++++ src/aosm/azext_aosm/vendored_sdks/azure_storagev2/__init__.py | 2 -- src/aosm/setup.py | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/src/aosm/HISTORY.rst b/src/aosm/HISTORY.rst index 47b7b3370f6..47f9683d1a0 100644 --- a/src/aosm/HISTORY.rst +++ b/src/aosm/HISTORY.rst @@ -2,6 +2,10 @@ Release History =============== +2.0.0b5 +++++++++ +* Remove `__import__('pkg_resources').declare_namespace(__name__)` from `vendored_sdks/azure_storagev2/__init__.py`` to fix the namespace package issue. + 2.0.0b4 ++++++++ * Fixing the unauthorized error when publishing to ACR diff --git a/src/aosm/azext_aosm/vendored_sdks/azure_storagev2/__init__.py b/src/aosm/azext_aosm/vendored_sdks/azure_storagev2/__init__.py index 77845c19798..c5263f74db4 100644 --- a/src/aosm/azext_aosm/vendored_sdks/azure_storagev2/__init__.py +++ b/src/aosm/azext_aosm/vendored_sdks/azure_storagev2/__init__.py @@ -2,5 +2,3 @@ # Copyright (c) Microsoft Corporation. All rights reserved. # Licensed under the MIT License. See License.txt in the project root for license information. # -------------------------------------------------------------------------------------------- - -__import__('pkg_resources').declare_namespace(__name__) diff --git a/src/aosm/setup.py b/src/aosm/setup.py index ea46bd38b55..b3d2640600a 100644 --- a/src/aosm/setup.py +++ b/src/aosm/setup.py @@ -17,7 +17,7 @@ # Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = "2.0.0b4" +VERSION = "2.0.0b5" # The full list of classifiers is available at From da6ccc41ebb467834017f427829bc979a3d39df7 Mon Sep 17 00:00:00 2001 From: Julie Zhu Date: Tue, 10 Feb 2026 11:22:44 +1100 Subject: [PATCH 2/2] typo --- src/aosm/HISTORY.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/aosm/HISTORY.rst b/src/aosm/HISTORY.rst index 47f9683d1a0..b214088e7ab 100644 --- a/src/aosm/HISTORY.rst +++ b/src/aosm/HISTORY.rst @@ -4,7 +4,7 @@ Release History =============== 2.0.0b5 ++++++++ -* Remove `__import__('pkg_resources').declare_namespace(__name__)` from `vendored_sdks/azure_storagev2/__init__.py`` to fix the namespace package issue. +* Remove `__import__('pkg_resources').declare_namespace(__name__)` from `vendored_sdks/azure_storagev2/__init__.py` to fix the namespace package issue. 2.0.0b4 ++++++++