From bbfd2d16f8a363832954965d841dc364792d4dbb Mon Sep 17 00:00:00 2001 From: Matt Shirley Date: Mon, 5 Aug 2024 16:50:56 -0400 Subject: [PATCH] Add packaging library for #220 This dependency fixes the condition where user has biopython installed but the version check does not complete. --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3410809..876cb06 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,8 @@ classifiers = [ ] dependencies = [ "setuptools", - "importlib_metadata" + "importlib_metadata", + "packaging" ] dynamic = ["version"]