summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKevin Van Brunt <kmvanbrunt@gmail.com>2022-02-17 10:47:54 -0500
committerKevin Van Brunt <kmvanbrunt@gmail.com>2022-02-17 11:13:34 -0500
commit4621b0501acdaea7230eef97ffa526d14820af80 (patch)
tree0f0061e6eaf4ca5d64d16fed6397b37cc152cd80 /docs
parent07f059c17b4cb6577fbc7a2ce42d7c5bf98a83c8 (diff)
downloadcmd2-git-4621b0501acdaea7230eef97ffa526d14820af80.tar.gz
cmd2 now uses pyreadline3 when running any version of Python on Windows
Diffstat (limited to 'docs')
-rw-r--r--docs/overview/integrating.rst7
1 files changed, 2 insertions, 5 deletions
diff --git a/docs/overview/integrating.rst b/docs/overview/integrating.rst
index 041083bc..9dc77e8c 100644
--- a/docs/overview/integrating.rst
+++ b/docs/overview/integrating.rst
@@ -26,13 +26,10 @@ Windows Considerations
If you would like to use :ref:`features/completion:Completion`, and you want
your application to run on Windows, you will need to ensure you install the
-``pyreadline3`` or ``pyreadline`` package. Make sure to include the following
+``pyreadline3`` package. Make sure to include the following
in your ``setup.py``::
install_requires=[
'cmd2>=1,<2',
- ":sys_platform=='win32'": [
- "pyreadline ; python_version<'3.8'",
- "pyreadline3 ; python_version>='3.8'", # pyreadline3 is a drop-in replacement for Python 3.8 and above
- ],
+ ":sys_platform=='win32'": ['pyreadline3'],
]