commit: f6af84dfb369d9df8f93fef2e8de975cda3ba7e5
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 17 19:59:15 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Fri Oct 17 20:07:13 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6af84df
dev-python/django-taggit: Enable py3.14
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/django-taggit/django-taggit-6.1.0-r1.ebuild | 11 +++--------
1 file changed, 3 insertions(+), 8 deletions(-)
diff --git a/dev-python/django-taggit/django-taggit-6.1.0-r1.ebuild
b/dev-python/django-taggit/django-taggit-6.1.0-r1.ebuild
index 163c5f73c80c..8fe51cf922e9 100644
--- a/dev-python/django-taggit/django-taggit-6.1.0-r1.ebuild
+++ b/dev-python/django-taggit/django-taggit-6.1.0-r1.ebuild
@@ -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
}