File tree 2 files changed +3
-2
lines changed
gremlin-python/src/main/python
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -353,6 +353,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
353
353
* Bump Ivy to 2.5.2
354
354
* Fixed a memory leak in the Javascript driver when there is a server error response.
355
355
* Throw more descriptive error in `gremlin-go` when request size exceeds `WriteBufferSize`
356
+ * Fixed a missing runtime dependency in `gremlin-python`
356
357
357
358
[[release-3-6-7]]
358
359
=== TinkerPop 3.6.7 (April 8, 2024)
Original file line number Diff line number Diff line change 18
18
"""
19
19
import codecs
20
20
import os
21
- import sys
22
21
import time
23
22
from setuptools import setup
24
23
48
47
'nest_asyncio' ,
49
48
'aiohttp>=3.8.0,<4.0.0' ,
50
49
'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'
52
52
]
53
53
54
54
setup (
You can’t perform that action at this time.
0 commit comments