From d8d8758f613b430fdfdb9dec60816ba111d42b12 Mon Sep 17 00:00:00 2001 From: konstin Date: Mon, 24 Mar 2025 17:24:33 -0400 Subject: [PATCH] Test 10min faster Setuptools released their version with the fix at 2025-03-24 19:50:41 UTC, while we use exclude newer with 2025-03-24 20:00:00 UTC. We fix this by lowering the bound to 2025-03-24 19:00:00. --- crates/uv/tests/it/pip_install.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/uv/tests/it/pip_install.rs b/crates/uv/tests/it/pip_install.rs index ae77c8d04..c1f30987a 100644 --- a/crates/uv/tests/it/pip_install.rs +++ b/crates/uv/tests/it/pip_install.rs @@ -10270,7 +10270,7 @@ fn change_layout_custom_directory() -> Result<()> { /// See: #[test] fn setuptools_non_normalized_setup_cfg() -> Result<()> { - let context = TestContext::new("3.12").with_exclude_newer("2025-03-24T20:00:00Z"); + let context = TestContext::new("3.12").with_exclude_newer("2025-03-24T19:00:00Z"); let pyproject_toml = context.temp_dir.child("pyproject.toml"); pyproject_toml.touch()?;