From 2660d3586a4d6be62f41b3f5ce223c1c532ac9ae Mon Sep 17 00:00:00 2001 From: EugeneTorap Date: Wed, 1 Feb 2023 11:46:59 +0300 Subject: [PATCH] chore: add waitress for win32 platform --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d542df5efa49a..a6ce498a583a3 100644 --- a/setup.py +++ b/setup.py @@ -93,7 +93,7 @@ def get_git_sha() -> str: "func_timeout", "geopy", "graphlib-backport", - "gunicorn>=20.1.0", + "gunicorn>=20.1.0; sys_platform != 'win32'", "hashids>=1.3.1, <2", "holidays>=0.17.2, <0.18", "humanize", @@ -122,6 +122,7 @@ def get_git_sha() -> str: "sqlparse>=0.4.3, <0.5", "tabulate>=0.8.9, <0.9", "typing-extensions>=4, <5", + "waitress; sys_platform == 'win32'", "wtforms>=2.3.3, <2.4", "wtforms-json", "xlsxwriter>=3.0.7, <3.1",