diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 1c1eb9ea..eb01c580 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -33,7 +33,7 @@ jobs: python-version: ${{ matrix.python-version }} cache: pip allow-prereleases: true - - run: pip install tox + - run: pip install tox-uv - if: matrix.os == 'ubuntu-latest' run: | diff --git a/docs/source/changes.md b/docs/source/changes.md index 5762765c..000c0f9f 100644 --- a/docs/source/changes.md +++ b/docs/source/changes.md @@ -18,6 +18,7 @@ releases are available on [PyPI](https://pypi.org/project/pytask) and - {pull}`555` uses new-style hook wrappers and requires pluggy 1.3 for typing. - {pull}`557` fixes an issue with `@task(after=...)` in notebooks and terminals. - {pull}`566` makes universal-pathlib an official dependency. +- {pull}`567` adds uv to the CI workflow for faster installation. - {pull}`568` restricts `task_files` to a list of patterns and raises a better error. - {pull}`569` removes the hooks related to the creation of the DAG. - {pull}`571` removes redundant calls to `PNode.state()` which causes a high penalty for diff --git a/environment.yml b/environment.yml index 04062711..5a74fc50 100644 --- a/environment.yml +++ b/environment.yml @@ -21,7 +21,7 @@ dependencies: - sqlalchemy >=2 - tomli >=1.0.0 - typing_extensions - - universal_pathlib + - universal_pathlib >=0.2.2 # Misc - deepdiff @@ -36,7 +36,7 @@ dependencies: - ruff - syrupy - tabulate - - tox + - tox-uv # Documentation - furo