Skip to content

Commit

Permalink
fix: Gremlin throwing import error on Python 3.11 and 3.12 (#2601)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonLuttenberger authored Jan 10, 2024
1 parent 60db492 commit 9aaaf04
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 3 deletions.
14 changes: 12 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ gremlinpython = { version = "^3.7.1", optional = true }
SPARQLWrapper = { version = "^2.0.0", optional = true }
requests = { version = "^2.0.0", optional = true }
aiohttp = { version = "^3.9.0", optional = true }
async-timeout = { version = "^4.0.3", optional = true }

# OpenSearch
opensearch-py = { version = "^2.0.0", optional = true }
Expand Down Expand Up @@ -86,7 +87,7 @@ mysql = ["pymysql"]
postgres = ["pg8000"]
sqlserver = ["pyodbc"]
oracle = ["oracledb"]
gremlin = ["gremlinpython", "requests", "aiohttp"]
gremlin = ["gremlinpython", "requests", "aiohttp", "async-timeout"]
sparql = ["SPARQLWrapper", "requests"]
opencypher = ["requests"]
opensearch = ["opensearch-py", "jsonpath-ng", "requests-aws4auth"]
Expand Down

0 comments on commit 9aaaf04

Please sign in to comment.