File: no-runtime-cython.patch

package info (click to toggle)
mlpack 4.6.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 31,272 kB
  • sloc: cpp: 226,039; python: 1,934; sh: 1,198; lisp: 414; makefile: 85
file content (22 lines) | stat: -rw-r--r-- 1,002 bytes parent folder | download | duplicates (2)
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'] },