Replace Unidecode package with text_unidecode package #1014

Closes #1014
This commit is contained in:
Semyon Pupkov 2020-11-08 18:55:06 +05:00
parent 0888c748fd
commit b8a5c83f5f
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import re
from unidecode import unidecode
from text_unidecode import unidecode
def to_const(string):

View File

@ -66,7 +66,7 @@ setup(
"Django>=1.11",
"singledispatch>=3.4.0.3",
"promise>=2.1",
"unidecode>=1.1.1,<2",
"text-unidecode",
],
setup_requires=["pytest-runner"],
tests_require=tests_require,