From 5fbd70e9c07a94ba7fa3034fc681dcdfa6aa73ff Mon Sep 17 00:00:00 2001 From: Ulf Magnusson Date: Wed, 5 Jun 2019 13:58:16 +0200 Subject: Update setup.py now that menuconfig is Python 2-compatible Remove the Python 3 installation prereq for windows-curses, and another comment saying the menuconfig is Python 3 only. --- setup.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 41e306e..4aab966 100644 --- a/setup.py +++ b/setup.py @@ -43,8 +43,6 @@ setuptools.setup( "setconfig", ), - # TODO: Don't install the terminal menuconfig on Python 2. It won't run - # there. setuptools needs better documentation... entry_points={ "console_scripts": ( "menuconfig = menuconfig:_main", @@ -67,7 +65,7 @@ setuptools.setup( # module. The windows-curses package makes it available on Windows. See # https://github.com/zephyrproject-rtos/windows-curses. install_requires=( - 'windows-curses; sys_platform == "win32" and python_version >= "3"', + 'windows-curses; sys_platform == "win32"', ), # Needs support for unnumbered {} in format() -- cgit v1.2.3