From 4b21c08825469b51d2bc6bc2d3273098832aa689 Mon Sep 17 00:00:00 2001 From: Yaroslav Halchenko <debian@onerussian.com> Date: Mon, 21 Dec 2015 20:41:39 -0500 Subject: [PATCH] debian/rules - boost minimal Cython version for recythonization to 0.23.1. Should enable back bakckports on older Debian/Ubuntus --- debian/changelog | 7 +++++-- debian/rules | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/debian/changelog b/debian/changelog index 93095a27f0..ca03be3d0e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,10 +1,13 @@ -scikit-learn (0.17.0-3) UNRELEASED; urgency=medium +scikit-learn (0.17.0-3) unstable; urgency=medium * debian/control - recommend python3- versions of packages for python3-sklearn. Thanks Christopher Baines + * debian/rules + - boost minimal Cython version for recythonization to 0.23.1. + Should enable back bakckports on older Debian/Ubuntus - -- Yaroslav Halchenko <debian@onerussian.com> Sun, 06 Dec 2015 20:18:45 -0500 + -- Yaroslav Halchenko <debian@onerussian.com> Mon, 21 Dec 2015 20:38:42 -0500 scikit-learn (0.17.0-2) unstable; urgency=medium diff --git a/debian/rules b/debian/rules index 1240026050..a3c33d09a0 100755 --- a/debian/rules +++ b/debian/rules @@ -16,7 +16,7 @@ NODOC = $(shell dpkg --compare-versions $(SPHINX_VER) lt 1.1.3 && echo "nodoc" | export DEB_BUILD_OPTIONS += $(NODOC) CYTHON_VER := $(shell dpkg -l cython 2>/dev/null | awk '/^ii/{print $$3;}' || echo 0) -RECONF = $(shell dpkg --compare-versions $(CYTHON_VER) ge 0.20.1 && echo ",autoreconf" || echo "") +RECONF = $(shell dpkg --compare-versions $(CYTHON_VER) ge 0.23.1 && echo ",autoreconf" || echo "") # Some tests are known to fail randomly so need to be excluded ATM NOSEARGS := -- GitLab