dev-python/mkdocstrings-python: Bump to 1.16.8

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny 2025-03-25 06:22:55 +01:00
parent 0706e5d581
commit b73cd57a9d
No known key found for this signature in database
GPG Key ID: 639ADAE2329E240E
2 changed files with 52 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST mkdocstrings_python-1.16.7.tar.gz 1475398 BLAKE2B cf51f5f97c2b132869d44bb74e22fbf2b4942156a8ed9469eaeeb4beb747af60cfa39dce5a5054737b16f2d65679f17771a29a65eb8b9d23530cea6a03275876 SHA512 d0a4332487c68ed14402397baf03499995dac4d8b74109105409a76034eb88467d94670e615a5846841b074c9ad7acfb1b9240159fc05ca04b9118b00313c506
DIST mkdocstrings_python-1.16.8.tar.gz 205119 BLAKE2B a479d957d4e3147ed8ff47fd52745ebf721a84089842c07efc010d785cd791bd55fb98327ea8ce46b8be084a6cd8cad19b2c1d59efc9fd651330513aa72cb41c SHA512 c4a6f7b503812d3567b0c98f2369cb11e183d1195cdc2433d91ae979d2216fbaf3f2887c7577d02f73e5eaa8bfd6eff664c10e2c5a47d0e6d1c5676b0ce057f2

View File

@ -0,0 +1,51 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=pdm-backend
PYTHON_COMPAT=( pypy3 pypy3_11 python3_{10..13} )
inherit distutils-r1 pypi
DESCRIPTION="Python handler for dev-python/mkdocstrings"
HOMEPAGE="
https://mkdocstrings.github.io/python/
https://github.com/mkdocstrings/python/
https://pypi.org/project/mkdocstrings-python/
"
LICENSE="ISC"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~riscv"
RDEPEND="
>=dev-python/griffe-1.6.2[${PYTHON_USEDEP}]
>=dev-python/mkdocstrings-0.28.3[${PYTHON_USEDEP}]
>=dev-python/mkdocs-autorefs-1.4[${PYTHON_USEDEP}]
$(python_gen_cond_dep '
>=dev-python/typing-extensions-4.0[${PYTHON_USEDEP}]
' 3.10)
"
BDEPEND="
test? (
>=dev-python/beautifulsoup4-4.12.3[${PYTHON_USEDEP}]
>=dev-python/inline-snapshot-0.18[${PYTHON_USEDEP}]
dev-python/mkdocs-material[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
export PDM_BUILD_SCM_VERSION=${PV}
python_test() {
local EPYTEST_DESELECT=(
# "None" meaning particular formatter not installed
"tests/test_rendering.py::test_format_code[None-print('Hello')]"
"tests/test_rendering.py::test_format_code[None-aaaaa(bbbbb, ccccc=1) + ddddd.eeeee[ffff] or {ggggg: hhhhh, iiiii: jjjjj}]"
)
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
epytest -p inline_snapshot
}