This is an automated email from the ASF dual-hosted git repository.
spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git
The following commit(s) were added to refs/heads/master by this push:
new 8e356fc3c6 TINKERPOP-2810 allow newer aiohttp versions
new 3ac69a9c7c Merge pull request #1839 from gvogel-hh/patch-1
8e356fc3c6 is described below
commit 8e356fc3c67bff462143bb7dab9899ba5aef06cf
Author: Gunther <[email protected]>
AuthorDate: Mon Oct 24 01:48:08 2022 +0200
TINKERPOP-2810 allow newer aiohttp versions
Requirement had been >=3.8.0,<=3.8.1 in order to avoid a bug in versions
<=3.7.4, but in the meantime, newer versions have been released.
---
gremlin-python/src/main/python/setup.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gremlin-python/src/main/python/setup.py
b/gremlin-python/src/main/python/setup.py
index cbc9f4005a..08ea1834b7 100644
--- a/gremlin-python/src/main/python/setup.py
+++ b/gremlin-python/src/main/python/setup.py
@@ -46,7 +46,7 @@ version = __version__.version
install_requires = [
'nest_asyncio',
- 'aiohttp>=3.8.0,<=3.8.1',
+ 'aiohttp>=3.8.0,<4.0.0',
'aenum>=1.4.5,<4.0.0',
'isodate>=0.6.0,<1.0.0'
]