Skip to content

Commit

Permalink
uv/tests: update snapshot for regression test
Browse files Browse the repository at this point in the history
The `importlib-metadata` is no longer unconditionally repeated in the
output for Python 3.10 (or Python 3.7).

Fixes #6836
  • Loading branch information
BurntSushi committed Sep 3, 2024
1 parent f316af2 commit 3e6abec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crates/uv/tests/pip_compile.rs
Original file line number Diff line number Diff line change
Expand Up @@ -12261,7 +12261,7 @@ fn importlib_metadata_not_repeated() -> Result<()> {
# via build
importlib-metadata==6.7.0 ; python_full_version < '3.10'
# via build
importlib-metadata==7.1.0 ; python_full_version < '3.10.2'
importlib-metadata==7.1.0 ; python_full_version >= '3.10' and python_full_version < '3.10.2'
# via build
packaging==24.0
# via build
Expand All @@ -12275,7 +12275,7 @@ fn importlib_metadata_not_repeated() -> Result<()> {
# via importlib-metadata
zipp==3.15.0 ; python_full_version < '3.10'
# via importlib-metadata
zipp==3.18.1 ; python_full_version < '3.10.2'
zipp==3.18.1 ; python_full_version >= '3.10' and python_full_version < '3.10.2'
# via importlib-metadata
----- stderr -----
Expand Down

0 comments on commit 3e6abec

Please sign in to comment.