Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use uv to speed up CI. #567

Merged
merged 6 commits into from
Apr 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
1 change: 1 addition & 0 deletions docs/source/changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ dependencies:
- sqlalchemy >=2
- tomli >=1.0.0
- typing_extensions
- universal_pathlib
- universal_pathlib >=0.2.2

# Misc
- deepdiff
Expand All @@ -36,7 +36,7 @@ dependencies:
- ruff
- syrupy
- tabulate
- tox
- tox-uv

# Documentation
- furo
Expand Down
Loading