Skip to content

Commit be8eb02

Browse files
committed
Merge branch '3.6-dev' into 3.7-dev
2 parents 43958dc + 8518f75 commit be8eb02

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

Diff for: CHANGELOG.asciidoc

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

Diff for: 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)