Highlights ⭐
- Latex completions in markdown mode
- Environment variables are automatically loaded dot-env files (e.g.
.env
) next to yourpyproject.toml
. You can customize this with:
[tool.marimo.runtime]
dotenv = [] # don't load any
dotenv = [".env"] # default
dotenv = [".env", ".env.production"] # load multiple
- Support for using argparse and simple-parsing in marimo notebooks: letting you make notebooks that double as scripts with help messages and argument validation. See our examples and documentation to learn more.
This feature was contributed by @lucharo!
Breaking changes
- This release contains a small breaking change.
sys.argv
is now patched to the args after the marimo command
For example, for
marimo edit notebook.py -- foo bar -baz 42
sys.argv
would be set to
["notebook.py", "foo", "bar", "-baz", "42"]
- Environment variables are loaded from your
.env
by default. This can be removed through configuration.
What's Changed
- docs: cli arguments by @akshayka in #4304
- docs: update intro.py by @GadgetSteve in #4259
- fix: create public folder and then file by @Light2Dark in #4299
- feat: argparse support when running as a notebook by @akshayka in #4306
- improvement: format using popover for long strings by @Light2Dark in #4298
- feat: utf-8 latex completions by @mscolnick in #4302
- feat: Automatically loading env vars using dotenv + specify custom env files by @lucharo in #4280
- improvement: start of secrets handling in the kernel by @mscolnick in #4301
- improvement: dataflow perf by @mscolnick in #4313
- docs: hstack width examples by @mscolnick in #4314
- improve: stale indicator precedence over error by @akshayka in #4321
- fix: markdown details justification by @akshayka in #4322
- fix: clamp wide elements in slides by @Light2Dark in #4325
New Contributors
- @GadgetSteve made their first contribution in #4259
- @lucharo made their first contribution in #4280
Full Changelog: 0.11.31...0.12.0