Skip to content

Commit b5e20d9

Browse files
committed
fix: keep support for python3.8
1 parent 14e74cf commit b5e20d9

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

requirements/base.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,6 @@ jsonschema<5,>=3.2 # TODO: evaluate risk of removing jsonschema 3.x support
33
typing_extensions>=4.4 # 3.8 doesn't have Required, TypeGuard and ParamSpec
44

55
# resource validation & schema generation
6-
pydantic~=2.12.5
6+
# we should remove support for Python 3.8 soon (and 3.9), but supporting it for now
7+
pydantic>=2.10.6; python_version>="3.8"
8+
pydantic~=2.12.5; python_version>="3.9"

0 commit comments

Comments
 (0)