git: 6b35c8de7c4e - main - www/py-uvicorn: Update to 0.20.0

From: Po-Chuan Hsieh <sunpoet_at_FreeBSD.org>
Date: Fri, 30 Dec 2022 09:13:19 UTC
The branch main has been updated by sunpoet:

URL: https://cgit.FreeBSD.org/ports/commit/?id=6b35c8de7c4e0e90d2e63c0c01281404f2547b55

commit 6b35c8de7c4e0e90d2e63c0c01281404f2547b55
Author:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
AuthorDate: 2022-12-30 08:46:58 +0000
Commit:     Po-Chuan Hsieh <sunpoet@FreeBSD.org>
CommitDate: 2022-12-30 09:05:16 +0000

    www/py-uvicorn: Update to 0.20.0
    
    Changes:        https://github.com/encode/uvicorn/releases
---
 www/py-uvicorn/Makefile       | 6 +++---
 www/py-uvicorn/distinfo       | 6 +++---
 www/py-uvicorn/files/setup.py | 5 +++--
 3 files changed, 9 insertions(+), 8 deletions(-)

diff --git a/www/py-uvicorn/Makefile b/www/py-uvicorn/Makefile
index 1c025241e9ee..2ae2d17b06ff 100644
--- a/www/py-uvicorn/Makefile
+++ b/www/py-uvicorn/Makefile
@@ -1,5 +1,5 @@
 PORTNAME=	uvicorn
-PORTVERSION=	0.18.3
+PORTVERSION=	0.20.0
 CATEGORIES=	www python
 MASTER_SITES=	CHEESESHOP
 PKGNAMEPREFIX=	${PYTHON_PKGNAMEPREFIX}
@@ -24,12 +24,12 @@ CPE_VENDOR=	encode
 OPTIONS_DEFINE=	STANDARD
 STANDARD_DESC=	Standard extra requirements
 
-STANDARD_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}httptools>=0.4.0:www/py-httptools@${PY_FLAVOR} \
+STANDARD_RUN_DEPENDS=	${PYTHON_PKGNAMEPREFIX}httptools>=0.5.0:www/py-httptools@${PY_FLAVOR} \
 			${PYTHON_PKGNAMEPREFIX}python-dotenv>=0.13:www/py-python-dotenv@${PY_FLAVOR} \
 			${PYTHON_PKGNAMEPREFIX}yaml>=5.1:devel/py-yaml@${PY_FLAVOR} \
 			${PYTHON_PKGNAMEPREFIX}uvloop>=0.14.0:devel/py-uvloop@${PY_FLAVOR} \
 			${PYTHON_PKGNAMEPREFIX}watchfiles>=0.13:devel/py-watchfiles@${PY_FLAVOR} \
-			${PYTHON_PKGNAMEPREFIX}websockets>=10.0:devel/py-websockets@${PY_FLAVOR}
+			${PYTHON_PKGNAMEPREFIX}websockets>=10.4:devel/py-websockets@${PY_FLAVOR}
 
 .include <bsd.port.pre.mk>
 
diff --git a/www/py-uvicorn/distinfo b/www/py-uvicorn/distinfo
index 0947de06d1eb..cc8a1074f052 100644
--- a/www/py-uvicorn/distinfo
+++ b/www/py-uvicorn/distinfo
@@ -1,3 +1,3 @@
-TIMESTAMP = 1661950958
-SHA256 (uvicorn-0.18.3.tar.gz) = 9a66e7c42a2a95222f76ec24a4b754c158261c4696e683b9dadc72b590e0311b
-SIZE (uvicorn-0.18.3.tar.gz) = 36898
+TIMESTAMP = 1669058013
+SHA256 (uvicorn-0.20.0.tar.gz) = a4e12017b940247f836bc90b72e725d7dfd0c8ed1c51eb365f5ba30d9f5127d8
+SIZE (uvicorn-0.20.0.tar.gz) = 36809
diff --git a/www/py-uvicorn/files/setup.py b/www/py-uvicorn/files/setup.py
index 29748683c34e..87d381fe6944 100644
--- a/www/py-uvicorn/files/setup.py
+++ b/www/py-uvicorn/files/setup.py
@@ -18,6 +18,7 @@ setup(
         'Programming Language :: Python :: 3.8',
         'Programming Language :: Python :: 3.9',
         'Programming Language :: Python :: 3.10',
+        'Programming Language :: Python :: 3.11',
         'Programming Language :: Python :: Implementation :: CPython',
         'Programming Language :: Python :: Implementation :: PyPy',
         'Topic :: Internet :: WWW/HTTP',
@@ -30,12 +31,12 @@ setup(
     extras_require={
         'standard': [
             'colorama>=0.4; sys_platform == "win32"',
-            'httptools>=0.4.0',
+            'httptools>=0.5.0',
             'python-dotenv>=0.13',
             'pyyaml>=5.1',
             'uvloop!=0.15.0,!=0.15.1,>=0.14.0; sys_platform != "win32" and (sys_platform != "cygwin" and platform_python_implementation != "PyPy")',
             'watchfiles>=0.13',
-            'websockets>=10.0',
+            'websockets>=10.4',
         ],
     },
     entry_points={