From 121d3e8cc251292037453ca535bd8937000c9130 Mon Sep 17 00:00:00 2001 From: Mark Neumann Date: Fri, 27 Apr 2018 11:36:42 -0700 Subject: [PATCH] unidecode in setup (#1148) --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fa591ad66e7..55d35238a2f 100644 --- a/setup.py +++ b/setup.py @@ -109,7 +109,8 @@ 'h5py', 'scikit-learn', 'scipy', - 'pytz==2017.3' + 'pytz==2017.3', + 'unidecode' ], scripts=["bin/allennlp"], setup_requires=['pytest-runner'],