From 169d65cec0369c30523be2276faa5aaa47c400d9 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Mon, 29 Dec 2025 22:19:40 +0100 Subject: [PATCH 1/2] remove tox configuration --- codecov.yml | 1 - tox.ini | 25 ------------------------- 2 files changed, 26 deletions(-) delete mode 100644 tox.ini diff --git a/codecov.yml b/codecov.yml index b492d9d..b3ef4c0 100644 --- a/codecov.yml +++ b/codecov.yml @@ -20,5 +20,4 @@ coverage: - end_to_end ignore: - - ".tox/**/*" - "src/pytask_parallel/_version.py" diff --git a/tox.ini b/tox.ini deleted file mode 100644 index e951b62..0000000 --- a/tox.ini +++ /dev/null @@ -1,25 +0,0 @@ -[tox] -requires = tox>=4 -envlist = test - -[testenv] -package = editable - -[testenv:typing] -deps = - ty -extras = - dask - coiled -commands = ty check src/ tests/ - -[testenv:test] -extras = test -commands = - pytest {posargs} - -[testenv:docs] -extras = docs, test -commands = - - sphinx-build -n -T -b html -d {envtmpdir}/doctrees docs/source docs/build/html - - sphinx-build -n -T -b doctest -d {envtmpdir}/doctrees docs/source docs/build/html From 58ececcfa94846ddca9543e332b6ada353cd8af8 Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Mon, 29 Dec 2025 22:20:06 +0100 Subject: [PATCH 2/2] document removal of tox --- docs/source/changes.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/source/changes.md b/docs/source/changes.md index 7fd44ed..f7a82dd 100644 --- a/docs/source/changes.md +++ b/docs/source/changes.md @@ -10,6 +10,7 @@ releases are available on [PyPI](https://pypi.org/project/pytask-parallel) and - {pull}`129` drops support for Python 3.8 and 3.9 and adds support for Python 3.14. - {pull}`130` switches type checking to ty. - {pull}`131` updates pre-commit hooks. +- {pull}`132` removes the tox configuration in favor of uv and just. ## 0.5.1 - 2025-03-09