A monorepo containing jupyter-blocks and jupyter-tidyblocks. Blockly extension for JupyterLab.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #40 from hbcarlos/fix_path

Fixes package.json path

authored by

Carlos Herrero and committed by
GitHub
60ac9449 9ed66219

+2 -2
+2 -2
jupyterlab_blockly/_version.py
··· 4 4 __all__ = ["__version__"] 5 5 6 6 def _fetchVersion(): 7 - HERE = Path(__file__).parent.resolve() 7 + HERE = Path(__package__).parent.resolve() 8 8 9 - for settings in HERE.rglob("packages/blockly-extension/package.json"): 9 + for settings in HERE.rglob("blockly-extension/package.json"): 10 10 try: 11 11 with settings.open() as f: 12 12 version = json.load(f)["version"]