mirror of https://github.com/astral-sh/uv
18 lines
716 B
Bash
Executable File
18 lines
716 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# Compare the resolutions of pip(-tools) and puffin, e.g.
|
|
# ```bash
|
|
# scripts/compare_with_pip.sh scripts/benchmarks/requirements/pydantic.in
|
|
# ```
|
|
|
|
set -euo pipefail
|
|
|
|
TEMPD=$(mktemp -d)
|
|
|
|
# `| grep -v " *#"` to ignore the comment when diffing
|
|
time RUST_LOG=puffin=debug cargo run --bin puffin -- pip-compile ${1} | grep -v " *#" > $TEMPD/puffin.txt
|
|
# > WARNING: --strip-extras is becoming the default in version 8.0.0. To silence this warning, either use --strip-extras
|
|
# > to opt into the new default or use --no-strip-extras to retain the existing behavior.
|
|
time pip-compile --strip-extras -o - -q ${1} | grep -v " *#" > $TEMPD/pip-compile.txt
|
|
diff -u $TEMPD/pip-compile.txt $TEMPD/puffin.txt
|