Skip to content

Commit

Permalink
fix: torchvision version to avoid compatibility issue (#866)
Browse files Browse the repository at this point in the history
* fix: fix torchvision version to avoid compatibility issue

* fix: fix torchvision version to avoid compatibility issue

* fix: fix python version for torchvision

* fix: fix python version for torchvision
  • Loading branch information
jemmyshin committed Nov 25, 2022
1 parent 0223e6f commit 67f551c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
'ftfy',
'torch',
'regex',
'torchvision',
'torchvision<=0.13.0' if sys.version_info <= (3, 7, 2) else 'torchvision',
'jina>=3.8.0',
'prometheus-client',
'open_clip_torch>=1.3.0',
Expand Down

0 comments on commit 67f551c

Please sign in to comment.