Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b68acbb

Browse files
committed
add terminado to wheel dependencies
1 parent f78dee6 commit b68acbb

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

setupbase.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,9 +670,11 @@ def _remove_startswith(lis, prefix):
670670
if found:
671671
lis.pop(idx)
672672

673-
for pkg in ("gnureadline", "pyreadline", "mock"):
673+
for pkg in ("gnureadline", "pyreadline", "mock", "terminado"):
674674
_remove_startswith(requires, pkg)
675675
requires.append("gnureadline; sys.platform == 'darwin' and platform.python_implementation == 'CPython'")
676+
requires.append("terminado (>=0.3.3); extra == 'notebook' and sys.platform != 'win32'")
677+
requires.append("terminado (>=0.3.3); extra == 'all' and sys.platform != 'win32'")
676678
requires.append("pyreadline (>=2.0); extra == 'terminal' and sys.platform == 'win32' and platform.python_implementation == 'CPython'")
677679
requires.append("pyreadline (>=2.0); extra == 'all' and sys.platform == 'win32' and platform.python_implementation == 'CPython'")
678680
requires.append("mock; extra == 'test' and python_version < '3.3'")

0 commit comments

Comments
 (0)