From a2c429ceb65a0ae2bd8dab2bac73699e02cf3755 Mon Sep 17 00:00:00 2001 From: David Hendriks <davidhendriks93@gmail.com> Date: Thu, 21 Nov 2019 16:04:50 +0000 Subject: [PATCH] changing setup and c-compilation to write the library to a different location --- setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index 78eb6c3d2..2abee2e38 100644 --- a/setup.py +++ b/setup.py @@ -103,14 +103,14 @@ setup( }, packages=['binarycpython', 'binarycpython.utils', - ] + ], - # ext_modules=[ - # binary_c_python_api_module - # ], # binary_c must be loaded + ext_modules=[ + binary_c_python_api_module + ], # binary_c must be loaded ) -- GitLab