From c88a4baaac5f8d01c44de39888cdb4c79d40985d Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Mon, 27 Jan 2025 14:18:15 -0500 Subject: [PATCH] Update `compile_enumerate_no_versions ` snapshot (#10998) ## Summary I think the "available versions" may not filter on `--exclude-newer`, since it's marked as an incompatibility? In which case, this error message can change as versions are published. --- crates/uv/tests/it/pip_compile.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv/tests/it/pip_compile.rs b/crates/uv/tests/it/pip_compile.rs index fbbdfdafa..404647eb3 100644 --- a/crates/uv/tests/it/pip_compile.rs +++ b/crates/uv/tests/it/pip_compile.rs @@ -13213,7 +13213,7 @@ fn compile_enumerate_no_versions() -> Result<()> { ----- stderr ----- × No solution found when resolving dependencies: - ╰─▶ Because the current Python version (3.10.[X]) does not satisfy Python>=3.11,<4.0 and all versions of rooster-blue depend on Python>=3.11,<4.0, we can conclude that all versions of rooster-blue cannot be used. + ╰─▶ Because the current Python version (3.10.[X]) does not satisfy Python>=3.11,<4.0 and rooster-blue<=0.0.8 depends on Python>=3.11,<4.0, we can conclude that rooster-blue<=0.0.8 cannot be used. And because you require rooster-blue, we can conclude that your requirements are unsatisfiable. "###);