diff options
author | Michał Górny <mgorny@gentoo.org> | 2022-05-15 13:11:27 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2022-05-15 13:11:54 +0200 |
commit | 06c52825f43cde06fa8d00167c4497f4ff270627 (patch) | |
tree | da4d5d3f700ac3fc3dc65d7a16a4dd832ab34ba2 /dev-python/httpx | |
parent | app-shells/ksh: fix building with gcc-12 (diff) | |
download | gentoo-06c52825f43cde06fa8d00167c4497f4ff270627.tar.gz gentoo-06c52825f43cde06fa8d00167c4497f4ff270627.tar.bz2 gentoo-06c52825f43cde06fa8d00167c4497f4ff270627.zip |
dev-python/httpx: Enable py3.11
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/httpx')
-rw-r--r-- | dev-python/httpx/httpx-0.22.0-r3.ebuild | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/dev-python/httpx/httpx-0.22.0-r3.ebuild b/dev-python/httpx/httpx-0.22.0-r3.ebuild index f0f06597e614..fff6839ac6c5 100644 --- a/dev-python/httpx/httpx-0.22.0-r3.ebuild +++ b/dev-python/httpx/httpx-0.22.0-r3.ebuild @@ -8,13 +8,18 @@ EAPI=8 # DOCS_DEPEND="dev-python/mkdocs-material" # DOCS_AUTODOC=1 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( pypy3 python3_{8..10} ) +PYTHON_COMPAT=( pypy3 python3_{8..11} ) + inherit distutils-r1 optfeature # docs DESCRIPTION="Fully-featured HTTP client which provides sync and async APIs" -HOMEPAGE="https://www.python-httpx.org/" +HOMEPAGE=" + https://www.python-httpx.org/ + https://github.com/encode/httpx/ + https://pypi.org/project/httpx/ +" SRC_URI=" - https://github.com/encode/${PN}/archive/${PV}.tar.gz + https://github.com/encode/httpx/archive/${PV}.tar.gz -> ${P}.gh.tar.gz " |