diff options
author | fourtysixandtwo <fourtysixandtwo@sliderr.net> | 2024-03-31 11:33:40 -0600 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-04-05 15:18:09 +0700 |
commit | 148dcb54b830a95721fcb80c11d30462dbfb8c8e (patch) | |
tree | 37001845dddfa5a27a134ca9eebacf23b7d80890 /gis/python3-shapely | |
parent | 3eacde769ef3ca4fd492d1cb0ff9aa6556cc0bae (diff) |
gis/python3-shapely: Fix PYTHONPATH.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'gis/python3-shapely')
-rw-r--r-- | gis/python3-shapely/python3-shapely.SlackBuild | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gis/python3-shapely/python3-shapely.SlackBuild b/gis/python3-shapely/python3-shapely.SlackBuild index 20da7f0a1327c..12a2c42b8b896 100644 --- a/gis/python3-shapely/python3-shapely.SlackBuild +++ b/gis/python3-shapely/python3-shapely.SlackBuild @@ -74,7 +74,8 @@ sed -i 's/oldest-supported-numpy/numpy>=1.19.3/' pyproject.toml # Requires newer version of setuptools than available in -stable. Has not # effect on -current -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 --no-isolation python3 -m installer -d "$PKG" dist/*.whl |