Skip to content

Commit a965558

Browse files
authored
Blocking pydantic versions 2.9.0/2.9.1 in [dev] (#1068)
* chore: un-cap pydantic version * fix: increasing pydantic floor to avoid model_construct() + Union issues * fix: specify versions to ignore * fix: moving version limits to [dev]
1 parent 6cfd0ea commit a965558

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,16 @@ dynamic = ["version"]
1616
dependencies = [
1717
'aind-data-schema-models>=0.3.2',
1818
'dictdiffer',
19-
'pydantic>=2.7,<2.9',
19+
'pydantic>=2.7',
2020
'inflection',
2121
'jsonschema',
2222
'semver'
2323
]
2424

2525
[project.optional-dependencies]
2626
dev = [
27-
'aind_data_schema[linters]'
27+
'aind_data_schema[linters]',
28+
'pydantic>=2.7, !=2.9.0, !=2.9.1'
2829
]
2930

3031
linters = [

0 commit comments

Comments
 (0)