Skip to content

Commit 466af57

Browse files
author
Tiberiu Vilcu
committed
Release 1.14.1: Stricter requirements for dependency versions
1 parent a7335d9 commit 466af57

File tree

10 files changed

+14
-13
lines changed

10 files changed

+14
-13
lines changed

docs/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ A log of changes by version and date.
66
======= ========== =====
77
Version Date Notes
88
======= ========== =====
9+
1.14.1 05/17/2021 Added restrictions to dependency versions in the setup
910
1.14.0 05/10/2021 Added FlashArray 2.6 client
1011
1.13.0 03/19/2021 Added FlashBlade 2.0 client
1112
1.12.0 03/15/2021 Added FlashArray 2.5 client

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
# The short X.Y version
3030
version = u'1.14'
3131
# The full version, including alpha/beta/rc tags
32-
release = u'1.14.0'
32+
release = u'1.14.1'
3333

3434

3535
# -- General configuration ---------------------------------------------------

pypureclient/flasharray/FA_2_0/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Client(object):
2020
DEFAULT_TIMEOUT = 15.0
2121
DEFAULT_RETRIES = 5
2222
# Format: client/client_version/endpoint/endpoint_version/system/release
23-
USER_AGENT = ('pypureclient/1.14.0/FA/2.0/{sys}/{rel}'
23+
USER_AGENT = ('pypureclient/1.14.1/FA/2.0/{sys}/{rel}'
2424
.format(sys=platform.system(), rel=platform.release()))
2525

2626
def __init__(self, target, id_token=None, private_key_file=None, private_key_password=None,

pypureclient/flasharray/FA_2_1/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Client(object):
2020
DEFAULT_TIMEOUT = 15.0
2121
DEFAULT_RETRIES = 5
2222
# Format: client/client_version/endpoint/endpoint_version/system/release
23-
USER_AGENT = ('pypureclient/1.14.0/FA/2.1/{sys}/{rel}'
23+
USER_AGENT = ('pypureclient/1.14.1/FA/2.1/{sys}/{rel}'
2424
.format(sys=platform.system(), rel=platform.release()))
2525

2626
def __init__(self, target, id_token=None, private_key_file=None, private_key_password=None,

pypureclient/flasharray/FA_2_2/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Client(object):
2020
DEFAULT_TIMEOUT = 15.0
2121
DEFAULT_RETRIES = 5
2222
# Format: client/client_version/endpoint/endpoint_version/system/release
23-
USER_AGENT = ('pypureclient/1.14.0/FA/2.2/{sys}/{rel}'
23+
USER_AGENT = ('pypureclient/1.14.1/FA/2.2/{sys}/{rel}'
2424
.format(sys=platform.system(), rel=platform.release()))
2525

2626
def __init__(self, target, id_token=None, private_key_file=None, private_key_password=None,

pypureclient/flasharray/FA_2_3/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Client(object):
2020
DEFAULT_TIMEOUT = 15.0
2121
DEFAULT_RETRIES = 5
2222
# Format: client/client_version/endpoint/endpoint_version/system/release
23-
USER_AGENT = ('pypureclient/1.14.0/FA/2.3/{sys}/{rel}'
23+
USER_AGENT = ('pypureclient/1.14.1/FA/2.3/{sys}/{rel}'
2424
.format(sys=platform.system(), rel=platform.release()))
2525

2626
def __init__(self, target, id_token=None, private_key_file=None, private_key_password=None,

pypureclient/flasharray/FA_2_4/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Client(object):
2020
DEFAULT_TIMEOUT = 15.0
2121
DEFAULT_RETRIES = 5
2222
# Format: client/client_version/endpoint/endpoint_version/system/release
23-
USER_AGENT = ('pypureclient/1.14.0/FA/2.4/{sys}/{rel}'
23+
USER_AGENT = ('pypureclient/1.14.1/FA/2.4/{sys}/{rel}'
2424
.format(sys=platform.system(), rel=platform.release()))
2525

2626
def __init__(self, target, id_token=None, private_key_file=None, private_key_password=None,

pypureclient/flasharray/FA_2_5/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Client(object):
2020
DEFAULT_TIMEOUT = 15.0
2121
DEFAULT_RETRIES = 5
2222
# Format: client/client_version/endpoint/endpoint_version/system/release
23-
USER_AGENT = ('pypureclient/1.14.0/FA/2.5/{sys}/{rel}'
23+
USER_AGENT = ('pypureclient/1.14.1/FA/2.5/{sys}/{rel}'
2424
.format(sys=platform.system(), rel=platform.release()))
2525

2626
def __init__(self, target, id_token=None, private_key_file=None, private_key_password=None,

pypureclient/flasharray/FA_2_6/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ class Client(object):
2020
DEFAULT_TIMEOUT = 15.0
2121
DEFAULT_RETRIES = 5
2222
# Format: client/client_version/endpoint/endpoint_version/system/release
23-
USER_AGENT = ('pypureclient/1.14.0/FA/2.6/{sys}/{rel}'
23+
USER_AGENT = ('pypureclient/1.14.1/FA/2.6/{sys}/{rel}'
2424
.format(sys=platform.system(), rel=platform.release()))
2525

2626
def __init__(self, target, id_token=None, private_key_file=None, private_key_password=None,

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
from setuptools import setup, find_packages # noqa: H301
1010

1111
NAME = 'py-pure-client'
12-
VERSION = '1.14.0'
12+
VERSION = '1.14.1'
1313

14-
REQUIRES = ['urllib3 >= 1.15', 'six >= 1.10', 'certifi >= 14.05.14',
15-
'python-dateutil >= 2.5.3', 'paramiko == 2.7.1',
16-
'PyJWT >= 1.7.1', 'requests >= 2.20.1', 'typing>=3.7.4.1']
14+
REQUIRES = ['urllib3 >= 1.15.1, <= 1.26.2', 'six >= 1.10, <= 1.15.0', 'certifi >= 14.05.14, <= 2020.12.5',
15+
'python-dateutil >= 2.5.3, <= 2.8.1', 'paramiko == 2.7.1',
16+
'PyJWT >= 1.7.1, < 2.0.0', 'requests >= 2.20.1, <= 2.25.1', 'typing >=3.7.4.1, <= 3.7.4.3']
1717

1818
readme = open('README.md', 'r')
1919
README_TEXT = readme.read()
@@ -26,7 +26,7 @@
2626
author='Pure Storage',
2727
author_email='[email protected]',
2828
url='https://github.com/PureStorage-OpenConnect/py-pure-client',
29-
download_url='https://github.com/PureStorage-OpenConnect/py-pure-client/archive/1.14.0.tar.gz',
29+
download_url='https://github.com/PureStorage-OpenConnect/py-pure-client/archive/1.14.1.tar.gz',
3030
keywords=['Swagger', 'Pure Storage', 'Python', 'clients', 'REST', 'API', 'FlashArray', 'FlashBlade', 'Pure1'],
3131
license='BSD 2-Clause',
3232
install_requires=REQUIRES,

0 commit comments

Comments
 (0)