dev-python/django-taggit: Enable py3.14

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-10-17 21:59:15 +02:00
parent a2d9f9b835
commit f6af84dfb3

View File

@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..13} )
PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1
@@ -26,12 +26,8 @@ RDEPEND="
>=dev-python/django-4.1[${PYTHON_USEDEP}]
dev-python/djangorestframework[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/pytest-django[${PYTHON_USEDEP}]
)
"
EPYTEST_PLUGINS=( pytest-django )
distutils_enable_tests pytest
python_test() {
@@ -44,6 +40,5 @@ python_test() {
)
fi
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
epytest -p django -o DJANGO_SETTINGS_MODULE=tests.settings
epytest -o DJANGO_SETTINGS_MODULE=tests.settings
}