summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYuval Adam <_@yuv.al>2024-05-17 12:59:26 +0200
committerYuval Adam <_@yuv.al>2024-05-18 13:12:23 +0200
commit9397db7bb4fe6ac95b6c2a68920f6f11da16e37e (patch)
treea65af45f1125e811ecd6592f5cb8cd5526a89406
parentb302ff4893cda11e6f281e326dbc750a899781ac (diff)
Move unidecode out of dev deps
-rw-r--r--pyproject.toml2
-rw-r--r--requirements.txt1
2 files changed, 2 insertions, 1 deletions
diff --git a/pyproject.toml b/pyproject.toml
index 8b42b67..6c7f3cc 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -13,9 +13,9 @@ python = "^3.8"
jinja2 = "^3.1.4"
ymlstash = "^1.2.0"
click = "^8.1.7"
+unidecode = "^1.3.8"
[tool.poetry.group.dev.dependencies]
-unidecode = "^1.3.8"
aiohttp = "^3.9.5"
requests = "^2.31.0"
diff --git a/requirements.txt b/requirements.txt
index 6871f13..37bc3ea 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -3,4 +3,5 @@ colorama==0.4.6 ; python_version >= "3.8" and python_version < "4.0" and platfor
jinja2==3.1.4 ; python_version >= "3.8" and python_version < "4.0"
markupsafe==2.1.5 ; python_version >= "3.8" and python_version < "4.0"
pyyaml==6.0.1 ; python_version >= "3.8" and python_version < "4.0"
+unidecode==1.3.8 ; python_version >= "3.8" and python_version < "4.0"
ymlstash==1.2.0 ; python_version >= "3.8" and python_version < "4.0"