From 3ba0c4f81491d2eae65580217276595c740efd65 Mon Sep 17 00:00:00 2001 From: Xiaojian Xu Date: Thu, 23 Apr 2020 13:40:39 +0800 Subject: [PATCH 1/3] [Import Export] add __init__.py for generated package --- .../azext_import_export/generated/__init__.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/import-export/azext_import_export/generated/__init__.py diff --git a/src/import-export/azext_import_export/generated/__init__.py b/src/import-export/azext_import_export/generated/__init__.py new file mode 100644 index 00000000000..be1a152630c --- /dev/null +++ b/src/import-export/azext_import_export/generated/__init__.py @@ -0,0 +1,12 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +__path__ = __import__('pkgutil').extend_path(__path__, __name__) \ No newline at end of file From aa67ee2dd31960b38ed29687397599e55acd2414 Mon Sep 17 00:00:00 2001 From: Xiaojian Xu Date: Thu, 23 Apr 2020 13:43:08 +0800 Subject: [PATCH 2/3] update version --- src/import-export/HISTORY.rst | 4 ++++ src/import-export/setup.py | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/import-export/HISTORY.rst b/src/import-export/HISTORY.rst index 1c139576ba0..03b096b7a70 100644 --- a/src/import-export/HISTORY.rst +++ b/src/import-export/HISTORY.rst @@ -3,6 +3,10 @@ Release History =============== +0.1.1 +++++++ +* Fix generated package not found issue. + 0.1.0 ++++++ * Initial release. diff --git a/src/import-export/setup.py b/src/import-export/setup.py index 0eaa32f0660..ee52331e233 100644 --- a/src/import-export/setup.py +++ b/src/import-export/setup.py @@ -16,7 +16,7 @@ # TODO: Confirm this is the right version number you want and it matches your # HISTORY.rst entry. -VERSION = '0.1.0' +VERSION = '0.1.1' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers From 4e966311e2c6050e6c3aab2380bd716b3d4b0c4b Mon Sep 17 00:00:00 2001 From: Xiaojian Xu Date: Thu, 23 Apr 2020 13:50:05 +0800 Subject: [PATCH 3/3] fix style error --- src/import-export/azext_import_export/generated/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/import-export/azext_import_export/generated/__init__.py b/src/import-export/azext_import_export/generated/__init__.py index be1a152630c..c9cfdc73e77 100644 --- a/src/import-export/azext_import_export/generated/__init__.py +++ b/src/import-export/azext_import_export/generated/__init__.py @@ -9,4 +9,4 @@ # regenerated. # -------------------------------------------------------------------------- -__path__ = __import__('pkgutil').extend_path(__path__, __name__) \ No newline at end of file +__path__ = __import__('pkgutil').extend_path(__path__, __name__)