ladybug-tools / honeybee-schema

:honeybee: :scroll: HBJSON format schema
https://ladybug-tools.github.io/honeybee-schema
Other
13 stars 9 forks source link

pip install honeybee-schema is required to build the docs #374

Closed lionpeloux closed 1 year ago

lionpeloux commented 1 year ago

Is this normal behavior that I have to pip install honeybee-schema before I can run the doc.py script ?

How should I proceed If I want to test modifications of the schema and build the docs without publishing a modified version of the honeybee-schema package ?

mostaphaRoudsari commented 1 year ago

You can clone the honeybee-schema repository. Make your changes and use pip install -e . to install the package from the local folder and in editable mode.

lionpeloux commented 1 year ago

Ok I think I've answered my question. I just needed to run python setup.py install to install the dev honeybee-schema package.

Thanks @mostaphaRoudsari for you rapid answer.