diff --git a/docs/source/changes.md b/docs/source/changes.md index 04d0afe..251a934 100644 --- a/docs/source/changes.md +++ b/docs/source/changes.md @@ -5,7 +5,7 @@ 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). -## 0.5.0 - 2024-xx-xx +## 0.5.0 - 2024-05-26 - {pull}`85` simplifies code since loky is a dependency. - {pull}`86` adds support for dask. @@ -29,6 +29,7 @@ releases are available on [PyPI](https://pypi.org/project/pytask-parallel) and tasks are submitted. - {pull}`107` removes status from `pytask_execute_task_log_start` hook call. - {pull}`109` improves the documentation. +- {pull}`110` prepares the release of v0.5. ## 0.4.1 - 2024-01-12 diff --git a/pyproject.toml b/pyproject.toml index e99a9fd..79d429c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -15,7 +15,7 @@ dependencies = [ "cloudpickle", "loky", "pluggy>=1.0.0", - "pytask>=0.4.5", + "pytask>=0.5.0", "rich", ] dynamic = ["version"] diff --git a/tox.ini b/tox.ini index b2057a0..aad0ebc 100644 --- a/tox.ini +++ b/tox.ini @@ -8,7 +8,6 @@ package = editable [testenv:typing] deps = mypy - git+https://github.com/pytask-dev/pytask.git@main extras = dask coiled @@ -16,8 +15,6 @@ commands = mypy [testenv:test] extras = test -deps = - git+https://github.com/pytask-dev/pytask.git@main commands = pytest {posargs}