Skip to content

Commit 7b3567b

Browse files
committed
changelog and trying to reincarnate building docs
1 parent d68ed2d commit 7b3567b

File tree

5 files changed

+21
-14
lines changed

5 files changed

+21
-14
lines changed

debian/changelog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
pandas (0.16.1-1) unstable; urgency=medium
2+
3+
* Fresh upstream release (Closes: #787432)
4+
* debian/{control,rules}
5+
- build -doc package (Closes: #660900)
6+
7+
-- Yaroslav Halchenko <[email protected]> Mon, 01 Jun 2015 16:00:10 -0400
8+
19
pandas (0.16.0~rc1-1) experimental; urgency=medium
210

311
* New upstream release candidate

debian/control

+8-9
Original file line numberDiff line numberDiff line change
@@ -115,15 +115,14 @@ Description: data structures for "relational" or "labeled" data - Python 3
115115
.
116116
This package contains the Python 3 version.
117117

118-
# No doc package built due to dependency on ipython 0.11 - only experimental
119-
# Package: python-pandas-doc
120-
# Architecture: all
121-
# Section: doc
122-
# Depends: ${misc:Depends}, libjs-jquery
123-
# Suggests: python-pandas
124-
# Description: documentation and examples for pandas
125-
# This package contains documentation and example scripts for
126-
# python-pandas.
118+
Package: python-pandas-doc
119+
Architecture: all
120+
Section: doc
121+
Depends: ${misc:Depends}, libjs-jquery
122+
Suggests: python-pandas
123+
Description: documentation and examples for pandas
124+
This package contains documentation and example scripts for
125+
python-pandas.
127126

128127
Package: python-pandas-lib
129128
Architecture: any

debian/patches/deb_skip_sequencelike_on_armel

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--- a/pandas/tests/test_frame.py
22
+++ b/pandas/tests/test_frame.py
3-
@@ -4536,6 +4536,9 @@ class TestDataFrame(tm.TestCase, CheckIn
3+
@@ -4666,6 +4666,9 @@ class TestDataFrame(tm.TestCase, CheckIn
44
self.assertEqual(len(tst.columns), 3)
55

66
def test_from_records_sequencelike(self):

debian/patches/deb_skip_test_pytables_failure

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Last-Update: 2014-02-04
1111

1212
--- a/pandas/io/tests/test_pytables.py
1313
+++ b/pandas/io/tests/test_pytables.py
14-
@@ -3289,7 +3289,12 @@ class TestHDFStore(tm.TestCase):
14+
@@ -3192,7 +3192,12 @@ class TestHDFStore(tm.TestCase):
1515

1616
# big selector along the columns
1717
selector = [ 'a','b','c' ] + [ 'a%03d' % i for i in range(60) ]

debian/rules

+3-3
Original file line numberDiff line numberDiff line change
@@ -106,9 +106,9 @@ ifneq (,$(findstring -a,$(DH_INTERNAL_OPTIONS)))
106106
: # not building documentation in -a
107107
else
108108
: # not building documentation ATM since requires ipython 0.11
109-
# export PYTHONPATH=`/bin/ls -d $$PWD/$(PACKAGE2_ROOT_DIR)/usr/lib/python$(PYVER)/*`; \
110-
# export MPLCONFIGDIR=$(CURDIR)/build HOME=$(CURDIR)/build; \
111-
# cd doc; python make.py html
109+
export PYTHONPATH=`/bin/ls -d $$PWD/$(PACKAGE2_ROOT_DIR)/usr/lib/python$(PYVER)/*`; \
110+
export MPLCONFIGDIR=$(CURDIR)/build HOME=$(CURDIR)/build; \
111+
cd doc; python make.py html
112112
endif
113113
endif
114114
: # Use jquery from Debian package, so prune shipped one

0 commit comments

Comments
 (0)