From 74f45fb21c7759451fde9958c7620c7fc06d9206 Mon Sep 17 00:00:00 2001 From: AllyWang Date: Thu, 28 Dec 2023 12:24:48 +0800 Subject: [PATCH] use extension module name to avoid index test error --- src/monitor-control-service/HISTORY.rst | 4 ++++ src/monitor-control-service/setup.py | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/monitor-control-service/HISTORY.rst b/src/monitor-control-service/HISTORY.rst index 5fe17372d62..2678e4ee5a5 100644 --- a/src/monitor-control-service/HISTORY.rst +++ b/src/monitor-control-service/HISTORY.rst @@ -2,6 +2,10 @@ Release History =============== +1.0.1 +++++++ +* Normalization module name in setup + 1.0.0 ++++++ * Enable all of the facilities of `data-collection` in stable version `2022-06-01` diff --git a/src/monitor-control-service/setup.py b/src/monitor-control-service/setup.py index 985cf36083e..4cdca66688f 100644 --- a/src/monitor-control-service/setup.py +++ b/src/monitor-control-service/setup.py @@ -10,7 +10,7 @@ from setuptools import setup, find_packages # HISTORY.rst entry. -VERSION = '1.0.0' +VERSION = '1.0.1' # The full list of classifiers is available at # https://pypi.python.org/pypi?%3Aaction=list_classifiers @@ -34,7 +34,7 @@ HISTORY = f.read() setup( - name='monitor_control_service', + name='monitor-control-service', version=VERSION, description='Microsoft Azure Command-Line Tools MonitorClient Extension', author='Microsoft Corporation',