Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare for jupyter_client 7.0 #244

Merged
merged 5 commits into from
Nov 14, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update jupyter_console/completer.py
Co-authored-by: Matthias Bussonnier <bussonniermatthias@gmail.com>
davidbrochart and Carreau authored Sep 15, 2021
commit 6620bdbecd66196721f9765a13659bdc26e28740
2 changes: 1 addition & 1 deletion jupyter_console/completer.py
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@


# jupyter_client 7.0+ has async channel methods that we expect to be sync here
if jupyter_client._version.version_info[0] >= 7:
if jupyter_client.version_info >= (7,):
from jupyter_client.utils import run_sync
else:
run_sync = lambda x: x