File tree Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Expand file tree Collapse file tree 2 files changed +10
-8
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ classifiers = [
26
26
" Programming Language :: Python :: 3.10" ,
27
27
" Programming Language :: Python :: 3.11" ,
28
28
" Programming Language :: Python :: 3.12" ,
29
+ " Programming Language :: Python :: 3.13" ,
29
30
" Programming Language :: Python :: 3 :: Only" ,
30
31
" Programming Language :: Python :: Implementation :: CPython" ,
31
32
" Programming Language :: Python :: Implementation :: PyPy" ,
@@ -41,17 +42,17 @@ Changelog = "https://github.com/anikolaienko/py-automapper/blob/main/CHANGELOG.m
41
42
42
43
[project .optional-dependencies ]
43
44
dev = [
44
- " tortoise-orm~=0.20.1 " ,
45
- " pydantic~=2.7.1 " ,
46
- " SQLAlchemy~=2.0.30 " ,
47
- " twine~=5.0 .0" ,
45
+ " tortoise-orm~=0.23.0 " ,
46
+ " pydantic~=2.10.6 " ,
47
+ " SQLAlchemy~=2.0.38 " ,
48
+ " twine~=6.1 .0" ,
48
49
" Sphinx~=7.1.2"
49
50
]
50
51
test = [
51
52
" pre-commit~=3.5.0" ,
52
- " pytest~=8.2.0 " ,
53
+ " pytest~=8.3.5 " ,
53
54
" pytest-cov~=5.0.0" ,
54
- " mypy~=1.10.0 "
55
+ " mypy~=1.14.1 "
55
56
]
56
57
57
58
[tool .pytest .ini_options ]
Original file line number Diff line number Diff line change
1
+ from typing import Any
1
2
from unittest import TestCase
2
3
3
4
import pytest
@@ -10,13 +11,13 @@ class UserInfo(Model):
10
11
id = fields .IntField (pk = True )
11
12
full_name = fields .TextField ()
12
13
public_name = fields .TextField ()
13
- hobbies = fields .JSONField ()
14
+ hobbies : Any = fields .JSONField ()
14
15
15
16
16
17
class PublicUserInfo (Model ):
17
18
id = fields .IntField (pk = True )
18
19
public_name = fields .TextField ()
19
- hobbies = fields .JSONField ()
20
+ hobbies : Any = fields .JSONField ()
20
21
21
22
22
23
class TortoiseORMExtensionTest (TestCase ):
You can’t perform that action at this time.
0 commit comments