Set version of dependencies (#16)

* relax constraints

* fix version of pytest

* change to pytorch 1.1
This commit is contained in:
Lorenzo Bertoni 2019-11-27 15:04:35 +01:00 committed by GitHub
parent aba19f5316
commit 88068628b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,18 +27,18 @@ setup(
zip_safe=False,
install_requires=[
'torch==1.1.0',
'torchvision==0.3.0',
'openpifpaf==0.8.0',
'tabulate==0.8.3', # For evaluation
'torch<=1.1.0',
'torchvision<=0.3.0',
'openpifpaf<=0.9.0',
'tabulate<=0.8.3', # For evaluation
],
extras_require={
'test': [
'pylint==2.4.2',
'pytest==4.6.3',
'pylint<=2.4.2',
'pytest<=4.6.3',
],
'prep': [
'nuscenes-devkit==1.0.2',
'nuscenes-devkit<=1.0.2',
],
},
)