diff options
author | Michał Górny <mgorny@gentoo.org> | 2023-10-17 13:21:45 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2023-10-17 13:21:45 +0200 |
commit | 3636c92aea3b7a1c2a652a8e19b4a84e0643ba65 (patch) | |
tree | c67677113ad7abcc03ed9581104c5b84318ac187 /dev-python/threadpoolctl | |
parent | xfce-base/xfconf: Bump to 4.18.2 (diff) | |
download | gentoo-3636c92aea3b7a1c2a652a8e19b4a84e0643ba65.tar.gz gentoo-3636c92aea3b7a1c2a652a8e19b4a84e0643ba65.tar.bz2 gentoo-3636c92aea3b7a1c2a652a8e19b4a84e0643ba65.zip |
dev-python/threadpoolctl: Enable py3.12
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/threadpoolctl')
-rw-r--r-- | dev-python/threadpoolctl/threadpoolctl-3.2.0.ebuild | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/dev-python/threadpoolctl/threadpoolctl-3.2.0.ebuild b/dev-python/threadpoolctl/threadpoolctl-3.2.0.ebuild index 1c38a89e93ac..654f001a4b38 100644 --- a/dev-python/threadpoolctl/threadpoolctl-3.2.0.ebuild +++ b/dev-python/threadpoolctl/threadpoolctl-3.2.0.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=flit -PYTHON_COMPAT=( python3_{10..11} ) +PYTHON_COMPAT=( python3_{10..12} ) inherit distutils-r1 @@ -33,4 +33,9 @@ EPYTEST_DESELECT=( # or file bugs about missing architectures until upstream realizes # how bad idea that were. tests/test_threadpoolctl.py::test_architecture + # This test fails if the Python executable (or any library that it + # links to) uses OpenMP. This can particularly be the case with + # CPython 3.12 that links to app-crypt/libb2. + # https://github.com/joblib/threadpoolctl/issues/146 + tests/test_threadpoolctl.py::test_command_line_empty ) |