L. R. Couto

Results 16 comments of L. R. Couto

> > Tests failing on 3.11 instead 🤔 > > ``` > > Traceback (most recent call last): > > File "/opt/hostedtoolcache/Python/3.11.7/x64/lib/python3.11/multiprocessing/queues.py", line 244, in _feed > > obj =...

@astrojuanlu here's the issue I mentioned today at standup. ![image](https://github.com/kedro-org/kedro/assets/57910428/df53315b-1b15-48c4-9762-666b4a2ff585) This function at `inspect.BoundNode` has a docstring that contains `*args` and `**kwargs`. Sphinx is considering the `*` characters to be...

> Was the issue Sphinx is trying to render that method in docs? Can we somehow suppress this, tbh there is not much value to document the class in the...

Converted NodeBoundArguments to private and that solved this specific instance of the problem. It'd still be a good idea to find a more permanent solution for this issue though.

I had the same impression while trying to imagine running the debugger from a new user's perspective. I think the IPython feature is a little "hidden".

Reopening because https://github.com/kedro-org/kedro-plugins/pull/681 still needs some reviewing.

> @astrojuanlu Alright I was confused because I see no changes on these: > > https://github.com/kedro-org/kedro/blob/9da8b37802d760b2b96ca4d69ebdb7462f12370f/kedro/logging.py#L35 > > and > > https://github.com/kedro-org/kedro/blob/9da8b37802d760b2b96ca4d69ebdb7462f12370f/kedro/logging.py#L56-L60 > > Now I realise the logic is...

At the present moment, this PR allows creating a project with `kedro new`, running a pipeline with `kedro run`, and using `kedro ipython` without requiring `rich` to be installed. One...

> At the present moment, this PR allows creating a project with `kedro new`, running a pipeline with `kedro run`, and using `kedro ipython` without requiring `rich` to be installed....

> I've found the source of this issue - it's cookiecutter. Using the newest version of cookiecutter makes the prompt use rich when it's installed, but then project creation fails...