From 9397db7bb4fe6ac95b6c2a68920f6f11da16e37e Mon Sep 17 00:00:00 2001 From: Yuval Adam <_@yuv.al> Date: Fri, 17 May 2024 12:59:26 +0200 Subject: [PATCH] Move unidecode out of dev deps --- pyproject.toml | 2 +- requirements.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) 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"