Skip to content

Commit 8518f75

Browse files
authoredOct 23, 2024··
fix(gremlinpython): add async_timeout to runtime deps (#2844)
[TINKERPOP-3116] This adds async_timeout to gremlin-python's setup.py as a runtime dependency which is required when using python >= 3.11
1 parent 2d6814a commit 8518f75

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎CHANGELOG.asciidoc

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
3737
* Bump Ivy to 2.5.2
3838
* Fixed a memory leak in the Javascript driver when there is a server error response.
3939
* Throw more descriptive error in `gremlin-go` when request size exceeds `WriteBufferSize`
40+
* Fixed a missing runtime dependency in `gremlin-python`
4041
4142
[[release-3-6-7]]
4243
=== TinkerPop 3.6.7 (April 8, 2024)

‎gremlin-python/src/main/python/setup.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
"""
1919
import codecs
2020
import os
21-
import sys
2221
import time
2322
from setuptools import setup
2423

@@ -48,7 +47,8 @@
4847
'nest_asyncio',
4948
'aiohttp>=3.8.0,<4.0.0',
5049
'aenum>=1.4.5,<4.0.0',
51-
'isodate>=0.6.0,<1.0.0'
50+
'isodate>=0.6.0,<1.0.0',
51+
'async-timeout>=4.0.3,<5.0.0'
5252
]
5353

5454
setup(

0 commit comments

Comments
 (0)
Please sign in to comment.