Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion sci-biology/bx-python/Manifest
Original file line number Diff line number Diff line change
@@ -1 +1 @@
DIST bx-python-0.13.0.gh.tar.gz 1611987 BLAKE2B 138c081c60249e492cbb1474f88a92faadc76c5340555599d93a97a7d8b8e5130e71724f18174262dff3f286678f3d5cac03362aadadf81ecd90a0b6f621927c SHA512 345faf1f42b24ae97216bb9d231e7f97093cd607d51fe51129335e2c077e47dc30a3657b27733674caace5f32eebab8ef64a3f912c585fabf07333722d24317c
DIST bx-python-0.14.0.gh.tar.gz 1611248 BLAKE2B 2944c729516ed5f3474b7d44f2c626cbfb817fa47e256718854c50de9d5fc829d93f4fd82f94c651722729dc1cda0f4bd093e430e8328e69697580f3811a9d72 SHA512 aaa7075087a69ddc486a7fd385422d1b2ce224e4efd7dc94667c06956cf39743d34fcd52a6967ae1515352172bae2540c994f224b0934465cd4618c437c5d97d
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Copyright 1999-2024 Gentoo Authors
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

EAPI=8

DISTUTILS_USE_PEP517=setuptools
DISTUTILS_EXT=1
PYTHON_COMPAT=( python3_{10..12} )
PYTHON_COMPAT=( python3_{11..14} )

inherit distutils-r1

Expand All @@ -17,7 +17,10 @@ LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"

BDEPEND="test? ( dev-python/python-lzo[${PYTHON_USEDEP}] )"
BDEPEND="test? (
dev-python/python-lzo[${PYTHON_USEDEP}]
dev-python/pyparsing[${PYTHON_USEDEP}]
)"
RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
DEPEND="dev-python/cython[${PYTHON_USEDEP}]"

Expand All @@ -30,7 +33,7 @@ distutils_enable_tests pytest

# https://github.com/bxlab/bx-python/issues/101
python_test() {
cd "${BUILD_DIR}/build" || die
cd "${BUILD_DIR}"/build* || die
ln -s "${S}/pytest.ini" . || die
ln -s "${S}/test_data" . || die
epytest
Expand Down
Loading