From f1d3b08c12cef722ce73e7d4aa313b7263a7b68e Mon Sep 17 00:00:00 2001 From: konsti Date: Fri, 26 Jan 2024 14:36:25 +0100 Subject: [PATCH] Add missing version to pip sync test (#1121) The test started failing due to a newer version on pypi. --- crates/puffin/tests/pip_sync.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/puffin/tests/pip_sync.rs b/crates/puffin/tests/pip_sync.rs index ab7198c50..cd6c6876b 100644 --- a/crates/puffin/tests/pip_sync.rs +++ b/crates/puffin/tests/pip_sync.rs @@ -2881,7 +2881,7 @@ fn sync_editable_and_registry() -> Result<()> { // Install the registry-based version of Black. let requirements_txt = temp_dir.child("requirements.txt"); requirements_txt.write_str(indoc::indoc! {r" - black + black==24.1.0 " })?;