File tree Expand file tree Collapse file tree 3 files changed +3
-5
lines changed
lib-python/3/distutils/command Expand file tree Collapse file tree 3 files changed +3
-5
lines changed Original file line number Diff line number Diff line change 29
29
30
30
INSTALL_SCHEMES = {
31
31
'unix_prefix' : {
32
- 'purelib' : '$base/lib-python/$py_version_major /site-packages' ,
33
- 'platlib' : '$platbase/lib-python/$py_version_major /site-packages' ,
32
+ 'purelib' : '$base/lib/python$py_version_short /site-packages' ,
33
+ 'platlib' : '$platbase/lib/python$py_version_short /site-packages' ,
34
34
'headers' : '$base/include/python$py_version_short$abiflags/$dist_name' ,
35
35
'scripts' : '$base/bin' ,
36
36
'data' : '$base' ,
@@ -291,7 +291,6 @@ def finalize_options(self):
291
291
'dist_version' : self .distribution .get_version (),
292
292
'dist_fullname' : self .distribution .get_fullname (),
293
293
'py_version' : py_version ,
294
- 'py_version_major' : '%d' % sys .version_info [0 ],
295
294
'py_version_short' : '%d.%d' % sys .version_info [:2 ],
296
295
'py_version_nodot' : '%d%d' % sys .version_info [:2 ],
297
296
'sys_prefix' : prefix ,
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ default: install
23
23
install :
24
24
$(QUIETLY ) mx $(OPT_VERBOSE ) python3 -m zipfile -e ${SETUPTOOLS_ZIP} .
25
25
$(QUIETLY ) ${IN_SETUPTOOLS_DIR} mx $(OPT_VERBOSE ) python3 bootstrap.py
26
- $(QUIETLY ) ${IN_SETUPTOOLS_DIR} mx $(OPT_VERBOSE ) python3 setup.py $(OPT_QUIET ) install
26
+ $(QUIETLY ) ${IN_SETUPTOOLS_DIR} mx $(OPT_VERBOSE ) python3 setup.py $(OPT_QUIET ) install --user
27
27
28
28
clean :
29
29
$(QUIETLY ) rm -rf ${SETUPTOOLS_DIR}
Original file line number Diff line number Diff line change 244
244
"subDir" : "graalpython" ,
245
245
"native" : True ,
246
246
"vpath" : False ,
247
- "results" : ["graalpython/lib-python/3/site-packages" ],
248
247
"output" : "." ,
249
248
"license" : ["MIT" ],
250
249
"defaultBuild" : False ,
You can’t perform that action at this time.
0 commit comments