Skip to content

Commit

Permalink
Release 11.0.25
Browse files Browse the repository at this point in the history
  • Loading branch information
myakove committed Jan 30, 2025
1 parent 51da61e commit 9966a42
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 32 deletions.
66 changes: 35 additions & 31 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tool.pytest.ini_options]
markers = [
"incremental: Mark tests as incremental",
"kubevirt: Mark tests as kubevirt tests",
"kubevirt: Mark tests as kubevirt tests"
]
addopts = [
"--pdbcls=IPython.terminal.debugger:TerminalPdb",
Expand All @@ -13,11 +13,15 @@ addopts = [
"--cov=ocp_resources.utils.constants",
"--cov=ocp_resources.utils.utils",
"--cov=ocp_resources.exceptions",
"--cov=class_generator",
"--cov=class_generator"
]

[tool.coverage.run]
omit = ["tests/*", "class_generator/tests/*", "class_generator/scripts/tests/*"]
omit = [
"tests/*",
"class_generator/tests/*",
"class_generator/scripts/tests/*"
]

[tool.coverage.report]
fail_under = 45
Expand All @@ -32,31 +36,31 @@ line-length = 120
fix = true
output-format = "grouped"

[tool.ruff.format]
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
[tool.ruff.format]
exclude = [ ".git", ".venv", ".mypy_cache", ".tox", "__pycache__" ]

[tool.mypy]
no_implicit_optional = true
show_error_codes = true
warn_unused_ignores = true

[tool.hatch.build.targets.wheel]
packages = ["ocp_resources", "class_generator"]
packages = [ "ocp_resources", "class_generator" ]

[tool.uv]
dev-dependencies = ["ipdb>=0.13.13", "ipython>=8.12.3"]
dev-dependencies = [ "ipdb>=0.13.13", "ipython>=8.12.3" ]

[project]
requires-python = ">=3.9"
name = "openshift-python-wrapper"
version = "11.0.24"
version = "11.0.25"
description = "Wrapper around https://github.com/kubernetes-client/python"
readme = "README.md"
license = "Apache-2.0"
keywords = ["Openshift", "Kubevirt", "Openshift Virtualization"]
keywords = [ "Openshift", "Kubevirt", "Openshift Virtualization" ]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Operating System :: OS Independent"
]
dependencies = [
"click>=8.1.7",
Expand All @@ -76,34 +80,34 @@ dependencies = [
"ruff>=0.6.9",
"testcontainers>=4.9.0",
"timeout-sampler>=0.0.46",
"xmltodict>=0.13.0",
"xmltodict>=0.13.0"
]

[[project.authors]]
name = "Meni Yakove"
email = "myakove@gmail.com"
[[project.authors]]
name = "Meni Yakove"
email = "myakove@gmail.com"

[[project.authors]]
name = "Ruth Netser"
email = "rnetser@gmail.com"
[[project.authors]]
name = "Ruth Netser"
email = "rnetser@gmail.com"

[[project.maintainers]]
name = "Meni Yakove"
email = "myakove@gmail.com"
[[project.maintainers]]
name = "Meni Yakove"
email = "myakove@gmail.com"

[[project.maintainers]]
name = "Ruth Netser"
email = "rnetser@gmail.com"
[[project.maintainers]]
name = "Ruth Netser"
email = "rnetser@gmail.com"

[project.urls]
homepage = "https://github.com/RedHatQE/openshift-python-wrapper"
documentation = "https://openshift-python-wrapper.readthedocs.io/en/latest/"
Download = "https://pypi.org/project/openshift-python-wrapper/"
"Bug Tracker" = "https://github.com/RedHatQE/openshift-python-wrapper/issues"
[project.urls]
homepage = "https://github.com/RedHatQE/openshift-python-wrapper"
documentation = "https://openshift-python-wrapper.readthedocs.io/en/latest/"
Download = "https://pypi.org/project/openshift-python-wrapper/"
"Bug Tracker" = "https://github.com/RedHatQE/openshift-python-wrapper/issues"

[project.scripts]
class-generator = "class_generator.class_generator:main"
[project.scripts]
class-generator = "class_generator.class_generator:main"

[build-system]
requires = ["hatchling"]
requires = [ "hatchling" ]
build-backend = "hatchling.build"
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9966a42

Please sign in to comment.