Skip to content

Commit d1891b5

Browse files
committedMar 18, 2025
Mirror: 0.6.7
1 parent 9f86bab commit d1891b5

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed
 

‎README.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ To ensure the lockfile is up-to-date:
2020
```yaml
2121
- repo: https://github.com/astral-sh/uv-pre-commit
2222
# uv version.
23-
rev: 0.6.6
23+
rev: 0.6.7
2424
hooks:
2525
# Update the uv lockfile
2626
- id: uv-lock
@@ -31,7 +31,7 @@ To autoexport `uv.lock` to `requirements.txt`:
3131
```yaml
3232
- repo: https://github.com/astral-sh/uv-pre-commit
3333
# uv version.
34-
rev: 0.6.6
34+
rev: 0.6.7
3535
hooks:
3636
- id: uv-export
3737
```
@@ -41,7 +41,7 @@ To export to an alternative file, modify the `args`:
4141
```yaml
4242
- repo: https://github.com/astral-sh/uv-pre-commit
4343
# uv version.
44-
rev: 0.6.6
44+
rev: 0.6.7
4545
hooks:
4646
- id: uv-export
4747
args: ["--frozen", "--output-file=requirements-custom.txt"]
@@ -52,7 +52,7 @@ To compile your requirements via pre-commit, add the following to your `.pre-com
5252
```yaml
5353
- repo: https://github.com/astral-sh/uv-pre-commit
5454
# uv version.
55-
rev: 0.6.6
55+
rev: 0.6.7
5656
hooks:
5757
# Run the pip compile
5858
- id: pip-compile
@@ -64,7 +64,7 @@ To compile alternative files, modify the `args` and `files`:
6464
```yaml
6565
- repo: https://github.com/astral-sh/uv-pre-commit
6666
# uv version.
67-
rev: 0.6.6
67+
rev: 0.6.7
6868
hooks:
6969
# Run the pip compile
7070
- id: pip-compile
@@ -77,7 +77,7 @@ To run the hook over multiple files at the same time:
7777
```yaml
7878
- repo: https://github.com/astral-sh/uv-pre-commit
7979
# uv version.
80-
rev: 0.6.6
80+
rev: 0.6.7
8181
hooks:
8282
# Run the pip compile
8383
- id: pip-compile
@@ -100,7 +100,7 @@ default_install_hook_types:
100100
repos:
101101
- repo: https://github.com/astral-sh/uv-pre-commit
102102
# uv version.
103-
rev: 0.6.6
103+
rev: 0.6.7
104104
hooks:
105105
- id: uv-sync
106106
```
@@ -113,7 +113,7 @@ To synchronize all dependencies in a workspace:
113113
```yaml
114114
- repo: https://github.com/astral-sh/uv-pre-commit
115115
# uv version.
116-
rev: 0.6.6
116+
rev: 0.6.7
117117
hooks:
118118
- id: uv-sync
119119
args: ["--locked", "--all-packages"]

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "uv-pre-commit"
33
version = "0.0.0"
44
dependencies = [
5-
"uv==0.6.6",
5+
"uv==0.6.7",
66
]
77

88
[project.optional-dependencies]

0 commit comments

Comments
 (0)
Please sign in to comment.