From 3e44c2502be7ee9e51e15815e4bf629013491ae3 Mon Sep 17 00:00:00 2001 From: Mithil Poojary Date: Mon, 26 Feb 2024 04:26:08 +0530 Subject: [PATCH] Pin windows-curses to v2.3.0 (#161) Windows-curses bug introduced after v2.3.0 not allowing to type apostrophe character. zephyrproject-rtos/windows-curses#41 --- BUILD.md | 2 +- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/BUILD.md b/BUILD.md index 9a4a10e..eaacaa7 100644 --- a/BUILD.md +++ b/BUILD.md @@ -19,7 +19,7 @@ python -m mitype [OPTION]... [FILE]... You'll need [windows_curses](https://pypi.org/project/windows-curses/) installed for running mitype on windows. You can install it by running the following command. ``` -pip install windows_curses +pip install windows_curses==2.3.0 ``` ## Installing from Source diff --git a/setup.cfg b/setup.cfg index 78b6c41..fe6a578 100644 --- a/setup.cfg +++ b/setup.cfg @@ -30,7 +30,7 @@ classifiers = [options] packages = mitype install_requires = - windows-curses; platform_system=='Windows' + windows-curses==2.3.0; platform_system=='Windows' include_package_data = True zip_safe = False