Fixing the chips support for the TS magics as well as fixing issues with pip.
The issue was that the magic library was imported in picatrix/__init__ which is loaded in the setup.py file when importing version/dependencies, that causes issues, since that's before dependencies are evaluated (in order to evaluate dependencies), causing libraries to be missing. Solved by moving the logic away from __init__ to a separate file.
Updated the default notebook as well as the README file to include the changes that were included.
Additionally added the last magic to the state object.
Fixing the chips support for the TS magics as well as fixing issues with pip.
The issue was that the
magic
library was imported inpicatrix/__init__
which is loaded in the setup.py file when importing version/dependencies, that causes issues, since that's before dependencies are evaluated (in order to evaluate dependencies), causing libraries to be missing. Solved by moving the logic away from__init__
to a separate file.Updated the default notebook as well as the README file to include the changes that were included.
Additionally added the last magic to the state object.