Replace Unidecode package with text_unidecode package #1014 (#1060)

Closes #1014
This commit is contained in:
Semyon Pupkov 2020-12-23 09:12:22 +05:00 committed by GitHub
parent 99512c53a1
commit cc3bd05472
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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,