Skip to content

Commit ededddf

Browse files
authored
Read env variables and not settings if available (Azure#7101)
* Read env variables and not settings if available * Remove ADLA_JOB_ID from main MgmtTestCase * Missing self * Fix incorrect settings usage * Remove AD_DOMAIN from mgmt testcase * Add set_value_to_scrub * Fix create_mgmt_client * Remove CLIENT_OID from main mgmttestcase * No packaging update for KV certificates * Packaging update of azure-mgmt-datalake-analytics * Packaging update of azure-graphrbac * Fix missing return
1 parent e461f03 commit ededddf

File tree

15 files changed

+160
-122
lines changed

15 files changed

+160
-122
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
recursive-include tests *.py *.yaml
12
include *.rst
23
include azure/__init__.py
34
include azure/mgmt/__init__.py
45
include azure/mgmt/datalake/__init__.py
6+

sdk/datalake/azure-mgmt-datalake-analytics/README.rst

+1-20
Original file line numberDiff line numberDiff line change
@@ -6,33 +6,14 @@ This is the Microsoft Azure Data Lake Analytics Management Client Library.
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.4, 3.5, 3.6 and 3.7.
9+
This package has been tested with Python 2.7, 3.5, 3.6 and 3.7.
1010

1111
For the older Azure Service Management (ASM) libraries, see
1212
`azure-servicemanagement-legacy <https://pypi.python.org/pypi/azure-servicemanagement-legacy>`__ library.
1313

1414
For a more complete set of Azure libraries, see the `azure <https://pypi.python.org/pypi/azure>`__ bundle package.
1515

1616

17-
Compatibility
18-
=============
19-
20-
**IMPORTANT**: If you have an earlier version of the azure package
21-
(version < 1.0), you should uninstall it before installing this package.
22-
23-
You can check the version using pip:
24-
25-
.. code:: shell
26-
27-
pip freeze
28-
29-
If you see azure==0.11.0 (or any version below 1.0), uninstall it first:
30-
31-
.. code:: shell
32-
33-
pip uninstall azure
34-
35-
3617
Usage
3718
=====
3819

sdk/datalake/azure-mgmt-datalake-analytics/setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
version=version,
5454
description='Microsoft Azure {} Client Library for Python'.format(PACKAGE_PPRINT_NAME),
5555
long_description=readme + '\n\n' + history,
56+
long_description_content_type='text/x-rst',
5657
license='MIT License',
5758
author='Microsoft Corporation',
5859
author_email='azpysdkhelp@microsoft.com',
@@ -63,7 +64,6 @@
6364
'Programming Language :: Python :: 2',
6465
'Programming Language :: Python :: 2.7',
6566
'Programming Language :: Python :: 3',
66-
'Programming Language :: Python :: 3.4',
6767
'Programming Language :: Python :: 3.5',
6868
'Programming Language :: Python :: 3.6',
6969
'Programming Language :: Python :: 3.7',

0 commit comments

Comments
 (0)