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 @@ -37,6 +37,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
37
37
* Bump Ivy to 2.5.2
38
38
* Fixed a memory leak in the Javascript driver when there is a server error response.
39
39
* Throw more descriptive error in `gremlin-go` when request size exceeds `WriteBufferSize`
40
+ * Fixed a missing runtime dependency in `gremlin-python`
40
41
41
42
[[release-3-6-7]]
42
43
=== 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