Diff executing-2.2.0 with a executing-2.2.1

/usr/portage/dev-python/executing/executing-2.2.1.ebuild 2025-11-18 18:18:06.878096540 +0300
4 4
EAPI=8
5 5

  
6 6
DISTUTILS_USE_PEP517=setuptools
7
PYTHON_TESTED=( pypy3 python3_{10..13} )
7
PYTHON_TESTED=( python3_{11..14} )
8
# pypy3.11: https://github.com/alexmojaki/executing/issues/92
8 9
PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" pypy3_11 )
9 10

  
10 11
inherit distutils-r1 optfeature
......
32 33
	)
33 34
"
34 35

  
36
EPYTEST_PLUGINS=()
35 37
distutils_enable_tests pytest
36 38

  
37 39
export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
......
43 45
	fi
44 46

  
45 47
	local EPYTEST_DESELECT=()
46
	case ${EPYTHON} in
47
		pypy3)
48
			EPYTEST_DESELECT+=(
49
				"tests/test_main.py::test_small_samples[22bc344a43584c051d8962116e8fd149d72e7e68bcb54caf201ee6e78986b167.py]"
50
				"tests/test_main.py::test_small_samples[46597f8f896f11c5d7f432236344cc7e5645c2a39836eb6abdd2437c0422f0f4.py]"
51
			)
52
			;;
53
	esac
54 48
	if ! has_version "dev-python/ipython[${PYTHON_USEDEP}]"; then
55 49
		EPYTEST_DESELECT+=(
56 50
			tests/test_ipython.py
57 51
		)
58 52
	fi
59 53

  
60
	local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
61 54
	epytest
62 55
}
63 56

  
Thank you!