Skip to content

Commit 13e9166

Browse files
committed
Update dependencies and improve formatting consistency
Updated package constraints in `uv.lock` to refine Python version markers and adjusted dependencies like `sybil` and `sphinx`. Bumped `ruff-pre-commit` to v0.11.6 and improved code formatting, ensuring clarity in `pyproject.toml` and `.pre-commit-config.yaml`. Signed-off-by: DanielAvdar <66269169+DanielAvdar@users.noreply.github.com>
1 parent 60059a6 commit 13e9166

File tree

3 files changed

+13
-14
lines changed

3 files changed

+13
-14
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ repos:
77
- id: trailing-whitespace
88
- id: no-commit-to-branch
99
- repo: https://github.com/astral-sh/ruff-pre-commit
10-
rev: v0.11.5
10+
rev: v0.11.6
1111
hooks:
1212
- id: ruff-format
1313
args: [ --preview, --config=pyproject.toml ]

pyproject.toml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ name = "my-pkg" # todo: change to your package name
33
dynamic = ["version"]
44
description = ""
55
authors = [
6-
{name = "DanielAvdar", email = "66269169+DanielAvdar@users.noreply.github.com"}, # todo: change to your name and email
6+
{ name = "DanielAvdar", email = "66269169+DanielAvdar@users.noreply.github.com" }, # todo: change to your name and email
77
]
8-
license = {text = "MIT"}
8+
license = { text = "MIT" }
99
readme = "README.md"
1010
classifiers = [
1111
"Programming Language :: Python :: 3",
@@ -33,20 +33,19 @@ dev = [
3333
"mypy==1.13.0",
3434
"pytest-parametrization>=2022",
3535
"ruff>=0.8.2",
36-
36+
"sybil[pytest]",
3737
]
3838
docs = [
39-
"sybil[pytest]",
4039
"sphinx>=8.2.0; python_version >= '3.11'",
4140
"sphinx>=7.0.0; python_version < '3.11'",
4241
"sphinx-rtd-theme>=3.0.2",
4342
]
4443
[tool.hatch.build.targets.sdist]
45-
only-include = ["my_pkg",] # todo: change to your package name
44+
only-include = ["my_pkg", ] # todo: change to your package name
4645
source = "."
4746

4847
[tool.hatch.build.targets.wheel]
49-
only-include = ["my_pkg",] # todo: change to your package name
48+
only-include = ["my_pkg", ] # todo: change to your package name
5049
source = "."
5150

5251

@@ -62,10 +61,10 @@ source = "uv-dynamic-versioning"
6261

6362
[tool.ruff]
6463
line-length = 120
65-
include = ["pyproject.toml", "tests/**",]
64+
include = ["pyproject.toml", "tests/**", ]
6665

6766
[tool.ruff.lint]
68-
select = ["F", "B", "I", "F", "W", "E","A","N","D"]
67+
select = ["F", "B", "I", "F", "W", "E", "A", "N", "D"]
6968

7069
fixable = ["ALL"]
7170
[tool.ruff.lint.per-file-ignores]

uv.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)