From 2bef1917120ac8cbf05d47c66d52a59f69db2604 Mon Sep 17 00:00:00 2001 From: Peter van Tol Date: Tue, 23 Apr 2024 09:46:55 +0200 Subject: [PATCH] Minor fix for GitHub actions --- .github/workflows/CI-v1.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI-v1.yml b/.github/workflows/CI-v1.yml index d954c42d..086858b2 100644 --- a/.github/workflows/CI-v1.yml +++ b/.github/workflows/CI-v1.yml @@ -48,7 +48,7 @@ jobs: # To force Pydantic v1, we install the package before the dependencies. This # simulates a user who has Pydantic v1 required from another package. - name: Install Pydantic v1 - run: poetry run pip install pydantic==1.8.2 + run: poetry add pydantic==1.8.2 # Install dependencies. This function will take the already installed Pydantic v1 - name: Install Dependencies