Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,8 @@
Python driver for [ArangoDB](https://www.arangodb.com), a scalable multi-model
database natively supporting documents, graphs and search.

If you're interested in using asyncio, please check [python-arango-async](https://github.com/arangodb/python-arango-async).

## Requirements

- ArangoDB version 3.11+
Expand Down
2 changes: 1 addition & 1 deletion arango/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def normalize_headers(
if driver_flags is not None:
for flag in driver_flags:
flags = flags + flag + ";"
driver_version = "8.1.5"
driver_version = "8.1.7"
driver_header = "python-arango/" + driver_version + " (" + flags + ")"
normalized_headers: Headers = {
"charset": "utf-8",
Expand Down
3 changes: 3 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ Python-Arango

Welcome to the documentation for **python-arango**, a Python driver for ArangoDB_.

If you're interested in using asyncio, please check python-arango-async_ driver.

Requirements
=============

Expand Down Expand Up @@ -96,3 +98,4 @@ Development
specs

.. _ArangoDB: https://www.arangodb.com
.. _python-arango-async: https://python-arango-async.readthedocs.io
Loading