Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stanfordnlp/stanza.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeng Qi <qipeng@users.noreply.github.com>2019-12-13 02:22:44 +0300
committerPeng Qi <qipeng@users.noreply.github.com>2019-12-13 02:22:44 +0300
commit78623c661ae2828c94b1b1bbbb5ebef75c987873 (patch)
tree55b4069d9ff3884920b3942906aaa4978b9c422a /setup.py
parent435ff01ef5acda2ccd3aa9bfd853bf46e268ca1d (diff)
torch.uint8 -> torch.bool to get rid of deprecation warning
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index ae8d7917..33fd1cf6 100644
--- a/setup.py
+++ b/setup.py
@@ -66,7 +66,7 @@ setup(
# your project is installed. For an analysis of "install_requires" vs pip's
# requirements files see:
# https://packaging.python.org/en/latest/requirements.html
- install_requires=['numpy', 'protobuf', 'requests', 'torch>=1.0.0', 'tqdm'],
+ install_requires=['numpy', 'protobuf', 'requests', 'torch>=1.2.0', 'tqdm'],
# List additional groups of dependencies here (e.g. development
# dependencies). You can install these using the following syntax,