diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-05-17 09:08:01 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-05-17 09:21:00 +0200 |
commit | 7fa4b885130b54db9458984e9003aa29f2d01b46 (patch) | |
tree | 9e3c6df0c94136a232ac7adb01e51e8213ecfcbb /dev-python/paste | |
parent | app-i18n/transifex-client: drop unnecessary go-module_set_globals (fix Deprec... (diff) | |
download | gentoo-7fa4b885130b54db9458984e9003aa29f2d01b46.tar.gz gentoo-7fa4b885130b54db9458984e9003aa29f2d01b46.tar.bz2 gentoo-7fa4b885130b54db9458984e9003aa29f2d01b46.zip |
dev-python/paste: Enable py3.11
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/paste')
-rw-r--r-- | dev-python/paste/paste-3.5.0-r2.ebuild | 27 |
1 files changed, 20 insertions, 7 deletions
diff --git a/dev-python/paste/paste-3.5.0-r2.ebuild b/dev-python/paste/paste-3.5.0-r2.ebuild index 98ae3580d026..a89c1a5d2dda 100644 --- a/dev-python/paste/paste-3.5.0-r2.ebuild +++ b/dev-python/paste/paste-3.5.0-r2.ebuild @@ -4,13 +4,17 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..10} pypy3 ) +PYTHON_COMPAT=( python3_{8..11} pypy3 ) inherit distutils-r1 MY_P="Paste-${PV}" DESCRIPTION="Tools for using a Web Server Gateway Interface stack" -HOMEPAGE="https://pypi.org/project/Paste/" +HOMEPAGE=" + https://pythonpaste.readthedocs.io/en/latest/ + https://github.com/cdent/paste/ + https://pypi.org/project/Paste/ +" SRC_URI="mirror://pypi/${MY_P::1}/${PN^}/${MY_P}.tar.gz" S=${WORKDIR}/${MY_P} @@ -26,12 +30,21 @@ RDEPEND=" distutils_enable_tests pytest distutils_enable_sphinx docs -EPYTEST_DESELECT=( - # Internet - tests/test_proxy.py -) - python_compile() { distutils-r1_python_compile find "${BUILD_DIR}" -name '*.pth' -delete || die } + +python_test() { + local EPYTEST_DESELECT=( + # Internet + tests/test_proxy.py + ) + + [[ ${EPYTHON} == python3.11 ]] && EPYTEST_DESELECT+=( + # fails due to cgi deprecation warning + tests/test_cgiapp.py::test_form + ) + + epytest +} |