From 88a2338bc4944e88986f8b984c2cb0aa41a8c37c Mon Sep 17 00:00:00 2001 From: Cyril Achard Date: Mon, 2 Mar 2026 16:01:39 +0100 Subject: [PATCH] Relax deeplabcut-live pins to >=1.1 Change strict pins for deeplabcut-live from ==1.1 to >=1.1 in pyproject.toml (base deps, [pytorch] extra, and [tf] extra). This relaxes exact version locking to allow newer releases while keeping 1.1 as the minimum required version. --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 02e8a96..1c1c153 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ ] dependencies = [ "cv2-enumerate-cameras", - "deeplabcut-live==1.1", + "deeplabcut-live>=1.1", "matplotlib", "numpy", "opencv-python", @@ -52,7 +52,7 @@ dev = [ ] gentl = [ "harvesters" ] pytorch = [ - "deeplabcut-live[pytorch]==1.1", # includes timm and scipy + "deeplabcut-live[pytorch]>=1.1", # includes timm and scipy ] test = [ "hypothesis>=6", @@ -64,7 +64,7 @@ test = [ "tox-gh-actions", ] tf = [ - "deeplabcut-live[tf]==1.1", + "deeplabcut-live[tf]>=1.1", ] [project.scripts] dlclivegui = "dlclivegui:main"