Skip to content

Commit 0fa3f0c

Browse files
committed
chore: prefer uv sync --locked
1 parent 67c8dcb commit 0fa3f0c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Here's how to set up `python-re3data` for local development.
6565

6666
```console
6767
$ cd python-re3data
68-
$ uv sync --frozen
68+
$ uv sync --locked
6969
```
7070

7171
4. Create a branch for local development:

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ permissions: {}
99
env:
1010
PYTHONUNBUFFERED: 1
1111
FORCE_COLOR: 1
12-
UV_FROZEN: true # do not update the lockfile during `uv sync` and `uv run` commands
12+
UV_LOCKED: true # do not update the lockfile during `uv sync` and `uv run` commands
1313

1414
jobs:
1515
test:

justfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ _default:
66
@just --list --unsorted
77

88
sync:
9-
uv sync --frozen
9+
uv sync --locked
1010

1111
sync-docs:
12-
uv sync --frozen --group=docs
12+
uv sync --locked --group=docs
1313

1414
@project-version:
1515
uv run toml get --toml-path pyproject.toml project.version

0 commit comments

Comments
 (0)