Allow newer torch versions (#269)

This commit is contained in:
Hendrik Schröter
2019-10-01 05:24:49 -04:00
committed by William Falcon
parent 8a2472269a
commit dd45896e78
2 changed files with 4 additions and 5 deletions
+3 -3
View File
@@ -1,7 +1,7 @@
scikit-learn==0.20.2
tqdm==4.32.1
tqdm==4.35.0
twine==1.13.0
numpy==1.16.4
torch>=1.1.0
torch>=1.2.0
torchvision>=0.3.0
pandas
pandas
+1 -2
View File
@@ -29,7 +29,7 @@ setup(
keywords=['deep learning', 'pytorch', 'AI'],
python_requires='>=3.6',
install_requires=[
'torch==1.2.0',
'torch>=1.2.0',
'tqdm>=4.35.0',
'test-tube>=0.6.9',
'pandas>=0.20.3',
@@ -51,7 +51,6 @@ setup(
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],