mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 08:24:40 +01:00
Merge pull request #3902 from t0fik/fix_prompt_toolkit_version
Updated prompt-toolkit version requirement
This commit is contained in:
commit
ac1a7982f8
4 changed files with 26 additions and 3 deletions
23
news/fix_prompt_toolkit_version.rst
Normal file
23
news/fix_prompt_toolkit_version.rst
Normal file
|
@ -0,0 +1,23 @@
|
|||
**Added:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Changed:**
|
||||
|
||||
* prompt-toolkit required version updated to >=3.0
|
||||
|
||||
**Deprecated:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Removed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Fixed:**
|
||||
|
||||
* <news item>
|
||||
|
||||
**Security:**
|
||||
|
||||
* <news item>
|
|
@ -1,7 +1,7 @@
|
|||
cloud_sptheme
|
||||
numpydoc
|
||||
Sphinx>=3.1
|
||||
prompt_toolkit>=2.0
|
||||
prompt_toolkit>=3.0
|
||||
pygments>=2.2
|
||||
psutil
|
||||
pyzmq
|
||||
|
|
|
@ -4,7 +4,7 @@ flake8
|
|||
flake8-docstrings
|
||||
pytest-cov
|
||||
pytest-timeout
|
||||
prompt-toolkit>=2.0
|
||||
prompt-toolkit>=3.0
|
||||
pygments>=2.2
|
||||
codecov
|
||||
coverage
|
||||
|
|
2
setup.py
2
setup.py
|
@ -339,7 +339,7 @@ def main():
|
|||
}
|
||||
skw["cmdclass"]["develop"] = xdevelop
|
||||
skw["extras_require"] = {
|
||||
"ptk": ["prompt-toolkit>=2.0"],
|
||||
"ptk": ["prompt-toolkit>=3.0"],
|
||||
"pygments": ["pygments>=2.2"],
|
||||
"mac": ["gnureadline"],
|
||||
"linux": ["distro"],
|
||||
|
|
Loading…
Add table
Reference in a new issue