-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Alexander Puck Neuwirth <[email protected]>
- Loading branch information
Showing
2 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
DIST awkward-2.5.2.tar.gz 5561040 BLAKE2B 4799eeb25fa7433b4889328f9f147b435024c3f507ce66b5cbfcfc5b9c50e63f77131a43b8acd3d9f22d20915eaeb129162e26ffa83fd2071b9a393fbc441e7e SHA512 b6f4f2841e642bfc17aaf40779030d125e9737ef0ded20cc8a898c4b8c15c2932f12c8a0bda3e8c48bb8d13729cf97e181866f15913317bd2dba13b0dad6b929 | ||
DIST awkward-2.6.6.tar.gz 6088969 BLAKE2B a2b1db5fe9daae32272348b7bf92894fd805806bcec66ef57acf51af9bc99f033723c637515530a2867ec4bafa51bce5d90ad2b651ed008790ae8f7bee3e73f7 SHA512 2b7c0f1c1f3bd06f1b9fc06ca7cd482b136986d7b5f1648c45627083df5042668d122db7f93e9dbe606630270e577bc53472b9fdca837b12b390ef5c86e8fe48 | ||
DIST awkward-2.6.9.tar.gz 6120280 BLAKE2B f6eb34920d208034be29bd1359e951fb7aa2f9b882b417b895fdb3d34e028c1aa6d6c3e265c41cf95c56acf28b0aa35fa8feec01f49241d79e7bf18323d0b23f SHA512 32996de956fbfc70f338a80788aadb0b75028509e8cc13014ed9ea34326f146da5662a2c7c870c14e9af059678a81153cc2b1096a9a5e202290cd6e7f1aa7f5c | ||
DIST awkward-2.7.2.tar.gz 6153396 BLAKE2B a98084b9f7dec9dd584647e21f7629d88ea40cecab714b66fac99adf10ab89032cb9caf73d5699826666871f76ddae22e578f96b8caaf4450f717d67fb294554 SHA512 523ec35e587fdb0f3a3a2b39ab70df80e3e4e9e26a9e67cab144e0af79ce7b26e09dda6a5e2ea2c93175042711e5a98ec58674bb1d4c6d12931e07e1f463e0c9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
EAPI=8 | ||
|
||
PYTHON_COMPAT=( python3_{10..13} ) | ||
DISTUTILS_USE_PEP517=hatchling | ||
export SETUPTOOLS_SCM_PRETEND_VERSION=${PV} | ||
inherit distutils-r1 pypi | ||
|
||
DESCRIPTION="Manipulate JSON-like data with NumPy-like idioms." | ||
HOMEPAGE="https://github.com/scikit-hep/awkward" | ||
|
||
LICENSE="BSD" | ||
SLOT="0" | ||
KEYWORDS="~amd64" | ||
|
||
RDEPEND=" | ||
~dev-python/awkward-cpp-43[${PYTHON_USEDEP}] | ||
$(python_gen_cond_dep ' | ||
>=dev-python/importlib-metadata-4.13.0[${PYTHON_USEDEP}] | ||
' python3_{10..11}) | ||
>=dev-python/numpy-1.18.0[${PYTHON_USEDEP}] | ||
dev-python/packaging[${PYTHON_USEDEP}] | ||
$(python_gen_cond_dep ' | ||
>=dev-python/typing-extensions-4.1.0[${PYTHON_USEDEP}] | ||
' python3_10) | ||
>=dev-python/fsspec-2022.11.0[${PYTHON_USEDEP}] | ||
" | ||
DEPEND="${RDEPEND}" | ||
BDEPEND=" | ||
dev-python/packaging[${PYTHON_USEDEP}] | ||
dev-python/hatch-vcs[${PYTHON_USEDEP}] | ||
dev-python/hatch-fancy-pypi-readme[${PYTHON_USEDEP}] | ||
test? ( | ||
dev-libs/apache-arrow[zstd] | ||
dev-python/pyarrow[${PYTHON_USEDEP}] | ||
dev-python/numexpr[${PYTHON_USEDEP}] | ||
dev-python/pandas[${PYTHON_USEDEP}] | ||
) | ||
" | ||
|
||
EPYTEST_IGNORE=( | ||
tests-cuda/ | ||
tests-cuda-kernels/ | ||
tests/test_3259_to_torch_from_torch.py # fails if just caffe2 but not pytorch is installed | ||
tests/test_0119_numexpr_and_broadcast_arrays.py # no idea why it fails, seems to be a numexpr error | ||
) | ||
|
||
distutils_enable_tests pytest |