From 5e16292a90d19f3f00e6c7e0d0199de5f69326fe Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Mon, 29 Dec 2025 18:33:28 +0100 Subject: [PATCH 1/2] Switch typing checks to ty --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index aad0ebc..e951b62 100644 --- a/tox.ini +++ b/tox.ini @@ -7,11 +7,11 @@ package = editable [testenv:typing] deps = - mypy + ty extras = dask coiled -commands = mypy +commands = ty check src/ tests/ [testenv:test] extras = test From b00684354ce24f777f46d1fc3ea76271daa863aa Mon Sep 17 00:00:00 2001 From: Tobias Raabe Date: Mon, 29 Dec 2025 18:49:26 +0100 Subject: [PATCH 2/2] Document typing tooling change --- docs/source/changes.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/source/changes.md b/docs/source/changes.md index e2ab1c8..98b0c4c 100644 --- a/docs/source/changes.md +++ b/docs/source/changes.md @@ -5,6 +5,10 @@ chronological order. Releases follow [semantic versioning](https://semver.org/) releases are available on [PyPI](https://pypi.org/project/pytask-parallel) and [Anaconda.org](https://anaconda.org/conda-forge/pytask-parallel). +## Unreleased + +- {pull}`130` switches type checking to ty. + ## 0.5.1 - 2025-03-09 - {pull}`114` drops support for Python 3.8 and adds support for Python 3.13.