1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-11 04:53:47 -05:00

Discover Tcl/Tk from Homebrew via pkgconfig for 3.11+ (#2501)

CPython 3.11+ dropped support for --with-tcl-tk-*
in favor of pure pkgconfig
This commit is contained in:
native-api
2022-10-29 22:48:13 +03:00
committed by GitHub
parent 44510a68f1
commit 5b0ac41dec
6 changed files with 70 additions and 61 deletions

View File

@@ -111,8 +111,10 @@ assert_failure() {
assert_equal() {
if [ "$1" != "$2" ]; then
{ echo "expected: $1"
echo "actual: $2"
{ echo "expected:"
echo "$1"
echo "actual:"
echo "$2"
} | flunk
fi
}