From 92022e126b335b787be5f234016db8ae1203b4e1 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 10 Dec 2021 14:29:09 +0530 Subject: [PATCH] We want the traditional bypy location in qt6 --- setup/installers.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/setup/installers.py b/setup/installers.py index 1b32ca5cba..04ac2a25a7 100644 --- a/setup/installers.py +++ b/setup/installers.py @@ -12,9 +12,7 @@ d = os.path.dirname def get_paths(): base = d(d(os.path.abspath(__file__))) - traditional_bypy_location = os.path.join(d(base), 'bypy') - compat_bypy_location = os.path.join(base, 'bypy', 'b', 'bypy-old') - bypy = compat_bypy_location if os.path.exists(compat_bypy_location) else traditional_bypy_location + bypy = os.path.join(d(base), 'bypy') bypy = os.environ.get('BYPY_LOCATION', bypy) if not os.path.isdir(bypy): raise SystemExit(