Skip to content

Commit 1f68777

Browse files
committed
fix: bump version to 4.18.5
1 parent e1fc95b commit 1f68777

File tree

1 file changed

+31
-35
lines changed

1 file changed

+31
-35
lines changed

pyproject.toml

Lines changed: 31 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.pytest.ini_options]
22
markers = [
33
"incremental: Mark tests as incremental",
4-
"kubevirt: Mark tests as kubevirt tests"
4+
"kubevirt: Mark tests as kubevirt tests",
55
]
66
addopts = [
77
"--pdbcls=IPython.terminal.debugger:TerminalPdb",
@@ -13,15 +13,11 @@ addopts = [
1313
"--cov=ocp_resources.utils.constants",
1414
"--cov=ocp_resources.utils.utils",
1515
"--cov=ocp_resources.exceptions",
16-
"--cov=class_generator"
16+
"--cov=class_generator",
1717
]
1818

1919
[tool.coverage.run]
20-
omit = [
21-
"tests/*",
22-
"class_generator/tests/*",
23-
"class_generator/scripts/tests/*"
24-
]
20+
omit = ["tests/*", "class_generator/tests/*", "class_generator/scripts/tests/*"]
2521

2622
[tool.coverage.report]
2723
fail_under = 45
@@ -36,31 +32,31 @@ line-length = 120
3632
fix = true
3733
output-format = "grouped"
3834

39-
[tool.ruff.format]
40-
exclude = [ ".git", ".venv", ".mypy_cache", ".tox", "__pycache__" ]
35+
[tool.ruff.format]
36+
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
4137

4238
[tool.mypy]
4339
no_implicit_optional = true
4440
show_error_codes = true
4541
warn_unused_ignores = true
4642

4743
[tool.hatch.build.targets.wheel]
48-
packages = [ "ocp_resources", "class_generator" ]
44+
packages = ["ocp_resources", "class_generator"]
4945

5046
[tool.uv]
51-
dev-dependencies = [ "ipdb>=0.13.13", "ipython>=8.12.3" ]
47+
dev-dependencies = ["ipdb>=0.13.13", "ipython>=8.12.3"]
5248

5349
[project]
5450
requires-python = ">=3.9"
5551
name = "openshift-python-wrapper"
56-
version = "4.18.4"
52+
version = "4.18.5"
5753
description = "Wrapper around https://github.com/kubernetes-client/python"
5854
readme = "README.md"
5955
license = "Apache-2.0"
60-
keywords = [ "Openshift", "Kubevirt", "Openshift Virtualization" ]
56+
keywords = ["Openshift", "Kubevirt", "Openshift Virtualization"]
6157
classifiers = [
6258
"Programming Language :: Python :: 3",
63-
"Operating System :: OS Independent"
59+
"Operating System :: OS Independent",
6460
]
6561
dependencies = [
6662
"click>=8.1.7",
@@ -80,34 +76,34 @@ dependencies = [
8076
"ruff>=0.6.9",
8177
"testcontainers>=4.9.0",
8278
"timeout-sampler>=0.0.46",
83-
"xmltodict>=0.13.0"
79+
"xmltodict>=0.13.0",
8480
]
8581

86-
[[project.authors]]
87-
name = "Meni Yakove"
88-
82+
[[project.authors]]
83+
name = "Meni Yakove"
84+
8985

90-
[[project.authors]]
91-
name = "Ruth Netser"
92-
86+
[[project.authors]]
87+
name = "Ruth Netser"
88+
9389

94-
[[project.maintainers]]
95-
name = "Meni Yakove"
96-
90+
[[project.maintainers]]
91+
name = "Meni Yakove"
92+
9793

98-
[[project.maintainers]]
99-
name = "Ruth Netser"
100-
94+
[[project.maintainers]]
95+
name = "Ruth Netser"
96+
10197

102-
[project.urls]
103-
homepage = "https://github.com/RedHatQE/openshift-python-wrapper"
104-
documentation = "https://openshift-python-wrapper.readthedocs.io/en/latest/"
105-
Download = "https://pypi.org/project/openshift-python-wrapper/"
106-
"Bug Tracker" = "https://github.com/RedHatQE/openshift-python-wrapper/issues"
98+
[project.urls]
99+
homepage = "https://github.com/RedHatQE/openshift-python-wrapper"
100+
documentation = "https://openshift-python-wrapper.readthedocs.io/en/latest/"
101+
Download = "https://pypi.org/project/openshift-python-wrapper/"
102+
"Bug Tracker" = "https://github.com/RedHatQE/openshift-python-wrapper/issues"
107103

108-
[project.scripts]
109-
class-generator = "class_generator.class_generator:main"
104+
[project.scripts]
105+
class-generator = "class_generator.class_generator:main"
110106

111107
[build-system]
112-
requires = [ "hatchling" ]
108+
requires = ["hatchling"]
113109
build-backend = "hatchling.build"

0 commit comments

Comments
 (0)