Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into STAT-16-GCS-datasets
Browse files Browse the repository at this point in the history
  • Loading branch information
mmwinther committed Sep 1, 2022
2 parents b3a6dc7 + 284f9e0 commit 4ad1b7a
Show file tree
Hide file tree
Showing 6 changed files with 761 additions and 186 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.2
current_version = 0.1.3
commit = True
tag = True

Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@ To install all required dependencies in a virtual environment run `poetry instal
To run the project locally in Jupyter run:

```bash
poetry shell
ipython kernel install --user --name="datadoc"
jupyter notebook
poetry install
poetry run jupyter lab
```

A Jupyter instance should open in your browser. Once there, open the `*.ipynb` file. Before running it, select the correct interpreter via `Kernel > Change Kernel > datadoc`.
Expand Down
2 changes: 1 addition & 1 deletion datadoc/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from datadoc.app import main # noqa

__version__ = "0.1.2"
__version__ = "0.1.3"
2 changes: 1 addition & 1 deletion datadoc/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def main(dataset_path: str = None):

JupyterDash.infer_jupyter_proxy_config()
app = build_app(JupyterDash)
app.run(mode="inline")
app.run_server(mode="jupyterlab")
else:
# Assume running in server mode is better (largely for development purposes)
logger.debug("Starting in development mode")
Expand Down
Loading

0 comments on commit 4ad1b7a

Please sign in to comment.