From 985414aeab76ac695801bd7d0863226219fa06c0 Mon Sep 17 00:00:00 2001 From: Jeremy Saklad Date: Tue, 20 Jul 2021 11:15:56 -0500 Subject: [PATCH] Add Windows-specific curses dependency The curses module is not included with Python on Windows, and must be installed as a package. The Pipfile has been updated to do this when run on Windows. --- Pipfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Pipfile b/Pipfile index f94e430..4e7cb20 100644 --- a/Pipfile +++ b/Pipfile @@ -5,6 +5,7 @@ name = "pypi" [packages] ortools = "~=9.0" +windows-curses = {platform_system = "== 'Windows'"} [dev-packages]