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/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 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