b09e468ffb
* build Python 3.9.6 * use Python 3.9 docker image * fix pyjnius recipe * remove unused dependencies from cryptography recipe * fix PYTHON3_DLL_REL_PATH value * add idna requirement * Remove m abi flag from python lib (https://docs.python.org/3/whatsnew/3.8.html#build-and-c-api-changes) * aiohttp==3.6.0 * Add base Dockerfiles for builds
13 lines
636 B
Diff
13 lines
636 B
Diff
diff -Nru Python-3.8.2/Lib/site.py Python-3.8.2-new/Lib/site.py
|
|
--- Python-3.8.2/Lib/site.py 2020-04-28 12:48:38.000000000 -0700
|
|
+++ Python-3.8.2-new/Lib/site.py 2020-04-28 12:52:46.000000000 -0700
|
|
@@ -487,7 +487,8 @@
|
|
if key == 'include-system-site-packages':
|
|
system_site = value.lower()
|
|
elif key == 'home':
|
|
- sys._home = value
|
|
+ # this is breaking pyconfig.h path detection with venv
|
|
+ print('Ignoring "sys._home = value" override')
|
|
|
|
sys.prefix = sys.exec_prefix = site_prefix
|
|
|