Skip to content

Commit 22e4acc

Browse files
committed
add python 3.13 and jit into testing
* add python 3.13 * turn on JIT * update code to not raise deprecation warnings
1 parent 66d78bf commit 22e4acc

File tree

3 files changed

+20
-21
lines changed

3 files changed

+20
-21
lines changed

.github/workflows/github-actions-tests.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
strategy:
1515
fail-fast: false
1616
matrix:
17-
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
17+
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13" ]
1818
mongodb-version: [4.4, 5.0, 6.0, 7.0, 8.0 ]
1919
pydantic-version: [ "1.10.18", "2.9.2" ]
2020
runs-on: ubuntu-latest
@@ -35,4 +35,6 @@ jobs:
3535
- name: install pydantic
3636
run: pip install pydantic==${{ matrix.pydantic-version }}
3737
- name: run tests
38-
run: pytest -v
38+
env:
39+
PYTHON_JIT: 1
40+
run: pytest -v

beanie/odm/fields.py

+15-19
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
from __future__ import annotations
2+
13
import asyncio
2-
import sys
34
from collections import OrderedDict
45
from dataclasses import dataclass
56
from enum import Enum
@@ -10,23 +11,18 @@
1011
Generic,
1112
List,
1213
Optional,
14+
Tuple,
1315
Type,
1416
TypeVar,
1517
Union,
1618
)
17-
18-
if sys.version_info >= (3, 8):
19-
from typing import get_args
20-
else:
21-
from typing_extensions import get_args
22-
2319
from typing import OrderedDict as OrderedDictType
24-
from typing import Tuple
2520

2621
from bson import DBRef, ObjectId
2722
from bson.errors import InvalidId
2823
from pydantic import BaseModel
2924
from pymongo import ASCENDING, IndexModel
25+
from typing_extensions import get_args
3026

3127
from beanie.odm.enums import SortDirection
3228
from beanie.odm.operators.find.comparison import (
@@ -307,19 +303,19 @@ def __init__(self, ref: DBRef, document_class: Type[T]):
307303
self.ref = ref
308304
self.document_class = document_class
309305

310-
async def fetch(self, fetch_links: bool = False) -> Union[T, "Link"]:
306+
async def fetch(self, fetch_links: bool = False) -> Union[T, Link]:
311307
result = await self.document_class.get( # type: ignore
312308
self.ref.id, with_children=True, fetch_links=fetch_links
313309
)
314310
return result or self
315311

316312
@classmethod
317-
async def fetch_one(cls, link: "Link"):
313+
async def fetch_one(cls, link: Link):
318314
return await link.fetch()
319315

320316
@classmethod
321317
async def fetch_list(
322-
cls, links: List[Union["Link", "DocType"]], fetch_links: bool = False
318+
cls, links: List[Union[Link, DocType]], fetch_links: bool = False
323319
):
324320
"""
325321
Fetch list that contains links and documents
@@ -355,7 +351,7 @@ async def fetch_list(
355351

356352
@staticmethod
357353
def repack_links(
358-
links: List[Union["Link", "DocType"]],
354+
links: List[Union[Link, DocType]],
359355
) -> OrderedDictType[Any, Any]:
360356
result = OrderedDict()
361357
for link in links:
@@ -366,7 +362,7 @@ def repack_links(
366362
return result
367363

368364
@classmethod
369-
async def fetch_many(cls, links: List["Link"]):
365+
async def fetch_many(cls, links: List[Link]):
370366
coros = []
371367
for link in links:
372368
coros.append(link.fetch())
@@ -375,7 +371,7 @@ async def fetch_many(cls, links: List["Link"]):
375371
if IS_PYDANTIC_V2:
376372

377373
@staticmethod
378-
def serialize(value: Union["Link", BaseModel]):
374+
def serialize(value: Union[Link, BaseModel]):
379375
if isinstance(value, Link):
380376
return value.to_dict()
381377
return value.model_dump(mode="json")
@@ -540,7 +536,7 @@ def __repr__(self):
540536

541537
@staticmethod
542538
def list_difference(
543-
left: List["IndexModelField"], right: List["IndexModelField"]
539+
left: List[IndexModelField], right: List[IndexModelField]
544540
):
545541
result = []
546542
for index in left:
@@ -549,7 +545,7 @@ def list_difference(
549545
return result
550546

551547
@staticmethod
552-
def list_to_index_model(left: List["IndexModelField"]):
548+
def list_to_index_model(left: List[IndexModelField]):
553549
return [index.index for index in left]
554550

555551
@classmethod
@@ -567,12 +563,12 @@ def from_motor_index_information(cls, index_info: dict):
567563
result.append(index_model)
568564
return result
569565

570-
def same_fields(self, other: "IndexModelField"):
566+
def same_fields(self, other: IndexModelField):
571567
return self.fields == other.fields
572568

573569
@staticmethod
574570
def find_index_with_the_same_fields(
575-
indexes: List["IndexModelField"], index: "IndexModelField"
571+
indexes: List[IndexModelField], index: IndexModelField
576572
):
577573
for i in indexes:
578574
if i.same_fields(index):
@@ -581,7 +577,7 @@ def find_index_with_the_same_fields(
581577

582578
@staticmethod
583579
def merge_indexes(
584-
left: List["IndexModelField"], right: List["IndexModelField"]
580+
left: List[IndexModelField], right: List[IndexModelField]
585581
):
586582
left_dict = {index.fields: index for index in left}
587583
right_dict = {index.fields: index for index in right}

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@ testpaths = [
8484
]
8585
filterwarnings = [
8686
"error",
87+
"ignore::DeprecationWarning",
8788
"ignore::UserWarning",
8889
]
8990
asyncio_mode = "auto"

0 commit comments

Comments
 (0)