summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author fourtysixandtwo2024-03-31 22:35:30 +0200
committer Willy Sudiarto Raharjo2024-04-05 10:18:17 +0200
commite52e0650a5180bb22a1f25498cfef89d85b3920d (patch)
treebca5da37dae7b9ffe32772f512d027b0613a4ef6
parente2444e0b10b3d753daa326453d4fe768573b53ca (diff)
downloadslackbuilds-e52e0650a5180bb22a1f25498cfef89d85b3920d.tar.gz
python/python3-trio: Fix PYTHONPATH.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--python/python3-trio/python3-trio.SlackBuild3
1 files changed, 2 insertions, 1 deletions
diff --git a/python/python3-trio/python3-trio.SlackBuild b/python/python3-trio/python3-trio.SlackBuild
index 58451afe75..199677ae6f 100644
--- a/python/python3-trio/python3-trio.SlackBuild
+++ b/python/python3-trio/python3-trio.SlackBuild
@@ -80,7 +80,8 @@ find -L . \
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
-export PYTHONPATH=/opt/python3.9/site-packages/
+PYVER=$(python3 -c 'import sys; print("%d.%d" % sys.version_info[:2])')
+export PYTHONPATH=/opt/python$PYVER/site-packages/
python3 -m build --wheel --no-isolation
python3 -m installer --destdir "$PKG" dist/*.whl