Skip to content

Commit e08fd30

Browse files
talmoclaude
andcommitted
Bump minimum torchvision version to 0.20.0
This sets a minimum version constraint for torchvision across all torch extras (torch, torch-cpu, torch-cuda118, torch-cuda128). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <[email protected]>
1 parent e771701 commit e08fd30

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -54,19 +54,19 @@ readme = {file = ["README.md"], content-type="text/markdown"}
5454
[project.optional-dependencies]
5555
torch = [
5656
"torch",
57-
"torchvision<0.24.0",
57+
"torchvision>=0.20.0,<0.24.0",
5858
]
5959
torch-cpu = [
6060
"torch",
61-
"torchvision<0.24.0",
61+
"torchvision>=0.20.0,<0.24.0",
6262
]
6363
torch-cuda118 = [
6464
"torch",
65-
"torchvision<0.24.0",
65+
"torchvision>=0.20.0,<0.24.0",
6666
]
6767
torch-cuda128 = [
6868
"torch",
69-
"torchvision<0.24.0",
69+
"torchvision>=0.20.0,<0.24.0",
7070
]
7171
dev = [
7272
"pytest",

sleap_nn/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,4 +48,4 @@ def _safe_print(msg):
4848
format="{time:YYYY-MM-DD HH:mm:ss} | {level} | {name}:{function}:{line} | {message}",
4949
)
5050

51-
__version__ = "0.0.3"
51+
__version__ = "0.0.4"

0 commit comments

Comments
 (0)