Skip to content

Commit bbee3ab

Browse files
committed
jupyter kernel info is now optional in workflow configs
1 parent 2b03366 commit bbee3ab

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

CHANGES.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,3 +65,9 @@
6565
- Added STAC Item and S3-hosted STAC Catalog generation for Zarr datasets (opt-in via `stac_catalog_s3_root` in dataset config).
6666
- `osc_project` is now a configurable parameter on `OscDatasetStacGenerator` (default: `"deep-earth-system-data-lab"`).
6767
- Publisher automatically creates the OSC project collection and registers it in `projects/catalog.json` when it does not yet exist.
68+
69+
## Changes in 0.1.9
70+
71+
- `jupyter_kernel_info` is now optional in `RecordProperties`; workflow configs without a notebook URL no longer require this field.
72+
- Removed redundant `hasattr` guard for `_last_generator` in `Publisher.publish()`.
73+
- Added automated MkDocs GitHub Pages deployment on release via a dedicated `docs.yml` workflow.

deep_code/utils/ogc_api_record.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ def __init__(
7070
type: str,
7171
title: str,
7272
description: str,
73-
jupyter_kernel_info: JupyterKernelInfo,
73+
jupyter_kernel_info: JupyterKernelInfo = None,
7474
osc_project: str,
7575
osc_workflow: str = None,
7676
updated: str = None,

0 commit comments

Comments
 (0)