Skip to content

Commit 0c57387

Browse files
authored
Release 1.70.2 (#193)
1 parent 5dfe7dd commit 0c57387

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "py-pure-client"
3-
version = "1.70.1"
3+
version = "1.70.2"
44
description = "Pure Storage Python clients for FlashArray, FlashBlade, and Pure1 APIs"
55
authors = [
66
{ name = "Pure Storage", email = "[email protected]" }
@@ -16,13 +16,13 @@ classifiers = [
1616
dependencies = [
1717
'certifi >= 2024.07.04',
1818
'python_dateutil >=2.8.2',
19-
'setuptools >=70.0.0, <=75.6.0',
19+
'setuptools >=70.0.0',
2020
'urllib3 >= 1.26.17',
2121
'paramiko >= 3.4.0',
2222
'pyjwt >=2.0.0',
2323
'requests >= 2.32.0',
2424
'pydantic >= 1.10.14',
25-
'aenum == 3.1.15'
25+
'aenum >= 3.1.15'
2626
]
2727

2828
[project.urls]

pypureclient/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
__name__ = 'py-pure-client'
2-
__version__ = '1.70.1'
2+
__version__ = '1.70.2'
33
__default_user_agent__ = 'pure/{}/{}'.format(__name__, __version__)

requirements.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
certifi >= 2024.07.04
2-
setuptools >=70.0.0, <=75.6.0
2+
setuptools >=70.0.0
33
paramiko >= 3.4.0
44
pyjwt >=2.0.0
55
requests >= 2.32.0
6-
urllib3 >= 1.25.3, < 3.0.0
6+
urllib3 >= 1.25.3
77
python_dateutil >= 2.8.2
88
pydantic >= 1.10.14
9-
aenum == 3.1.15
9+
aenum >= 3.1.15

setup.py

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

1111
NAME = 'py-pure-client'
12-
VERSION = '1.70.1'
12+
VERSION = '1.70.2'
1313

1414
REQUIRES = [
1515
'certifi >= 2024.07.04',
1616
'python_dateutil >=2.8.2',
17-
'setuptools >=70.0.0, <=75.6.0',
17+
'setuptools >=70.0.0',
1818
'urllib3 >= 1.26.17',
1919
'paramiko >= 3.4.0',
2020
'pyjwt >=2.0.0',
2121
'requests >= 2.32.0',
2222
'pydantic >= 1.10.14',
23-
'aenum == 3.1.15'
23+
'aenum >= 3.1.15'
2424
]
2525

2626
readme = open('README.md', 'r')
@@ -34,7 +34,7 @@
3434
author='Pure Storage',
3535
author_email='[email protected]',
3636
url='https://github.com/PureStorage-OpenConnect/py-pure-client',
37-
download_url='https://github.com/PureStorage-OpenConnect/py-pure-client/archive/1.70.1.tar.gz',
37+
download_url='https://github.com/PureStorage-OpenConnect/py-pure-client/archive/1.70.2.tar.gz',
3838
keywords=['Swagger', 'Pure Storage', 'Python', 'clients', 'REST', 'API', 'FlashArray', 'FlashBlade', 'Pure1'],
3939
license='BSD 2-Clause',
4040
license_files = ('LICENSE.txt',),

0 commit comments

Comments
 (0)