diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2019-06-05 13:58:16 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2019-06-06 04:57:22 +0200 |
| commit | 5fbd70e9c07a94ba7fa3034fc681dcdfa6aa73ff (patch) | |
| tree | 2cbb9b27fe3d97a7027a5fc6ce98a17356e72aec /setup.py | |
| parent | 319f7f0f09a620e7cd9987d4834660598bfb7109 (diff) | |
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.
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -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() |
