Jordan
12/21/2022, 9:38 PMkedro build-reqs was changed? It used to build a requirements.txt file from a <http://requirements.in|requirements.in> file, and now it builds a requirements.lock file from a requirements.txt file.Nok Lam Chan
12/22/2022, 2:40 AMJordan
12/22/2022, 2:23 PMpip install -e src or pip install -r src/requirements.txt , what’s happening in the background to ensure the contents of the lock file is utilised? Or am I supposed to ``pip install -r src/requirements.lock` ?Nok Lam Chan
12/22/2022, 5:40 PMpip install -r src/requirements.lock is supposed to be used. This is straightforward as you specify the file you want. There is no magic in the background as you use the pip command directly.Jordan
12/23/2022, 11:34 PM