1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
From: Graham Inggs <ginggs@debian.org>
Date: Wed, 29 May 2024 16:24:18 +0100
Subject: Drop the runtime dependency on Cython
Last-Update: 2024-01-10
---
src/mlpack/bindings/python/setup.py.in | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/mlpack/bindings/python/setup.py.in b/src/mlpack/bindings/python/setup.py.in
index 54cf2f0..1b4ad89 100644
--- a/src/mlpack/bindings/python/setup.py.in
+++ b/src/mlpack/bindings/python/setup.py.in
@@ -144,7 +144,7 @@ setup(name='mlpack',
'Documentation': 'http://www.mlpack.org/doc/mlpack-${PACKAGE_VERSION}/python.html',
'Source': 'https://github.com/mlpack/mlpack/',
'Tracker': 'https://github.com/mlpack/mlpack/issues'},
- install_requires=['cython>=0.24', 'numpy', 'pandas'],
+ install_requires=['numpy', 'pandas'],
package_dir={ '': '.' }, # Might be superfluous.
packages=['mlpack'],
package_data={ 'mlpack': include_files + ['../mlpack/share/pkgconfig/mlpack.pc'] },
|