File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -13,8 +13,10 @@ authors = [
1313license = { file = " LICENSE" }
1414requires-python = " >=3.10,<3.11"
1515dependencies = [
16- " torch>=1.13,<2.0" ,
17- " pytorch-lightning<2.0" ,
16+ " torch==1.13.1; python_version < \" 3.11\" " ,
17+ " torch>=2.1; python_version >= \" 3.12\" " ,
18+ " pytorch-lightning==1.9.*; python_version < \" 3.11\" " ,
19+ " pytorch-lightning>=2.1,<3.0; python_version >= \" 3.12\" " ,
1820 " torchvision" ,
1921 " numpy" ,
2022 " kornia" ,
Original file line number Diff line number Diff line change 33# If PyPI cannot locate torch/torchvision, install them from the official
44# PyTorch wheel index (CPU or CUDA builds) before re-running
55# `pip install -r requirements.txt`.
6- torch == 1.13.1
7- pytorch-lightning == 1.9.0
6+
7+ torch == 1.13.1 ; python_version < "3.11"
8+ torch >= 2.1 ; python_version >= "3.12"
9+
10+ pytorch-lightning == 1.9.* ; python_version < "3.11"
11+ pytorch-lightning >= 2.1 ,< 3.0 ; python_version >= "3.12"
12+
813torchvision
914numpy
1015kornia
You can’t perform that action at this time.
0 commit comments