Skip to content

Commit f50973f

Browse files
authored
Relax deeplabcut-live pins to >=1.1 (#59) (#65)
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.
1 parent b7d75ce commit f50973f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ classifiers = [
2424
]
2525
dependencies = [
2626
"cv2-enumerate-cameras",
27-
"deeplabcut-live==1.1",
27+
"deeplabcut-live>=1.1",
2828
"matplotlib",
2929
"numpy",
3030
"opencv-python",
@@ -52,7 +52,7 @@ dev = [
5252
]
5353
gentl = [ "harvesters" ]
5454
pytorch = [
55-
"deeplabcut-live[pytorch]==1.1", # includes timm and scipy
55+
"deeplabcut-live[pytorch]>=1.1", # includes timm and scipy
5656
]
5757
test = [
5858
"hypothesis>=6",
@@ -64,7 +64,7 @@ test = [
6464
"tox-gh-actions",
6565
]
6666
tf = [
67-
"deeplabcut-live[tf]==1.1",
67+
"deeplabcut-live[tf]>=1.1",
6868
]
6969
[project.scripts]
7070
dlclivegui = "dlclivegui:main"

0 commit comments

Comments
 (0)