summaryrefslogtreecommitdiff
path: root/dev-python/exceptiongroup
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2025-05-15 12:59:17 +0100
committerV3n3RiX <venerix@koprulu.sector>2025-05-15 12:59:17 +0100
commit317f7ab04be81dbdfa5b1c9c42729927c5bde946 (patch)
treeb90afe9d6ef62b771a6ddb9eb1968d6338ccd206 /dev-python/exceptiongroup
parent5e9cf59ef591ef814092c1f6f32d2ef2369d3882 (diff)
gentoo auto-resync : 15:05:2025 - 12:59:17HEADmaster
Diffstat (limited to 'dev-python/exceptiongroup')
-rw-r--r--dev-python/exceptiongroup/Manifest2
-rw-r--r--dev-python/exceptiongroup/exceptiongroup-1.3.0.ebuild13
2 files changed, 13 insertions, 2 deletions
diff --git a/dev-python/exceptiongroup/Manifest b/dev-python/exceptiongroup/Manifest
index 0b178fbc3b7e..6c1e02fc4cb1 100644
--- a/dev-python/exceptiongroup/Manifest
+++ b/dev-python/exceptiongroup/Manifest
@@ -1,5 +1,5 @@
DIST exceptiongroup-1.2.2.tar.gz 28883 BLAKE2B 713a1dcce6575eb8513fc5016b5ef5c11cafeb910f96ab556916da4c109be228cabc078551244d04acb9521ae7af65e1d93a02d7f40fa985760421138f7ccb73 SHA512 dedee1401577d1047a99078552cf24346c55f1e9a281845f327d8ace30b22659877743ce1c8b60fa605988abcac14432138020e9d1c109df911f86993cbe2082
DIST exceptiongroup-1.3.0.tar.gz 29749 BLAKE2B 42b449f2de3b42433c96b939e256dfb1d609fcb478724e3b715aebbb46697c9ae99ad08012a2b7a1c23e1e479f315ff8643e0f13bd87d4c369eb2ddf4f388fca SHA512 b8cbdaf7e7199240b931ca37676a2d5c3465e6ed09efcc23fe660c9fd911d5dde092fb66dfa70ec82dc49404e669bbdb5c55b2b26ef816c189e54797b6225833
EBUILD exceptiongroup-1.2.2.ebuild 972 BLAKE2B bc879443a3fada00d2ab2ddb0881baaa7073ef88fbbd492c1dee44c3201fd60455c4bac26e7b28506dedcb95d3d2874e630f16ae419ee7abb0232f350dc72403 SHA512 db3f6851aca96905c0f3e260aecc0e6d94f8b1718421be6415d40f641c20834d7577a27dbaca660ed7a8113a298a12a8fb0ab5187b815630227d0845dad3d78e
-EBUILD exceptiongroup-1.3.0.ebuild 711 BLAKE2B 31bcae8aa72a12d92c5b1164111095b7c1df612f77ee9e4782a3dc182c06a17bd7d6f0be924b6bcc58239142d6a23818d9855f78e71b9fe545d7eae3f816ce49 SHA512 89a89ae9c04637ea8a66dcc2b34a3e4e34406fdfa623b2896591db26ea06f148c57e7e321fdbdf156407359cc4d967f0902eb53720237764951d2243917bf7c3
+EBUILD exceptiongroup-1.3.0.ebuild 1036 BLAKE2B ae09e9bab480eb25ae279dac01d864de9830ac05ebaee0b4baad936c853ed25ee59bde3e213e4689bcde595c02c10af18c14f30b36f88766f9fa09bf45a8fce1 SHA512 97cedbb5024b2a4bc0ad00299ec141deff385528aa1b38f17367eb004aeaaa6606b4b48a41033110752a992f90068821bacb510b805bb9cafbfdca395e3e8dd3
MISC metadata.xml 384 BLAKE2B 248abcb5fc08c91396cdbff52e5c3e4f6cce2aa273cfd52b48ee13de9ccdaecd09e9a436ed79f258d15d8d4583fe5995e054010c909a522f47e6866e55b3458f SHA512 c631c69438059cb2a6c80e595e45fac904d32dfb53f8be183142f1195d3a3b9bc14bc240f0808e14f47d31beb1887ad82ee79c5f1847c8e6b59dbfeea7913c8b
diff --git a/dev-python/exceptiongroup/exceptiongroup-1.3.0.ebuild b/dev-python/exceptiongroup/exceptiongroup-1.3.0.ebuild
index 42941cce239a..c94646bca373 100644
--- a/dev-python/exceptiongroup/exceptiongroup-1.3.0.ebuild
+++ b/dev-python/exceptiongroup/exceptiongroup-1.3.0.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=flit_scm
-PYTHON_COMPAT=( pypy3_11 python3_{11..13} )
+PYTHON_COMPAT=( pypy3_11 python3_{11..14} )
inherit distutils-r1 pypi
@@ -27,6 +27,17 @@ RDEPEND="
distutils_enable_tests pytest
python_test() {
+ local EPYTEST_DESELECT=()
+ case ${EPYTHON} in
+ python3.14*)
+ EPYTEST_DESELECT+=(
+ # https://github.com/agronholm/exceptiongroup/issues/148
+ tests/test_exceptions.py::DeepRecursionInSplitAndSubgroup::test_deep_split
+ tests/test_exceptions.py::DeepRecursionInSplitAndSubgroup::test_deep_subgroup
+ )
+ ;;
+ esac
+
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
epytest
}