From 6a6b88ac5a77c1205b1f31af35aef681d6087ce4 Mon Sep 17 00:00:00 2001 From: simw Date: Tue, 5 Nov 2024 17:05:21 +0000 Subject: [PATCH] Set specific patch versions for old pydantic testing, to avoid having to build pydantic-core from scratch when testing --- Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index b0e36ba..6fdb373 100644 --- a/Makefile +++ b/Makefile @@ -33,9 +33,15 @@ test-dep-versions: prepare poetry run pip install pyarrow==14.0.0 poetry run python -m pytest - poetry run pip install pydantic==2.0 + poetry run pip install pydantic==2.0.3 poetry run python -m pytest + # Change in alias functionality in 2.5.0 + poetry run pip install pydantic==2.4.2 + poetry run python -m pytest + + poetry run pip install pydantic==2.9.2 + poetry run python -m pytest .PHONY: clean clean: