Skip to content

Commit 3130492

Browse files
committed
Make patch release and constrain dependency versions
1 parent 3850e39 commit 3130492

2 files changed

Lines changed: 21 additions & 21 deletions

File tree

cloudbridge/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import logging
33

44
# Current version of the library
5-
__version__ = '1.0.0-dev'
5+
__version__ = '1.0.1'
66

77

88
def get_version():

setup.py

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -19,33 +19,33 @@
1919
break
2020

2121
REQS_BASE = [
22-
'bunch==1.0.1',
22+
'bunch>=1.0.1',
2323
'six>=1.11',
24-
'tenacity>=5.0'
24+
'tenacity>=4.12.0,<=5.0'
2525
]
2626
REQS_AWS = ['boto3<1.8.0']
2727
# Install azure>=3.0.0 package to find which of the azure libraries listed
2828
# below are compatible with each other. List individual libraries instead
2929
# 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']
4141
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'
4949
]
5050
REQS_FULL = REQS_BASE + REQS_AWS + REQS_AZURE + REQS_OPENSTACK
5151
# httpretty is required with/for moto 1.0.0 or AWS tests fail

0 commit comments

Comments
 (0)