Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions examples/101/notebook.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,3 @@
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "marimo",
# "pydantic",
# "pyyaml",
# ]
# ///

import marimo

__generated_with = "0.23.5"
Expand Down
11 changes: 0 additions & 11 deletions examples/jules/notebook.py
Original file line number Diff line number Diff line change
@@ -1,14 +1,3 @@
# /// script
# requires-python = ">=3.12"
# dependencies = [
# "f90nml",
# "marimo",
# "netcdf4",
# "numpy",
# "xarray",
# ]
# ///

import marimo

__generated_with = "0.23.5"
Expand Down
5 changes: 3 additions & 2 deletions justfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ typecheck:

# Build the documentation.
docs:
cd examples/101/ && marimo-md-export notebook.py ../../docs/101.md --sandbox
cd examples/jules/ && marimo-md-export notebook.py ../../docs/jules.md --sandbox --overflow scroll
cd examples/101/ && marimo-md-export notebook.py ../../docs/101.md
cd examples/jules/ && marimo-md-export notebook.py ../../docs/jules.md --overflow scroll
ruff format examples/ # override marimo's annoying reformatting
zensical build
11 changes: 10 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "uv_build"

[project]
name = "dirconf"
version = "0.5.1"
version = "0.5.2"
description = "Build declarative schemas for multi-file configuration directories using Python dataclasses, with dict-based read and write."
authors = [
{ name = "Joe Marsh Rossney", email = "[email protected]" }
Expand Down Expand Up @@ -43,6 +43,15 @@ docs = [
"marimo-md-export>=0.4.3",
"mkdocstrings[python]>=0.30.0",
"zensical>=0.0.39",
{include-group = "examples"},
]
examples = [
"f90nml>=1.5",
"netcdf4>=1.7.4",
"numpy>=2.4.4",
"pydantic>=2.13.3",
"pyyaml>=6.0.3",
"xarray>=2026.4.0",
]
test = [
"coverage>=7.13.5",
Expand Down
Loading