diff options
author | 2023-05-25 17:02:53 +0200 | |
---|---|---|
committer | 2023-05-25 17:14:00 +0200 | |
commit | 4f52993cbd8dcc13d11b8115a2cdc49b359d06e7 (patch) | |
tree | 4018362ac341eda7a8b368a96a778275d790c9b8 /dev-python/build | |
parent | dev-libs/openssl: add support for big-endian RISC-V (diff) | |
download | gentoo-4f52993cbd8dcc13d11b8115a2cdc49b359d06e7.tar.gz gentoo-4f52993cbd8dcc13d11b8115a2cdc49b359d06e7.tar.bz2 gentoo-4f52993cbd8dcc13d11b8115a2cdc49b359d06e7.zip |
dev-python/build: Enable py3.12
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/build')
-rw-r--r-- | dev-python/build/build-0.10.0.ebuild | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/dev-python/build/build-0.10.0.ebuild b/dev-python/build/build-0.10.0.ebuild index be77518c47ad..6b1865d43115 100644 --- a/dev-python/build/build-0.10.0.ebuild +++ b/dev-python/build/build-0.10.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=flit -PYTHON_COMPAT=( python3_{9..11} pypy3 ) +PYTHON_COMPAT=( python3_{10..12} pypy3 ) inherit distutils-r1 multiprocessing @@ -60,6 +60,12 @@ python_test() { # (requires dev-python/toml that we'd like to lastrite eventually) tests/test_projectbuilder.py::test_toml_instead_of_tomli ) + if [[ ${EPYTHON} == python3.12 ]]; then + EPYTEST_DESELECT+=( + # mismatch on deprecation warning + 'tests/test_main.py::test_output[via-sdist-no-isolation]' + ) + fi epytest -p no:flaky -n "$(makeopts_jobs)" } |