From 4c89380abaec33409988c50298d03f905f136dab Mon Sep 17 00:00:00 2001 From: Ian Stride Date: Wed, 14 Aug 2024 12:45:09 +0100 Subject: [PATCH] Relax requirements for pydantic and openpyxl dependencies Different Python systems may have slightly different requirements, so we should be flexible, and only constrain versions when absolutely necessary. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 492b5f8..94be82e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -35,8 +35,8 @@ dependencies = [ "google-api-python-client~=2.6.0", "google-auth-oauthlib~=0.4.4", "networkx~=2.5.1", - "openpyxl~=3.0.7", - "pydantic~=1.10.14", + "openpyxl", + "pydantic < 2", "tablib[ods]>=3.1.0", ]