Skip to content

Commit

Permalink
fix(gremlinpython): add async_timeout to runtime deps (#2844)
Browse files Browse the repository at this point in the history
[TINKERPOP-3116] This adds async_timeout to gremlin-python's setup.py as a runtime dependency which is required when using python >= 3.11
  • Loading branch information
JonZeolla authored Oct 23, 2024
1 parent 2d6814a commit 8518f75
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ image::https://raw.githubusercontent.com/apache/tinkerpop/master/docs/static/ima
* Bump Ivy to 2.5.2
* Fixed a memory leak in the Javascript driver when there is a server error response.
* Throw more descriptive error in `gremlin-go` when request size exceeds `WriteBufferSize`
* Fixed a missing runtime dependency in `gremlin-python`
[[release-3-6-7]]
=== TinkerPop 3.6.7 (April 8, 2024)
Expand Down
4 changes: 2 additions & 2 deletions gremlin-python/src/main/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
"""
import codecs
import os
import sys
import time
from setuptools import setup

Expand Down Expand Up @@ -48,7 +47,8 @@
'nest_asyncio',
'aiohttp>=3.8.0,<4.0.0',
'aenum>=1.4.5,<4.0.0',
'isodate>=0.6.0,<1.0.0'
'isodate>=0.6.0,<1.0.0',
'async-timeout>=4.0.3,<5.0.0'
]

setup(
Expand Down

0 comments on commit 8518f75

Please sign in to comment.