|
19 | 19 | break |
20 | 20 |
|
21 | 21 | REQS_BASE = [ |
22 | | - 'bunch==1.0.1', |
| 22 | + 'bunch>=1.0.1', |
23 | 23 | 'six>=1.11', |
24 | | - 'tenacity>=5.0' |
| 24 | + 'tenacity>=4.12.0,<=5.0' |
25 | 25 | ] |
26 | 26 | REQS_AWS = ['boto3<1.8.0'] |
27 | 27 | # Install azure>=3.0.0 package to find which of the azure libraries listed |
28 | 28 | # below are compatible with each other. List individual libraries instead |
29 | 29 | # of using the azure umbrella package to speed up installation. |
30 | | -REQS_AZURE = ['msrest>=0.5.4', |
31 | | - 'msrestazure>=0.5.0', |
32 | | - 'azure-common>=1.1.14', |
33 | | - 'azure-mgmt-devtestlabs>=2.2.0', |
34 | | - 'azure-mgmt-resource>=2.0.0', |
35 | | - 'azure-mgmt-compute>=4.0.1', |
36 | | - 'azure-mgmt-network>=2.1', |
37 | | - 'azure-mgmt-storage>=2.0.0', |
38 | | - 'azure-storage-blob>=1.3.1', |
39 | | - 'azure-cosmosdb-table>=1.0.4', |
40 | | - 'pysftp>=0.2.9'] |
| 30 | +REQS_AZURE = ['msrest>=0.5.4,<0.6', |
| 31 | + 'msrestazure==0.5.0', |
| 32 | + 'azure-common==1.1.14', |
| 33 | + 'azure-mgmt-devtestlabs==2.2.0', |
| 34 | + 'azure-mgmt-resource==2.0.0', |
| 35 | + 'azure-mgmt-compute==4.0.1', |
| 36 | + 'azure-mgmt-network>=2.0.1,<=2.1', |
| 37 | + 'azure-mgmt-storage==2.0.0', |
| 38 | + 'azure-storage-blob==1.3.1', |
| 39 | + 'azure-cosmosdb-table==1.0.4', |
| 40 | + 'pysftp==0.2.9'] |
41 | 41 | REQS_OPENSTACK = [ |
42 | | - 'openstacksdk>=0.17', |
43 | | - 'python-novaclient>=11.0', |
44 | | - 'python-glanceclient>=2.12', |
45 | | - 'python-cinderclient>=4.0', |
46 | | - 'python-swiftclient>=3.6', |
47 | | - 'python-neutronclient>=6.9', |
48 | | - 'python-keystoneclient>=3.17' |
| 42 | + 'openstacksdk>=0.12.0,<=0.17', |
| 43 | + 'python-novaclient>=7.0.0,<=11.0', |
| 44 | + 'python-glanceclient>=2.5.0,<=2.12', |
| 45 | + 'python-cinderclient>=1.9.0,<=4.0', |
| 46 | + 'python-swiftclient>=3.2.0,<=3.6', |
| 47 | + 'python-neutronclient>=6.0.0,<=6.9', |
| 48 | + 'python-keystoneclient>=3.13.0,<=3.17' |
49 | 49 | ] |
50 | 50 | REQS_FULL = REQS_BASE + REQS_AWS + REQS_AZURE + REQS_OPENSTACK |
51 | 51 | # httpretty is required with/for moto 1.0.0 or AWS tests fail |
|
0 commit comments