diff --git a/docs/changelog.rst b/docs/changelog.rst index 33a452639..bef3f9576 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -6,6 +6,7 @@ A log of changes by version and date. ======= ========== ===== Version Date Notes ======= ========== ===== +1.14.1 05/17/2021 Added restrictions to dependency versions in the setup 1.14.0 05/10/2021 Added FlashArray 2.6 client 1.13.0 03/19/2021 Added FlashBlade 2.0 client 1.12.0 03/15/2021 Added FlashArray 2.5 client diff --git a/docs/conf.py b/docs/conf.py index 45b7054c3..2eb10f2c9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,7 @@ # The short X.Y version version = u'1.14' # The full version, including alpha/beta/rc tags -release = u'1.14.0' +release = u'1.14.1' # -- General configuration --------------------------------------------------- diff --git a/pypureclient/flasharray/FA_2_0/client.py b/pypureclient/flasharray/FA_2_0/client.py index 42961930e..f424ccae9 100644 --- a/pypureclient/flasharray/FA_2_0/client.py +++ b/pypureclient/flasharray/FA_2_0/client.py @@ -20,7 +20,7 @@ class Client(object): DEFAULT_TIMEOUT = 15.0 DEFAULT_RETRIES = 5 # Format: client/client_version/endpoint/endpoint_version/system/release - USER_AGENT = ('pypureclient/1.14.0/FA/2.0/{sys}/{rel}' + USER_AGENT = ('pypureclient/1.14.1/FA/2.0/{sys}/{rel}' .format(sys=platform.system(), rel=platform.release())) def __init__(self, target, id_token=None, private_key_file=None, private_key_password=None, diff --git a/pypureclient/flasharray/FA_2_1/client.py b/pypureclient/flasharray/FA_2_1/client.py index af4444d89..5344cd259 100644 --- a/pypureclient/flasharray/FA_2_1/client.py +++ b/pypureclient/flasharray/FA_2_1/client.py @@ -20,7 +20,7 @@ class Client(object): DEFAULT_TIMEOUT = 15.0 DEFAULT_RETRIES = 5 # Format: client/client_version/endpoint/endpoint_version/system/release - USER_AGENT = ('pypureclient/1.14.0/FA/2.1/{sys}/{rel}' + USER_AGENT = ('pypureclient/1.14.1/FA/2.1/{sys}/{rel}' .format(sys=platform.system(), rel=platform.release())) def __init__(self, target, id_token=None, private_key_file=None, private_key_password=None, diff --git a/pypureclient/flasharray/FA_2_2/client.py b/pypureclient/flasharray/FA_2_2/client.py index 6ea76e0e1..044c164c0 100644 --- a/pypureclient/flasharray/FA_2_2/client.py +++ b/pypureclient/flasharray/FA_2_2/client.py @@ -20,7 +20,7 @@ class Client(object): DEFAULT_TIMEOUT = 15.0 DEFAULT_RETRIES = 5 # Format: client/client_version/endpoint/endpoint_version/system/release - USER_AGENT = ('pypureclient/1.14.0/FA/2.2/{sys}/{rel}' + USER_AGENT = ('pypureclient/1.14.1/FA/2.2/{sys}/{rel}' .format(sys=platform.system(), rel=platform.release())) def __init__(self, target, id_token=None, private_key_file=None, private_key_password=None, diff --git a/pypureclient/flasharray/FA_2_3/client.py b/pypureclient/flasharray/FA_2_3/client.py index b6e27c623..ac5cc6170 100644 --- a/pypureclient/flasharray/FA_2_3/client.py +++ b/pypureclient/flasharray/FA_2_3/client.py @@ -20,7 +20,7 @@ class Client(object): DEFAULT_TIMEOUT = 15.0 DEFAULT_RETRIES = 5 # Format: client/client_version/endpoint/endpoint_version/system/release - USER_AGENT = ('pypureclient/1.14.0/FA/2.3/{sys}/{rel}' + USER_AGENT = ('pypureclient/1.14.1/FA/2.3/{sys}/{rel}' .format(sys=platform.system(), rel=platform.release())) def __init__(self, target, id_token=None, private_key_file=None, private_key_password=None, diff --git a/pypureclient/flasharray/FA_2_4/client.py b/pypureclient/flasharray/FA_2_4/client.py index 2f2b27fe6..4388facb9 100644 --- a/pypureclient/flasharray/FA_2_4/client.py +++ b/pypureclient/flasharray/FA_2_4/client.py @@ -20,7 +20,7 @@ class Client(object): DEFAULT_TIMEOUT = 15.0 DEFAULT_RETRIES = 5 # Format: client/client_version/endpoint/endpoint_version/system/release - USER_AGENT = ('pypureclient/1.14.0/FA/2.4/{sys}/{rel}' + USER_AGENT = ('pypureclient/1.14.1/FA/2.4/{sys}/{rel}' .format(sys=platform.system(), rel=platform.release())) def __init__(self, target, id_token=None, private_key_file=None, private_key_password=None, diff --git a/pypureclient/flasharray/FA_2_5/client.py b/pypureclient/flasharray/FA_2_5/client.py index b77c709d8..960bb2883 100644 --- a/pypureclient/flasharray/FA_2_5/client.py +++ b/pypureclient/flasharray/FA_2_5/client.py @@ -20,7 +20,7 @@ class Client(object): DEFAULT_TIMEOUT = 15.0 DEFAULT_RETRIES = 5 # Format: client/client_version/endpoint/endpoint_version/system/release - USER_AGENT = ('pypureclient/1.14.0/FA/2.5/{sys}/{rel}' + USER_AGENT = ('pypureclient/1.14.1/FA/2.5/{sys}/{rel}' .format(sys=platform.system(), rel=platform.release())) def __init__(self, target, id_token=None, private_key_file=None, private_key_password=None, diff --git a/pypureclient/flasharray/FA_2_6/client.py b/pypureclient/flasharray/FA_2_6/client.py index a812e4063..341232207 100644 --- a/pypureclient/flasharray/FA_2_6/client.py +++ b/pypureclient/flasharray/FA_2_6/client.py @@ -20,7 +20,7 @@ class Client(object): DEFAULT_TIMEOUT = 15.0 DEFAULT_RETRIES = 5 # Format: client/client_version/endpoint/endpoint_version/system/release - USER_AGENT = ('pypureclient/1.14.0/FA/2.6/{sys}/{rel}' + USER_AGENT = ('pypureclient/1.14.1/FA/2.6/{sys}/{rel}' .format(sys=platform.system(), rel=platform.release())) def __init__(self, target, id_token=None, private_key_file=None, private_key_password=None, diff --git a/setup.py b/setup.py index 6e0e4dc40..01a55bc82 100644 --- a/setup.py +++ b/setup.py @@ -9,11 +9,11 @@ from setuptools import setup, find_packages # noqa: H301 NAME = 'py-pure-client' -VERSION = '1.14.0' +VERSION = '1.14.1' -REQUIRES = ['urllib3 >= 1.15', 'six >= 1.10', 'certifi >= 14.05.14', - 'python-dateutil >= 2.5.3', 'paramiko == 2.7.1', - 'PyJWT >= 1.7.1', 'requests >= 2.20.1', 'typing>=3.7.4.1'] +REQUIRES = ['urllib3 >= 1.15.1, <= 1.26.2', 'six >= 1.10, <= 1.15.0', 'certifi >= 14.05.14, <= 2020.12.5', + 'python-dateutil >= 2.5.3, <= 2.8.1', 'paramiko == 2.7.1', + 'PyJWT >= 1.7.1, < 2.0.0', 'requests >= 2.20.1, <= 2.25.1', 'typing >=3.7.4.1, <= 3.7.4.3'] readme = open('README.md', 'r') README_TEXT = readme.read() @@ -26,7 +26,7 @@ author='Pure Storage', author_email='tvilcu@purestorage.com', url='https://github.com/PureStorage-OpenConnect/py-pure-client', - download_url='https://github.com/PureStorage-OpenConnect/py-pure-client/archive/1.14.0.tar.gz', + download_url='https://github.com/PureStorage-OpenConnect/py-pure-client/archive/1.14.1.tar.gz', keywords=['Swagger', 'Pure Storage', 'Python', 'clients', 'REST', 'API', 'FlashArray', 'FlashBlade', 'Pure1'], license='BSD 2-Clause', install_requires=REQUIRES,