Added unidecode

This commit is contained in:
Oleg Lavrovsky 2021-07-01 08:36:57 +02:00
parent cebc484965
commit 175dd9fd15
4 changed files with 15 additions and 4 deletions

7
.gitignore vendored
View file

@ -1,12 +1,12 @@
.env .env
env
/env/
/venv/
*.pyc *.pyc
.sass-cache .sass-cache
.DS_Store .DS_Store
*.swp *.swp
*.sqlite3 *.sqlite3
/docker-compose.yml
/env/
/venv/
/static/ /static/
/assets/ /assets/
/media/ /media/
@ -14,6 +14,7 @@
/.keys/ /.keys/
/.vagrant/ /.vagrant/
/Vagrantfile.local /Vagrantfile.local
/docker-compose.yml
/docs/_build/ /docs/_build/
/node_modules/ /node_modules/
/publichealth/static/libs /publichealth/static/libs

View file

@ -33,3 +33,4 @@ stellar = "*"
wagtail = ">=2.0,<2.13" wagtail = ">=2.0,<2.13"
whitenoise = "*" whitenoise = "*"
django-toolbelt = "*" django-toolbelt = "*"
unidecode = "*"

10
Pipfile.lock generated
View file

@ -1,7 +1,7 @@
{ {
"_meta": { "_meta": {
"hash": { "hash": {
"sha256": "0476f5577e0add77f248917f00fee07da37ab9c4c1248918ca4565d0f972ced4" "sha256": "a8d6833d674518785c4eeaa99ed3f1a896f26687aa801e2b3510d900a137b0d0"
}, },
"pipfile-spec": 6, "pipfile-spec": 6,
"requires": {}, "requires": {},
@ -690,6 +690,14 @@
"markers": "python_version >= '3.6'", "markers": "python_version >= '3.6'",
"version": "==3.0.0" "version": "==3.0.0"
}, },
"unidecode": {
"hashes": [
"sha256:12435ef2fc4cdfd9cf1035a1db7e98b6b047fe591892e81f34e94959591fad00",
"sha256:8d73a97d387a956922344f6b74243c2c6771594659778744b2dbdaad8f6b727d"
],
"index": "pypi",
"version": "==1.2.0"
},
"urllib3": { "urllib3": {
"hashes": [ "hashes": [
"sha256:39fb8672126159acb139a7718dd10806104dec1e2f0f6c88aab05d17df10c8d4", "sha256:39fb8672126159acb139a7718dd10806104dec1e2f0f6c88aab05d17df10c8d4",

View file

@ -31,3 +31,4 @@ gunicorn
whitenoise whitenoise
python-dotenv python-dotenv
ConcurrentLogHandler ConcurrentLogHandler
unidecode