diff options
Diffstat (limited to 'dev-python/boltons')
-rw-r--r-- | dev-python/boltons/Manifest | 2 | ||||
-rw-r--r-- | dev-python/boltons/boltons-24.0.0.ebuild | 11 |
2 files changed, 10 insertions, 3 deletions
diff --git a/dev-python/boltons/Manifest b/dev-python/boltons/Manifest index 44e0a1b357b1..02b7048e9fb3 100644 --- a/dev-python/boltons/Manifest +++ b/dev-python/boltons/Manifest @@ -1,3 +1,3 @@ DIST boltons-24.0.0.tar.gz 239550 BLAKE2B e7001b3aa04834f1d234ff7ce996cebd32293189cdf000c8b36719d24b51ab24098c58ad3df58e938a58f319a575b8a0f2f09cec423d33b876103b89ad7d85bb SHA512 afc7f9d495d91e38219378f9f4f287918d6e5b19feb1299c5f504cab1d4a3e0a5fb9fa1c073d46f941c86a18086af5be3a44506d986b010b2595da0c2b908b48 -EBUILD boltons-24.0.0.ebuild 693 BLAKE2B 669e99b581179d207d4f8bbdd569058bcd3529a3fb91ef8369e4c2e9c3b516a6f1ba8df21671787cdc1800f3509d3d574b634d034ba57dea6919b82bb156535c SHA512 979668878efa27a41dc437798d0fb166600501b4a27d941022dfcb8df30ea8861bc16be42041f880bedb44fc69f1f3ef30e9b3b3ea9f9ff5fbf7462498dc5e8c +EBUILD boltons-24.0.0.ebuild 950 BLAKE2B a08b6442dc8f4553c71c6a24bbbd1e0baa2789a081d02eb02ab714ca8c048533c4833f1acdda6a4702f4a69ed1a25bc6a0c697d09d157ca541804e9372f5be7b SHA512 eba36293cde37c872858e5ee83a813617177e1aacb042dbe4cc37142f7b470a5579538f1bb61cee0c55bbd2b3bffd04551bb417e330f77b281038b9f2784bfdc MISC metadata.xml 395 BLAKE2B 6ed304f1dced75dfd795b9fe582ec669bf1c8ba5fefeb9e753b11aa20de8fc0966fc9a8a0ed40e460dd23a67ef0e5721a8dae27b3d799a4be629537bb18f54c9 SHA512 fb73041a95df230153dc686e21a88d91bb06367ae8c22a20777c4a0f13202cbaf59396f4ed2630265d331d6461a6da85f57ba62cc432c4d9105b8404753b383b diff --git a/dev-python/boltons/boltons-24.0.0.ebuild b/dev-python/boltons/boltons-24.0.0.ebuild index 538ff7245a03..41ad93998b08 100644 --- a/dev-python/boltons/boltons-24.0.0.ebuild +++ b/dev-python/boltons/boltons-24.0.0.ebuild @@ -4,8 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -# py3.13: https://github.com/mahmoud/boltons/issues/365 -PYTHON_COMPAT=( pypy3 python3_{10..12} ) +PYTHON_COMPAT=( pypy3 python3_{10..13} ) inherit distutils-r1 pypi DESCRIPTION="Pure-python utilities in the same spirit as the standard library" @@ -23,5 +22,13 @@ src_test() { # tests break with pytest-qt, django, and likely more local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + local EPYTEST_DESELECT=( + # fails with 3.13, but ignore for now given causes no + # issues for the only revdep (maturin's tests) + # https://github.com/mahmoud/boltons/issues/365 + tests/test_funcutils_fb_py3.py::test_update_wrapper_partial\[boltons.funcutils\] + tests/test_tbutils.py::test_exception_info + ) + distutils-r1_src_test } |