Skip to content

Commit 744eef3

Browse files
Merge pull request #3 from kleschenko/patch-2
Loosen SQLAlchemy and pydantic dependency restrictions
2 parents 0532fee + 2f65a93 commit 744eef3

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

pyproject.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ classifiers = [
3232

3333
[tool.poetry.dependencies]
3434
python = "^3.7"
35-
SQLAlchemy = ">=2.0.0,<=2.0.21"
36-
pydantic = { version = ">=2.1.1,<=2.4.2", extras = ["email"] }
35+
SQLAlchemy = ">=2.0.0,<=2.1"
36+
pydantic = { version = ">=2.1.1,<=2.5", extras = ["email"] }
3737

3838
[tool.poetry.dev-dependencies]
3939
pytest = "^7.0.1"
@@ -90,16 +90,16 @@ skip_glob = [
9090
[tool.mypy]
9191
# --strict
9292
disallow_any_generics = true
93-
disallow_subclassing_any = true
94-
disallow_untyped_calls = true
93+
disallow_subclassing_any = true
94+
disallow_untyped_calls = true
9595
disallow_untyped_defs = true
96-
disallow_incomplete_defs = true
97-
check_untyped_defs = true
98-
disallow_untyped_decorators = true
96+
disallow_incomplete_defs = true
97+
check_untyped_defs = true
98+
disallow_untyped_decorators = true
9999
no_implicit_optional = true
100-
warn_redundant_casts = true
100+
warn_redundant_casts = true
101101
warn_unused_ignores = true
102-
warn_return_any = true
102+
warn_return_any = true
103103
implicit_reexport = false
104104
strict_equality = true
105105
# --strict end

0 commit comments

Comments
 (0)