From d334f75bd2f885a0813a69b531e32ea467d25be5 Mon Sep 17 00:00:00 2001 From: Alex Petenchea Date: Fri, 8 May 2026 16:15:34 +0800 Subject: [PATCH] Fix resource_class and path deprecation --- .circleci/config.yml | 4 ++-- arangoasync/typings.py | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index cb02c17..2be20e2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -4,7 +4,7 @@ executors: python-container: docker: - image: cimg/python:3.12 - resource_class: small + resource_class: arangodb/small-amd64 python-vm: machine: image: ubuntu-2404:current @@ -26,7 +26,7 @@ workflows: jobs: lint: executor: python-container - resource_class: small + resource_class: arangodb/small-amd64 steps: - checkout - run: diff --git a/arangoasync/typings.py b/arangoasync/typings.py index 2e3f4e3..f0f3e47 100644 --- a/arangoasync/typings.py +++ b/arangoasync/typings.py @@ -565,7 +565,7 @@ def id(self) -> str: @property def path(self) -> Optional[str]: - """The filesystem path of the current database.""" + """The filesystem path of the current database. Removed in ArangoDB 4.0.""" return self._data.get("path") @property