summaryrefslogtreecommitdiff
path: root/dev-python/patsy
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/patsy')
-rw-r--r--dev-python/patsy/patsy-0.5.6-r2.ebuild17
1 files changed, 16 insertions, 1 deletions
diff --git a/dev-python/patsy/patsy-0.5.6-r2.ebuild b/dev-python/patsy/patsy-0.5.6-r2.ebuild
index 4362947695b4..4c8b9b9f9f05 100644
--- a/dev-python/patsy/patsy-0.5.6-r2.ebuild
+++ b/dev-python/patsy/patsy-0.5.6-r2.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( pypy3 python3_{10..12} )
+PYTHON_COMPAT=( pypy3 python3_{10..13} )
inherit distutils-r1 pypi
@@ -34,3 +34,18 @@ PATCHES=(
# ([probably] non-upstreamable hack)
"${FILESDIR}/${P}-np2.patch"
)
+
+python_test() {
+ local EPYTEST_DESELECT=()
+
+ case ${EPYTHON} in
+ python3.13)
+ EPYTEST_DESELECT+=(
+ patsy/eval.py::test_EvalEnvironment_eq
+ )
+ ;;
+ esac
+
+ local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+ epytest
+}