ソースを参照

Changed version number and froze dependencies

Nuwan Goonasekera 7 年 前
コミット
8b37715a7f
2 ファイル変更5 行追加5 行削除
  1. 1 1
      cloudbridge/__init__.py
  2. 4 4
      setup.py

+ 1 - 1
cloudbridge/__init__.py

@@ -2,7 +2,7 @@
 import logging
 
 # Current version of the library
-__version__ = '1.0.2'
+__version__ = '2.0.0'
 
 
 def get_version():

+ 4 - 4
setup.py

@@ -24,10 +24,10 @@ REQS_BASE = [
     'tenacity>=4.12.0,<=5.0',
     'cachetools>=2.1.0',
     'deprecated>=1.2.3',
-    'pyeventsystem'
+    'pyeventsystem<2'
 ]
 REQS_AWS = [
-    'boto3>=1.9.86'
+    'boto3>=1.9.86,<=1.9.114'
 ]
 # Install azure>=3.0.0 package to find which of the azure libraries listed
 # below are compatible with each other. List individual libraries instead
@@ -46,8 +46,8 @@ REQS_AZURE = [
     'pysftp==0.2.9'
 ]
 REQS_GCP = [
-    'google-api-python-client',
-    'oauth2client'
+    'google-api-python-client<=1.7.8',
+    'oauth2client<=4.1.3'
 ]
 REQS_OPENSTACK = [
     'openstacksdk>=0.12.0,<=0.17',