Skip to content

Commit 1d07d08

Browse files
committed
version 6.0
1 parent 78b22ce commit 1d07d08

12 files changed

+1026
-265
lines changed

setup.cfg

+3-13
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,25 @@
11
[metadata]
22
description-file = README.rst
3-
43
[bdist_rpm]
54
requires = jsonpatch >= 1.3
65
jsonpath-rw >= 1.3.0
76
jsonpointer >= 1.1
87
urllib3 >= 1.23
98
ilorest_chif >= 2.3.0
10-
119
[isort]
1210
profile = black
13-
1411
[pycodestyle]
1512
ignore = E203
1613
max_line_length = 120
17-
1814
[pylint]
1915
max-line-length = 120
20-
2116
[flake8]
2217
max-line-length = 120
2318
extend-ignore = E203,E722,C901,E731,W605
24-
exclude =
19+
exclude =
2520
.git,
26-
packaging,
27-
__pycache__,
21+
packaging,
22+
__pycache__,
2823
src/redfish/__init__.py,
2924
src/redfish/hpilo/__init__.py,
3025
src/redfish/ris/__init__.py,
@@ -35,8 +30,3 @@ exclude =
3530
examples,
3631
tests
3732
max-complexity = 20
38-
39-
[egg_info]
40-
tag_build =
41-
tag_date = 0
42-

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
extras = {}
44

55
setup(name='python-ilorest-library',
6-
version='5.3.0.0',
6+
version='6.0.0.0',
77
description='iLO Rest Python Library',
88
author='Hewlett Packard Enterprise',
99
author_email='[email protected]',
@@ -15,6 +15,7 @@
1515
'Programming Language :: Python :: 3.9',
1616
'Programming Language :: Python :: 3.10',
1717
'Programming Language :: Python :: 3.11',
18+
'Programming Language :: Python :: 3.12',
1819
'Topic :: Communications'
1920
],
2021
keywords='Hewlett Packard Enterprise',

src/redfish/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
""" Redfish restful library """
22

33
__all__ = ["rest", "ris", "hpilo"]
4-
__version__ = "5.3.0.0"
4+
__version__ = "6.0.0.0"
55

66
import logging
77

0 commit comments

Comments
 (0)