Skip to content

Commit cc3bd05

Browse files
authored
Replace Unidecode package with text_unidecode package #1014 (#1060)
Closes #1014
1 parent 99512c5 commit cc3bd05

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

graphene_django/utils/str_converters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import re
2-
from unidecode import unidecode
2+
from text_unidecode import unidecode
33

44

55
def to_const(string):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"Django>=1.11",
6767
"singledispatch>=3.4.0.3",
6868
"promise>=2.1",
69-
"unidecode>=1.1.1,<2",
69+
"text-unidecode",
7070
],
7171
setup_requires=["pytest-runner"],
7272
tests_require=tests_require,

0 commit comments

Comments
 (0)