From a8a5e65601298ffe93f83d6271cfd1e0a69e930e Mon Sep 17 00:00:00 2001
From: Dinesh Dutt
Date: Mon, 4 Oct 2021 06:17:46 -0700
Subject: [PATCH] Add colorama requirement to pyproject
---
build/requirements.txt | 2 +-
poetry.lock | 2 +-
pyproject.toml | 1 +
3 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/build/requirements.txt b/build/requirements.txt
index 65cbf4a62a..21d71236df 100644
--- a/build/requirements.txt
+++ b/build/requirements.txt
@@ -20,7 +20,7 @@ certifi==2020.12.5; python_version >= "3.6" and python_full_version < "3.0.0" or
cffi==1.14.5; implementation_name == "pypy" and python_version >= "3.6"
chardet==3.0.4; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6"
click==7.1.2; python_version >= "3.6" and python_full_version < "3.0.0" or python_full_version >= "3.5.0" and python_version >= "3.6"
-colorama==0.4.4; python_version >= "3.6" and python_full_version < "3.0.0" and sys_platform == "win32" or sys_platform == "win32" and python_version >= "3.6" and python_full_version >= "3.5.0"
+colorama==0.4.4; (python_version >= "2.7" and python_full_version < "3.0.0") or (python_full_version >= "3.5.0")
configargparse==0.15.2; python_version >= "2.7" and python_full_version < "3.0.0" or python_full_version >= "3.5.0"
cryptography==3.4.7; python_full_version >= "2.7.6" and python_full_version < "3.0.0" and python_version >= "3.6" or python_full_version >= "3.4.0" and python_version >= "3.6"
cycler==0.10.0; python_version >= "3.7"
diff --git a/poetry.lock b/poetry.lock
index d375983df6..9b900f4c8d 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -2135,7 +2135,7 @@ testing = ["pytest (>=4.6)", "pytest-checkdocs (>=1.2.3)", "pytest-flake8", "pyt
[metadata]
lock-version = "1.1"
python-versions = ">3.7.1, < 3.9"
-content-hash = "48fb523715fa2c30602df230783c6445f565ac9ad87bc0c96e1d2c825ca3c064"
+content-hash = "f42ef9dae777f680cbbb01f264e09d083483be688a78cfcd3fa919b608bf6dfd"
[metadata.files]
aiofiles = [
diff --git a/pyproject.toml b/pyproject.toml
index 404a0fbc57..e58ddf7488 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -42,6 +42,7 @@ dateparser = "^1.0.0"
fido2 = "^0.9.1"
bcrypt = "^3.2.0"
natsort = "^7.1.1"
+colorama = "^0.4.4"
[tool.poetry.dev-dependencies]
pylint = "*"