Skip to content

Commit 47a9124

Browse files
committed
Release 1.0.7
1 parent d5ccfce commit 47a9124

File tree

2 files changed

+37
-26
lines changed

2 files changed

+37
-26
lines changed

pyproject.toml

+36-25
Original file line numberDiff line numberDiff line change
@@ -1,64 +1,75 @@
11
[project]
22
name = "pyhelper-utils"
3-
version = "1.0.6"
3+
version = "1.0.7"
44
description = "Collective utility functions for python projects"
5-
authors = [
6-
{ name = "Meni Yakove", email = "[email protected]" },
7-
{ name = "Ruth Netser", email = "[email protected]" },
8-
{ name = "Debarati Basu-Nag", email = "[email protected]" },
9-
]
105
requires-python = "~=3.9"
116
readme = "README.md"
127
license = "Apache-2.0"
138
classifiers = [
149
"Programming Language :: Python :: 3",
15-
"Operating System :: OS Independent",
10+
"Operating System :: OS Independent"
1611
]
1712
dependencies = [
1813
"python-simple-logger>=2.0.0,<3",
1914
"requests>=2.31.0,<3",
2015
"rich>=13.7.1,<14",
2116
"ipdb>=0.13.13,<0.14",
22-
"python-rrmngmnt>=0.1.32,<0.2",
17+
"python-rrmngmnt>=0.1.32,<0.2"
2318
]
2419

25-
[project.urls]
26-
Homepage = "https://github.com/RedHatQE/pyhelper-utils"
27-
Repository = "https://github.com/RedHatQE/pyhelper-utils"
28-
Documentation = "https://github.com/RedHatQE/pyhelper-utils/blob/main/README.md"
20+
[[project.authors]]
21+
name = "Meni Yakove"
22+
2923

30-
[tool.coverage.run]
31-
omit = ["tests/*"]
24+
[[project.authors]]
25+
name = "Ruth Netser"
26+
3227

33-
[dependency-groups]
34-
tests = ["pytest>=8.1.1,<9", "pytest-cov>=6.0.0,<7", "pytest-mock>=3.14.0,<4"]
35-
dev = ["ipython"]
28+
[[project.authors]]
29+
name = "Debarati Basu-Nag"
30+
31+
32+
[project.urls]
33+
Homepage = "https://github.com/RedHatQE/pyhelper-utils"
34+
Repository = "https://github.com/RedHatQE/pyhelper-utils"
35+
Documentation = "https://github.com/RedHatQE/pyhelper-utils/blob/main/README.md"
36+
37+
[tool.coverage.run]
38+
omit = [ "tests/*" ]
3639

3740
[tool.coverage.report]
3841
fail_under = 90
3942
skip_empty = true
4043

41-
[tool.uv]
42-
default-groups = ["tests", "dev"]
43-
4444
[tool.coverage.html]
4545
directory = ".tests_coverage"
4646

47+
[tool.uv]
48+
default-groups = [ "tests", "dev" ]
49+
4750
[tool.hatch.build.targets.sdist]
48-
include = ["pyhelper_utils"]
51+
include = [ "pyhelper_utils" ]
4952

5053
[tool.hatch.build.targets.wheel]
51-
include = ["pyhelper_utils"]
54+
include = [ "pyhelper_utils" ]
5255

5356
[tool.ruff]
5457
preview = true
5558
line-length = 120
5659
fix = true
5760
output-format = "grouped"
5861

59-
[tool.ruff.format]
60-
exclude = [".git", ".venv", ".mypy_cache", ".tox", "__pycache__"]
62+
[tool.ruff.format]
63+
exclude = [ ".git", ".venv", ".mypy_cache", ".tox", "__pycache__" ]
64+
65+
[dependency-groups]
66+
tests = [
67+
"pytest>=8.1.1,<9",
68+
"pytest-cov>=6.0.0,<7",
69+
"pytest-mock>=3.14.0,<4"
70+
]
71+
dev = [ "ipython" ]
6172

6273
[build-system]
63-
requires = ["hatchling"]
74+
requires = [ "hatchling" ]
6475
build-backend = "hatchling.build"

uv.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)