Skip to content

Commit 463ee78

Browse files
authored
Upgrade pydantic version (#168)
Why === Our pydantic version is getting a little out of date, and we were pinning to a specific version. What changed ============ Made the package less proscriptive regarding pydantic version, and changed minimum python version to 3.12. Test plan ========= CI/CD
1 parent c837786 commit 463ee78

File tree

2 files changed

+467
-418
lines changed

2 files changed

+467
-418
lines changed

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = [{ name = "Replit", email = "[email protected]" }]
66
license = { file = "LICENSE" }
77
keywords = ["rpc", "websockets"]
88
readme = "README.md"
9-
requires-python = ">=3.11,<4"
9+
requires-python = ">=3.12,<4"
1010
classifiers = [
1111
"Development Status :: 4 - Beta",
1212

@@ -20,7 +20,7 @@ classifiers = [
2020
"Programming Language :: Python :: 3.12",
2121
]
2222
dependencies = [
23-
"pydantic==2.9.2",
23+
"pydantic>=2.9.0,<3",
2424
"aiochannel>=1.2.1",
2525
"grpcio-tools>=1.59.3",
2626
"grpcio>=1.59.3",

0 commit comments

Comments
 (0)