Skip to content

Commit

Permalink
Release 1.0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
myakove committed Jan 2, 2025
1 parent 64bf458 commit 6e0d038
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 20 deletions.
36 changes: 17 additions & 19 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
[tool.pytest.ini_options]
addopts = ["--pdbcls=IPython.terminal.debugger:TerminalPdb"]

addopts = [ "--pdbcls=IPython.terminal.debugger:TerminalPdb" ]

[tool.ruff]
preview = true
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]
check_untyped_defs = true
Expand All @@ -20,36 +19,35 @@ no_implicit_optional = true
show_error_codes = true
warn_unused_ignores = true


[tool.hatch.build.targets.wheel]
packages = ["timeout_sampler"]
packages = [ "timeout_sampler" ]

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

[project]
name = "timeout-sampler"
version = "1.0.4"
version = "1.0.5"
description = "Timeout utility class to wait for any function output and interact with it in given time"
license = "Apache-2.0"
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Operating System :: OS Independent"
]
dependencies = ["pytest>=8.3.4", "python-simple-logger>=2.0.2"]
dependencies = [ "pytest>=8.3.4", "python-simple-logger>=2.0.2" ]

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

[project.urls]
homepage = "https://github.com/RedHatQE/timeout-sampler"
repository = "https://github.com/RedHatQE/timeout-sampler"
Download = "https://pypi.org/project/timeout-sampler"
"Bug Tracker" = "https://github.com/RedHatQE/timeout-sampler/issues"
[project.urls]
homepage = "https://github.com/RedHatQE/timeout-sampler"
repository = "https://github.com/RedHatQE/timeout-sampler"
Download = "https://pypi.org/project/timeout-sampler"
"Bug Tracker" = "https://github.com/RedHatQE/timeout-sampler/issues"

[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 6e0d038

Please sign in to comment.