Closed
Description
Hi, I was trying to get Coconut to work with jupyter and ipython, but when I try to run anything, I get the following error message:
----------------------------------------------------------
TypeError Traceback (most recent call last)
/usr/local/lib/python3.8/site-packages/IPython/core/async_helpers.py in _pseudo_sync_runner(coro)
66 """
67 try:
---> 68 coro.send(None)
69 except StopIteration as exc:
70 return exc.value
/usr/local/Cellar/python@3.8/3.8.5/Frameworks/Python.framework/Versions/3.8/lib/python3.8/asyncio/coroutines.py in coro(*args, **kw)
122 @functools.wraps(func)
123 def coro(*args, **kw):
--> 124 res = func(*args, **kw)
125 if (base_futures.isfuture(res) or inspect.isgenerator(res) or
126 isinstance(res, CoroWrapper)):
TypeError: run_cell_async() got an unexpected keyword argument 'transformed_cell'
This happens in Jupyter notebooks, in Jupyterlab and in the ipython repl.
What I've tried so far:
- removing and reinstalling the
coconut
kernels - uninstalling
coconut
and installingcoconut-develop
- searching through the github issues for the same problem.
my OS is macOS Catalina, 10.15.6. I have python 3.8 installed via homebrew.
Is this something that has happened to more people? Is there a fix already or is this a new bug?
Thanks for coconut though, it's a really cool language (and much less scary than something like Haskell (-; )