Gonzalo Tornaría 2023-11-27 00:24:06 -03:00 committed by Andrew J. Hesford
parent 878968b154
commit 9c068a8354
2 changed files with 24 additions and 1 deletions

View File

@ -0,0 +1,23 @@
From 55a45b1d19330a939d5df5a33671c10d52e11477 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Gonzalo=20Tornar=C3=ADa?= <tornaria@cmat.edu.uy>
Date: Mon, 27 Nov 2023 11:10:21 -0300
Subject: [PATCH] Disable workaround for ipython >= 8.18
---
src/prompt_toolkit/application/application.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/src/prompt_toolkit/application/application.py b/src/prompt_toolkit/application/application.py
index 726fc0a06..c07ea4e94 100644
--- a/src/prompt_toolkit/application/application.py
+++ b/src/prompt_toolkit/application/application.py
@@ -960,7 +960,8 @@ def run_in_thread() -> None:
def _called_from_ipython() -> bool:
try:
return (
- "IPython/terminal/interactiveshell.py"
+ sys.modules["IPython"].version_info < (8, 18, 0, "")
+ and "IPython/terminal/interactiveshell.py"
in sys._getframe(3).f_code.co_filename
)
except BaseException:

View File

@ -1,7 +1,7 @@
# Template file for 'python3-prompt_toolkit'
pkgname=python3-prompt_toolkit
version=3.0.41
revision=1
revision=2
build_style=python3-module
hostmakedepends="python3-setuptools"
depends="python3-wcwidth"