Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dynamic = ["version"]
license = {text = "Apache 2.0"}
authors = [
{name = "Ti Wang", email = "ti.wang@epfl.ch"},
{name = "Xiaohang Yu"},
{name = "Xiaohang Yu", email = "xiaohang.yu@epfl.ch"},
{name = "Mackenzie Weygandt Mathis", email = "mackenzie.mathis@epfl.ch"},
]
keywords = ["pose estimation", "3D pose", "flow matching", "computer vision"]
Expand All @@ -24,20 +24,20 @@ classifiers = [
]

dependencies = [
# Pinned to torch 2.4.x: PyPI's Linux wheel for this range depends on
# CUDA 12.1 runtime packages. Newer torch releases may pull newer CUDA
# runtimes by default, so keep this bound to avoid surprising NVIDIA
# driver requirements for users.
"torch>=2.4.1,<2.5",
"torchvision>=0.19.1,<0.20",
# Capped below torch 2.11: PyPI's default Linux wheels for 2.4-2.10 bring a
# CUDA 12.x runtime, which any driver >= R525 can run. torch 2.11+ switches
# to CUDA 13 and needs an R580+ driver, so lifting this would silently break
# GPU support for users on older drivers. torchvision is paired accordingly.
"torch>=2.4.1,<2.11",
"torchvision>=0.19.1,<0.26",
"timm>=1.0.0",
"einops>=0.4.0",
"numpy>=1.18.5",
"tqdm>=4.60.0",
"scipy>=1.13",
"h5py>=3.0.0",
"yacs>=0.1.8",
"opencv-python>=4.5.0",
"opencv-python-headless>=4.5.0",
"numba>=0.60",
"scikit-image>=0.19.0",
"filterpy>=1.4.5",
Expand All @@ -48,7 +48,7 @@ dependencies = [
[project.optional-dependencies]
dev = ["pytest>=7.0.0", "black>=22.0.0", "flake8>=4.0.0", "isort>=5.10.0"]
wandb = ["wandb>=0.12.0"]
viz = ["matplotlib>=3.5.0", "opencv-python>=4.5.0"]
viz = ["matplotlib>=3.5.0"]
animals = ["deeplabcut>=3.0.0rc13"]

[tool.setuptools]
Expand Down
Loading