commit: e3c0937388faf4427b278f379122d92a97b23dd7
Author: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 23 20:24:48 2025 +0000
Commit: Alfredo Tupone <tupone <AT> gentoo <DOT> org>
CommitDate: Sun Mar 23 20:25:21 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3c09373
dev-python/peachpy: enable py3.13
Signed-off-by: Alfredo Tupone <tupone <AT> gentoo.org>
...hpy-2022.11.13-r2.ebuild => peachpy-2022.11.13-r3.ebuild} | 12 +++++++++---
1 file changed, 9 insertions(+), 3 deletions(-)
diff --git a/dev-python/peachpy/peachpy-2022.11.13-r2.ebuild
b/dev-python/peachpy/peachpy-2022.11.13-r3.ebuild
similarity index 79%
rename from dev-python/peachpy/peachpy-2022.11.13-r2.ebuild
rename to dev-python/peachpy/peachpy-2022.11.13-r3.ebuild
index eec4c40652c9..6b93114f1762 100644
--- a/dev-python/peachpy/peachpy-2022.11.13-r2.ebuild
+++ b/dev-python/peachpy/peachpy-2022.11.13-r3.ebuild
@@ -1,10 +1,10 @@
-# Copyright 2022-2024 Gentoo Authors
+# Copyright 2022-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1
@@ -25,7 +25,6 @@ S=${WORKDIR}/${MY_P}
LICENSE="BSD-2"
SLOT="0"
KEYWORDS="~amd64"
-RESTRICT="test" # depends on an old version of werkzeug
RDEPEND="
dev-python/opcodes[${PYTHON_USEDEP}]
@@ -37,3 +36,10 @@ DOCS=README.rst
distutils_enable_sphinx sphinx \
dev-python/sphinx-bootstrap-theme
+
+distutils_enable_tests pytest
+
+src_test() {
+ local EPYTEST_IGNORE=( tests/arm/test_arm.py )
+ distutils-r1_src_test
+}