Remove pytorch version constraint and Add python 3 constraint in setup.py
This commit is contained in:
parent
0764a1006e
commit
139caabe31
1 changed files with 2 additions and 1 deletions
3
setup.py
3
setup.py
|
@ -8,8 +8,9 @@ setup(
|
||||||
author='Yin Li et al.',
|
author='Yin Li et al.',
|
||||||
author_email='eelregit@gmail.com',
|
author_email='eelregit@gmail.com',
|
||||||
packages=find_packages(),
|
packages=find_packages(),
|
||||||
|
python_requires='>=3',
|
||||||
install_requires=[
|
install_requires=[
|
||||||
'torch==1.1',
|
'torch',
|
||||||
'numpy',
|
'numpy',
|
||||||
'scipy',
|
'scipy',
|
||||||
'tensorboard',
|
'tensorboard',
|
||||||
|
|
Loading…
Add table
Reference in a new issue