diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2021-01-28 22:26:34 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-01-28 22:26:34 -0500 |
commit | f8b2407b6079853fdfdd5878480c6883e2c18ded (patch) | |
tree | b715094fcca02b75cd98780eac2b23e18ad3f2ec /setup.py | |
parent | 188f251fa339eda74a97a790ac33b02a18363462 (diff) | |
parent | b329218f3c96398840776b48403323214d7b489b (diff) | |
download | cmd2-git-f8b2407b6079853fdfdd5878480c6883e2c18ded.tar.gz |
Merge branch 'master' into header_tabs
Diffstat (limited to 'setup.py')
-rwxr-xr-x | setup.py | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -44,8 +44,9 @@ INSTALL_REQUIRES = [ ] EXTRAS_REQUIRE = { - # Windows also requires pyreadline to ensure tab completion works - ":sys_platform=='win32'": ['pyreadline'], + # Windows also requires pyreadline or the replacement, pyreadline3, to ensure tab completion works + ":sys_platform=='win32' and python_version<'3.8'": ["pyreadline"], + ":sys_platform=='win32' and python_version>='3.8'": ["pyreadline3"], # Extra dependencies for running unit tests 'test': [ "gnureadline; sys_platform=='darwin'", # include gnureadline on macOS to ensure it is available in nox env |