commit: ab63c8a37680376ad9ededfcbb171be9ca8595e3
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Thu Jul 11 17:59:29 2024 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Thu Jul 11 18:21:47 2024 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab63c8a3
dev-python/moto: Enable py3.13
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/moto/moto-5.0.11.ebuild | 15 ++++++++++++++-
1 file changed, 14 insertions(+), 1 deletion(-)
diff --git a/dev-python/moto/moto-5.0.11.ebuild
b/dev-python/moto/moto-5.0.11.ebuild
index e033c5815571..567ad8433789 100644
--- a/dev-python/moto/moto-5.0.11.ebuild
+++ b/dev-python/moto/moto-5.0.11.ebuild
@@ -4,7 +4,7 @@
EAPI=8
DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{10..12} )
+PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1 pypi toolchain-funcs
@@ -180,5 +180,18 @@ python_test() {
"${EPYTEST_DESELECT[@]}"
"${serial_tests[@]}"
)
+ case ${EPYTHON} in
+ python3.13)
+ EPYTEST_DESELECT+=(
+
tests/test_ses/test_ses_boto3.py::test_send_raw_email
+
tests/test_ses/test_ses_boto3.py::test_send_raw_email_validate_domain
+
tests/test_ses/test_ses_boto3.py::test_send_raw_email_without_source
+
tests/test_sesv2/test_sesv2.py::test_send_raw_email
+
tests/test_sesv2/test_sesv2.py::test_send_raw_email__with_specific_message
+
tests/test_sesv2/test_sesv2.py::test_send_raw_email__with_to_address_display_name
+ )
+ ;;
+ esac
+
epytest -m 'not network'
}