From c14b66a728e18b303c101511fb13eda2fc375b12 Mon Sep 17 00:00:00 2001 From: Matt McCormick Date: Tue, 27 Jan 2026 08:18:52 -0500 Subject: [PATCH] ENH: Output meca archive as article.meca.zip Instead of manuscript.meca.zip. It contains the manuscript but also the source code, data, and JAX metadata. --- myst.yml | 4 ++-- pixi.toml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/myst.yml b/myst.yml index 17bcfab..bd408ac 100644 --- a/myst.yml +++ b/myst.yml @@ -59,7 +59,7 @@ project: output: exports/manuscript.docx - format: cff - format: meca - output: exports/manuscript.meca.zip + output: exports/article.meca.zip toc: - file: docs/index.md @@ -92,4 +92,4 @@ site: logo: docs/assets/logo-insight-journal-square-light.png logo_dark: docs/assets/logo-insight-journal-square-dark.png logo_text: Insight Journal Template - hide_title_on_index: true \ No newline at end of file + hide_title_on_index: true diff --git a/pixi.toml b/pixi.toml index 66e38d2..ef8658c 100644 --- a/pixi.toml +++ b/pixi.toml @@ -46,9 +46,9 @@ build-meca = { cmd = "myst build --meca", depends-on = ["build-html", "build-pdf # Verify MECA bundle reproducibility verify-meca = { cmd = ''' myst build --meca && - rm -rf exports/manuscript.meca && - unzip exports/manuscript.meca.zip -d exports/manuscript.meca && - cd exports/manuscript.meca/bundle && + rm -rf exports/article.meca && + unzip exports/article.meca.zip -d exports/article.meca && + cd exports/article.meca/bundle && pixi run build && pixi run test ''', depends-on = ["build-meca"], description = "Build MECA export and verify bundle reproducibility" }