Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pandas/
Date: Sun, 04 Jun 2017 11:54:47
Message-Id: 1496577282.fd304cb897dbfb7c2e3612e1c4931672b981eb9c.jlec@gentoo
1 commit: fd304cb897dbfb7c2e3612e1c4931672b981eb9c
2 Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jun 4 11:54:36 2017 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Jun 4 11:54:42 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd304cb8
7
8 dev-python/pandas: Import latest changes into live ebuild
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11 Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
12
13 dev-python/pandas/pandas-9999.ebuild | 15 +++++++++++----
14 1 file changed, 11 insertions(+), 4 deletions(-)
15
16 diff --git a/dev-python/pandas/pandas-9999.ebuild b/dev-python/pandas/pandas-9999.ebuild
17 index 5ca059ca7e3..e0274323a5e 100644
18 --- a/dev-python/pandas/pandas-9999.ebuild
19 +++ b/dev-python/pandas/pandas-9999.ebuild
20 @@ -1,7 +1,7 @@
21 # Copyright 1999-2017 Gentoo Foundation
22 # Distributed under the terms of the GNU General Public License v2
23
24 -EAPI=5
25 +EAPI=6
26
27 PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
28 PYTHON_REQ_USE="threads(+)"
29 @@ -63,7 +63,7 @@ OPTIONAL_DEPEND="
30
31 DEPEND="${MINIMAL_DEPEND}
32 dev-python/setuptools[${PYTHON_USEDEP}]
33 - >=dev-python/cython-0.19.1[${PYTHON_USEDEP}]
34 + >=dev-python/cython-0.23[${PYTHON_USEDEP}]
35 doc? (
36 ${VIRTUALX_DEPEND}
37 dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
38 @@ -101,7 +101,14 @@ RDEPEND="
39
40 python_prepare_all() {
41 # Prevent un-needed download during build
42 - sed -e "/^ 'sphinx.ext.intersphinx',/d" -i doc/source/conf.py || die
43 + sed \
44 + -e "/^ 'sphinx.ext.intersphinx',/d" \
45 + -i doc/source/conf.py || die
46 +
47 + # https://github.com/pydata/pandas/issues/11299
48 + sed \
49 + -e 's:testOdArray:disable:g' \
50 + -i pandas/tests/io/json/test_ujson.py || die
51
52 distutils-r1_python_prepare_all
53 }
54 @@ -122,7 +129,7 @@ python_test() {
55 pushd "${BUILD_DIR}"/lib > /dev/null
56 "${EPYTHON}" -c "import pandas; pandas.show_versions()" || die
57 PYTHONPATH=. MPLCONFIGDIR=. \
58 - virtx nosetests --verbosity=3 -A "${test_pandas}" pandas.io.tests.json.test_ujson.NumpyJSONTests
59 + virtx nosetests --verbosity=3 -A "${test_pandas}" pandas
60 popd > /dev/null
61 }