From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6B9C6139694 for ; Sun, 4 Jun 2017 11:54:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ABF34E0F08; Sun, 4 Jun 2017 11:54:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8C75EE0F08 for ; Sun, 4 Jun 2017 11:54:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id C3B60341914 for ; Sun, 4 Jun 2017 11:54:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 35925746B for ; Sun, 4 Jun 2017 11:54:44 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1496577282.fd304cb897dbfb7c2e3612e1c4931672b981eb9c.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pandas/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pandas/pandas-9999.ebuild X-VCS-Directories: dev-python/pandas/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: fd304cb897dbfb7c2e3612e1c4931672b981eb9c X-VCS-Branch: master Date: Sun, 4 Jun 2017 11:54:44 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9aeadb22-baa9-450c-93a2-676a52bb0abe X-Archives-Hash: e117381c162762ab427a3f4df1ce2864 commit: fd304cb897dbfb7c2e3612e1c4931672b981eb9c Author: Justin Lecher gentoo org> AuthorDate: Sun Jun 4 11:54:36 2017 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Jun 4 11:54:42 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd304cb8 dev-python/pandas: Import latest changes into live ebuild Package-Manager: Portage-2.3.6, Repoman-2.3.2 Signed-off-by: Justin Lecher gentoo.org> dev-python/pandas/pandas-9999.ebuild | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/dev-python/pandas/pandas-9999.ebuild b/dev-python/pandas/pandas-9999.ebuild index 5ca059ca7e3..e0274323a5e 100644 --- a/dev-python/pandas/pandas-9999.ebuild +++ b/dev-python/pandas/pandas-9999.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=6 PYTHON_COMPAT=( python2_7 python3_{4,5,6} ) PYTHON_REQ_USE="threads(+)" @@ -63,7 +63,7 @@ OPTIONAL_DEPEND=" DEPEND="${MINIMAL_DEPEND} dev-python/setuptools[${PYTHON_USEDEP}] - >=dev-python/cython-0.19.1[${PYTHON_USEDEP}] + >=dev-python/cython-0.23[${PYTHON_USEDEP}] doc? ( ${VIRTUALX_DEPEND} dev-python/beautifulsoup:4[${PYTHON_USEDEP}] @@ -101,7 +101,14 @@ RDEPEND=" python_prepare_all() { # Prevent un-needed download during build - sed -e "/^ 'sphinx.ext.intersphinx',/d" -i doc/source/conf.py || die + sed \ + -e "/^ 'sphinx.ext.intersphinx',/d" \ + -i doc/source/conf.py || die + + # https://github.com/pydata/pandas/issues/11299 + sed \ + -e 's:testOdArray:disable:g' \ + -i pandas/tests/io/json/test_ujson.py || die distutils-r1_python_prepare_all } @@ -122,7 +129,7 @@ python_test() { pushd "${BUILD_DIR}"/lib > /dev/null "${EPYTHON}" -c "import pandas; pandas.show_versions()" || die PYTHONPATH=. MPLCONFIGDIR=. \ - virtx nosetests --verbosity=3 -A "${test_pandas}" pandas.io.tests.json.test_ujson.NumpyJSONTests + virtx nosetests --verbosity=3 -A "${test_pandas}" pandas popd > /dev/null }