1
0
mirror of https://github.com/facebook/proxygen.git synced 2025-08-07 07:02:53 +03:00

python: disable Python 3.9 temporarily

Reviewed By: genevievehelsel

Differential Revision: D37204497

fbshipit-source-id: e9ca9f36863e1b5753d23c9b7421d6e91a0f94ad
This commit is contained in:
Zeyi (Rice) Fan
2022-06-16 04:56:07 -07:00
committed by Facebook GitHub Bot
parent e47f818f7c
commit 6c039a848e

View File

@@ -58,7 +58,8 @@ int locate_py_main(int argc, wchar_t** argv) {
add_search_path(L"C:\\tools\\fb-python\\fb-python37\\");
add_search_path(L"C:\\Python38\\");
add_search_path(L"C:\\tools\\fb-python\\fb-python38\\");
add_search_path(L"C:\\tools\\fb-python\\fb-python39\\");
// TODO(T123615656): Re-enable Python 3.9 after the fix
// add_search_path(L"C:\\tools\\fb-python\\fb-python39\\");
python_dll =
LoadLibraryExW(L"python3.dll", NULL, LOAD_LIBRARY_SEARCH_DEFAULT_DIRS);