diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-10-24 16:04:00 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-10-24 16:41:59 +0200 |
commit | ee61e60df88a71f78822307aa13cf253582ff4c4 (patch) | |
tree | 5f32dc7c2d08b278ff384509bbf3f97735e42dea /dev-python/debugpy | |
parent | dev-python/pydevd: Enable py3.12 (diff) | |
download | gentoo-ee61e60df88a71f78822307aa13cf253582ff4c4.tar.gz gentoo-ee61e60df88a71f78822307aa13cf253582ff4c4.tar.bz2 gentoo-ee61e60df88a71f78822307aa13cf253582ff4c4.zip |
dev-python/debugpy: Enable py3.12
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/debugpy')
-rw-r--r-- | dev-python/debugpy/debugpy-1.8.0.ebuild | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/dev-python/debugpy/debugpy-1.8.0.ebuild b/dev-python/debugpy/debugpy-1.8.0.ebuild index bf665f0da2e0..5324eccaca25 100644 --- a/dev-python/debugpy/debugpy-1.8.0.ebuild +++ b/dev-python/debugpy/debugpy-1.8.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..11} ) +PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 multiprocessing @@ -61,6 +61,15 @@ python_test() { local EPYTEST_IGNORE=( tests/tests/test_vendoring.py ) + + case ${EPYTHON} in + python3.12) + EPYTEST_DESELECT+=( + tests/debugpy/test_flask.py + ) + ;; + esac + epytest -p timeout -p xdist -n "$(makeopts_jobs)" --dist=worksteal \ -k "not attach_pid" } |