calkit-python 0.46.0__tar.gz → 0.47.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {calkit_python-0.46.0 → calkit_python-0.47.1}/.pre-commit-config.yaml +4 -3
- {calkit_python-0.46.0 → calkit_python-0.47.1}/AGENTS.md +2 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/PKG-INFO +2 -1
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/__init__.py +34 -24
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/check.py +24 -10
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/latex.py +427 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/new.py +48 -33
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/detect.py +93 -11
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/docker.py +8 -6
- calkit_python-0.47.1/calkit/docx.py +692 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/dvc/core.py +17 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/environments.py +2 -1
- calkit_python-0.47.1/calkit/latex.py +732 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/models/core.py +64 -18
- calkit_python-0.47.1/calkit/models/docx.py +79 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/models/pipeline.py +12 -4
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/pipeline.py +98 -5
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/questions.py +313 -48
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/resources/devcontainer/Dockerfile +6 -8
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/test_check.py +30 -8
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/test_new.py +43 -19
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/models/test_core.py +24 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/models/test_pipeline.py +1 -1
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_detect.py +74 -1
- calkit_python-0.47.1/calkit/tests/test_docx.py +397 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_questions.py +182 -8
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/cli-reference.md +85 -25
- calkit_python-0.47.1/docs/dev/latex-word.md +542 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/examples.md +64 -2
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/latex.md +39 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/pipeline/markdown.md +2 -1
- {calkit_python-0.46.0/vscode-ext → calkit_python-0.47.1/docs}/schemas/calkit.json +65 -0
- calkit_python-0.47.1/docs/tutorials/latex-word.md +164 -0
- calkit_python-0.47.1/examples/latex-word/.calkit/env-locks/py/osx-arm64.txt +11 -0
- calkit_python-0.47.1/examples/latex-word/.calkit/env-locks/py/win-64.txt +11 -0
- calkit_python-0.47.1/examples/latex-word/.calkit/env-locks/tex/amd64.json +23 -0
- calkit_python-0.47.1/examples/latex-word/.calkit/env-locks/tex/arm64.json +23 -0
- calkit_python-0.46.0/hub/backend/app/alembic/versions/.keep → calkit_python-0.47.1/examples/latex-word/.dvc/config +0 -0
- calkit_python-0.47.1/examples/latex-word/.gitattributes +3 -0
- calkit_python-0.47.1/examples/latex-word/.gitignore +2 -0
- calkit_python-0.47.1/examples/latex-word/README.md +28 -0
- calkit_python-0.47.1/examples/latex-word/calkit.yaml +58 -0
- calkit_python-0.47.1/examples/latex-word/dvc.lock +63 -0
- calkit_python-0.47.1/examples/latex-word/dvc.yaml +32 -0
- calkit_python-0.47.1/examples/latex-word/figures/.gitignore +1 -0
- calkit_python-0.47.1/examples/latex-word/paper/.gitignore +18 -0
- calkit_python-0.47.1/examples/latex-word/paper/figures/.gitignore +1 -0
- calkit_python-0.47.1/examples/latex-word/paper/main.tex +57 -0
- calkit_python-0.47.1/examples/latex-word/paper/methods.tex +21 -0
- calkit_python-0.47.1/examples/latex-word/paper/refs.bib +16 -0
- calkit_python-0.47.1/examples/latex-word/requirements.txt +2 -0
- calkit_python-0.47.1/examples/latex-word/scripts/plot-wake.py +18 -0
- calkit_python-0.47.1/examples/markdown/.dvc/.gitignore +3 -0
- calkit_python-0.47.1/examples/markdown/.dvcignore +3 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/Makefile +20 -1
- calkit_python-0.46.0/hub/backend/app/api/__init__.py → calkit_python-0.47.1/hub/backend/app/alembic/versions/.keep +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/orgs.py +8 -1
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/projects/activity.py +5 -1
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/projects/core.py +467 -188
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/core.py +39 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/dvc.py +12 -3
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/git.py +319 -33
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/github.py +22 -6
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/models/core.py +79 -24
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/pipeline.py +64 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/projects.py +38 -12
- calkit_python-0.47.1/hub/backend/app/tests/api/routes/projects/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/projects/test_core.py +431 -32
- calkit_python-0.47.1/hub/backend/app/tests/conftest.py +66 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/test_core.py +2 -6
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/test_git.py +216 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/test_pipeline.py +62 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/test_projects.py +99 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/thumbnails.py +12 -9
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/users.py +29 -9
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/warm.py +50 -18
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/docker-compose.override.yml +32 -2
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/docker-compose.yml +5 -4
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/schemas.gen.ts +74 -11
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/types.gen.ts +36 -10
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/Markdown.test.tsx +35 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/Markdown.tsx +140 -83
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/NotBuiltAlert.tsx +1 -1
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/PdfDocumentViewer.tsx +33 -3
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Projects/EditQuestion.tsx +29 -1
- calkit_python-0.47.1/hub/frontend/src/components/Projects/QuestionModal.tsx +847 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Publications/ImportOverleaf.tsx +7 -5
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Publications/NewPublication.tsx +8 -4
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routeTree.gen.ts +23 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/figures.tsx +24 -10
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/index.tsx +135 -361
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/presentations.tsx +2 -2
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/publications.tsx +14 -2
- calkit_python-0.47.1/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/questions.$questionNumber.tsx +130 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/mkdocs.yml +6 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/pyproject.toml +10 -1
- calkit_python-0.47.1/test/docx/accepted.docx +0 -0
- calkit_python-0.47.1/test/docx/export.docx +0 -0
- calkit_python-0.47.1/test/docx/main.tex +57 -0
- calkit_python-0.47.1/test/docx/methods.tex +21 -0
- calkit_python-0.47.1/test/docx/resolved.docx +0 -0
- calkit_python-0.47.1/test/docx/returned.docx +0 -0
- calkit_python-0.47.1/test/docx/word-import.docx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/uv.lock +157 -155
- {calkit_python-0.46.0/docs → calkit_python-0.47.1/vscode-ext}/schemas/calkit.json +65 -0
- calkit_python-0.46.0/calkit/latex.py +0 -282
- calkit_python-0.46.0/hub/backend/app/tests/conftest.py +0 -40
- {calkit_python-0.46.0 → calkit_python-0.47.1}/.claude-plugin/marketplace.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/.dockerignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/.gitattributes +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/.gitignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/.gitmodules +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/.prettierignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/.prettierrc.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/.python-version +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/.vscode/launch.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/.vscode/tasks.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/CITATION.cff +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/CODE_OF_CONDUCT.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/CONTRIBUTING.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/LICENSE +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/Makefile +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/README.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/actions/run/README.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/actions/run/action.yml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/actions/run/example.yml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/agent-plugin/.claude-plugin/plugin.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/agent-plugin/skills/add-pipeline-stage/SKILL.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/agent-plugin/skills/build-paper-pipeline/SKILL.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/agent-plugin/skills/check-questions/SKILL.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/agent-plugin/skills/check-reproducibility/SKILL.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/agent-plugin/skills/conventions/SKILL.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/agent-plugin/skills/create-pipeline/SKILL.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/.gitignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/README.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/options.html +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/package-lock.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/package.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/popup.html +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/public/icons/calkit-128.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/public/icons/calkit-16.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/public/icons/calkit-32.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/public/icons/calkit-48.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/public/icons/calkit.svg +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/public/manifest.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/scripts/build-content.mjs +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/scripts/package-manifest.mjs +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/scripts/store-screenshots.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/scripts/watch.mjs +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/background/index.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/content/github.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/content/overleaf.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/content/references.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/api.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/auth.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/calkit-yaml.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/calkit-yaml.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/detect.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/detect.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/hub-url.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/hubs.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/hubs.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/latex.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/latex.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/lifecycle.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/messages.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/messages.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/pickers.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/storage.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/types.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/ui.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/core/ui.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/options/options.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/popup/popup.css +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/popup/popup.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/src/viewer/viewer.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/tsconfig.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/viewer.html +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/vite.config.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/vite.content.config.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/browser-ext/vitest.config.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/__main__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/calc.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/config.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/core.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/delete.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/describe.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/dev.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/hub.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/import_.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/list.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/main/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/main/core.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/main/xr.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/notebooks.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/office.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/overleaf.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/scheduler.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/sync.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/cli/update.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/conda.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/config.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/core.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/datasets.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/dependencies.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/dvc/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/dvc/zip.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/fs.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/git.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/github.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/gui.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/hub.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/install.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/invenio.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/julia.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/jupyter.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/jupyterlab/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/jupyterlab/routes.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/labextension/package.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/labextension/schemas/calkit/package.json.orig +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/labextension/schemas/calkit/plugin.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/labextension/static/502.9a2c5772a15466e923ef.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/labextension/static/695.2c41003a452d43d2b358.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/labextension/static/867.a42a046aa5108f54f8fb.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/labextension/static/909.6d8285ce7c45878ac508.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/labextension/static/946.050af2abf7845cfbdbd2.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/labextension/static/946.050af2abf7845cfbdbd2.js.LICENSE.txt +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/labextension/static/b2f1c3efe70cb539d121.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/labextension/static/remoteEntry.d7a43c7948f690d37d19.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/labextension/static/style.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/labextension/static/third-party-licenses.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/licenses.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/magics.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/markdown.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/matlab.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/models/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/models/io.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/models/iteration.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/notebooks.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/office.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/ops.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/overleaf.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/procedures.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/provenance.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/releases.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/reproducibility.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/resources/README.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/resources/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/resources/devcontainer/README.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/resources/devcontainer/base.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/resources/devcontainer/devcontainer.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/resources/devcontainer/scripts/check-envs.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/resources/devcontainer/scripts/post-create.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/resources/devcontainer/scripts/post-start.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/resources/devcontainer/scripts/update-content.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/resources/github-actions/example.yml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/resources/vscode/README.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/resources/vscode/extensions.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/resources/vscode/settings.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/schema.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/server.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/templates/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/templates/core.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/templates/latex/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/templates/latex/article/paper.tex +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/templates/latex/core.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/templates/latex/ieee-conference/paper.tex +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/templates/latex/jfm/jfm.bst +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/templates/latex/jfm/jfm.cls +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/templates/latex/jfm/lineno-FLM.sty +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/templates/latex/jfm/paper.tex +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/templates/latex/jfm/upmath.sty +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/templates/latex/report/paper.tex +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/main/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/main/test_core.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/main/test_lock.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/main/test_subprojects.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/main/test_xr.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/test_config.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/test_core.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/test_delete.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/test_describe.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/test_hub.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/test_import.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/test_latex.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/test_list.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/test_notebooks.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/test_overleaf.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/test_scheduler.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/test_sync.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/cli/test_update.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/dvc/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/dvc/test_core.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/dvc/test_zip.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/jupyterlab/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/jupyterlab/conftest.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/jupyterlab/test_routes.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/models/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/models/test_iteration.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_calc.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_conda.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_config.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_core.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_dependencies.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_docker.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_docs_references.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_environments.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_fs.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_git.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_hub.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_install.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_invenio.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_julia.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_jupyter.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_keyring_windows.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_licenses.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_magics.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_markdown.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_matlab.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_models.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_notebooks.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_overleaf.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_pipeline.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_procedures.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_provenance.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_releases.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_reproducibility.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_resources.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_schema.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_templates.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/tests/test_workspace.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/calkit/workspace.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/CNAME +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/acknowledgements.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/ai-tools.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/apps.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/browser-ext/index.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/browser-ext/privacy.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/calculations.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/calkit-yaml.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/cloud-integration.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/datasets.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/environments.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/governance.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/help.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/hpc.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/hub/index.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/hub/self-hosting.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/img/c-to-the-k-white.svg +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/img/calkit-fragmentation-compendium.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/img/calkit-no-bg.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/img/caltech.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/img/connect-zenodo.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/img/jupyterlab/all-green.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/img/jupyterlab/collect-data-stale.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/img/jupyterlab/new-env.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/img/jupyterlab/new-notebook.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/img/jupyterlab/pipeline-badge.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/img/jupyterlab-params.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/img/pipeline.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/img/plos-osi-code-2024-03.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/img/schmidt-sciences.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/img/vscode-nb-params.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/index.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/installation.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/jupyterlab.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/local-server.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/notebooks.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/overleaf.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/pipeline/index.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/pipeline/manual-steps.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/pipeline/running-and-logging.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/provenance.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/questions.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/quickstart.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/references.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/releases.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/reproducibility.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/requirements.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/subprojects.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/adding-latex-pub-docker.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/ai-agents.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/conda-envs.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/existing-project.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/first-project.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/github-actions.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/actions-repo-secrets.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/latex-codespaces/building-codespace.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/latex-codespaces/codespaces-secrets-2.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/latex-codespaces/editor-split.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/latex-codespaces/go-to-linked-code.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/latex-codespaces/issue-from-selection.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/latex-codespaces/new-project.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/latex-codespaces/new-pub-2.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/latex-codespaces/new-token.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/latex-codespaces/paper.tex.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/latex-codespaces/project-home-3.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/latex-codespaces/push.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/latex-codespaces/stage.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/anakin-excel.jpg +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/chart-more-rows.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/create-project.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/elsevier-research-data-guidelines.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/excel-chart.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/excel-data.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/insert-link-to-file.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/needs-clone.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/new-stage.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/phd-comics-version-control.webp +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/pipeline-out-of-date.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/status-more-rows.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/uncommitted-changes.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/untracked-data.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/updated-publication.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/word-to-pdf-stage-2.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/office/workflow-page.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/openfoam/clone.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/openfoam/create-project.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/openfoam/datasets-page.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/openfoam/figure-on-website-updated.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/openfoam/figure-on-website.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/openfoam/new-token.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/openfoam/reclone.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/openfoam/status-after-import-dataset.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/quick-actions.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/run-proc.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/vscode-slurm-notebook/create-calkit-env.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/vscode-slurm-notebook/create-inner-env.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/vscode-slurm-notebook/create-new-calkit-env.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/vscode-slurm-notebook/select-calkit-env.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/vscode-slurm-notebook/slurm-job-running.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/vscode-slurm-notebook/slurm-launch-options.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/img/vscode-slurm-notebook/starting-slurm-job.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/index.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/jupyterlab.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/latex-codespaces.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/matlab.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/notebook-pipeline.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/office.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/openfoam.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/procedures.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/runnable-readme.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/vscode-slurm-notebook.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/tutorials/writing-first.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/docs/version-control.md +0 -0
- {calkit_python-0.46.0/examples/markdown-python → calkit_python-0.47.1/examples/latex-word}/.dvc/.gitignore +0 -0
- {calkit_python-0.46.0/examples/markdown-python → calkit_python-0.47.1/examples/latex-word}/.dvcignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/.calkit/envs/jl/Manifest.toml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/.calkit/envs/jl/Project.toml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/.calkit/envs/py/.python-version +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/.calkit/envs/py/pyproject.toml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/.calkit/envs/py/uv.lock +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/.calkit/envs/r/.Rbuildignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/.calkit/envs/r/.Rprofile +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/.calkit/envs/r/DESCRIPTION +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/.calkit/envs/r/renv/.gitignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/.calkit/envs/r/renv/activate.R +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/.calkit/envs/r/renv/settings.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/.calkit/envs/r/renv.lock +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/.dvc/config +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/.gitignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/README.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/calkit.yaml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/data/data.csv +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/data/data2.csv +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/dvc.lock +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/dvc.yaml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/figures/data2.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/figures/figure.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown/results/fit.json +0 -0
- {calkit_python-0.46.0/examples/markdown → calkit_python-0.47.1/examples/markdown-python}/.dvc/.gitignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown-python/.dvc/config +0 -0
- {calkit_python-0.46.0/examples/markdown → calkit_python-0.47.1/examples/markdown-python}/.dvcignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown-python/.gitignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown-python/.python-version +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown-python/README.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown-python/calkit.yaml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown-python/dvc.lock +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown-python/dvc.yaml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown-python/figures/waves.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown-python/pyproject.toml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown-python/src/wavetools/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/examples/markdown-python/uv.lock +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/flake.lock +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/flake.nix +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/.env.example +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/.gitattributes +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/.gitignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/.vscode/launch.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/AGENTS.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/LICENSE +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/README.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/.gitignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/.python-version +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/Dockerfile +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/Makefile +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/README.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/alembic.ini +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/README +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/env.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/script.py.mako +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/07c8236476c4_add_fields_to_usertoken.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/10a05eaedfbd_add_dataset_table.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/1546aa334cd5_make_project_description_nullable.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/1a31ce608336_add_cascade_delete_relationships.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/1fb6e38eb0e9_add_deviceauth_table.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/208e7457f3ba_add_title_to_project.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/2e7c25a00842_add_is_public_to_project.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/38e178698db2_update_subscription_model_to_use_plan_.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/3b1e67e9c318_add_usertoken_table.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/4dac15c0282a_add_stripe_customer_id_to_user.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/4e1c917fcca4_add_status_columns_to_project_table.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/5ba89308431f_add_project_table.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/5d6f8217c890_add_subscriber_user_id_to_org_.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/65b2d15cc702_add_github_username_field_to_user.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/697c3c1a8a27_add_git_repo_url_to_project.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/6f3a3afbea8b_add_number_field_to_question.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/7076d9b5c887_use_account_for_project_owner.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/71e1d1e69bbd_add_table_for_storing_user_github_tokens.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/799476973bce_add_created_ts_to_user_github_token_.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/7cacee34034c_add_parent_child_relationship_to_.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/97762605447f_add_onboarding_flags_and_feedback.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/9c0a54914c78_add_max_length_for_string_varchar_.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/9c4f70636d73_add_fields_to_usertoken.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/a333fc5aa994_index_project_folders_synced_with_.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/a4af19842927_create_table_to_store_user_zenodo_tokens.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/ab7816be480b_drop_items.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/ac622559475f_save_timestamps_for_github_token_.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/af024967630d_lowercase_account_names.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/c1f9a3e27d48_consolidate_comment_tables.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/c46a78ba506c_add_created_column_to_account.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/c749b39072d3_add_figurecomment.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/c7c41c3f0d22_add_user_external_credential_table.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/d01ce914143d_make_question_a_table.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/d21ed1c9537e_add_zenodo_user_id_column_to_user.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/d3a8021fb433_add_table_for_user_project_access.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/d4e5f6a7b8c9_ghless_membership_and_invitations.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/d6366015af35_add_discount_code_table.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/d98dd8ec85a3_edit_replace_id_integers_in_all_models_.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/dcef842dee10_add_refreshtoken_table.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/e1b0fa2a6d34_backfill_external_credentials_from_legacy_.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/e2412789c190_initialize_models.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/e7671197c00b_add_account_table.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/ed74edb0a9e6_create_table_for_user_overleaf_token.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/edcabfca98df_add_subscription_and_org_membership_.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/f0e23e048b1b_add_fields_to_project.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/f3a9c1b7e240_add_releases_feature.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/f5ad6445ad03_enable_user_project_access_to_be_null.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/alembic/versions/f74a96172dbd_add_table_for_locking_project_files.py +0 -0
- {calkit_python-0.46.0/hub/backend/app/api/routes → calkit_python-0.47.1/hub/backend/app/api}/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/deps.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/main.py +0 -0
- {calkit_python-0.46.0/hub/backend/app/tests/api → calkit_python-0.47.1/hub/backend/app/api/routes}/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/accounts.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/datasets.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/feedback.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/login.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/misc.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/projects/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/projects/datasets.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/projects/dvc.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/projects/figures.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/projects/fs.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/projects/pipeline.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/projects/releases.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/references.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/api/routes/users.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/arxiv.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/cache.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/client.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/config.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/db.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/email-templates/build/new_account.html +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/email-templates/build/project_invitation.html +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/email-templates/build/release_share.html +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/email-templates/build/reset_password.html +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/email-templates/build/test_email.html +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/email-templates/build/verify_email.html +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/email-templates/src/new_account.mjml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/email-templates/src/project_invitation.mjml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/email-templates/src/release_share.mjml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/email-templates/src/reset_password.mjml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/email-templates/src/test_email.mjml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/email-templates/src/verify_email.mjml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/formatting.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/imports.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/main.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/messaging.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/mixpanel.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/models/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/models/projects.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/models/releases.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/orgs.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/pdftext.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/security.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/storage.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/stripe.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/subscriptions.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tasks.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/__init__.py +0 -0
- {calkit_python-0.46.0/hub/backend/app/tests/api/routes → calkit_python-0.47.1/hub/backend/app/tests/api}/__init__.py +0 -0
- {calkit_python-0.46.0/hub/backend/app/tests/api/routes/projects → calkit_python-0.47.1/hub/backend/app/tests/api/routes}/__init__.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/projects/test_activity.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/projects/test_datasets.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/projects/test_dvc.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/projects/test_figure_upload.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/projects/test_figures.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/projects/test_fs.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/projects/test_misc.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/projects/test_overleaf_links.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/projects/test_pipeline.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/projects/test_publications.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/projects/test_reference_items.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/projects/test_templates.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/test_feedback.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/test_login.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/test_misc.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/test_releases.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/api/routes/test_users.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/test_arxiv.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/test_cache.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/test_client.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/test_db.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/test_dvc.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/test_formatting.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/test_pdftext.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/test_tasks.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/test_users.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/tests/test_version.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/version.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/zenodo.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/app/zotero.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/prestart.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/pyproject.toml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/scripts/backend-pre-start.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/scripts/create-initial-data.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/scripts/format.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/scripts/generate-client.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/scripts/lint.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/scripts/rotate-fernet-secrets.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/scripts/test.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/backend/tests-start.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/config/alloy/config.alloy +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/config/grafana/provisioning/dashboards/dashboards.yml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/config/grafana/provisioning/dashboards/fastapi.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/config/grafana/provisioning/dashboards/warm-queue.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/config/grafana/provisioning/datasources/datasources.yml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/config/loki/loki.yml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/config/prometheus/prometheus.yml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/docker-compose.traefik.yml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/docs/dev/database-migrations.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/docs/dev/deployment.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/docs/dev/development.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/.dockerignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/.gitignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/.nvmrc +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/Dockerfile +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/Makefile +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/README.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/biome.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/index.html +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/modify-openapi-operationids.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/nginx-backend-not-found.conf +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/nginx.conf +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/openapi-ts.config.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/package-lock.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/package.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/playwright.config.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/public/assets/images/c-to-the-k.svg +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/public/assets/images/calkit-no-bg.svg +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/public/assets/images/calkit.svg +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/public/assets/images/fastapi-logo.svg +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/public/assets/images/favicon.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/public/assets/images/kdot.svg +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/public/tex/.gitignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/public/tex/LICENSE-busytex +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/public/tex/busytex.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/public/tex/busytex.wasm +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/public/tex/busytex_pipeline.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/public/tex/busytex_worker.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/scripts/download-tex-engine.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/client/client.gen.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/client/index.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/client/types.gen.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/client/utils.gen.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/client.gen.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/core/auth.gen.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/core/bodySerializer.gen.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/core/params.gen.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/core/pathSerializer.gen.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/core/queryKeySerializer.gen.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/core/serverSentEvents.gen.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/core/types.gen.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/core/utils.gen.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/index.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/client/sdk.gen.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Admin/AddUser.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Admin/EditUser.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Admin/FeatureVotesTable.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Admin/FeedbackTable.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/ActionsMenu.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/ArtifactCompareModal.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/ClearableInput.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/CodeEditorPane.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/CommentsPanel.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/ConnectGitHubPrompt.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/ConnectZoteroPrompt.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/DeleteAlert.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/FeatureVoteButton.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/FilterableSelect.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/GlobalSearch.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/HelpFeedback.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/InputsRow.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/LoadingSpinner.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/Mermaid.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/Navbar.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/NoArtifactFound.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/NotFound.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/NotificationBell.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/OAuthButtons.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/PageMenu.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/PdfCanvas.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/ProjectCommandPalette.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/RefPicker.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/Sidebar.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/SidebarItems.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/TexText.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/Tooltip.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/Topbar.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Common/UserMenu.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Datasets/BrowseDatasets.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Datasets/DataEntryGrid.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Datasets/DatasetViewer.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Datasets/NewDataset.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Environments/NewEnvironment.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Environments/ViewEnvironment.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Figures/FigureEditLauncher.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Figures/FigureEditor.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Figures/FigureFromExisting.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Figures/FigureView.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Figures/UploadFigure.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Files/EditFileInfo.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Files/FileContent.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Files/FileEditorModal.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Files/SelectedItemInfo.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Files/UploadFile.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Local/AddPath.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Local/DiscardChanges.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Local/IgnorePath.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Local/NewStage.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Local/SaveFiles.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Notebooks/NotebookRunLauncher.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Notebooks/NotebookRunner.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Notebooks/NotebookView.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Onboarding/AccountSetupCard.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Onboarding/ChecklistCard.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Onboarding/CommandBlock.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Onboarding/FeaturedProjects.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Onboarding/ProjectChecklist.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Onboarding/ReproAudit.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Onboarding/ReproAudit.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Onboarding/StartPaths.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Onboarding/TipBubble.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Orgs/AddMember.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Orgs/NewOrg.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Pipeline/StageEditorModal.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Presentations/PresentationView.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Projects/AddCollaborator.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Projects/CloneProject.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Projects/CreateIssue.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Projects/CreateQuestion.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Projects/EditProject.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Projects/HelpContent.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Projects/InviteLinks.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Projects/MakeProjectPublic.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Projects/NewProject.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Projects/ProjectShowcase.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Projects/ProjectStatus.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Projects/RecentChanges.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Projects/RecentChanges.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Publications/ImportOverleaf.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Publications/LatexEditor.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Publications/PdfAnnotator.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Publications/PublicationComponents.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Publications/PublicationComponents.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Publications/PublicationView.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/References/DeleteReferenceItemDialog.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/References/DeleteReferencesCollectionDialog.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/References/EditReferenceItemModal.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/References/FileViewModal.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/References/ImportFromZoteroModal.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/References/LabelExistingReferences.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/References/NewReferencesCollection.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/References/ReferenceItemModal.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/References/ReferencesInfoPanel.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Releases/ArtifactReleasesPanel.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Releases/NewRelease.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Releases/PathPicker.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Releases/ReleasePdfAnnotator.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Releases/ReleaseViewer.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Releases/ReleasesTable.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Releases/ShareDialog.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Releases/releaseSort.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Tables/TableThumbnail.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Tables/TableView.test.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/Tables/TableView.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/UserSettings/Appearance.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/UserSettings/ChangePassword.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/UserSettings/ConnectedAccounts.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/UserSettings/DeleteAccount.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/UserSettings/DeleteConfirmation.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/UserSettings/NewToken.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/UserSettings/OnboardingChecklists.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/UserSettings/PickSubscription.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/UserSettings/Subscription.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/UserSettings/UpdateOverleafToken.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/UserSettings/UserInformation.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/components/UserSettings/UserTokens.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/hooks/useAuth.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/hooks/useCustomToast.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/hooks/useOnboarding.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/hooks/useProject.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/hooks/useSubmitOnCmdEnter.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/hooks/useSubmitOnCmdEnter.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/hooks/useTips.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/analytics.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/analytics.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/api.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/api.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/auth.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/auth.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/bibtex.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/bibtex.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/core.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/csv.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/csv.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/environments.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/environments.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/errors.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/figureScript.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/figureScript.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/fuzzy.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/fuzzy.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/github.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/github.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/google.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/keyboard.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/latexCompiler.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/latexProject.mapPaths.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/latexProject.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/latexProject.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/layout.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/notebook.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/notebook.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/onboarding.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/onboarding.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/pipelineYaml.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/pipelineYaml.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/projectFiles.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/provenance.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/provenance.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/pyodide.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/pyodide.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/releases.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/staleChunks.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/staleChunks.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/strings.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/strings.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/tables.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/tables.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/tex.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/tex.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/tips.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/tips.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/zenodo.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/lib/zotero.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/main.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/__root.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/app.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/apps/$appName.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/apps/index.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/apps.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/collaborators.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/datasets.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/environments.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/files.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/history.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/local.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/notebooks.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/pipeline.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/references.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/releases.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/software.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/tables.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/releases/$releaseName.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/$accountName/index.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/admin.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/datasets.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/index.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/new.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/orgs.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/projects.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout/settings.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/_layout.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/auth/google.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/auth/zenodo.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/auth/zotero.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/checkout.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/join/$token.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/login/device.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/login/index.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/recover-password.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/reset-password.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/signup.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/routes/verify-email.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/theme.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/src/vite-env.d.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/tests/auth.setup.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/tests/config.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/tests/figures-pagination.spec.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/tests/login.spec.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/tests/reset-password.spec.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/tests/user-settings.spec.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/tests/utils/mailcatcher.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/tests/utils/random.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/tests/utils/user.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/tsconfig.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/tsconfig.node.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/vite.config.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/frontend/vitest.config.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/scripts/build-push.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/scripts/build.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/scripts/deploy.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/scripts/pem-to-env.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/scripts/test-local.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/scripts/test.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/texmf-proxy/Dockerfile +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/texmf-proxy/README.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/hub/texmf-proxy/proxy.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/.yarnrc.yml +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/babel.config.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/install.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/jest.config.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/jupyter-config/server-config/calkit.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/package.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/schema/plugin.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/__tests__/useQueries.spec.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/calkit-config.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/cell-output-marker.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/components/commit-dialog.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/components/environment-editor.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/components/notebook-registration.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/components/notebook-toolbar.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/components/pipeline-status-bar.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/components/project-info-editor.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/components/sidebar-settings.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/components/sidebar.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/components/stage-editor.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/feature-flags.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/file-browser-menu.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/hooks/__tests__/useQueries.test.tsx +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/hooks/useQueries.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/icons.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/index.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/io-tracker.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/pipeline-state.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/queryClient.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/request.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/src/shims-mainmenu.d.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/style/base.css +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/style/cell-output-marker.css +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/style/environment-editor.css +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/style/environment-selector.css +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/style/img/calkit-no-bg.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/style/index.css +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/style/index.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/style/notebook-toolbar.css +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/style/pipeline-status-bar.css +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/style/sidebar.css +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/tsconfig.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/tsconfig.test.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/ui-tests/.gitignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/ui-tests/README.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/ui-tests/jupyter_server_test_config.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/ui-tests/package.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/ui-tests/playwright.config.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/ui-tests/tests/calkit.spec.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/ui-tests/yarn.lock +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/jupyterlab-ext/yarn.lock +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/scripts/generate-docs-references.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/scripts/install.ps1 +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/scripts/install.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/scripts/list-changes.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/scripts/make-ck9.sh +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/scripts/sync-docs.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/scripts/sync-resources.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/test/dvc-md5-dir/osx-arm64.txt +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/test/nb-julia.ipynb +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/test/nb-params.ipynb +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/test/nb-subdir.ipynb +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/test/pipeline.ipynb +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/test/script.py +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/test/test-log.log +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/.gitignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/.vscodeignore +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/LICENSE +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/README.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/changelog-notes.md +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/images/calkit-icon.svg +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/images/calkit-no-bg.png +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/package-lock.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/package.json +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/scripts/gen-changelog.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/scripts/set-proposed-api.js +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/environments.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/extension.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/figures/core.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/figures/view.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/markdown/core.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/markdown/view.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/notebooks.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/pipeline/core.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/sidebar.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/test/environments.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/test/figures.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/test/kernel-selection.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/test/markdown.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/test/notebooks.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/test/pipeline.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/test/sidebar.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/test/yaml.test.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/types.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/src/yaml.ts +0 -0
- {calkit_python-0.46.0 → calkit_python-0.47.1}/vscode-ext/tsconfig.json +0 -0
|
@@ -16,11 +16,12 @@ repos:
|
|
|
16
16
|
- id: check-toml
|
|
17
17
|
# The example projects' results files are stage outputs: a stage
|
|
18
18
|
# writes them, and a formatted copy is a changed output that makes
|
|
19
|
-
# the stage stale, so they are left exactly as written.
|
|
19
|
+
# the stage stale, so they are left exactly as written. Likewise
|
|
20
|
+
# .calkit/env-locks, which calkit writes and compares byte for byte.
|
|
20
21
|
- id: end-of-file-fixer
|
|
21
|
-
exclude: ^hub/frontend/src/client/|(^|/)renv/activate\.R$|^examples/.*/results/
|
|
22
|
+
exclude: ^hub/frontend/src/client/|(^|/)renv/activate\.R$|^examples/.*/results/|(^|/)\.calkit/env-locks/
|
|
22
23
|
- id: trailing-whitespace
|
|
23
|
-
exclude: ^hub/frontend/src/client/|(^|/)renv/activate\.R$|^examples/.*/results/
|
|
24
|
+
exclude: ^hub/frontend/src/client/|(^|/)renv/activate\.R$|^examples/.*/results/|(^|/)\.calkit/env-locks/
|
|
24
25
|
- id: check-yaml
|
|
25
26
|
args: ["--unsafe"]
|
|
26
27
|
- id: check-json
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.5
|
|
2
2
|
Name: calkit-python
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.47.1
|
|
4
4
|
Summary: Reproducibility simplified.
|
|
5
5
|
Project-URL: Homepage, https://calkit.org
|
|
6
6
|
Project-URL: Issues, https://github.com/calkit/calkit/issues
|
|
@@ -26,6 +26,7 @@ Requires-Dist: arithmeval
|
|
|
26
26
|
Requires-Dist: bibtexparser
|
|
27
27
|
Requires-Dist: checksumdir
|
|
28
28
|
Requires-Dist: docx2pdf
|
|
29
|
+
Requires-Dist: dulwich>=1.2.5
|
|
29
30
|
Requires-Dist: dvc[all]==3.67.1
|
|
30
31
|
Requires-Dist: fastapi
|
|
31
32
|
Requires-Dist: fsspec>=2026.4.0
|
|
@@ -16,6 +16,7 @@ if TYPE_CHECKING:
|
|
|
16
16
|
dependencies,
|
|
17
17
|
detect,
|
|
18
18
|
docker,
|
|
19
|
+
docx,
|
|
19
20
|
dvc,
|
|
20
21
|
environments,
|
|
21
22
|
fs,
|
|
@@ -27,8 +28,10 @@ if TYPE_CHECKING:
|
|
|
27
28
|
invenio,
|
|
28
29
|
julia,
|
|
29
30
|
jupyter,
|
|
31
|
+
latex,
|
|
30
32
|
licenses,
|
|
31
33
|
magics,
|
|
34
|
+
markdown,
|
|
32
35
|
matlab,
|
|
33
36
|
models,
|
|
34
37
|
notebooks,
|
|
@@ -38,53 +41,60 @@ if TYPE_CHECKING:
|
|
|
38
41
|
pipeline,
|
|
39
42
|
procedures,
|
|
40
43
|
provenance,
|
|
44
|
+
questions,
|
|
41
45
|
releases,
|
|
42
46
|
reproducibility,
|
|
43
47
|
resources,
|
|
44
48
|
schema,
|
|
45
49
|
server,
|
|
46
50
|
templates,
|
|
51
|
+
workspace,
|
|
47
52
|
)
|
|
48
53
|
|
|
49
54
|
from .notebooks import declare_notebook # noqa: F401
|
|
50
55
|
|
|
51
56
|
# Lazy-load submodules to speed up imports
|
|
52
57
|
_SUBMODULES = {
|
|
53
|
-
"git",
|
|
54
|
-
"dvc",
|
|
55
|
-
"hub",
|
|
56
|
-
"fs",
|
|
57
|
-
"jupyter",
|
|
58
|
-
"config",
|
|
59
|
-
"models",
|
|
60
|
-
"office",
|
|
61
|
-
"templates",
|
|
62
|
-
"conda",
|
|
63
58
|
"calc",
|
|
64
|
-
"
|
|
65
|
-
"
|
|
66
|
-
"reproducibility",
|
|
67
|
-
"github",
|
|
68
|
-
"invenio",
|
|
69
|
-
"releases",
|
|
70
|
-
"resources",
|
|
71
|
-
"licenses",
|
|
72
|
-
"overleaf",
|
|
73
|
-
"julia",
|
|
74
|
-
"notebooks",
|
|
75
|
-
"environments",
|
|
76
|
-
"pipeline",
|
|
77
|
-
"matlab",
|
|
59
|
+
"conda",
|
|
60
|
+
"config",
|
|
78
61
|
"datasets",
|
|
79
62
|
"dependencies",
|
|
80
63
|
"detect",
|
|
81
64
|
"docker",
|
|
65
|
+
"docx",
|
|
66
|
+
"dvc",
|
|
67
|
+
"environments",
|
|
68
|
+
"fs",
|
|
69
|
+
"git",
|
|
70
|
+
"github",
|
|
82
71
|
"gui",
|
|
72
|
+
"hub",
|
|
83
73
|
"install",
|
|
74
|
+
"invenio",
|
|
75
|
+
"julia",
|
|
76
|
+
"jupyter",
|
|
77
|
+
"latex",
|
|
78
|
+
"licenses",
|
|
84
79
|
"magics",
|
|
80
|
+
"markdown",
|
|
81
|
+
"matlab",
|
|
82
|
+
"models",
|
|
83
|
+
"notebooks",
|
|
84
|
+
"office",
|
|
85
85
|
"ops",
|
|
86
|
+
"overleaf",
|
|
87
|
+
"pipeline",
|
|
88
|
+
"procedures",
|
|
89
|
+
"provenance",
|
|
90
|
+
"questions",
|
|
91
|
+
"releases",
|
|
92
|
+
"reproducibility",
|
|
93
|
+
"resources",
|
|
86
94
|
"schema",
|
|
87
95
|
"server",
|
|
96
|
+
"templates",
|
|
97
|
+
"workspace",
|
|
88
98
|
}
|
|
89
99
|
|
|
90
100
|
|
|
@@ -1517,7 +1517,9 @@ def check_docker_env(
|
|
|
1517
1517
|
deps_md5s=deps_md5s,
|
|
1518
1518
|
run_config=run_config,
|
|
1519
1519
|
)
|
|
1520
|
-
|
|
1520
|
+
# newline="\n" so the file is byte-identical on every platform,
|
|
1521
|
+
# rather than a Windows checkout flipping it to CRLF.
|
|
1522
|
+
with open(arch_lock_fpath, "w", newline="\n") as f:
|
|
1521
1523
|
json.dump(arch_lock, f, indent=4)
|
|
1522
1524
|
|
|
1523
1525
|
current_arch = get_docker_arch()
|
|
@@ -2058,20 +2060,32 @@ def check_questions(
|
|
|
2058
2060
|
json_output: Annotated[
|
|
2059
2061
|
bool, typer.Option("--json", help="Output the report as JSON.")
|
|
2060
2062
|
] = False,
|
|
2063
|
+
no_pipeline: Annotated[
|
|
2064
|
+
bool,
|
|
2065
|
+
typer.Option(
|
|
2066
|
+
"--no-pipeline",
|
|
2067
|
+
help="Skip asking DVC which stages are out of date, which is "
|
|
2068
|
+
"the slowest part of the check.",
|
|
2069
|
+
),
|
|
2070
|
+
] = False,
|
|
2061
2071
|
) -> None:
|
|
2062
|
-
"""Check that answered questions are
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2072
|
+
"""Check that answered questions are backed by current evidence.
|
|
2073
|
+
|
|
2074
|
+
Reports, worst first: evidence that isn't there (never run, never
|
|
2075
|
+
pushed, or pinned to a Git ref that doesn't exist); broken references
|
|
2076
|
+
(a key that doesn't resolve, a placeholder that names no evidence, a
|
|
2077
|
+
label missing from the LaTeX); evidence the pipeline would rebuild;
|
|
2078
|
+
and evidence from a frozen stage, or downstream of one, which nothing
|
|
2079
|
+
will ever report out of date unless the citation pins a git_ref.
|
|
2080
|
+
|
|
2081
|
+
Evidence pinned with a git_ref is checked at that ref rather than in
|
|
2082
|
+
the working tree. Exits with an error if any answered question is
|
|
2083
|
+
missing evidence, broken, or out of date with the pipeline.
|
|
2070
2084
|
"""
|
|
2071
2085
|
from calkit.questions import check_questions as _check_questions
|
|
2072
2086
|
from calkit.questions import format_status
|
|
2073
2087
|
|
|
2074
|
-
status = _check_questions(wdir=wdir)
|
|
2088
|
+
status = _check_questions(wdir=wdir, check_pipeline=not no_pipeline)
|
|
2075
2089
|
if json_output:
|
|
2076
2090
|
calkit.echo(json.dumps(status.model_dump(mode="json"), indent=2))
|
|
2077
2091
|
else:
|
|
@@ -613,3 +613,430 @@ def _build_diff(
|
|
|
613
613
|
finally:
|
|
614
614
|
if not keep_tex and os.path.isfile(diff_tex):
|
|
615
615
|
os.remove(diff_tex)
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
@latex_app.command(name="to-docx")
|
|
619
|
+
def to_docx(
|
|
620
|
+
pdf_path: Annotated[str, typer.Argument(help="Compiled PDF to export.")],
|
|
621
|
+
source: Annotated[
|
|
622
|
+
str | None,
|
|
623
|
+
typer.Option(
|
|
624
|
+
"--source",
|
|
625
|
+
help=(
|
|
626
|
+
"Main .tex file. Defaults to the pipeline stage's target, "
|
|
627
|
+
"else the .tex next to the PDF."
|
|
628
|
+
),
|
|
629
|
+
),
|
|
630
|
+
] = None,
|
|
631
|
+
output: Annotated[
|
|
632
|
+
str | None,
|
|
633
|
+
typer.Option(
|
|
634
|
+
"--output",
|
|
635
|
+
"-o",
|
|
636
|
+
help="Where to write the .docx. Defaults to <pdf>-for-review.docx.",
|
|
637
|
+
),
|
|
638
|
+
] = None,
|
|
639
|
+
comment_only: Annotated[
|
|
640
|
+
bool,
|
|
641
|
+
typer.Option("--comment-only", help="Lock the document to comments."),
|
|
642
|
+
] = False,
|
|
643
|
+
force: Annotated[
|
|
644
|
+
bool,
|
|
645
|
+
typer.Option("--force", "-f", help="Overwrite an existing export."),
|
|
646
|
+
] = False,
|
|
647
|
+
) -> None:
|
|
648
|
+
"""Export a Word copy of a LaTeX document for review.
|
|
649
|
+
|
|
650
|
+
Uses Word's own PDF import, so the copy looks like the PDF, then records
|
|
651
|
+
inside the file which source line each paragraph came from and the text
|
|
652
|
+
as sent, so ``merge-docx`` can bring edits and comments back.
|
|
653
|
+
"""
|
|
654
|
+
import datetime
|
|
655
|
+
import sys
|
|
656
|
+
import uuid
|
|
657
|
+
from typing import Any
|
|
658
|
+
|
|
659
|
+
import calkit.docx
|
|
660
|
+
import calkit.git
|
|
661
|
+
import calkit.pipeline
|
|
662
|
+
from calkit.models.docx import LatexDocxExport
|
|
663
|
+
from calkit.models.pipeline import LatexStage
|
|
664
|
+
|
|
665
|
+
ck_info = calkit.load_calkit_info()
|
|
666
|
+
stages = ck_info.get("pipeline", {}).get("stages", {})
|
|
667
|
+
stage_name = calkit.pipeline.get_stage_for_output(pdf_path, ck_info)
|
|
668
|
+
# A latex stage's PDF is implied by its target, not listed as an output
|
|
669
|
+
if stage_name is None:
|
|
670
|
+
for name, stage in stages.items():
|
|
671
|
+
if isinstance(stage, dict) and stage.get("kind") == "latex":
|
|
672
|
+
pdf = LatexStage.model_validate(stage).pdf_path
|
|
673
|
+
if pdf == Path(pdf_path).as_posix():
|
|
674
|
+
stage_name = name
|
|
675
|
+
break
|
|
676
|
+
if source is None and stage_name is not None:
|
|
677
|
+
source = stages[stage_name].get("target_path")
|
|
678
|
+
if source is None:
|
|
679
|
+
source = Path(pdf_path).with_suffix(".tex").as_posix()
|
|
680
|
+
source = Path(source).as_posix()
|
|
681
|
+
if not os.path.isfile(source):
|
|
682
|
+
raise_error(f"Source {source} does not exist; pass --source")
|
|
683
|
+
if stage_name is not None:
|
|
684
|
+
typer.echo(f"Running stage {stage_name} to make sure the PDF is fresh")
|
|
685
|
+
subprocess.run(
|
|
686
|
+
[sys.executable, "-m", "calkit", "run", stage_name], check=True
|
|
687
|
+
)
|
|
688
|
+
if not os.path.isfile(pdf_path):
|
|
689
|
+
raise_error(f"{pdf_path} does not exist")
|
|
690
|
+
if output is None:
|
|
691
|
+
output = (
|
|
692
|
+
Path(pdf_path)
|
|
693
|
+
.with_name(Path(pdf_path).stem + "-for-review.docx")
|
|
694
|
+
.as_posix()
|
|
695
|
+
)
|
|
696
|
+
if os.path.exists(output) and not force:
|
|
697
|
+
raise_error(f"{output} already exists; use --force to overwrite it")
|
|
698
|
+
typer.echo("Converting the PDF with Word")
|
|
699
|
+
try:
|
|
700
|
+
calkit.docx.pdf_to_docx(pdf_path, output)
|
|
701
|
+
except RuntimeError as e:
|
|
702
|
+
raise_error(str(e))
|
|
703
|
+
doc = calkit.docx.Document(output)
|
|
704
|
+
lines = calkit.latex.flatten(source)
|
|
705
|
+
blks = calkit.latex.blocks(lines)
|
|
706
|
+
paras = doc.paragraphs
|
|
707
|
+
matched = calkit.latex.align([p.text for p in paras], blks)
|
|
708
|
+
# Bookmark each anchored paragraph; a block rendering as several
|
|
709
|
+
# paragraphs gets numbered suffixes
|
|
710
|
+
original: dict[str, str] = {}
|
|
711
|
+
para_for_block: dict[int, Any] = {}
|
|
712
|
+
seen: dict[str, int] = {}
|
|
713
|
+
for i, (para, blk) in enumerate(zip(paras, matched)):
|
|
714
|
+
if blk is None or para.element is None:
|
|
715
|
+
continue
|
|
716
|
+
name = calkit.latex.make_bookmark_name(blk.path, blk.lineno)
|
|
717
|
+
seen[name] = seen.get(name, 0) + 1
|
|
718
|
+
if seen[name] > 1:
|
|
719
|
+
name = f"{name}_{seen[name]}"
|
|
720
|
+
doc.add_bookmark(para.element, name, 9000 + i)
|
|
721
|
+
original[name] = para.text
|
|
722
|
+
para_for_block.setdefault(id(blk), para.element)
|
|
723
|
+
# Existing comment blocks in the source go out as Word comments
|
|
724
|
+
threads, anchors, highlights, resolved = [], [], [], []
|
|
725
|
+
for path in sorted({ln.path for ln in lines}):
|
|
726
|
+
file_lines = Path(path).read_text(encoding="utf-8").split("\n")
|
|
727
|
+
for tc in calkit.latex.parse_comments(file_lines):
|
|
728
|
+
after = tc.lineno + tc.nlines
|
|
729
|
+
blk = next(
|
|
730
|
+
(b for b in blks if b.path == path and b.lineno >= after), None
|
|
731
|
+
)
|
|
732
|
+
if blk is not None and id(blk) in para_for_block:
|
|
733
|
+
threads.append(tc.messages())
|
|
734
|
+
anchors.append(para_for_block[id(blk)])
|
|
735
|
+
highlights.append(
|
|
736
|
+
(tc.highlight, tc.highlight_occ) if tc.highlight else None
|
|
737
|
+
)
|
|
738
|
+
resolved.append(tc.resolved)
|
|
739
|
+
doc.add_comments(threads, anchors, highlights, resolved)
|
|
740
|
+
if comment_only:
|
|
741
|
+
doc.protect("comments")
|
|
742
|
+
else:
|
|
743
|
+
doc.track_changes()
|
|
744
|
+
doc.show_all_markup()
|
|
745
|
+
rev, dirty = None, False
|
|
746
|
+
try:
|
|
747
|
+
repo = calkit.git.get_repo()
|
|
748
|
+
rev = repo.head.commit.hexsha
|
|
749
|
+
dirty = any(repo.is_dirty(path=p) for p in {ln.path for ln in lines})
|
|
750
|
+
except Exception:
|
|
751
|
+
pass
|
|
752
|
+
export_id = str(uuid.uuid4())
|
|
753
|
+
doc.write_original(
|
|
754
|
+
calkit.docx.Original(
|
|
755
|
+
export_id, rev, source, original, doc.media_hashes
|
|
756
|
+
)
|
|
757
|
+
)
|
|
758
|
+
doc.set_identifier(f"calkit-latex-export:{export_id}:{rev or ''}:{source}")
|
|
759
|
+
doc.save()
|
|
760
|
+
record = LatexDocxExport(
|
|
761
|
+
id=export_id,
|
|
762
|
+
created=datetime.datetime.now(datetime.timezone.utc),
|
|
763
|
+
source=source,
|
|
764
|
+
pdf=Path(pdf_path).as_posix(),
|
|
765
|
+
docx=Path(output).as_posix(),
|
|
766
|
+
rev=rev,
|
|
767
|
+
dirty=dirty,
|
|
768
|
+
permission="comment" if comment_only else "suggest",
|
|
769
|
+
paragraphs=len(original),
|
|
770
|
+
unanchored=sum(
|
|
771
|
+
1 for p, m in zip(paras, matched) if m is None and p.text
|
|
772
|
+
),
|
|
773
|
+
comments_exported=len(threads),
|
|
774
|
+
files={
|
|
775
|
+
p: "md5:" + calkit.get_md5(p)
|
|
776
|
+
for p in sorted(
|
|
777
|
+
{ln.path for ln in lines}
|
|
778
|
+
| {Path(pdf_path).as_posix(), Path(output).as_posix()}
|
|
779
|
+
)
|
|
780
|
+
},
|
|
781
|
+
)
|
|
782
|
+
os.makedirs(calkit.latex.DOCX_EXPORTS_DIR, exist_ok=True)
|
|
783
|
+
with open(
|
|
784
|
+
os.path.join(calkit.latex.DOCX_EXPORTS_DIR, f"{export_id}.json"),
|
|
785
|
+
"w",
|
|
786
|
+
encoding="utf-8",
|
|
787
|
+
newline="\n",
|
|
788
|
+
) as f:
|
|
789
|
+
f.write(record.model_dump_json(indent=2))
|
|
790
|
+
typer.echo(
|
|
791
|
+
f"Wrote {output} ({record.paragraphs} paragraphs anchored, "
|
|
792
|
+
f"{record.unanchored} not, {len(threads)} comments)"
|
|
793
|
+
)
|
|
794
|
+
|
|
795
|
+
|
|
796
|
+
@latex_app.command(name="merge-docx")
|
|
797
|
+
def merge_docx(
|
|
798
|
+
docx_path: Annotated[str, typer.Argument(help="Reviewed .docx to merge.")],
|
|
799
|
+
no_comments: Annotated[
|
|
800
|
+
bool,
|
|
801
|
+
typer.Option(
|
|
802
|
+
"--no-comments", help="Don't write comments to the .tex."
|
|
803
|
+
),
|
|
804
|
+
] = False,
|
|
805
|
+
) -> None:
|
|
806
|
+
"""Merge a reviewed Word document back into the LaTeX source.
|
|
807
|
+
|
|
808
|
+
Accepted changes are applied. Tracked changes not yet accepted or
|
|
809
|
+
rejected, and edits that no longer fit the source, are left alone with
|
|
810
|
+
a warning: deal with them in Word and merge again. Comments become
|
|
811
|
+
comment blocks above the paragraph; threads resolved in Word are
|
|
812
|
+
marked resolved.
|
|
813
|
+
"""
|
|
814
|
+
import datetime
|
|
815
|
+
|
|
816
|
+
import calkit.docx
|
|
817
|
+
import calkit.git
|
|
818
|
+
from calkit.cli.core import warn
|
|
819
|
+
from calkit.models.docx import LatexDocxMerge, LatexDocxMergeChange
|
|
820
|
+
|
|
821
|
+
doc = calkit.docx.Document(docx_path)
|
|
822
|
+
original = doc.read_original()
|
|
823
|
+
if original is None:
|
|
824
|
+
raise_error(
|
|
825
|
+
f"{docx_path} was not exported by Calkit, or its metadata was "
|
|
826
|
+
"stripped by another application"
|
|
827
|
+
)
|
|
828
|
+
if not os.path.isfile(original.source):
|
|
829
|
+
raise_error(f"Source {original.source} does not exist")
|
|
830
|
+
# Figures come from the pipeline, so a picture swapped or edited in
|
|
831
|
+
# Word can't be merged
|
|
832
|
+
media = doc.media_hashes
|
|
833
|
+
changed = sorted(
|
|
834
|
+
name
|
|
835
|
+
for name in set(media) | set(original.media)
|
|
836
|
+
if media.get(name) != original.media.get(name)
|
|
837
|
+
)
|
|
838
|
+
if changed:
|
|
839
|
+
warn(
|
|
840
|
+
"Figures were changed in Word and can't be merged; edit the "
|
|
841
|
+
"pipeline instead: " + ", ".join(changed)
|
|
842
|
+
)
|
|
843
|
+
lines = calkit.latex.flatten(original.source)
|
|
844
|
+
blks = calkit.latex.blocks(lines)
|
|
845
|
+
path_for_hash = {
|
|
846
|
+
calkit.latex.make_bookmark_name(p, 0).split("_")[1]: p
|
|
847
|
+
for p in {ln.path for ln in lines}
|
|
848
|
+
}
|
|
849
|
+
edits: dict[str, list[tuple[int, int, list[str]]]] = {}
|
|
850
|
+
changes: list[LatexDocxMergeChange] = []
|
|
851
|
+
for para in doc.paragraphs:
|
|
852
|
+
if para.bookmark is None or para.bookmark not in original.paragraphs:
|
|
853
|
+
continue
|
|
854
|
+
sent = original.paragraphs[para.bookmark]
|
|
855
|
+
if para.text == sent:
|
|
856
|
+
continue
|
|
857
|
+
parts = para.bookmark.split("_")
|
|
858
|
+
path, lineno = path_for_hash.get(parts[1], ""), int(parts[2])
|
|
859
|
+
blk = calkit.latex.find_block(
|
|
860
|
+
blks, path, lineno, sent
|
|
861
|
+
) or calkit.latex.find_block(blks, path, lineno, para.text)
|
|
862
|
+
if blk is None:
|
|
863
|
+
warn(f"Can't place an edit from {path}:{lineno}: {para.text[:60]}")
|
|
864
|
+
changes.append(
|
|
865
|
+
LatexDocxMergeChange(
|
|
866
|
+
path=path, lineno=lineno, status="unplaced"
|
|
867
|
+
)
|
|
868
|
+
)
|
|
869
|
+
continue
|
|
870
|
+
loc = f"{blk.path}:{blk.lineno}"
|
|
871
|
+
if para.pending:
|
|
872
|
+
warn(f"Tracked change at {loc} not yet accepted or rejected")
|
|
873
|
+
changes.append(
|
|
874
|
+
LatexDocxMergeChange(
|
|
875
|
+
path=blk.path,
|
|
876
|
+
lineno=blk.lineno,
|
|
877
|
+
status="pending",
|
|
878
|
+
author=", ".join(para.authors) or None,
|
|
879
|
+
)
|
|
880
|
+
)
|
|
881
|
+
continue
|
|
882
|
+
sent_tex = calkit.latex.from_word_text(sent)
|
|
883
|
+
new_tex = calkit.latex.from_word_text(para.text)
|
|
884
|
+
if calkit.latex.already_applied(blk, sent_tex, new_tex):
|
|
885
|
+
changes.append(
|
|
886
|
+
LatexDocxMergeChange(
|
|
887
|
+
path=blk.path, lineno=blk.lineno, status="already-applied"
|
|
888
|
+
)
|
|
889
|
+
)
|
|
890
|
+
continue
|
|
891
|
+
new_lines = calkit.latex.apply_edit(blk, sent_tex, new_tex)
|
|
892
|
+
if new_lines is None:
|
|
893
|
+
warn(
|
|
894
|
+
f"Edit at {loc} touches markup; apply it by hand: {para.text[:60]}"
|
|
895
|
+
)
|
|
896
|
+
changes.append(
|
|
897
|
+
LatexDocxMergeChange(
|
|
898
|
+
path=blk.path, lineno=blk.lineno, status="unplaced"
|
|
899
|
+
)
|
|
900
|
+
)
|
|
901
|
+
continue
|
|
902
|
+
edits.setdefault(blk.path, []).append(
|
|
903
|
+
(blk.lineno, len(blk.lines), new_lines)
|
|
904
|
+
)
|
|
905
|
+
changes.append(
|
|
906
|
+
LatexDocxMergeChange(
|
|
907
|
+
path=blk.path, lineno=blk.lineno, status="applied"
|
|
908
|
+
)
|
|
909
|
+
)
|
|
910
|
+
typer.echo(f"Applied edit at {loc}")
|
|
911
|
+
files = {
|
|
912
|
+
p: Path(p).read_text(encoding="utf-8").split("\n")
|
|
913
|
+
for p in {ln.path for ln in lines}
|
|
914
|
+
}
|
|
915
|
+
for path, updates in edits.items():
|
|
916
|
+
for lineno, count, new_lines in sorted(updates, reverse=True):
|
|
917
|
+
files[path][lineno - 1 : lineno - 1 + count] = new_lines
|
|
918
|
+
added = updated = 0
|
|
919
|
+
if not no_comments:
|
|
920
|
+
# Threads keyed by root, anchored through the root's bookmark
|
|
921
|
+
comments = doc.comments
|
|
922
|
+
by_id = {c.para_id: c for c in comments}
|
|
923
|
+
roots = [c for c in comments if not c.parent_id]
|
|
924
|
+
# Resolve every thread to a block first, then edit each file from
|
|
925
|
+
# the bottom up so earlier line numbers stay valid
|
|
926
|
+
placed: list[tuple[calkit.latex.Block, calkit.latex.TexComment]] = []
|
|
927
|
+
for root in roots:
|
|
928
|
+
thread = [root] + [
|
|
929
|
+
c
|
|
930
|
+
for c in comments
|
|
931
|
+
if c.parent_id and by_id.get(c.parent_id) is root
|
|
932
|
+
]
|
|
933
|
+
tc = calkit.latex.TexComment(
|
|
934
|
+
[
|
|
935
|
+
calkit.latex.Entry(
|
|
936
|
+
c.author, c.text, date=calkit.latex.word_date(c.date)
|
|
937
|
+
)
|
|
938
|
+
for c in thread
|
|
939
|
+
],
|
|
940
|
+
highlight=root.highlight,
|
|
941
|
+
highlight_occ=root.highlight_occ,
|
|
942
|
+
resolved=root.done,
|
|
943
|
+
)
|
|
944
|
+
if root.bookmark is None:
|
|
945
|
+
warn(
|
|
946
|
+
f"Comment by {root.author} has no anchor: {root.text[:60]}"
|
|
947
|
+
)
|
|
948
|
+
continue
|
|
949
|
+
parts = root.bookmark.split("_")
|
|
950
|
+
path, lineno = path_for_hash.get(parts[1], ""), int(parts[2])
|
|
951
|
+
blk = calkit.latex.find_block(
|
|
952
|
+
blks, path, lineno, original.paragraphs.get(root.bookmark, "")
|
|
953
|
+
)
|
|
954
|
+
if blk is None:
|
|
955
|
+
warn(
|
|
956
|
+
f"Can't place a comment by {root.author}: {root.text[:60]}"
|
|
957
|
+
)
|
|
958
|
+
continue
|
|
959
|
+
placed.append((blk, tc))
|
|
960
|
+
for blk, tc in sorted(
|
|
961
|
+
placed, key=lambda x: (x[0].path, x[0].lineno), reverse=True
|
|
962
|
+
):
|
|
963
|
+
content = files[blk.path]
|
|
964
|
+
at = blk.lineno
|
|
965
|
+
existing = next(
|
|
966
|
+
(
|
|
967
|
+
e
|
|
968
|
+
for e in calkit.latex.parse_comments(content)
|
|
969
|
+
if e.author == tc.author and e.text == tc.text
|
|
970
|
+
),
|
|
971
|
+
None,
|
|
972
|
+
)
|
|
973
|
+
if existing is not None:
|
|
974
|
+
if (
|
|
975
|
+
existing.messages() == tc.messages()
|
|
976
|
+
and existing.resolved == tc.resolved
|
|
977
|
+
):
|
|
978
|
+
continue
|
|
979
|
+
# Word knows neither emails nor what the source already
|
|
980
|
+
# recorded, so carry those over for unchanged messages
|
|
981
|
+
known = {(e.author, e.text): e for e in existing.entries}
|
|
982
|
+
for e in tc.entries:
|
|
983
|
+
old_e = known.get((e.author, e.text))
|
|
984
|
+
if old_e is not None:
|
|
985
|
+
e.email = old_e.email
|
|
986
|
+
e.date = old_e.date or e.date
|
|
987
|
+
del content[
|
|
988
|
+
existing.lineno - 1 : existing.lineno - 1 + existing.nlines
|
|
989
|
+
]
|
|
990
|
+
if existing.lineno < at:
|
|
991
|
+
at -= existing.nlines
|
|
992
|
+
content[at - 1 : at - 1] = tc.render()
|
|
993
|
+
added += existing is None
|
|
994
|
+
updated += existing is not None
|
|
995
|
+
for path, content in files.items():
|
|
996
|
+
new = "\n".join(content)
|
|
997
|
+
if new != Path(path).read_text(encoding="utf-8"):
|
|
998
|
+
Path(path).write_text(new, encoding="utf-8")
|
|
999
|
+
rev = None
|
|
1000
|
+
try:
|
|
1001
|
+
rev = calkit.git.get_repo().head.commit.hexsha
|
|
1002
|
+
except Exception:
|
|
1003
|
+
pass
|
|
1004
|
+
seen = {a for p in doc.paragraphs for a in p.authors}
|
|
1005
|
+
seen |= {c.author for c in doc.comments}
|
|
1006
|
+
record = LatexDocxMerge(
|
|
1007
|
+
export_id=original.id,
|
|
1008
|
+
created=datetime.datetime.now(datetime.timezone.utc),
|
|
1009
|
+
docx=Path(docx_path).as_posix(),
|
|
1010
|
+
rev=rev,
|
|
1011
|
+
authors=sorted(seen),
|
|
1012
|
+
last_modified_by=doc.last_modified_by,
|
|
1013
|
+
changes=changes,
|
|
1014
|
+
comments_added=added,
|
|
1015
|
+
comments_updated=updated,
|
|
1016
|
+
files={
|
|
1017
|
+
p: "md5:" + calkit.get_md5(p)
|
|
1018
|
+
for p in sorted(
|
|
1019
|
+
{ln.path for ln in lines} | {Path(docx_path).as_posix()}
|
|
1020
|
+
)
|
|
1021
|
+
},
|
|
1022
|
+
)
|
|
1023
|
+
os.makedirs(calkit.latex.DOCX_MERGES_DIR, exist_ok=True)
|
|
1024
|
+
stamp = record.created.strftime("%Y%m%dT%H%M%S.%fZ")
|
|
1025
|
+
with open(
|
|
1026
|
+
os.path.join(
|
|
1027
|
+
calkit.latex.DOCX_MERGES_DIR, f"{original.id}-{stamp}.json"
|
|
1028
|
+
),
|
|
1029
|
+
"w",
|
|
1030
|
+
encoding="utf-8",
|
|
1031
|
+
newline="\n",
|
|
1032
|
+
) as f:
|
|
1033
|
+
f.write(record.model_dump_json(indent=2))
|
|
1034
|
+
counts = {
|
|
1035
|
+
s: sum(1 for c in changes if c.status == s)
|
|
1036
|
+
for s in ("applied", "already-applied", "pending", "unplaced")
|
|
1037
|
+
}
|
|
1038
|
+
typer.echo(
|
|
1039
|
+
f"Applied {counts['applied']} edits ({counts['already-applied']} "
|
|
1040
|
+
f"already there, {counts['pending']} pending, {counts['unplaced']} "
|
|
1041
|
+
f"unplaced); {added} comments added, {updated} updated"
|
|
1042
|
+
)
|