From 65aa8572aecb9b8cfff18b9a9e3d4ad26a00d049 Mon Sep 17 00:00:00 2001 From: David Soria Parra Date: Thu, 22 Feb 2024 07:04:57 +0000 Subject: [PATCH 1/3] fix missing space in init --build-system flag description (#737) --- rye/src/cli/init.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rye/src/cli/init.rs b/rye/src/cli/init.rs index 786fafb132..a456c314d0 100644 --- a/rye/src/cli/init.rs +++ b/rye/src/cli/init.rs @@ -47,7 +47,7 @@ pub struct Args { /// Do not create .python-version file (requires-python will be used) #[arg(long)] no_pin: bool, - /// Which build system should be used(defaults to hatchling)? + /// Which build system should be used (defaults to hatchling)? #[arg(long)] build_system: Option, /// Which license should be used (SPDX identifier)? From 1bab646ac4e033b815eabb1c0f4ef363e3bdc0cd Mon Sep 17 00:00:00 2001 From: Hynek Schlawack Date: Thu, 22 Feb 2024 08:07:10 +0100 Subject: [PATCH 2/3] Fix typo & missing comma (#739) --- docs/philosophy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/philosophy.md b/docs/philosophy.md index 262c3b92fc..1ed305bd19 100644 --- a/docs/philosophy.md +++ b/docs/philosophy.md @@ -143,7 +143,7 @@ allows much easier cross-python version testing via tox or CI. Today there are a ton of different resolvers in the Python ecosystem. Pip has two, poetry has one, pdm has one, different independent Python and Rust resolvers exist on top of that. -Resolvers are important, but unfortunately are are both too many and too many issues with +Resolvers are important, but unfortunately, there are both too many and too many issues with the existing ones. Here is what I believe a resolver needs to be able to accomplish: * **Allow resolving across markers:** most resolvers in the Python ecosystem today can only From 255c102cad128ae2f0650b62ba5779bff6e4d48c Mon Sep 17 00:00:00 2001 From: Jo <10510431+j178@users.noreply.github.com> Date: Thu, 22 Feb 2024 15:07:19 +0800 Subject: [PATCH 3/3] Bump `uv` to 0.1.7 (#740) * Bump `uv` to 0.1.7 * Add PR number --- CHANGELOG.md | 2 +- rye/src/bootstrap.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7f3e4c28b1..c618c54685 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,7 +9,7 @@ _Unreleased_ - Fixed `rye config --show-path` abort with an error. #706 -- Bumped `uv` to 0.1.6. #719 +- Bumped `uv` to 0.1.7. #719, #740 - Bumped `ruff` to 0.2.2. #700 diff --git a/rye/src/bootstrap.rs b/rye/src/bootstrap.rs index f3000a783b..8c388fc99e 100644 --- a/rye/src/bootstrap.rs +++ b/rye/src/bootstrap.rs @@ -57,7 +57,7 @@ unearth==0.14.0 urllib3==2.0.7 virtualenv==20.25.0 ruff==0.2.2 -uv==0.1.6 +uv==0.1.7 "#; static FORCED_TO_UPDATE: AtomicBool = AtomicBool::new(false);