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 = [
2626 " Programming Language :: Python :: 3.10" ,
2727 " Programming Language :: Python :: 3.11" ,
2828 " Programming Language :: Python :: 3.12" ,
29+ " Programming Language :: Python :: 3.13" ,
2930 " Programming Language :: Python :: 3 :: Only" ,
3031 " Programming Language :: Python :: Implementation :: CPython" ,
3132 " Programming Language :: Python :: Implementation :: PyPy" ,
@@ -41,17 +42,17 @@ Changelog = "https://github.com/anikolaienko/py-automapper/blob/main/CHANGELOG.m
4142
4243[project .optional-dependencies ]
4344dev = [
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" ,
4849 " Sphinx~=7.1.2"
4950]
5051test = [
5152 " pre-commit~=3.5.0" ,
52- " pytest~=8.2.0 " ,
53+ " pytest~=8.3.5 " ,
5354 " pytest-cov~=5.0.0" ,
54- " mypy~=1.10.0 "
55+ " mypy~=1.14.1 "
5556]
5657
5758[tool .pytest .ini_options ]
Original file line number Diff line number Diff line change 1+ from typing import Any
12from unittest import TestCase
23
34import pytest
@@ -10,13 +11,13 @@ class UserInfo(Model):
1011 id = fields .IntField (pk = True )
1112 full_name = fields .TextField ()
1213 public_name = fields .TextField ()
13- hobbies = fields .JSONField ()
14+ hobbies : Any = fields .JSONField ()
1415
1516
1617class PublicUserInfo (Model ):
1718 id = fields .IntField (pk = True )
1819 public_name = fields .TextField ()
19- hobbies = fields .JSONField ()
20+ hobbies : Any = fields .JSONField ()
2021
2122
2223class TortoiseORMExtensionTest (TestCase ):
You can’t perform that action at this time.
0 commit comments