diff options
author | Michał Górny <mgorny@gentoo.org> | 2021-05-30 21:42:06 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2021-05-30 21:45:48 +0200 |
commit | ef89d89ec18b7640ed52f57059b3548c77da3257 (patch) | |
tree | cd8930a81aaf00fd25d7fc19769fcbfbad26418f | |
parent | dev-python/socketpool: Enable py3.10 (diff) | |
download | gentoo-ef89d89ec18b7640ed52f57059b3548c77da3257.tar.gz gentoo-ef89d89ec18b7640ed52f57059b3548c77da3257.tar.bz2 gentoo-ef89d89ec18b7640ed52f57059b3548c77da3257.zip |
dev-python/wsgiproxy2: Enable py3.10
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r-- | dev-python/wsgiproxy2/wsgiproxy2-0.4.6-r1.ebuild | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/dev-python/wsgiproxy2/wsgiproxy2-0.4.6-r1.ebuild b/dev-python/wsgiproxy2/wsgiproxy2-0.4.6-r1.ebuild index fcabead12956..19cda237b3c2 100644 --- a/dev-python/wsgiproxy2/wsgiproxy2-0.4.6-r1.ebuild +++ b/dev-python/wsgiproxy2/wsgiproxy2-0.4.6-r1.ebuild @@ -3,15 +3,15 @@ EAPI=7 -PYTHON_COMPAT=( python3_{7,8,9} pypy3 ) +PYTHON_COMPAT=( python3_{7..10} pypy3 ) inherit distutils-r1 MY_PN="WSGIProxy2" - DESCRIPTION="HTTP proxying tools for WSGI apps" HOMEPAGE="https://pypi.org/project/WSGIProxy2/" SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz" +S="${WORKDIR}/${MY_PN}-${PV}" LICENSE="MIT" SLOT="0" @@ -23,16 +23,13 @@ RDEPEND=" dev-python/urllib3[${PYTHON_USEDEP}] dev-python/webob[${PYTHON_USEDEP}] " -BDEPEND="${RDEPEND} - dev-python/setuptools[${PYTHON_USEDEP}] +BDEPEND=" test? ( >=dev-python/webtest-2.0.17[${PYTHON_USEDEP}] dev-python/socketpool[${PYTHON_USEDEP}] )" # Testing also revealed the suite needs latest webtest -S="${WORKDIR}/${MY_PN}-${PV}" - PATCHES=( "${FILESDIR}/wsgiproxy2-0.4.6-tests.patch" ) |