Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 11 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,17 @@ dependencies = [
]

[project.optional-dependencies]
pydantic = ["pydantic>=2.0,<3.0"]
msgspec = ["msgspec>=0.18"]
pydantic = [
"pydantic>=2.0,<3.0; python_version < '3.14'",
# pydantic-core ships no cp314 wheel before pydantic 2.12.
"pydantic>=2.12,<3.0; python_version >= '3.14'",
]
msgspec = [
# 0.18.5 is the first release whose can_decode agrees with decode on Annotated types;
# 0.20 is the first with a cp314 wheel.
"msgspec>=0.18.5; python_version < '3.14'",
"msgspec>=0.20; python_version >= '3.14'",
]
otel = ["opentelemetry-api>=1.20"]
all = ["httpware[pydantic,msgspec,otel]"]

Expand Down
Loading