Skip to content
Snippets Groups Projects
Commit 39156006 authored by Yaroslav Halchenko's avatar Yaroslav Halchenko
Browse files

debian/rules - fixed version for comparison against sphinx. Now documentation...

debian/rules - fixed version for comparison against sphinx. Now documentation should get built on recent releases (Closes: #760730).

Thanks Federico Ceratto for the report
parent fdafd8de
No related branches found
Tags
No related merge requests found
scikit-learn (0.15.2-2) unstable; urgency=medium
* debian/rules
- fixed version for comparison against sphinx. Now documentation should
get built on recent releases (Closes: #760730).
Thanks Federico Ceratto for the report
-- Yaroslav Halchenko <debian@onerussian.com> Mon, 08 Sep 2014 09:47:41 -0400
scikit-learn (0.15.2-1) unstable; urgency=medium scikit-learn (0.15.2-1) unstable; urgency=medium
* Fresh upstream minor release * Fresh upstream minor release
......
...@@ -8,7 +8,7 @@ PYVERS = $(shell pyversions -vr) ...@@ -8,7 +8,7 @@ PYVERS = $(shell pyversions -vr)
PYVER = $(shell pyversions -vd) PYVER = $(shell pyversions -vd)
SPHINX_VER := $(shell python -c 'from sphinx import __version__; print __version__') SPHINX_VER := $(shell python -c 'from sphinx import __version__; print __version__')
NODOC = $(shell dpkg --compare-versions $(SPHINX_VER) lt 10.1.3 && echo "nodoc" || echo "") NODOC = $(shell dpkg --compare-versions $(SPHINX_VER) lt 1.1.3 && echo "nodoc" || echo "")
export DEB_BUILD_OPTIONS += $(NODOC) export DEB_BUILD_OPTIONS += $(NODOC)
CYTHON_VER := $(shell dpkg -l cython 2>/dev/null | awk '/^ii/{print $$3;}' || echo 0) CYTHON_VER := $(shell dpkg -l cython 2>/dev/null | awk '/^ii/{print $$3;}' || echo 0)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment