Skip to content

Commit

Permalink
Mirror: 0.5.18
Browse files Browse the repository at this point in the history
  • Loading branch information
zanieb committed Jan 11, 2025
1 parent 95c14be commit ba7b31d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date:
```yaml
- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.5.17
rev: 0.5.18
hooks:
# Update the uv lockfile
- id: uv-lock
Expand All @@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`:
```yaml
- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.5.17
rev: 0.5.18
hooks:
- id: uv-export
```
Expand All @@ -41,7 +41,7 @@ To export to an alternative file, modify the `args`:
```yaml
- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.5.17
rev: 0.5.18
hooks:
- id: uv-export
args: ["--frozen", "--output-file=requirements-custom.txt"]
Expand All @@ -52,7 +52,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com
```yaml
- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.5.17
rev: 0.5.18
hooks:
# Run the pip compile
- id: pip-compile
Expand All @@ -64,7 +64,7 @@ To compile alternative files, modify the `args` and `files`:
```yaml
- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.5.17
rev: 0.5.18
hooks:
# Run the pip compile
- id: pip-compile
Expand All @@ -77,7 +77,7 @@ To run the hook over multiple files at the same time:
```yaml
- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.5.17
rev: 0.5.18
hooks:
# Run the pip compile
- id: pip-compile
Expand All @@ -100,7 +100,7 @@ default_install_hook_types:
repos:
- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.5.17
rev: 0.5.18
hooks:
- id: uv-sync
```
Expand All @@ -113,7 +113,7 @@ To synchronize all dependencies in a workspace:
```yaml
- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.5.17
rev: 0.5.18
hooks:
- id: uv-sync
args: ["--locked", "--all-packages"]
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "uv-pre-commit"
version = "0.0.0"
dependencies = [
"uv==0.5.17",
"uv==0.5.18",
]

[project.optional-dependencies]
Expand Down

0 comments on commit ba7b31d

Please sign in to comment.