From 88958f3b98bafd8ed6e0da6025900c8c0852966b Mon Sep 17 00:00:00 2001 From: PoesRaven Date: Fri, 7 Sep 2018 12:16:52 -0400 Subject: [PATCH 1/2] Update setup.py Modified to include CCFI during installation. dxlclient errors out without CCFI. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c44870e..258cd57 100644 --- a/setup.py +++ b/setup.py @@ -96,7 +96,8 @@ def run(self): "msgpack>=0.5", "oscrypto", "paho-mqtt>=1.3", - "requests" + "requests", + "ccfi" # avoids oscrypto error: "oscrypto._ffi.FFIEngineError: Error initializing ctypes" ], tests_require=TEST_REQUIREMENTS, From 418ac3e9291cb3db6d921b31829059c6125fb2c3 Mon Sep 17 00:00:00 2001 From: PoesRaven Date: Fri, 7 Sep 2018 12:30:46 -0400 Subject: [PATCH 2/2] Update setup.py Fixed typo --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 258cd57..65164dc 100644 --- a/setup.py +++ b/setup.py @@ -97,7 +97,7 @@ def run(self): "oscrypto", "paho-mqtt>=1.3", "requests", - "ccfi" # avoids oscrypto error: "oscrypto._ffi.FFIEngineError: Error initializing ctypes" + "cffi" # avoids oscrypto error: "oscrypto._ffi.FFIEngineError: Error initializing ctypes" ], tests_require=TEST_REQUIREMENTS,