This is an automated email from the ASF dual-hosted git repository.
xiazcy pushed a commit to branch master-http
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
The following commit(s) were added to refs/heads/master-http by this push:
new 8ee5a452d1 CTR pin aiohttp's dependency yarl to a python3.8-supported
version before we upgrade
8ee5a452d1 is described below
commit 8ee5a452d11be6f775f80ea4f659a765617e2fb2
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 0be9a132ab..8a648781c1 100644
--- a/gremlin-python/src/main/python/setup.py
+++ b/gremlin-python/src/main/python/setup.py
@@ -49,6 +49,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'
]