From fe2e2cb357b612784e03d635fc5cad5f3536e015 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Mon, 24 Mar 2025 16:46:53 -0700 Subject: [PATCH] Show current pydantic version --- .circleci/config.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index 113f2db2e6..6174f9ec73 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -626,6 +626,10 @@ jobs: pip install "pytest-retry==1.6.3" pip install "pytest-asyncio==0.21.1" python -m pip install -r requirements.txt + - run: + name: Show current pydantic version + command: | + python -m pip show pydantic # Run pytest and generate JUnit XML report - run: name: Run tests