Skip to content

Commit b9850f9

Browse files
committed
azure-mgmt-media 1.0.0rc1
1 parent ade8529 commit b9850f9

File tree

4 files changed

+19
-12
lines changed

4 files changed

+19
-12
lines changed

azure-mgmt-media/HISTORY.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
Release History
44
===============
55

6+
1.0.0rc1 (2018-04-23)
7+
+++++++++++++++++++++
8+
9+
**Disclaimer**
10+
11+
This is a complete rewriting of the package and a completly new RestAPI,
12+
and no compatibility at all is possible.
13+
614
0.2.0 (2017-09-14)
715
++++++++++++++++++
816

azure-mgmt-media/README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
Microsoft Azure SDK for Python
22
==============================
33

4-
This is the Microsoft Azure Media Services Management Client Library.
4+
This is the Microsoft Azure Media Services Client Library.
55

66
Azure Resource Manager (ARM) is the next generation of management APIs that
77
replace the old Azure Service Management (ASM).
88

9-
This package has been tested with Python 2.7, 3.3, 3.4, 3.5 and 3.6.
9+
This package has been tested with Python 2.7, 3.4, 3.5 and 3.6.
1010

1111
For the older Azure Service Management (ASM) libraries, see
1212
`azure-servicemanagement-legacy <https://pypi.python.org/pypi/azure-servicemanagement-legacy>`__ library.
@@ -36,9 +36,9 @@ If you see azure==0.11.0 (or any version below 1.0), uninstall it first:
3636
Usage
3737
=====
3838

39-
For code examples, see `Media Services Management
40-
<https://azure-sdk-for-python.readthedocs.org/en/latest/sample_azure-mgmt-media.html>`__
41-
on readthedocs.org.
39+
For code examples, see `Media Services
40+
<https://docs.microsoft.com/python/api/overview/azure/media-services>`__
41+
on docs.microsoft.com.
4242

4343

4444
Provide Feedback

azure-mgmt-media/azure/mgmt/media/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@
99
# regenerated.
1010
# --------------------------------------------------------------------------
1111

12-
VERSION = "2018-03-30-preview"
12+
VERSION = "1.0.0rc1"
1313

azure-mgmt-media/setup.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
# Change the PACKAGE_NAME only to change folder and different name
2121
PACKAGE_NAME = "azure-mgmt-media"
22-
PACKAGE_PPRINT_NAME = "Media Services Management"
22+
PACKAGE_PPRINT_NAME = "Media Services"
2323

2424
# a-b-c => a/b/c
2525
package_folder_path = PACKAGE_NAME.replace('-', '/')
@@ -61,25 +61,24 @@
6161
long_description=readme + '\n\n' + history,
6262
license='MIT License',
6363
author='Microsoft Corporation',
64-
author_email='ptvshelp@microsoft.com',
64+
author_email='azpysdkhelp@microsoft.com',
6565
url='https://github.com/Azure/azure-sdk-for-python',
6666
classifiers=[
6767
'Development Status :: 4 - Beta',
6868
'Programming Language :: Python',
6969
'Programming Language :: Python :: 2',
7070
'Programming Language :: Python :: 2.7',
7171
'Programming Language :: Python :: 3',
72-
'Programming Language :: Python :: 3.3',
7372
'Programming Language :: Python :: 3.4',
7473
'Programming Language :: Python :: 3.5',
7574
'Programming Language :: Python :: 3.6',
7675
'License :: OSI Approved :: MIT License',
7776
],
7877
zip_safe=False,
79-
packages=find_packages(),
78+
packages=find_packages(exclude=["tests"]),
8079
install_requires=[
81-
'msrestazure~=0.4.8',
82-
'azure-common~=1.1.6',
80+
'msrestazure>=0.4.27,<2.0.0',
81+
'azure-common~=1.1',
8382
],
8483
cmdclass=cmdclass
8584
)

0 commit comments

Comments
 (0)