git: 56fca6e4b734 - main - www/py-httpx-socks: Fix RUN_DEPENDS to match setup.py
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 21 Nov 2021 18:30:17 UTC
The branch main has been updated by sunpoet: URL: https://cgit.FreeBSD.org/ports/commit/?id=56fca6e4b7342cb468694ca645e43e81f9699fae commit 56fca6e4b7342cb468694ca645e43e81f9699fae Author: Po-Chuan Hsieh <sunpoet@FreeBSD.org> AuthorDate: 2021-11-21 18:25:06 +0000 Commit: Po-Chuan Hsieh <sunpoet@FreeBSD.org> CommitDate: 2021-11-21 18:25:06 +0000 www/py-httpx-socks: Fix RUN_DEPENDS to match setup.py - Allow build with py-httpcore 0.14.0+ from setup.py: install_requires=[ 'httpx>=0.20.0', 'httpcore>=0.13.7', 'python-socks>=1.2.4', ], --- www/py-httpx-socks/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/py-httpx-socks/Makefile b/www/py-httpx-socks/Makefile index e4e205ffc5f8..5e397e54998f 100644 --- a/www/py-httpx-socks/Makefile +++ b/www/py-httpx-socks/Makefile @@ -12,7 +12,7 @@ LICENSE_FILE= ${WRKSRC}/LICENSE.txt RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}async_timeout>0:devel/py-async_timeout@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}curio>0:devel/py-curio@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}httpcore>=0.13.7<0.14:www/py-httpcore@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}httpcore>=0.13.7:www/py-httpcore@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}httpx>=0.20.0:www/py-httpx@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}python-socks>0:net/py-python-socks@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sniffio>=0:devel/py-sniffio@${PY_FLAVOR} \