Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions azure-mgmt-machinelearningcompute/HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
Release History
===============

0.4.1 (2018-05-29)
++++++++++++++++++

**Bugfixes**

- Compatibility of the sdist with wheel 0.31.0
- msrestazure dependency version range

0.4.0 (2018-01-02)
++++++++++++++++++

Expand Down
6 changes: 3 additions & 3 deletions azure-mgmt-machinelearningcompute/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This is the Microsoft Azure Machine Learning Compute Management Client Library.
Azure Resource Manager (ARM) is the next generation of management APIs that
replace the old Azure Service Management (ASM).

This package has been tested with Python 2.7, 3.3, 3.4, 3.5 and 3.6.
This package has been tested with Python 2.7, 3.4, 3.5 and 3.6.

For the older Azure Service Management (ASM) libraries, see
`azure-servicemanagement-legacy <https://pypi.python.org/pypi/azure-servicemanagement-legacy>`__ library.
Expand Down Expand Up @@ -37,8 +37,8 @@ Usage
=====

For code examples, see `Machine Learning Compute Management
<https://azure-sdk-for-python.readthedocs.org/en/latest/sample_azure-mgmt-machinelearningcompute.html>`__
on readthedocs.org.
<https://docs.microsoft.com/python/api/overview/azure/machinelearning>`__
on docs.microsoft.com.


Provide Feedback
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
# regenerated.
# --------------------------------------------------------------------------

VERSION = "0.4.0"
VERSION = "0.4.1"

5 changes: 5 additions & 0 deletions azure-mgmt-machinelearningcompute/sdk_packaging.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[packaging]
package_name = "azure-mgmt-machinelearningcompute"
package_pprint_name = "Machine Learning Compute Management"
package_doc_id = "machinelearning"
is_stable = false
3 changes: 1 addition & 2 deletions azure-mgmt-machinelearningcompute/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
Expand All @@ -78,7 +77,7 @@
zip_safe=False,
packages=find_packages(exclude=["tests"]),
install_requires=[
'msrestazure~=0.4.11',
'msrestazure>=0.4.27,<2.0.0',
'azure-common~=1.1',
],
cmdclass=cmdclass
Expand Down