Daehyun Kim
03/07/2022, 7:20 PMdatajoely
03/07/2022, 7:21 PMlbonini
03/07/2022, 7:58 PMMLFLOW_TRACKING_INSECURE_TLS
to true
. How am I supposed to declare it? It works only if I export in the terminal and executes kedro run
Galileo-Galilei
03/07/2022, 8:46 PMDaehyun Kim
03/07/2022, 8:52 PMdatajoely
03/07/2022, 8:53 PMdatajoely
03/07/2022, 8:54 PMDaehyun Kim
03/07/2022, 9:13 PMwaylonwalker
03/07/2022, 10:24 PMdef joiner(left, *rights)
, I can't tell if this is genious or too much magic. Would love some thoughts on how others would review this PR.datajoely
03/07/2022, 10:30 PMdatajoely
03/07/2022, 10:30 PMdatajoely
03/07/2022, 10:31 PMMelen
03/08/2022, 2:35 AMYetunde
03/08/2022, 9:10 AMbeats-like-a-helix
03/08/2022, 11:57 AMkedro run
to work as normal, or is there anything special I need to do or configure before executing to make sure I don't run out of memory?datajoely
03/08/2022, 12:17 PMdatajoely
03/08/2022, 12:17 PMbeats-like-a-helix
03/08/2022, 12:19 PMdatajoely
03/08/2022, 12:21 PMlatest
docs branchbeats-like-a-helix
03/08/2022, 12:44 PMdatajoely
03/08/2022, 1:39 PMwilliamc
03/08/2022, 2:38 PMkedro new
supposed to create a cli.py
file in a new project by default?datajoely
03/08/2022, 2:39 PMdatajoely
03/08/2022, 2:40 PMwilliamc
03/08/2022, 2:41 PMcli.py
file is mentioned in the relevant docs. Is there a sample I can use to guide myself?datajoely
03/08/2022, 2:42 PMwilliamc
03/08/2022, 2:42 PMSolarer
03/09/2022, 2:45 PMpip install kedro -U
and created a new kedro project kedro new
and created a dedicated environment using venv
. After activating the new environment and running kedro build-reqs
the process fails because the restrictions for jupyter_client overlap and it cannot find a version that satisfies the requirements:
> Could not find a version that matches jupyter_client<7.0,=4.1,>=5.1,>=5.3.4,>=6.1.1,>=7.0.0 (from -r C:\Users\Jan\Documents\myprojects\analytics\src\requirements.in (line 8))
Any idea how to resolve this?Solarer
03/09/2022, 2:56 PMpip install -r src/requirements.txt
seems to work fine. Only kedro build-reqs
keeps failing...datajoely
03/09/2022, 3:25 PMjupyter_client
library changed something two days ago which is causing this . We've merged a fix here
https://github.com/kedro-org/kedro/pull/1322