dev-python/narwhals: Bump to 1.40.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny 2025-05-20 03:43:06 +02:00
parent bb26c0efbb
commit ac4915fe05
No known key found for this signature in database
GPG Key ID: 639ADAE2329E240E
2 changed files with 37 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST narwhals-1.39.1.tar.gz 484444 BLAKE2B a3e1913a99fbe2602cdc9f6a1ae6c218e66f053365b68e682a2d32d60d600986bcdb1fddfa4b7fd7c2910bf2283f7f0add47a191594e0417f090160362651aa3 SHA512 8d4a6fc5220145db0b36901366dbeaa86956b773fb94dda3d4c84ab69abfbb26a2bf1da29b8d24a1cc2c8d11c3a3b124cb7c5a5cbafabb1813bec41a77093086
DIST narwhals-1.40.0.tar.gz 487625 BLAKE2B c92c5447b2f7f782f93620b6772780e7d111795d190e593eef2820b3229165f4706b7f650d84bf55524053b884e6243cb6312df2b84d510e15fbd8d8602111c4 SHA512 820f8633a86283cd35cf4d672e1894fdbd7f7432de5b1fb03435790eaf73d714aad261c812bf8d329524f5ebabee07d8394b315de366186babe55ada18fbc18e

View File

@ -0,0 +1,36 @@
# Copyright 2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=hatchling
PYTHON_COMPAT=( python3_{11..13} )
inherit distutils-r1 pypi
DESCRIPTION="Extremely lightweight compatibility layer between dataframe libraries"
HOMEPAGE="
https://github.com/narwhals-dev/narwhals/
https://pypi.org/project/narwhals/
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64"
BDEPEND="
test? (
dev-python/hypothesis[${PYTHON_USEDEP}]
dev-python/pandas[${PYTHON_USEDEP}]
dev-python/pyarrow[${PYTHON_USEDEP}]
dev-python/pytest-env[${PYTHON_USEDEP}]
)
"
EPYTEST_XDIST=1
distutils_enable_tests pytest
python_test() {
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
epytest --runslow --constructors="pandas,pandas[nullable],pandas[pyarrow],pyarrow"
}