Skip to content

Commit 4e77e9d

Browse files
authored
Use purelib rather than platlib
azote is pure python with no compiled modules. setup.py installs correctly in /usr/lib/python3.10/site-packages but get_path('platlib') returns /usr/lib64 and fails to run.
1 parent f55fdd3 commit 4e77e9d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dist/azote

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/sh
22

3-
LIB=$(python3 -Ic "from sysconfig import get_path; print(get_path('platlib'))")
3+
LIB=$(python3 -Ic "from sysconfig import get_path; print(get_path('purelib'))")
44
cd $LIB/azote
55
exec /usr/bin/python3 main.py "$@"

0 commit comments

Comments
 (0)