Skip to content

Commit 0f0a590

Browse files
committed
Fix tox.ini for installing torch on mac
1 parent 8e4efdb commit 0f0a590

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ passenv =
8383
commands =
8484
python -c "import os; os.system('install-custom-pkgs --install-boto-wheels')"
8585
pip install 'apache-airflow==2.9.3' --constraint "https://raw.githubusercontent.com/apache/airflow/constraints-2.9.3/constraints-3.8.txt"
86-
pip install 'torch==2.0.1+cpu' -f 'https://download.pytorch.org/whl/torch_stable.html'
87-
pip install 'torchvision==0.15.2+cpu' -f 'https://download.pytorch.org/whl/torch_stable.html'
86+
pip install 'torch==2.0.1' -f 'https://download.pytorch.org/whl/torch_stable.html'
87+
pip install 'torchvision==0.15.2' -f 'https://download.pytorch.org/whl/torch_stable.html'
8888
pip install 'dill>=0.3.8'
8989

9090
pytest {posargs}

0 commit comments

Comments
 (0)