From f426a1a3535b047f72d7153f0539c2e1056039f8 Mon Sep 17 00:00:00 2001 From: Morten Brekkevold Date: Wed, 6 Mar 2024 15:16:08 +0000 Subject: [PATCH] Remove nonsensical pydantic requirement For some unknown reason, pydantic was added to the dependency list in pyproject.toml, but NAV has no such dependency. This removes it. --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index de26325251..c949e0af47 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,7 +17,6 @@ classifiers = [ ] dynamic = ["version"] dependencies = [ - "pydantic >= 2.0", "importlib_metadata; python_version < '3.8'", "importlib_resources; python_version < '3.9'", ]