Skip to content

Commit

Permalink
fix: fix python version for torchvision
Browse files Browse the repository at this point in the history
  • Loading branch information
jemmyshin committed Nov 25, 2022
1 parent 24b32c1 commit fbc72de
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<=0.13.0' if sys.version_info == (3, 7, 2) else '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 fbc72de

Please sign in to comment.