dev-python/pysimdjson: Enable py3.13

Closes: https://bugs.gentoo.org/928562
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-03-17 11:28:45 +01:00
parent 84f105dcb1
commit 671c370bb0

View File

@@ -1,11 +1,12 @@
# Copyright 2020-2024 Gentoo Authors
# Copyright 2020-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} )
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1
DESCRIPTION="Python bindings for simdjson"
@@ -46,6 +47,11 @@ src_prepare() {
rm simdjson/simdjson.cpp || die
echo "#include_next <simdjson.h>" > simdjson/simdjson.h || die
# regressions (new simdjson version?)
rm jsonexamples/test_parsing/i_number_very_big_negative_int.json || die
rm jsonexamples/test_parsing/i_number_too_big_pos_int.json || die
rm jsonexamples/test_parsing/i_number_too_big_neg_int.json || die
distutils-r1_src_prepare
export BUILD_WITH_CYTHON=1