blob: 43ee4d08a54de46c96ce35b45d4c29837f6251b5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#
# Useful variables for determining Python version and paths.
#
py2_ver="2.7"
py2_lib="usr/lib/python${py2_ver}"
py2_sitelib="${py2_lib}/site-packages"
py2_inc="usr/include/python${py2_ver}"
py3_ver="3.10"
py3_abiver=""
py3_lib="usr/lib/python${py3_ver}"
py3_sitelib="${py3_lib}/site-packages"
py3_inc="usr/include/python${py3_ver}${py3_abiver}"
|