mirror of https://github.com/ansible/ansible.git
remove azure extras and extras_require support (#67822)
* remove azure extras and extras_require support * Since Azure will be collectionized, the requirements will float more frequently than Ansible releases; the Azure collection needs to host the requirements now. * Removed the dynamic extras support as well, since Azure was the only thing using it. If we need it again, it's easy to pull back from history. * Mark azure-requirements as orhpaned. This keeps the docs around so that existing links from old test runs remain valid. Co-authored-by: Matt Clay <matt@mystile.com>pull/68236/head
parent
f1b3e8364e
commit
ed9de94ad9
@ -0,0 +1,2 @@
|
||||
minor_changes:
|
||||
- Removed extras_require support from setup.py (and [azure] extra). Requirements will float with the collections, so it's not appropriate for ansible-base to host requirements for them any longer.
|
@ -1,39 +0,0 @@
|
||||
packaging
|
||||
requests[security]
|
||||
xmltodict
|
||||
azure-cli-core==2.0.35
|
||||
azure-cli-nspkg==3.0.2
|
||||
azure-common==1.1.11
|
||||
azure-mgmt-authorization==0.51.1
|
||||
azure-mgmt-batch==5.0.1
|
||||
azure-mgmt-cdn==3.0.0
|
||||
azure-mgmt-compute==10.0.0
|
||||
azure-mgmt-containerinstance==1.4.0
|
||||
azure-mgmt-containerregistry==2.0.0
|
||||
azure-mgmt-containerservice==4.4.0
|
||||
azure-mgmt-dns==2.1.0
|
||||
azure-mgmt-keyvault==1.1.0
|
||||
azure-mgmt-marketplaceordering==0.1.0
|
||||
azure-mgmt-monitor==0.5.2
|
||||
azure-mgmt-network==4.0.0
|
||||
azure-mgmt-nspkg==2.0.0
|
||||
azure-mgmt-redis==5.0.0
|
||||
azure-mgmt-resource==2.1.0
|
||||
azure-mgmt-rdbms==1.4.1
|
||||
azure-mgmt-servicebus==0.5.3
|
||||
azure-mgmt-sql==0.10.0
|
||||
azure-mgmt-storage==3.1.0
|
||||
azure-mgmt-trafficmanager==0.50.0
|
||||
azure-mgmt-web==0.41.0
|
||||
azure-nspkg==2.0.0
|
||||
azure-storage==0.35.1
|
||||
msrest==0.6.10
|
||||
msrestazure==0.6.2
|
||||
azure-keyvault==1.0.0a1
|
||||
azure-graphrbac==0.40.0
|
||||
azure-mgmt-cosmosdb==0.5.2
|
||||
azure-mgmt-hdinsight==0.1.0
|
||||
azure-mgmt-devtestlabs==3.0.0
|
||||
azure-mgmt-loganalytics==0.2.0
|
||||
azure-mgmt-automation==0.1.1
|
||||
azure-mgmt-iothub==0.7.0
|
@ -1,4 +0,0 @@
|
||||
{
|
||||
"no_targets": true,
|
||||
"output": "path-message"
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
#!/usr/bin/env python
|
||||
"""Make sure the Azure requirements files match."""
|
||||
from __future__ import (absolute_import, division, print_function)
|
||||
__metaclass__ = type
|
||||
|
||||
import filecmp
|
||||
import os
|
||||
|
||||
|
||||
def main():
|
||||
src = 'packaging/requirements/requirements-azure.txt'
|
||||
dst = 'test/lib/ansible_test/_data/requirements/integration.cloud.azure.txt'
|
||||
|
||||
missing = [p for p in [src, dst] if not os.path.isfile(p)]
|
||||
|
||||
if missing:
|
||||
for path in missing:
|
||||
print('%s: missing required file' % path)
|
||||
|
||||
return
|
||||
|
||||
if not filecmp.cmp(src, dst):
|
||||
print('%s: must be identical to `%s`' % (dst, src))
|
||||
|
||||
if os.path.islink(dst):
|
||||
print('%s: must not be a symbolic link' % dst)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
Loading…
Reference in New Issue