Re: [PATCH v6 22/23] dts: add doc generation dependencies

2023-11-15 Thread Juraj Linkeš
> I do get some warning while I build the doc: > > $ poetry install --with docs > > [...] > > Installing dependencies from lock file > Warning: poetry.lock is not consistent with pyproject.toml. You may be > getting improper dependencies. Run `poetry lock [--no-update]` to fix it. Looks like my ve

Re: [PATCH v6 22/23] dts: add doc generation dependencies

2023-11-08 Thread Yoan Picchi
On 11/8/23 12:53, Juraj Linkeš wrote: Sphinx imports every Python module when generating documentation from docstrings, meaning all dts dependencies, including Python version, must be satisfied. By adding Sphinx to dts dependencies we make sure that the proper Python version and dependencies are

[PATCH v6 22/23] dts: add doc generation dependencies

2023-11-08 Thread Juraj Linkeš
Sphinx imports every Python module when generating documentation from docstrings, meaning all dts dependencies, including Python version, must be satisfied. By adding Sphinx to dts dependencies we make sure that the proper Python version and dependencies are used when Sphinx is executed. Signed-of