at 24.11-pre 804 B view raw
1diff --git a/eduvpn_common/loader.py b/eduvpn_common/loader.py 2index 673d180..195f8c1 100644 3--- a/eduvpn_common/loader.py 4+++ b/eduvpn_common/loader.py 5@@ -21,6 +21,7 @@ def load_lib() -> CDLL: 6 :return: The Go shared library loaded with cdll.LoadLibrary from ctypes 7 :rtype: CDLL 8 """ 9+ return cdll.LoadLibrary("@libeduvpn-common@") 10 lib_prefixes = defaultdict( 11 lambda: "lib", 12 { 13diff --git a/setup.py b/setup.py 14index 0d23379..a9d7926 100755 15--- a/setup.py 16+++ b/setup.py 17@@ -92,4 +92,6 @@ class bdist_wheel(_bdist_wheel): 18 self.exports_lib_path = "../../exports/lib" # default 19 20 def run(self): 21+ _bdist_wheel.run(self) 22+ return 23 self.plat_name_supplied = True # Force use platform 24 25 libpath = getlibpath(self.plat_name)