Skip to content
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/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ Here's how to set up `python-re3data` for local development.

```console
$ cd python-re3data
$ uv sync --frozen
$ uv sync --locked
```

4. Create a branch for local development:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ permissions: {}
env:
PYTHONUNBUFFERED: 1
FORCE_COLOR: 1
UV_FROZEN: true # do not update the lockfile during `uv sync` and `uv run` commands
UV_LOCKED: true # do not update the lockfile during `uv sync` and `uv run` commands

jobs:
test:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
permissions: {}

env:
UV_FROZEN: true # do not update the lockfile during `uv sync` and `uv run` commands
UV_LOCKED: true # do not update the lockfile during `uv sync` and `uv run` commands

jobs:
build:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ permissions: {}
env:
PYTHONUNBUFFERED: 1
FORCE_COLOR: 1
UV_FROZEN: true # do not update the lockfile during `uv sync` and `uv run` commands
UV_LOCKED: true # do not update the lockfile during `uv sync` and `uv run` commands

jobs:
test:
Expand Down
4 changes: 2 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ _default:
@just --list --unsorted

sync:
uv sync --frozen
uv sync --locked

sync-docs:
uv sync --frozen --group=docs
uv sync --locked --group=docs

@project-version:
uv run toml get --toml-path pyproject.toml project.version
Expand Down
Loading