This is an automated email from the ASF dual-hosted git repository. kenhuuu pushed a commit to branch master-http-final in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
commit eae5f4e7e7819926e1eeae394001a65d5e9e2d90 Author: Yang Xia <[email protected]> AuthorDate: Wed Oct 16 12:55:25 2024 -0700 CTR pin aiohttp's dependency yarl to a python3.8-supported version before we upgrade --- gremlin-python/src/main/python/setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/gremlin-python/src/main/python/setup.py b/gremlin-python/src/main/python/setup.py index 1c875b8e05..421f177a62 100644 --- a/gremlin-python/src/main/python/setup.py +++ b/gremlin-python/src/main/python/setup.py @@ -48,6 +48,7 @@ install_requires = [ 'aiohttp>=3.8.0,<4.0.0', 'aenum>=1.4.5,<4.0.0', 'isodate>=0.6.0,<1.0.0', + 'yarl<1.15.3,>=1.0', # dependency of aiohttp, pinned to 3.8-supported version, remove after upgrading python 'boto3', 'botocore', 'async-timeout>=4.0.3,<5.0; python_version < "3.11"',
