From b1fd3e34093a3199e645b9d2a26fc542d3829648 Mon Sep 17 00:00:00 2001 From: konsti Date: Tue, 29 Apr 2025 15:33:49 +0200 Subject: [PATCH] Fix typo (`-r`) in changelog (#13194) Fixes #13193 --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 78a0f8e22..488090957 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -31,7 +31,7 @@ This release includes preliminary support for the `pylock.toml` file format, as As of this release, `pylock.toml` is supported in the following commands: - To export a `uv.lock` to the `pylock.toml` format, run: `uv export -o pylock.toml` -- To generate a `pylock.toml` file from a set of requirements, run: `uv pip compile -o pylock.toml -r requirements.in` +- To generate a `pylock.toml` file from a set of requirements, run: `uv pip compile -o pylock.toml requirements.in` - To install from a `pylock.toml` file, run: `uv pip sync pylock.toml` or `uv pip install -r pylock.toml` ### Enhancements