Skip to content

Commit ca53d91

Browse files
author
Yinghai Lu
authored
Merge pull request #1164 from dabauxi/fix-install-requires-versioning
Add missing comma for proper torch versioning in setup.py
2 parents 45a57da + 17ea857 commit ca53d91

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

py/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -299,7 +299,7 @@ def run(self):
299299
long_description=long_description,
300300
ext_modules=ext_modules,
301301
install_requires=[
302-
'torch>=1.11.0+cu113<1.12.0',
302+
'torch>=1.11.0+cu113,<1.12.0',
303303
],
304304
setup_requires=[],
305305
cmdclass={

0 commit comments

Comments
 (0)