Skip to content

Commit

Permalink
Release 1.14.1: Stricter requirements for dependency versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Tiberiu Vilcu committed May 18, 2021
1 parent a7335d9 commit 466af57
Show file tree
Hide file tree
Showing 10 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion pypureclient/flasharray/FA_2_0/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion pypureclient/flasharray/FA_2_1/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion pypureclient/flasharray/FA_2_2/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion pypureclient/flasharray/FA_2_3/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion pypureclient/flasharray/FA_2_4/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion pypureclient/flasharray/FA_2_5/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion pypureclient/flasharray/FA_2_6/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -26,7 +26,7 @@
author='Pure Storage',
author_email='[email protected]',
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,
Expand Down

0 comments on commit 466af57

Please sign in to comment.