From 8cce8d669f89c52060bdf6e6e5843d06c055fc84 Mon Sep 17 00:00:00 2001 From: Ezeudoh Tochukwu Date: Tue, 31 Dec 2024 08:40:16 +0100 Subject: [PATCH] Added support for python 3.13 --- .github/workflows/test_full.yml | 2 +- ellar/common/compatible/cache_properties.py | 4 ++-- ellar/common/compatible/dict.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test_full.yml b/.github/workflows/test_full.yml index d6f5ff62..c3c81bd1 100644 --- a/.github/workflows/test_full.yml +++ b/.github/workflows/test_full.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.9', '3.10', '3.11', '3.12', '3.13'] steps: - uses: actions/checkout@v4 - name: Set up Python diff --git a/ellar/common/compatible/cache_properties.py b/ellar/common/compatible/cache_properties.py index ccdee6e1..6c1c855d 100644 --- a/ellar/common/compatible/cache_properties.py +++ b/ellar/common/compatible/cache_properties.py @@ -1,7 +1,7 @@ import typing as t -from ..constants import NOT_SET -from ..types import T +from ellar.common.constants import NOT_SET +from ellar.common.types import T try: from functools import cached_property diff --git a/ellar/common/compatible/dict.py b/ellar/common/compatible/dict.py index b0af96f1..2498a089 100644 --- a/ellar/common/compatible/dict.py +++ b/ellar/common/compatible/dict.py @@ -1,6 +1,6 @@ import typing as t -from ..types import KT, VT +from ellar.common.types import KT, VT class AttributeDictAccessMixin: