Skip to content

Commit 8cce8d6

Browse files
committed
Added support for python 3.13
1 parent 3cb55c9 commit 8cce8d6

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/test_full.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
13+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
1414
steps:
1515
- uses: actions/checkout@v4
1616
- name: Set up Python

ellar/common/compatible/cache_properties.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import typing as t
22

3-
from ..constants import NOT_SET
4-
from ..types import T
3+
from ellar.common.constants import NOT_SET
4+
from ellar.common.types import T
55

66
try:
77
from functools import cached_property

ellar/common/compatible/dict.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import typing as t
22

3-
from ..types import KT, VT
3+
from ellar.common.types import KT, VT
44

55

66
class AttributeDictAccessMixin:

0 commit comments

Comments
 (0)