Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs>=0.4",
"hatch-vcs>=0.5",
"hatchling>=1.27",
]

Expand Down Expand Up @@ -50,15 +50,15 @@ dependencies = [
"tomli>=2.2.1; python_version<'3.11'",
]
optional-dependencies.docs = [
"furo>=2024.8.6",
"furo>=2025.7.19",
"sphinx-autodoc-typehints>=3.2",
]
optional-dependencies.testing = [
"covdefaults>=2.3",
"pytest>=8.3.5",
"pytest-cov>=6.1.1",
"pytest-mock>=3.14",
"setuptools>=80.3.1",
"pytest>=8.4.2",
"pytest-cov>=7",
"pytest-mock>=3.15",
"setuptools>=80.9",
]
urls.Changelog = "https://github.com/tox-dev/pyproject-api/releases"
urls.Homepage = "https://pyproject-api.readthedocs.io"
Expand Down Expand Up @@ -138,6 +138,7 @@ paths.source = [
report.omit = [
]
run.parallel = true
run.patch = [ "subprocess" ]
run.plugins = [
"covdefaults",
]
Expand Down
14 changes: 7 additions & 7 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
requires =
tox>=4.25
tox-uv>=1.25
tox>=4.30.2
tox-uv>=1.28
env_list =
fix
3.13
Expand Down Expand Up @@ -38,7 +38,7 @@ commands =
description = run static analysis and style check using flake8
package = skip
deps =
pre-commit-uv>=4.1.4
pre-commit-uv>=4.1.5
pass_env =
HOMEPATH
PROGRAMDATA
Expand All @@ -57,7 +57,7 @@ commands =
[testenv:type]
description = run type check on code base
deps =
mypy==1.15
mypy==1.17.1
set_env =
{tty:MYPY_FORCE_COLOR = 1}
commands =
Expand All @@ -68,9 +68,9 @@ commands =
description = check that the long description is valid
skip_install = true
deps =
check-wheel-contents>=0.6.1
twine>=6.1
uv>=0.7.2
check-wheel-contents>=0.6.3
twine>=6.2
uv>=0.8.16
commands =
uv build --sdist --wheel --out-dir {env_tmp_dir} .
twine check {env_tmp_dir}{/}*
Expand Down
Loading