Skip to content

Commit 041359c

Browse files
NaveenaNaveena
authored andcommitted
Updated SDK dependencies.
1) Python 3.6 supports requests <= 2.27.1 version and python 3.5 supports requests <= 2.25.1 2) Updated the minimum version for requests package in the setup file. 3) With this change SDK will support 3.5+ python versions.
1 parent 6a6b310 commit 041359c

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ pip install cohesity-management-sdk==1.5.1
5959

6060
|Cluster Version| SDK Version|
6161
|---|--|
62+
|7.0|1.10.2|
6263
|7.0|1.10.1|
6364
|6.8.1_u1|1.9.2|
6465
|6.8.1_u1|1.9.1|

cohesity_management_sdk/controllers/base_controller.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ class BaseController(object):
2727
http_call_back = None
2828

2929

30-
global_headers = {'user-agent': 'cohesity-python/1.10.1'}
30+
global_headers = {'user-agent': 'cohesity-python/1.10.2'}
3131

3232
def __init__(self, config=None, client=None, call_back=None):
3333
if client != None:

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
setup(
1616
name='cohesity_management_sdk',
17-
version='1.10.1',
17+
version='1.10.2',
1818
description='This SDK provides operations for interfacing with the Cohesity Cluster.',
1919
long_description=long_description,
2020
long_description_content_type=long_description_content_type,
@@ -23,7 +23,7 @@
2323
url='https://github.com/cohesity/management-sdk-python',
2424
packages=find_packages(),
2525
install_requires=[
26-
'requests>=2.31.0, <3.0',
26+
'requests>=2.25.1, <3.0',
2727
'cachecontrol>=0.11.7, <1.0',
2828
'python-dateutil>=2.5.3, <3.0'
2929
]

0 commit comments

Comments
 (0)