1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
From: Neil Williams <codehelp@debian.org>
Date: Tue, 22 Mar 2022 08:48:09 +0000
Subject: Fix import and add wx dependency
---
setup.py | 1 +
1 file changed, 1 insertion(+)
diff --git a/setup.py b/setup.py
index b3f6d17..1d07e36 100644
--- a/setup.py
+++ b/setup.py
@@ -62,6 +62,7 @@ setup(
'pyfai;python_version>"2.7"',
'pyfai==0.17;python_version=="2.7"',
'dbus-python;platform_system=="Linux"',
+ 'wx;platform_system=="Linux"',
],
ext_modules=cythonize("bioxtasraw/sascalc_exts.pyx",
language_level=language_level),
|