diff --git a/sdk/machinelearning/azure-mgmt-machinelearningservices/README.md b/sdk/machinelearning/azure-mgmt-machinelearningservices/README.md index ccd1260717e2..2105451adb19 100644 --- a/sdk/machinelearning/azure-mgmt-machinelearningservices/README.md +++ b/sdk/machinelearning/azure-mgmt-machinelearningservices/README.md @@ -1,21 +1,30 @@ -# Microsoft Azure SDK for Python +## Microsoft Azure SDK for Python -This is the Microsoft Azure Machine Learning Services Management Client Library. -This package has been tested with Python 2.7, 3.5, 3.6, 3.7 and 3.8. -For a more complete view of Azure libraries, see the [Github repo](https://github.com/Azure/azure-sdk-for-python/) +This is the Microsoft Azure Machine Learning Services Management Client +Library. +Azure Resource Manager (ARM) is the next generation of management APIs +that replace the old Azure Service Management (ASM). -# Usage +This package has been tested with Python 2.7, 3.5, 3.6 and 3.7. -For code examples, see [Machine Learning Services Management](https://docs.microsoft.com/python/api/overview/azure/) -on docs.microsoft.com. +For the older Azure Service Management (ASM) libraries, see +[azure-servicemanagement-legacy](https://pypi.python.org/pypi/azure-servicemanagement-legacy) +library. +For a more complete set of Azure libraries, see the +[azure](https://pypi.python.org/pypi/azure) bundle package. -# Provide Feedback +## Usage -If you encounter any bugs or have suggestions, please file an issue in the -[Issues](https://github.com/Azure/azure-sdk-for-python/issues) -section of the project. +For code examples, see [Machine Learning Services +Management](https://docs.microsoft.com/python/api/overview/azure/) on +docs.microsoft.com. + +## Provide Feedback +If you encounter any bugs or have suggestions, please file an issue in +the [Issues](https://github.com/Azure/azure-sdk-for-python/issues) +section of the project. -![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-machinelearningservices%2FREADME.png) +![image](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-python%2Fazure-mgmt-machinelearningservices%2FREADME.png) diff --git a/sdk/machinelearning/azure-mgmt-machinelearningservices/setup.py b/sdk/machinelearning/azure-mgmt-machinelearningservices/setup.py index 5dbc4fd594cd..a30c32487f73 100644 --- a/sdk/machinelearning/azure-mgmt-machinelearningservices/setup.py +++ b/sdk/machinelearning/azure-mgmt-machinelearningservices/setup.py @@ -36,9 +36,7 @@ pass # Version extraction inspired from 'requests' -with open(os.path.join(package_folder_path, 'version.py') - if os.path.exists(os.path.join(package_folder_path, 'version.py')) - else os.path.join(package_folder_path, '_version.py'), 'r') as fd: +with open(os.path.join(package_folder_path, 'version.py'), 'r') as fd: version = re.search(r'^VERSION\s*=\s*[\'"]([^\'"]*)[\'"]', fd.read(), re.MULTILINE).group(1) @@ -69,7 +67,6 @@ 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', - 'Programming Language :: Python :: 3.8', 'License :: OSI Approved :: MIT License', ], zip_safe=False,