calkit-python 0.47.4__tar.gz → 0.47.5__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.47.5/AGENTS.md +79 -0
- calkit_python-0.47.5/CONTRIBUTING.md +152 -0
- calkit_python-0.47.5/Makefile +155 -0
- calkit_python-0.47.5/PKG-INFO +515 -0
- calkit_python-0.47.5/README.md +453 -0
- calkit_python-0.47.5/actions/run/action.yml +386 -0
- calkit_python-0.47.5/assistant/.gitignore +13 -0
- calkit_python-0.47.5/assistant/Makefile +31 -0
- calkit_python-0.47.5/assistant/README.md +11 -0
- calkit_python-0.47.5/assistant/main.py +1887 -0
- calkit_python-0.47.5/assistant/pyproject.toml +32 -0
- calkit_python-0.47.5/assistant/resources/icon.ico +0 -0
- calkit_python-0.47.5/assistant/resources/screenshot.png +0 -0
- calkit_python-0.47.5/assistant/tests/test_main.py +100 -0
- calkit_python-0.47.5/assistant/uv.lock +650 -0
- calkit_python-0.47.5/calkit/cli/list.py +618 -0
- calkit_python-0.47.5/calkit/cli/main/core.py +4400 -0
- calkit_python-0.47.5/calkit/cli/new.py +4379 -0
- calkit_python-0.47.5/calkit/config.py +598 -0
- calkit_python-0.47.5/calkit/core.py +1467 -0
- calkit_python-0.47.5/calkit/environments.py +2725 -0
- calkit_python-0.47.5/calkit/install.py +467 -0
- calkit_python-0.47.5/calkit/models/pipeline.py +2404 -0
- calkit_python-0.47.5/calkit/resources/devcontainer/base.json +25 -0
- calkit_python-0.47.5/calkit/resources/devcontainer/devcontainer.json +58 -0
- calkit_python-0.47.5/calkit/templates/core.py +260 -0
- calkit_python-0.47.5/calkit/tests/cli/test_list.py +279 -0
- calkit_python-0.47.5/calkit/tests/cli/test_new.py +2297 -0
- calkit_python-0.47.5/calkit/tests/test_config.py +354 -0
- calkit_python-0.47.5/calkit/tests/test_core.py +378 -0
- calkit_python-0.47.5/calkit/tests/test_install.py +347 -0
- calkit_python-0.47.5/calkit/tests/test_templates.py +64 -0
- calkit_python-0.47.5/docs/browser-ext/index.md +128 -0
- calkit_python-0.47.5/docs/browser-ext/privacy.md +6 -0
- calkit_python-0.47.5/docs/cli-reference.md +3966 -0
- calkit_python-0.47.5/docs/img/pipeline.png +0 -0
- calkit_python-0.47.5/docs/index.md +154 -0
- calkit_python-0.47.5/docs/installation.md +132 -0
- calkit_python-0.47.5/docs/privacy.md +214 -0
- calkit_python-0.47.5/docs/quickstart.md +113 -0
- calkit_python-0.47.5/docs/reproducibility.md +133 -0
- calkit_python-0.47.5/docs/requirements.md +346 -0
- calkit_python-0.47.5/docs/schemas/calkit.json +9493 -0
- calkit_python-0.47.5/examples/markdown/.calkit/envs/py/.python-version +1 -0
- calkit_python-0.47.5/hub/.env.example +121 -0
- calkit_python-0.47.5/hub/Makefile +83 -0
- calkit_python-0.47.5/hub/backend/app/alembic/versions/c4e1d7a92b35_add_analytics_consent_to_user.py +25 -0
- calkit_python-0.47.5/hub/backend/app/api/routes/login.py +923 -0
- calkit_python-0.47.5/hub/backend/app/api/routes/misc.py +624 -0
- calkit_python-0.47.5/hub/backend/app/api/routes/projects/core.py +11265 -0
- calkit_python-0.47.5/hub/backend/app/api/routes/projects/figures.py +410 -0
- calkit_python-0.47.5/hub/backend/app/api/routes/projects/pipeline.py +300 -0
- calkit_python-0.47.5/hub/backend/app/api/routes/projects/releases.py +2192 -0
- calkit_python-0.47.5/hub/backend/app/api/routes/users.py +1240 -0
- calkit_python-0.47.5/hub/backend/app/git.py +2240 -0
- calkit_python-0.47.5/hub/backend/app/index.py +86 -0
- calkit_python-0.47.5/hub/backend/app/mixpanel.py +278 -0
- calkit_python-0.47.5/hub/backend/app/models/core.py +1701 -0
- calkit_python-0.47.5/hub/backend/app/projects.py +1597 -0
- calkit_python-0.47.5/hub/backend/app/tests/api/routes/projects/test_core.py +4981 -0
- calkit_python-0.47.5/hub/backend/app/tests/api/routes/projects/test_datasets.py +485 -0
- calkit_python-0.47.5/hub/backend/app/tests/api/routes/projects/test_figures.py +447 -0
- calkit_python-0.47.5/hub/backend/app/tests/api/routes/projects/test_misc.py +172 -0
- calkit_python-0.47.5/hub/backend/app/tests/api/routes/projects/test_pipeline.py +278 -0
- calkit_python-0.47.5/hub/backend/app/tests/api/routes/projects/test_publications.py +404 -0
- calkit_python-0.47.5/hub/backend/app/tests/api/routes/projects/test_templates.py +51 -0
- calkit_python-0.47.5/hub/backend/app/tests/api/routes/test_login.py +773 -0
- calkit_python-0.47.5/hub/backend/app/tests/api/routes/test_misc.py +179 -0
- calkit_python-0.47.5/hub/backend/app/tests/api/routes/test_users.py +1218 -0
- calkit_python-0.47.5/hub/backend/app/tests/conftest.py +88 -0
- calkit_python-0.47.5/hub/backend/app/tests/test_git.py +1093 -0
- calkit_python-0.47.5/hub/backend/app/tests/test_index.py +110 -0
- calkit_python-0.47.5/hub/backend/app/tests/test_mixpanel.py +30 -0
- calkit_python-0.47.5/hub/backend/app/tests/test_projects.py +991 -0
- calkit_python-0.47.5/hub/backend/app/users.py +987 -0
- calkit_python-0.47.5/hub/backend/app/warm.py +268 -0
- calkit_python-0.47.5/hub/backend/scripts/delete-user.py +101 -0
- calkit_python-0.47.5/hub/docker-compose.override.yml +206 -0
- calkit_python-0.47.5/hub/frontend/src/client/index.ts +1228 -0
- calkit_python-0.47.5/hub/frontend/src/client/schemas.gen.ts +11545 -0
- calkit_python-0.47.5/hub/frontend/src/client/sdk.gen.ts +8918 -0
- calkit_python-0.47.5/hub/frontend/src/client/types.gen.ts +14132 -0
- calkit_python-0.47.5/hub/frontend/src/components/Admin/AddUser.tsx +192 -0
- calkit_python-0.47.5/hub/frontend/src/components/Admin/EditUser.tsx +186 -0
- calkit_python-0.47.5/hub/frontend/src/components/Common/ArtifactCompareModal.tsx +1158 -0
- calkit_python-0.47.5/hub/frontend/src/components/Common/ConnectGitHubPrompt.tsx +41 -0
- calkit_python-0.47.5/hub/frontend/src/components/Common/DeleteAlert.tsx +158 -0
- calkit_python-0.47.5/hub/frontend/src/components/Common/DiscardChangesDialog.tsx +63 -0
- calkit_python-0.47.5/hub/frontend/src/components/Common/FilterableSelect.tsx +186 -0
- calkit_python-0.47.5/hub/frontend/src/components/Common/HelpFeedback.tsx +185 -0
- calkit_python-0.47.5/hub/frontend/src/components/Common/OAuthButtons.tsx +77 -0
- calkit_python-0.47.5/hub/frontend/src/components/Common/ProjectCommandPalette.tsx +185 -0
- calkit_python-0.47.5/hub/frontend/src/components/Common/SidebarItems.tsx +170 -0
- calkit_python-0.47.5/hub/frontend/src/components/Common/TexText.test.tsx +25 -0
- calkit_python-0.47.5/hub/frontend/src/components/Common/TexText.tsx +86 -0
- calkit_python-0.47.5/hub/frontend/src/components/Common/Topbar.tsx +283 -0
- calkit_python-0.47.5/hub/frontend/src/components/Datasets/BrowseDatasets.tsx +231 -0
- calkit_python-0.47.5/hub/frontend/src/components/Datasets/DatasetViewer.tsx +630 -0
- calkit_python-0.47.5/hub/frontend/src/components/Datasets/NewDataset.tsx +663 -0
- calkit_python-0.47.5/hub/frontend/src/components/Environments/NewEnvironment.tsx +411 -0
- calkit_python-0.47.5/hub/frontend/src/components/Environments/ViewEnvironment.tsx +139 -0
- calkit_python-0.47.5/hub/frontend/src/components/Figures/FigureEditLauncher.tsx +152 -0
- calkit_python-0.47.5/hub/frontend/src/components/Figures/FigureEditor.tsx +1087 -0
- calkit_python-0.47.5/hub/frontend/src/components/Figures/FigureFromExisting.tsx +162 -0
- calkit_python-0.47.5/hub/frontend/src/components/Figures/UploadFigure.tsx +290 -0
- calkit_python-0.47.5/hub/frontend/src/components/Files/EditFileInfo.tsx +220 -0
- calkit_python-0.47.5/hub/frontend/src/components/Files/FileEditorModal.tsx +337 -0
- calkit_python-0.47.5/hub/frontend/src/components/Files/UploadFile.tsx +147 -0
- calkit_python-0.47.5/hub/frontend/src/components/Local/AddPath.tsx +148 -0
- calkit_python-0.47.5/hub/frontend/src/components/Local/DiscardChanges.tsx +93 -0
- calkit_python-0.47.5/hub/frontend/src/components/Local/IgnorePath.tsx +143 -0
- calkit_python-0.47.5/hub/frontend/src/components/Local/NewStage.tsx +412 -0
- calkit_python-0.47.5/hub/frontend/src/components/Local/SaveFiles.tsx +183 -0
- calkit_python-0.47.5/hub/frontend/src/components/Notebooks/NotebookRunner.tsx +650 -0
- calkit_python-0.47.5/hub/frontend/src/components/Onboarding/AccountSetupCard.tsx +161 -0
- calkit_python-0.47.5/hub/frontend/src/components/Onboarding/ChecklistCard.tsx +238 -0
- calkit_python-0.47.5/hub/frontend/src/components/Onboarding/FeaturedProjects.tsx +88 -0
- calkit_python-0.47.5/hub/frontend/src/components/Onboarding/ProjectChecklist.tsx +282 -0
- calkit_python-0.47.5/hub/frontend/src/components/Onboarding/StartPaths.tsx +134 -0
- calkit_python-0.47.5/hub/frontend/src/components/Orgs/AddMember.tsx +113 -0
- calkit_python-0.47.5/hub/frontend/src/components/Orgs/NewOrg.tsx +150 -0
- calkit_python-0.47.5/hub/frontend/src/components/Pipeline/PipelineEditorModal.tsx +255 -0
- calkit_python-0.47.5/hub/frontend/src/components/Pipeline/StageEditorModal.tsx +378 -0
- calkit_python-0.47.5/hub/frontend/src/components/Projects/AddCollaborator.tsx +145 -0
- calkit_python-0.47.5/hub/frontend/src/components/Projects/CloneProject.tsx +58 -0
- calkit_python-0.47.5/hub/frontend/src/components/Projects/CreateIssue.tsx +149 -0
- calkit_python-0.47.5/hub/frontend/src/components/Projects/CreateQuestion.tsx +128 -0
- calkit_python-0.47.5/hub/frontend/src/components/Projects/EditProject.tsx +131 -0
- calkit_python-0.47.5/hub/frontend/src/components/Projects/EditQuestion.tsx +433 -0
- calkit_python-0.47.5/hub/frontend/src/components/Projects/InviteLinks.tsx +429 -0
- calkit_python-0.47.5/hub/frontend/src/components/Projects/MakeProjectPublic.tsx +109 -0
- calkit_python-0.47.5/hub/frontend/src/components/Projects/NewProjectModal.tsx +633 -0
- calkit_python-0.47.5/hub/frontend/src/components/Projects/ProjectStatus.tsx +149 -0
- calkit_python-0.47.5/hub/frontend/src/components/Projects/QuestionModal.tsx +898 -0
- calkit_python-0.47.5/hub/frontend/src/components/Publications/ImportOverleaf.tsx +649 -0
- calkit_python-0.47.5/hub/frontend/src/components/Publications/LatexEditor.tsx +1121 -0
- calkit_python-0.47.5/hub/frontend/src/components/Publications/NewPublication.tsx +339 -0
- calkit_python-0.47.5/hub/frontend/src/components/Publications/PublicationComponents.tsx +675 -0
- calkit_python-0.47.5/hub/frontend/src/components/References/DeleteReferenceItemDialog.tsx +94 -0
- calkit_python-0.47.5/hub/frontend/src/components/References/DeleteReferencesCollectionDialog.tsx +96 -0
- calkit_python-0.47.5/hub/frontend/src/components/References/EditReferenceItemModal.tsx +273 -0
- calkit_python-0.47.5/hub/frontend/src/components/References/FileViewModal.tsx +44 -0
- calkit_python-0.47.5/hub/frontend/src/components/References/ImportFromZoteroModal.tsx +362 -0
- calkit_python-0.47.5/hub/frontend/src/components/References/LabelExistingReferences.tsx +136 -0
- calkit_python-0.47.5/hub/frontend/src/components/References/NewReferencesCollection.tsx +126 -0
- calkit_python-0.47.5/hub/frontend/src/components/References/ReferencesInfoPanel.tsx +300 -0
- calkit_python-0.47.5/hub/frontend/src/components/Releases/NewRelease.tsx +675 -0
- calkit_python-0.47.5/hub/frontend/src/components/Releases/ReleasesTable.tsx +534 -0
- calkit_python-0.47.5/hub/frontend/src/components/Releases/ShareDialog.tsx +338 -0
- calkit_python-0.47.5/hub/frontend/src/components/Tables/TableView.test.tsx +145 -0
- calkit_python-0.47.5/hub/frontend/src/components/Tables/TableView.tsx +584 -0
- calkit_python-0.47.5/hub/frontend/src/components/UserSettings/Appearance.tsx +38 -0
- calkit_python-0.47.5/hub/frontend/src/components/UserSettings/ChangePassword.tsx +126 -0
- calkit_python-0.47.5/hub/frontend/src/components/UserSettings/ConnectedAccounts.tsx +352 -0
- calkit_python-0.47.5/hub/frontend/src/components/UserSettings/DeleteAccount.tsx +35 -0
- calkit_python-0.47.5/hub/frontend/src/components/UserSettings/DeleteConfirmation.tsx +103 -0
- calkit_python-0.47.5/hub/frontend/src/components/UserSettings/NewToken.tsx +163 -0
- calkit_python-0.47.5/hub/frontend/src/components/UserSettings/PickSubscription.tsx +543 -0
- calkit_python-0.47.5/hub/frontend/src/components/UserSettings/Privacy.tsx +64 -0
- calkit_python-0.47.5/hub/frontend/src/components/UserSettings/Subscription.tsx +188 -0
- calkit_python-0.47.5/hub/frontend/src/components/UserSettings/UpdateOverleafToken.tsx +125 -0
- calkit_python-0.47.5/hub/frontend/src/components/UserSettings/UserTokens.tsx +118 -0
- calkit_python-0.47.5/hub/frontend/src/hooks/useAuth.ts +221 -0
- calkit_python-0.47.5/hub/frontend/src/lib/analytics.test.ts +209 -0
- calkit_python-0.47.5/hub/frontend/src/lib/analytics.ts +96 -0
- calkit_python-0.47.5/hub/frontend/src/lib/api.ts +86 -0
- calkit_python-0.47.5/hub/frontend/src/lib/auth.ts +222 -0
- calkit_python-0.47.5/hub/frontend/src/lib/github.ts +77 -0
- calkit_python-0.47.5/hub/frontend/src/lib/onboarding.test.ts +338 -0
- calkit_python-0.47.5/hub/frontend/src/lib/onboarding.ts +282 -0
- calkit_python-0.47.5/hub/frontend/src/main.tsx +70 -0
- calkit_python-0.47.5/hub/frontend/src/routes/__root.tsx +120 -0
- calkit_python-0.47.5/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/datasets.tsx +526 -0
- calkit_python-0.47.5/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/figures.tsx +759 -0
- calkit_python-0.47.5/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/history.tsx +728 -0
- calkit_python-0.47.5/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/pipeline.tsx +611 -0
- calkit_python-0.47.5/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/publications.tsx +761 -0
- calkit_python-0.47.5/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/tables.tsx +368 -0
- calkit_python-0.47.5/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout.tsx +663 -0
- calkit_python-0.47.5/hub/frontend/src/routes/_layout/$accountName/$projectName/releases/$releaseName.tsx +68 -0
- calkit_python-0.47.5/hub/frontend/src/routes/_layout/index.tsx +471 -0
- calkit_python-0.47.5/hub/frontend/src/routes/_layout/new.tsx +53 -0
- calkit_python-0.47.5/hub/frontend/src/routes/_layout/settings.tsx +112 -0
- calkit_python-0.47.5/hub/frontend/src/routes/_layout.tsx +157 -0
- calkit_python-0.47.5/hub/frontend/src/routes/auth/google.tsx +115 -0
- calkit_python-0.47.5/hub/frontend/src/routes/auth/zenodo.tsx +91 -0
- calkit_python-0.47.5/hub/frontend/src/routes/login/index.tsx +306 -0
- calkit_python-0.47.5/hub/frontend/src/routes/signup.tsx +13 -0
- calkit_python-0.47.5/hub/frontend/tests/auth.setup.ts +41 -0
- calkit_python-0.47.5/mkdocs.yml +123 -0
- calkit_python-0.47.5/pyproject.toml +276 -0
- calkit_python-0.47.5/scripts/list-changes.py +116 -0
- calkit_python-0.47.5/scripts/sync-docs.py +301 -0
- calkit_python-0.47.5/vscode-ext/schemas/calkit.json +9493 -0
- calkit_python-0.47.4/AGENTS.md +0 -73
- calkit_python-0.47.4/CONTRIBUTING.md +0 -140
- calkit_python-0.47.4/Makefile +0 -143
- calkit_python-0.47.4/PKG-INFO +0 -414
- calkit_python-0.47.4/README.md +0 -352
- calkit_python-0.47.4/actions/run/action.yml +0 -368
- calkit_python-0.47.4/calkit/cli/list.py +0 -578
- calkit_python-0.47.4/calkit/cli/main/core.py +0 -4399
- calkit_python-0.47.4/calkit/cli/new.py +0 -4370
- calkit_python-0.47.4/calkit/config.py +0 -558
- calkit_python-0.47.4/calkit/core.py +0 -1453
- calkit_python-0.47.4/calkit/environments.py +0 -2723
- calkit_python-0.47.4/calkit/install.py +0 -229
- calkit_python-0.47.4/calkit/models/pipeline.py +0 -2397
- calkit_python-0.47.4/calkit/resources/devcontainer/base.json +0 -25
- calkit_python-0.47.4/calkit/resources/devcontainer/devcontainer.json +0 -58
- calkit_python-0.47.4/calkit/templates/core.py +0 -143
- calkit_python-0.47.4/calkit/tests/cli/test_list.py +0 -253
- calkit_python-0.47.4/calkit/tests/cli/test_new.py +0 -2266
- calkit_python-0.47.4/calkit/tests/test_config.py +0 -326
- calkit_python-0.47.4/calkit/tests/test_core.py +0 -353
- calkit_python-0.47.4/calkit/tests/test_install.py +0 -223
- calkit_python-0.47.4/calkit/tests/test_templates.py +0 -14
- calkit_python-0.47.4/docs/browser-ext/index.md +0 -128
- calkit_python-0.47.4/docs/browser-ext/privacy.md +0 -82
- calkit_python-0.47.4/docs/cli-reference.md +0 -3963
- calkit_python-0.47.4/docs/img/pipeline.png +0 -0
- calkit_python-0.47.4/docs/index.md +0 -61
- calkit_python-0.47.4/docs/installation.md +0 -130
- calkit_python-0.47.4/docs/quickstart.md +0 -107
- calkit_python-0.47.4/docs/reproducibility.md +0 -130
- calkit_python-0.47.4/docs/requirements.md +0 -326
- calkit_python-0.47.4/docs/schemas/calkit.json +0 -9495
- calkit_python-0.47.4/hub/.env.example +0 -117
- calkit_python-0.47.4/hub/Makefile +0 -74
- calkit_python-0.47.4/hub/backend/app/api/routes/login.py +0 -892
- calkit_python-0.47.4/hub/backend/app/api/routes/misc.py +0 -614
- calkit_python-0.47.4/hub/backend/app/api/routes/projects/core.py +0 -10993
- calkit_python-0.47.4/hub/backend/app/api/routes/projects/figures.py +0 -405
- calkit_python-0.47.4/hub/backend/app/api/routes/projects/pipeline.py +0 -299
- calkit_python-0.47.4/hub/backend/app/api/routes/projects/releases.py +0 -2191
- calkit_python-0.47.4/hub/backend/app/api/routes/users.py +0 -1235
- calkit_python-0.47.4/hub/backend/app/git.py +0 -2035
- calkit_python-0.47.4/hub/backend/app/mixpanel.py +0 -272
- calkit_python-0.47.4/hub/backend/app/models/core.py +0 -1664
- calkit_python-0.47.4/hub/backend/app/projects.py +0 -1585
- calkit_python-0.47.4/hub/backend/app/tests/api/routes/projects/test_core.py +0 -4525
- calkit_python-0.47.4/hub/backend/app/tests/api/routes/projects/test_datasets.py +0 -466
- calkit_python-0.47.4/hub/backend/app/tests/api/routes/projects/test_figures.py +0 -442
- calkit_python-0.47.4/hub/backend/app/tests/api/routes/projects/test_misc.py +0 -168
- calkit_python-0.47.4/hub/backend/app/tests/api/routes/projects/test_pipeline.py +0 -273
- calkit_python-0.47.4/hub/backend/app/tests/api/routes/projects/test_publications.py +0 -396
- calkit_python-0.47.4/hub/backend/app/tests/api/routes/projects/test_templates.py +0 -100
- calkit_python-0.47.4/hub/backend/app/tests/api/routes/test_login.py +0 -693
- calkit_python-0.47.4/hub/backend/app/tests/api/routes/test_misc.py +0 -167
- calkit_python-0.47.4/hub/backend/app/tests/api/routes/test_users.py +0 -1178
- calkit_python-0.47.4/hub/backend/app/tests/conftest.py +0 -66
- calkit_python-0.47.4/hub/backend/app/tests/test_git.py +0 -697
- calkit_python-0.47.4/hub/backend/app/tests/test_projects.py +0 -897
- calkit_python-0.47.4/hub/backend/app/users.py +0 -973
- calkit_python-0.47.4/hub/backend/app/warm.py +0 -242
- calkit_python-0.47.4/hub/docker-compose.override.yml +0 -201
- calkit_python-0.47.4/hub/frontend/src/client/index.ts +0 -1220
- calkit_python-0.47.4/hub/frontend/src/client/schemas.gen.ts +0 -11385
- calkit_python-0.47.4/hub/frontend/src/client/sdk.gen.ts +0 -8862
- calkit_python-0.47.4/hub/frontend/src/client/types.gen.ts +0 -14017
- calkit_python-0.47.4/hub/frontend/src/components/Admin/AddUser.tsx +0 -191
- calkit_python-0.47.4/hub/frontend/src/components/Admin/EditUser.tsx +0 -185
- calkit_python-0.47.4/hub/frontend/src/components/Common/ArtifactCompareModal.tsx +0 -1157
- calkit_python-0.47.4/hub/frontend/src/components/Common/ConnectGitHubPrompt.tsx +0 -41
- calkit_python-0.47.4/hub/frontend/src/components/Common/DeleteAlert.tsx +0 -157
- calkit_python-0.47.4/hub/frontend/src/components/Common/FilterableSelect.tsx +0 -186
- calkit_python-0.47.4/hub/frontend/src/components/Common/HelpFeedback.tsx +0 -184
- calkit_python-0.47.4/hub/frontend/src/components/Common/OAuthButtons.tsx +0 -66
- calkit_python-0.47.4/hub/frontend/src/components/Common/ProjectCommandPalette.tsx +0 -185
- calkit_python-0.47.4/hub/frontend/src/components/Common/SidebarItems.tsx +0 -150
- calkit_python-0.47.4/hub/frontend/src/components/Common/TexText.tsx +0 -84
- calkit_python-0.47.4/hub/frontend/src/components/Common/Topbar.tsx +0 -258
- calkit_python-0.47.4/hub/frontend/src/components/Datasets/BrowseDatasets.tsx +0 -225
- calkit_python-0.47.4/hub/frontend/src/components/Datasets/DatasetViewer.tsx +0 -629
- calkit_python-0.47.4/hub/frontend/src/components/Datasets/NewDataset.tsx +0 -654
- calkit_python-0.47.4/hub/frontend/src/components/Environments/NewEnvironment.tsx +0 -410
- calkit_python-0.47.4/hub/frontend/src/components/Environments/ViewEnvironment.tsx +0 -138
- calkit_python-0.47.4/hub/frontend/src/components/Figures/FigureEditLauncher.tsx +0 -155
- calkit_python-0.47.4/hub/frontend/src/components/Figures/FigureEditor.tsx +0 -1107
- calkit_python-0.47.4/hub/frontend/src/components/Figures/FigureFromExisting.tsx +0 -161
- calkit_python-0.47.4/hub/frontend/src/components/Figures/UploadFigure.tsx +0 -289
- calkit_python-0.47.4/hub/frontend/src/components/Files/EditFileInfo.tsx +0 -218
- calkit_python-0.47.4/hub/frontend/src/components/Files/FileEditorModal.tsx +0 -307
- calkit_python-0.47.4/hub/frontend/src/components/Files/UploadFile.tsx +0 -146
- calkit_python-0.47.4/hub/frontend/src/components/Local/AddPath.tsx +0 -147
- calkit_python-0.47.4/hub/frontend/src/components/Local/DiscardChanges.tsx +0 -92
- calkit_python-0.47.4/hub/frontend/src/components/Local/IgnorePath.tsx +0 -142
- calkit_python-0.47.4/hub/frontend/src/components/Local/NewStage.tsx +0 -411
- calkit_python-0.47.4/hub/frontend/src/components/Local/SaveFiles.tsx +0 -182
- calkit_python-0.47.4/hub/frontend/src/components/Notebooks/NotebookRunner.tsx +0 -648
- calkit_python-0.47.4/hub/frontend/src/components/Onboarding/AccountSetupCard.tsx +0 -160
- calkit_python-0.47.4/hub/frontend/src/components/Onboarding/ChecklistCard.tsx +0 -232
- calkit_python-0.47.4/hub/frontend/src/components/Onboarding/FeaturedProjects.tsx +0 -99
- calkit_python-0.47.4/hub/frontend/src/components/Onboarding/ProjectChecklist.tsx +0 -253
- calkit_python-0.47.4/hub/frontend/src/components/Onboarding/StartPaths.tsx +0 -145
- calkit_python-0.47.4/hub/frontend/src/components/Onboarding/TipBubble.tsx +0 -149
- calkit_python-0.47.4/hub/frontend/src/components/Orgs/AddMember.tsx +0 -113
- calkit_python-0.47.4/hub/frontend/src/components/Orgs/NewOrg.tsx +0 -149
- calkit_python-0.47.4/hub/frontend/src/components/Pipeline/StageEditorModal.tsx +0 -348
- calkit_python-0.47.4/hub/frontend/src/components/Projects/AddCollaborator.tsx +0 -144
- calkit_python-0.47.4/hub/frontend/src/components/Projects/CloneProject.tsx +0 -52
- calkit_python-0.47.4/hub/frontend/src/components/Projects/CreateIssue.tsx +0 -148
- calkit_python-0.47.4/hub/frontend/src/components/Projects/CreateQuestion.tsx +0 -127
- calkit_python-0.47.4/hub/frontend/src/components/Projects/EditProject.tsx +0 -130
- calkit_python-0.47.4/hub/frontend/src/components/Projects/EditQuestion.tsx +0 -427
- calkit_python-0.47.4/hub/frontend/src/components/Projects/InviteLinks.tsx +0 -428
- calkit_python-0.47.4/hub/frontend/src/components/Projects/MakeProjectPublic.tsx +0 -108
- calkit_python-0.47.4/hub/frontend/src/components/Projects/NewProject.tsx +0 -327
- calkit_python-0.47.4/hub/frontend/src/components/Projects/ProjectStatus.tsx +0 -148
- calkit_python-0.47.4/hub/frontend/src/components/Projects/QuestionModal.tsx +0 -847
- calkit_python-0.47.4/hub/frontend/src/components/Publications/ImportOverleaf.tsx +0 -647
- calkit_python-0.47.4/hub/frontend/src/components/Publications/LatexEditor.tsx +0 -1101
- calkit_python-0.47.4/hub/frontend/src/components/Publications/NewPublication.tsx +0 -338
- calkit_python-0.47.4/hub/frontend/src/components/Publications/PublicationComponents.tsx +0 -669
- calkit_python-0.47.4/hub/frontend/src/components/References/DeleteReferenceItemDialog.tsx +0 -93
- calkit_python-0.47.4/hub/frontend/src/components/References/DeleteReferencesCollectionDialog.tsx +0 -95
- calkit_python-0.47.4/hub/frontend/src/components/References/EditReferenceItemModal.tsx +0 -267
- calkit_python-0.47.4/hub/frontend/src/components/References/FileViewModal.tsx +0 -43
- calkit_python-0.47.4/hub/frontend/src/components/References/ImportFromZoteroModal.tsx +0 -356
- calkit_python-0.47.4/hub/frontend/src/components/References/LabelExistingReferences.tsx +0 -130
- calkit_python-0.47.4/hub/frontend/src/components/References/NewReferencesCollection.tsx +0 -120
- calkit_python-0.47.4/hub/frontend/src/components/References/ReferencesInfoPanel.tsx +0 -299
- calkit_python-0.47.4/hub/frontend/src/components/Releases/NewRelease.tsx +0 -674
- calkit_python-0.47.4/hub/frontend/src/components/Releases/ReleasesTable.tsx +0 -536
- calkit_python-0.47.4/hub/frontend/src/components/Releases/ShareDialog.tsx +0 -332
- calkit_python-0.47.4/hub/frontend/src/components/Tables/TableView.test.tsx +0 -117
- calkit_python-0.47.4/hub/frontend/src/components/Tables/TableView.tsx +0 -576
- calkit_python-0.47.4/hub/frontend/src/components/UserSettings/Appearance.tsx +0 -38
- calkit_python-0.47.4/hub/frontend/src/components/UserSettings/ChangePassword.tsx +0 -126
- calkit_python-0.47.4/hub/frontend/src/components/UserSettings/ConnectedAccounts.tsx +0 -349
- calkit_python-0.47.4/hub/frontend/src/components/UserSettings/DeleteAccount.tsx +0 -35
- calkit_python-0.47.4/hub/frontend/src/components/UserSettings/DeleteConfirmation.tsx +0 -102
- calkit_python-0.47.4/hub/frontend/src/components/UserSettings/NewToken.tsx +0 -162
- calkit_python-0.47.4/hub/frontend/src/components/UserSettings/PickSubscription.tsx +0 -543
- calkit_python-0.47.4/hub/frontend/src/components/UserSettings/Subscription.tsx +0 -182
- calkit_python-0.47.4/hub/frontend/src/components/UserSettings/UpdateOverleafToken.tsx +0 -124
- calkit_python-0.47.4/hub/frontend/src/components/UserSettings/UserTokens.tsx +0 -113
- calkit_python-0.47.4/hub/frontend/src/hooks/useAuth.ts +0 -209
- calkit_python-0.47.4/hub/frontend/src/hooks/useTips.ts +0 -73
- calkit_python-0.47.4/hub/frontend/src/lib/analytics.test.ts +0 -83
- calkit_python-0.47.4/hub/frontend/src/lib/analytics.ts +0 -25
- calkit_python-0.47.4/hub/frontend/src/lib/api.ts +0 -84
- calkit_python-0.47.4/hub/frontend/src/lib/auth.ts +0 -210
- calkit_python-0.47.4/hub/frontend/src/lib/github.ts +0 -58
- calkit_python-0.47.4/hub/frontend/src/lib/onboarding.test.ts +0 -328
- calkit_python-0.47.4/hub/frontend/src/lib/onboarding.ts +0 -286
- calkit_python-0.47.4/hub/frontend/src/lib/tips.test.ts +0 -34
- calkit_python-0.47.4/hub/frontend/src/lib/tips.ts +0 -92
- calkit_python-0.47.4/hub/frontend/src/main.tsx +0 -66
- calkit_python-0.47.4/hub/frontend/src/routes/__root.tsx +0 -40
- calkit_python-0.47.4/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/datasets.tsx +0 -526
- calkit_python-0.47.4/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/figures.tsx +0 -768
- calkit_python-0.47.4/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/history.tsx +0 -727
- calkit_python-0.47.4/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/pipeline.tsx +0 -551
- calkit_python-0.47.4/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/publications.tsx +0 -766
- calkit_python-0.47.4/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/tables.tsx +0 -367
- calkit_python-0.47.4/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout.tsx +0 -672
- calkit_python-0.47.4/hub/frontend/src/routes/_layout/$accountName/$projectName/releases/$releaseName.tsx +0 -62
- calkit_python-0.47.4/hub/frontend/src/routes/_layout/index.tsx +0 -382
- calkit_python-0.47.4/hub/frontend/src/routes/_layout/new.tsx +0 -1516
- calkit_python-0.47.4/hub/frontend/src/routes/_layout/settings.tsx +0 -110
- calkit_python-0.47.4/hub/frontend/src/routes/_layout.tsx +0 -109
- calkit_python-0.47.4/hub/frontend/src/routes/auth/google.tsx +0 -115
- calkit_python-0.47.4/hub/frontend/src/routes/auth/zenodo.tsx +0 -91
- calkit_python-0.47.4/hub/frontend/src/routes/login/index.tsx +0 -200
- calkit_python-0.47.4/hub/frontend/src/routes/signup.tsx +0 -164
- calkit_python-0.47.4/hub/frontend/tests/auth.setup.ts +0 -39
- calkit_python-0.47.4/mkdocs.yml +0 -124
- calkit_python-0.47.4/pyproject.toml +0 -273
- calkit_python-0.47.4/scripts/list-changes.py +0 -115
- calkit_python-0.47.4/scripts/sync-docs.py +0 -210
- calkit_python-0.47.4/vscode-ext/schemas/calkit.json +0 -9495
- {calkit_python-0.47.4 → calkit_python-0.47.5}/.claude-plugin/marketplace.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/.dockerignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/.gitattributes +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/.gitmodules +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/.pre-commit-config.yaml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/.prettierignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/.prettierrc.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/.python-version +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/.vscode/launch.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/.vscode/tasks.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/CITATION.cff +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/CODE_OF_CONDUCT.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/LICENSE +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/actions/run/README.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/actions/run/example.yml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/agent-plugin/.claude-plugin/plugin.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/agent-plugin/skills/add-pipeline-stage/SKILL.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/agent-plugin/skills/build-paper-pipeline/SKILL.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/agent-plugin/skills/check-questions/SKILL.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/agent-plugin/skills/check-reproducibility/SKILL.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/agent-plugin/skills/conventions/SKILL.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/agent-plugin/skills/create-pipeline/SKILL.md +0 -0
- {calkit_python-0.47.4/examples/markdown-python → calkit_python-0.47.5/assistant}/.python-version +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/README.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/options.html +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/package-lock.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/package.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/popup.html +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/public/icons/calkit-128.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/public/icons/calkit-16.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/public/icons/calkit-32.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/public/icons/calkit-48.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/public/icons/calkit.svg +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/public/manifest.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/scripts/build-content.mjs +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/scripts/package-manifest.mjs +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/scripts/store-screenshots.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/scripts/watch.mjs +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/background/index.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/content/github.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/content/overleaf.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/content/references.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/api.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/auth.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/calkit-yaml.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/calkit-yaml.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/detect.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/detect.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/hub-url.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/hubs.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/hubs.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/latex.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/latex.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/lifecycle.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/messages.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/messages.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/pickers.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/storage.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/types.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/ui.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/core/ui.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/options/options.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/popup/popup.css +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/popup/popup.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/src/viewer/viewer.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/tsconfig.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/viewer.html +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/vite.config.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/vite.content.config.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/browser-ext/vitest.config.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/__main__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/calc.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/check.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/config.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/core.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/delete.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/describe.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/dev.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/hub.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/import_.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/latex.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/main/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/main/xr.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/notebooks.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/office.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/overleaf.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/scheduler.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/sync.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/cli/update.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/conda.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/datasets.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/dependencies.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/detect.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/docker.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/docx.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/dvc/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/dvc/core.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/dvc/zip.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/fs.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/git.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/github.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/gui.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/hub.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/invenio.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/julia.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/jupyter.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/jupyterlab/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/jupyterlab/routes.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/labextension/package.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/labextension/schemas/calkit/package.json.orig +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/labextension/schemas/calkit/plugin.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/labextension/static/506.c34b070098184e33.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/labextension/static/57d13a7399cec3c5.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/labextension/static/616.528427eb54a4a0c0.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/labextension/static/740.6bf87276e9e5788a.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/labextension/static/899.f9b9f9bf705a6493.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/labextension/static/935.46ecc6bf99aa593a.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/labextension/static/remoteEntry.109a3a8379365e59.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/labextension/static/style.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/labextension/static/third-party-licenses.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/latex.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/licenses.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/magics.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/markdown.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/matlab.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/models/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/models/core.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/models/docx.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/models/io.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/models/iteration.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/notebooks.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/office.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/ops.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/overleaf.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/pipeline.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/procedures.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/provenance.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/questions.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/releases.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/reproducibility.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/resources/README.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/resources/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/resources/devcontainer/Dockerfile +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/resources/devcontainer/README.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/resources/devcontainer/scripts/check-envs.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/resources/devcontainer/scripts/post-create.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/resources/devcontainer/scripts/post-start.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/resources/devcontainer/scripts/update-content.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/resources/github-actions/example.yml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/resources/vscode/README.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/resources/vscode/extensions.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/resources/vscode/settings.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/schema.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/server.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/templates/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/templates/latex/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/templates/latex/article/paper.tex +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/templates/latex/core.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/templates/latex/ieee-conference/paper.tex +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/templates/latex/jfm/jfm.bst +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/templates/latex/jfm/jfm.cls +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/templates/latex/jfm/lineno-FLM.sty +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/templates/latex/jfm/paper.tex +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/templates/latex/jfm/upmath.sty +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/templates/latex/report/paper.tex +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/main/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/main/test_core.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/main/test_lock.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/main/test_subprojects.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/main/test_xr.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/test_check.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/test_config.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/test_core.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/test_delete.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/test_describe.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/test_hub.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/test_import.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/test_latex.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/test_notebooks.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/test_overleaf.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/test_scheduler.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/test_sync.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/cli/test_update.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/dvc/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/dvc/test_core.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/dvc/test_zip.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/jupyterlab/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/jupyterlab/conftest.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/jupyterlab/test_routes.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/models/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/models/test_core.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/models/test_iteration.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/models/test_pipeline.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_calc.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_conda.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_dependencies.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_detect.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_docker.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_docs_references.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_docx.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_environments.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_fs.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_git.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_hub.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_invenio.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_julia.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_jupyter.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_keyring_windows.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_licenses.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_magics.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_markdown.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_matlab.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_models.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_notebooks.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_overleaf.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_pipeline.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_procedures.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_provenance.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_questions.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_releases.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_reproducibility.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_resources.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_schema.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/tests/test_workspace.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/calkit/workspace.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/CNAME +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/acknowledgements.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/ai-tools.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/apps.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/calculations.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/calkit-yaml.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/cloud-integration.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/datasets.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/dev/latex-word.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/environments.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/examples.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/governance.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/help.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/hpc.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/hub/index.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/hub/self-hosting.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/img/c-to-the-k-white.svg +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/img/calkit-fragmentation-compendium.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/img/calkit-no-bg.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/img/caltech.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/img/connect-zenodo.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/img/jupyterlab/all-green.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/img/jupyterlab/collect-data-stale.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/img/jupyterlab/new-env.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/img/jupyterlab/new-notebook.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/img/jupyterlab/pipeline-badge.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/img/jupyterlab-params.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/img/plos-osi-code-2024-03.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/img/schmidt-sciences.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/img/vscode-nb-params.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/jupyterlab.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/latex.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/local-server.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/notebooks.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/overleaf.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/pipeline/index.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/pipeline/manual-steps.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/pipeline/markdown.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/pipeline/running-and-logging.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/provenance.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/questions.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/references.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/releases.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/subprojects.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/adding-latex-pub-docker.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/ai-agents.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/conda-envs.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/existing-project.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/first-project.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/github-actions.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/actions-repo-secrets.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/latex-codespaces/building-codespace.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/latex-codespaces/codespaces-secrets-2.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/latex-codespaces/editor-split.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/latex-codespaces/go-to-linked-code.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/latex-codespaces/issue-from-selection.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/latex-codespaces/new-project.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/latex-codespaces/new-pub-2.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/latex-codespaces/new-token.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/latex-codespaces/paper.tex.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/latex-codespaces/project-home-3.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/latex-codespaces/push.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/latex-codespaces/stage.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/anakin-excel.jpg +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/chart-more-rows.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/create-project.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/elsevier-research-data-guidelines.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/excel-chart.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/excel-data.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/insert-link-to-file.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/needs-clone.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/new-stage.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/phd-comics-version-control.webp +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/pipeline-out-of-date.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/status-more-rows.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/uncommitted-changes.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/untracked-data.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/updated-publication.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/word-to-pdf-stage-2.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/office/workflow-page.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/openfoam/clone.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/openfoam/create-project.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/openfoam/datasets-page.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/openfoam/figure-on-website-updated.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/openfoam/figure-on-website.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/openfoam/new-token.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/openfoam/reclone.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/openfoam/status-after-import-dataset.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/quick-actions.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/run-proc.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/vscode-slurm-notebook/create-calkit-env.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/vscode-slurm-notebook/create-inner-env.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/vscode-slurm-notebook/create-new-calkit-env.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/vscode-slurm-notebook/select-calkit-env.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/vscode-slurm-notebook/slurm-job-running.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/vscode-slurm-notebook/slurm-launch-options.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/img/vscode-slurm-notebook/starting-slurm-job.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/index.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/jupyterlab.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/latex-codespaces.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/latex-word.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/matlab.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/notebook-pipeline.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/office.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/openfoam.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/procedures.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/runnable-readme.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/vscode-slurm-notebook.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/tutorials/writing-first.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/docs/version-control.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/.calkit/env-locks/py/osx-arm64.txt +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/.calkit/env-locks/py/win-64.txt +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/.calkit/env-locks/tex/amd64.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/.calkit/env-locks/tex/arm64.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/.dvc/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/.dvc/config +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/.dvcignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/.gitattributes +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/README.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/calkit.yaml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/dvc.lock +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/dvc.yaml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/figures/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/paper/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/paper/figures/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/paper/main.tex +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/paper/methods.tex +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/paper/refs.bib +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/requirements.txt +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/latex-word/scripts/plot-wake.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/.calkit/envs/jl/Manifest.toml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/.calkit/envs/jl/Project.toml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/.calkit/envs/py/pyproject.toml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/.calkit/envs/py/uv.lock +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/.calkit/envs/r/.Rbuildignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/.calkit/envs/r/.Rprofile +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/.calkit/envs/r/DESCRIPTION +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/.calkit/envs/r/renv/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/.calkit/envs/r/renv/activate.R +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/.calkit/envs/r/renv/settings.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/.calkit/envs/r/renv.lock +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/.dvc/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/.dvc/config +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/.dvcignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/README.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/calkit.yaml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/data/data.csv +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/data/data2.csv +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/dvc.lock +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/dvc.yaml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/figures/data2.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/figures/figure.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown/results/fit.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown-python/.dvc/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown-python/.dvc/config +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown-python/.dvcignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown-python/.gitignore +0 -0
- {calkit_python-0.47.4/examples/markdown/.calkit/envs/py → calkit_python-0.47.5/examples/markdown-python}/.python-version +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown-python/README.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown-python/calkit.yaml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown-python/dvc.lock +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown-python/dvc.yaml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown-python/figures/waves.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown-python/pyproject.toml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown-python/src/wavetools/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/examples/markdown-python/uv.lock +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/flake.lock +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/flake.nix +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/.gitattributes +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/.vscode/launch.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/AGENTS.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/LICENSE +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/README.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/.python-version +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/Dockerfile +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/Makefile +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/README.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/alembic.ini +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/README +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/env.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/script.py.mako +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/.keep +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/07c8236476c4_add_fields_to_usertoken.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/10a05eaedfbd_add_dataset_table.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/1546aa334cd5_make_project_description_nullable.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/1a31ce608336_add_cascade_delete_relationships.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/1fb6e38eb0e9_add_deviceauth_table.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/208e7457f3ba_add_title_to_project.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/2e7c25a00842_add_is_public_to_project.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/38e178698db2_update_subscription_model_to_use_plan_.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/3b1e67e9c318_add_usertoken_table.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/4dac15c0282a_add_stripe_customer_id_to_user.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/4e1c917fcca4_add_status_columns_to_project_table.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/5ba89308431f_add_project_table.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/5d6f8217c890_add_subscriber_user_id_to_org_.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/65b2d15cc702_add_github_username_field_to_user.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/697c3c1a8a27_add_git_repo_url_to_project.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/6f3a3afbea8b_add_number_field_to_question.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/7076d9b5c887_use_account_for_project_owner.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/71e1d1e69bbd_add_table_for_storing_user_github_tokens.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/799476973bce_add_created_ts_to_user_github_token_.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/7cacee34034c_add_parent_child_relationship_to_.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/97762605447f_add_onboarding_flags_and_feedback.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/9c0a54914c78_add_max_length_for_string_varchar_.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/9c4f70636d73_add_fields_to_usertoken.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/a333fc5aa994_index_project_folders_synced_with_.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/a4af19842927_create_table_to_store_user_zenodo_tokens.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/ab7816be480b_drop_items.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/ac622559475f_save_timestamps_for_github_token_.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/af024967630d_lowercase_account_names.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/c1f9a3e27d48_consolidate_comment_tables.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/c46a78ba506c_add_created_column_to_account.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/c749b39072d3_add_figurecomment.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/c7c41c3f0d22_add_user_external_credential_table.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/d01ce914143d_make_question_a_table.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/d21ed1c9537e_add_zenodo_user_id_column_to_user.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/d3a8021fb433_add_table_for_user_project_access.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/d4e5f6a7b8c9_ghless_membership_and_invitations.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/d6366015af35_add_discount_code_table.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/d98dd8ec85a3_edit_replace_id_integers_in_all_models_.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/dcef842dee10_add_refreshtoken_table.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/e1b0fa2a6d34_backfill_external_credentials_from_legacy_.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/e2412789c190_initialize_models.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/e7671197c00b_add_account_table.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/ed74edb0a9e6_create_table_for_user_overleaf_token.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/edcabfca98df_add_subscription_and_org_membership_.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/f0e23e048b1b_add_fields_to_project.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/f3a9c1b7e240_add_releases_feature.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/f5ad6445ad03_enable_user_project_access_to_be_null.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/alembic/versions/f74a96172dbd_add_table_for_locking_project_files.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/api/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/api/deps.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/api/main.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/api/routes/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/api/routes/accounts.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/api/routes/datasets.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/api/routes/feedback.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/api/routes/orgs.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/api/routes/projects/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/api/routes/projects/activity.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/api/routes/projects/datasets.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/api/routes/projects/dvc.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/api/routes/projects/fs.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/api/routes/references.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/arxiv.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/cache.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/client.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/config.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/core.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/db.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/dvc.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/email-templates/build/new_account.html +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/email-templates/build/project_invitation.html +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/email-templates/build/release_share.html +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/email-templates/build/reset_password.html +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/email-templates/build/test_email.html +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/email-templates/build/verify_email.html +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/email-templates/src/new_account.mjml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/email-templates/src/project_invitation.mjml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/email-templates/src/release_share.mjml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/email-templates/src/reset_password.mjml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/email-templates/src/test_email.mjml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/email-templates/src/verify_email.mjml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/formatting.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/github.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/imports.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/main.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/messaging.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/models/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/models/projects.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/models/releases.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/orgs.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/pdftext.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/pipeline.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/security.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/storage.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/stripe.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/subscriptions.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tasks.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/api/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/api/routes/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/api/routes/projects/__init__.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/api/routes/projects/test_activity.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/api/routes/projects/test_dvc.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/api/routes/projects/test_figure_upload.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/api/routes/projects/test_fs.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/api/routes/projects/test_overleaf_links.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/api/routes/projects/test_reference_items.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/api/routes/test_feedback.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/api/routes/test_releases.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/test_arxiv.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/test_cache.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/test_client.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/test_core.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/test_db.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/test_dvc.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/test_formatting.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/test_pdftext.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/test_pipeline.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/test_tasks.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/test_users.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/tests/test_version.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/thumbnails.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/version.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/zenodo.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/app/zotero.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/prestart.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/pyproject.toml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/scripts/backend-pre-start.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/scripts/create-initial-data.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/scripts/format.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/scripts/generate-client.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/scripts/lint.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/scripts/rotate-fernet-secrets.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/scripts/test.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/backend/tests-start.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/config/alloy/config.alloy +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/config/grafana/provisioning/dashboards/dashboards.yml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/config/grafana/provisioning/dashboards/fastapi.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/config/grafana/provisioning/dashboards/warm-queue.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/config/grafana/provisioning/datasources/datasources.yml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/config/loki/loki.yml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/config/prometheus/prometheus.yml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/docker-compose.traefik.yml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/docker-compose.yml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/docs/dev/database-migrations.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/docs/dev/deployment.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/docs/dev/development.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/.dockerignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/.nvmrc +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/Dockerfile +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/Makefile +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/README.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/biome.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/index.html +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/modify-openapi-operationids.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/nginx-backend-not-found.conf +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/nginx.conf +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/openapi-ts.config.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/package-lock.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/package.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/playwright.config.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/public/assets/images/c-to-the-k.svg +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/public/assets/images/calkit-no-bg.svg +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/public/assets/images/calkit.svg +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/public/assets/images/fastapi-logo.svg +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/public/assets/images/favicon.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/public/assets/images/kdot.svg +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/public/tex/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/public/tex/LICENSE-busytex +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/public/tex/busytex.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/public/tex/busytex.wasm +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/public/tex/busytex_pipeline.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/public/tex/busytex_worker.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/scripts/download-tex-engine.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/client/client/client.gen.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/client/client/index.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/client/client/types.gen.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/client/client/utils.gen.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/client/client.gen.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/client/core/auth.gen.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/client/core/bodySerializer.gen.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/client/core/params.gen.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/client/core/pathSerializer.gen.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/client/core/queryKeySerializer.gen.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/client/core/serverSentEvents.gen.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/client/core/types.gen.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/client/core/utils.gen.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Admin/FeatureVotesTable.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Admin/FeedbackTable.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/ActionsMenu.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/ClearableInput.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/CodeEditorPane.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/CommentsPanel.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/ConnectZoteroPrompt.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/FeatureVoteButton.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/GlobalSearch.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/InputsRow.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/LoadingSpinner.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/Markdown.test.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/Markdown.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/Mermaid.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/Navbar.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/NoArtifactFound.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/NotBuiltAlert.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/NotFound.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/NotificationBell.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/PageMenu.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/PdfCanvas.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/PdfDocumentViewer.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/RefPicker.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/Sidebar.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/Tooltip.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Common/UserMenu.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Datasets/DataEntryGrid.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Figures/FigureView.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Files/FileContent.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Files/SelectedItemInfo.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Notebooks/NotebookRunLauncher.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Notebooks/NotebookView.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Onboarding/CommandBlock.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Onboarding/ReproAudit.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Onboarding/ReproAudit.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Presentations/PresentationView.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Projects/HelpContent.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Projects/ProjectShowcase.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Projects/RecentChanges.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Projects/RecentChanges.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Publications/ImportOverleaf.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Publications/PdfAnnotator.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Publications/PublicationComponents.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Publications/PublicationView.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/References/ReferenceItemModal.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Releases/ArtifactReleasesPanel.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Releases/PathPicker.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Releases/ReleasePdfAnnotator.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Releases/ReleaseViewer.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Releases/releaseSort.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/Tables/TableThumbnail.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/UserSettings/OnboardingChecklists.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/components/UserSettings/UserInformation.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/hooks/useCustomToast.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/hooks/useOnboarding.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/hooks/useProject.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/hooks/useSubmitOnCmdEnter.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/hooks/useSubmitOnCmdEnter.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/api.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/auth.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/bibtex.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/bibtex.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/core.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/csv.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/csv.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/environments.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/environments.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/errors.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/figureScript.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/figureScript.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/fuzzy.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/fuzzy.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/github.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/google.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/keyboard.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/latexCompiler.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/latexProject.mapPaths.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/latexProject.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/latexProject.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/layout.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/notebook.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/notebook.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/pipelineYaml.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/pipelineYaml.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/projectFiles.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/provenance.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/provenance.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/pyodide.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/pyodide.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/releases.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/staleChunks.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/staleChunks.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/strings.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/strings.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/tables.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/tables.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/tex.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/tex.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/zenodo.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/lib/zotero.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routeTree.gen.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/app.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/apps/$appName.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/apps/index.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/apps.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/collaborators.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/environments.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/files.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/index.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/local.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/notebooks.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/presentations.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/questions.$questionNumber.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/references.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/releases.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/software.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/$accountName/index.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/admin.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/datasets.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/orgs.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/_layout/projects.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/auth/zotero.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/checkout.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/join/$token.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/login/device.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/recover-password.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/reset-password.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/routes/verify-email.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/theme.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/src/vite-env.d.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/tests/config.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/tests/figures-pagination.spec.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/tests/login.spec.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/tests/reset-password.spec.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/tests/user-settings.spec.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/tests/utils/mailcatcher.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/tests/utils/random.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/tests/utils/user.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/tsconfig.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/tsconfig.node.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/vite.config.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/frontend/vitest.config.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/scripts/build-push.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/scripts/build.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/scripts/deploy.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/scripts/pem-to-env.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/scripts/test-local.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/scripts/test.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/texmf-proxy/Dockerfile +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/texmf-proxy/README.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/hub/texmf-proxy/proxy.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/.yarnrc.yml +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/babel.config.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/install.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/jest.config.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/jupyter-config/server-config/calkit.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/package.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/schema/plugin.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/__tests__/useQueries.spec.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/calkit-config.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/cell-output-marker.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/components/commit-dialog.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/components/environment-editor.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/components/notebook-registration.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/components/notebook-toolbar.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/components/pipeline-status-bar.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/components/project-info-editor.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/components/sidebar-settings.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/components/sidebar.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/components/stage-editor.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/feature-flags.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/file-browser-menu.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/hooks/__tests__/useQueries.test.tsx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/hooks/useQueries.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/icons.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/index.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/io-tracker.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/pipeline-state.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/queryClient.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/request.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/src/shims-mainmenu.d.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/style/base.css +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/style/cell-output-marker.css +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/style/environment-editor.css +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/style/environment-selector.css +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/style/img/calkit-no-bg.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/style/index.css +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/style/index.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/style/notebook-toolbar.css +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/style/pipeline-status-bar.css +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/style/sidebar.css +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/tsconfig.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/tsconfig.test.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/ui-tests/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/ui-tests/README.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/ui-tests/jupyter_server_test_config.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/ui-tests/package.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/ui-tests/playwright.config.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/ui-tests/tests/calkit.spec.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/ui-tests/yarn.lock +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/jupyterlab-ext/yarn.lock +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/scripts/generate-docs-references.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/scripts/install.ps1 +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/scripts/install.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/scripts/make-ck9.sh +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/scripts/sync-resources.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/test/docx/accepted.docx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/test/docx/export.docx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/test/docx/main.tex +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/test/docx/methods.tex +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/test/docx/resolved.docx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/test/docx/returned.docx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/test/docx/word-import.docx +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/test/dvc-md5-dir/osx-arm64.txt +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/test/nb-julia.ipynb +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/test/nb-params.ipynb +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/test/nb-subdir.ipynb +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/test/pipeline.ipynb +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/test/script.py +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/test/test-log.log +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/uv.lock +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/.gitignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/.vscodeignore +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/LICENSE +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/README.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/changelog-notes.md +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/images/calkit-icon.svg +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/images/calkit-no-bg.png +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/package-lock.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/package.json +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/scripts/gen-changelog.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/scripts/set-proposed-api.js +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/environments.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/extension.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/figures/core.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/figures/view.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/markdown/core.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/markdown/view.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/notebooks.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/pipeline/core.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/sidebar.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/test/environments.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/test/figures.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/test/kernel-selection.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/test/markdown.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/test/notebooks.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/test/pipeline.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/test/sidebar.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/test/yaml.test.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/types.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/src/yaml.ts +0 -0
- {calkit_python-0.47.4 → calkit_python-0.47.5}/vscode-ext/tsconfig.json +0 -0
|
@@ -0,0 +1,79 @@
|
|
|
1
|
+
# Agent instructions for working on Calkit
|
|
2
|
+
|
|
3
|
+
## Repo structure
|
|
4
|
+
|
|
5
|
+
- The main Python package/CLI lives in `calkit`
|
|
6
|
+
- The JupyterLab extension lives in `src`
|
|
7
|
+
- The VS Code extension lives in `vscode-ext`
|
|
8
|
+
- The Chrome extension lives in `browser-ext`
|
|
9
|
+
- The Calkit Assistant desktop app lives in `assistant`
|
|
10
|
+
- GitHub Actions live in `actions`, e.g., `calkit/calkit/actions/run`
|
|
11
|
+
- Config Calkit installs into projects, e.g., the dev container, VS Code, and
|
|
12
|
+
GitHub Actions configs, lives in `calkit/resources`; see the README there
|
|
13
|
+
before editing, since some of those files are generated
|
|
14
|
+
|
|
15
|
+
Be sure to read the `AGENTS.md` file in whatever subproject you're working on,
|
|
16
|
+
if applicable.
|
|
17
|
+
|
|
18
|
+
## Working
|
|
19
|
+
|
|
20
|
+
See `CONTRIBUTING.md` for tool usage, style guidelines, etc.
|
|
21
|
+
|
|
22
|
+
To run tests, use `uv run pytest`.
|
|
23
|
+
|
|
24
|
+
To sync the docs and format all the code, run `make format`.
|
|
25
|
+
|
|
26
|
+
Before finishing a change, type-check it. The CLI gate is mypy
|
|
27
|
+
(`uv run mypy <changed files>`, or `make check` for the full suite), and the
|
|
28
|
+
VS Code editor uses Pylance (Pyright). Keep new code clean under both, and do
|
|
29
|
+
not introduce new type errors.
|
|
30
|
+
|
|
31
|
+
Wrap prose at natural breakpoints in phrases or punctuation to keep max
|
|
32
|
+
line length below 80 characters.
|
|
33
|
+
|
|
34
|
+
In the docs, MkDocs Material admonitions (`!!! note`, `!!! tip`, etc.) must be
|
|
35
|
+
preceded by a `<!-- prettier-ignore -->` comment. Otherwise Prettier reformats
|
|
36
|
+
the block and strips the 4-space indentation of the admonition body, which
|
|
37
|
+
breaks rendering.
|
|
38
|
+
|
|
39
|
+
Agents should never make commits to Git unless asked to.
|
|
40
|
+
|
|
41
|
+
Tests belong in the test module named after the module the exercised code
|
|
42
|
+
lives in, e.g., tests for `calkit/cli/new.py` go in
|
|
43
|
+
`calkit/tests/cli/test_new.py`. Don't create a new test module for a feature.
|
|
44
|
+
|
|
45
|
+
Prefer tests that include multiple scenarios to comprehensively test
|
|
46
|
+
a feature in one function over many different test functions.
|
|
47
|
+
|
|
48
|
+
Do not write docstrings in test functions.
|
|
49
|
+
|
|
50
|
+
Do not put blank lines inside function bodies; separate logical sections with
|
|
51
|
+
comments instead. This only applies to blank lines we write, not ones the
|
|
52
|
+
formatter inserts, e.g., ruff-format adds one after an in-function import
|
|
53
|
+
block. Don't hoist imports to module scope just to avoid those; imports are
|
|
54
|
+
kept inside functions to keep CLI startup fast.
|
|
55
|
+
|
|
56
|
+
For prose, only use one space after punctuation.
|
|
57
|
+
|
|
58
|
+
Always put a comma after "i.e." and "e.g.".
|
|
59
|
+
|
|
60
|
+
Don't overzealously split up functions just because they're long.
|
|
61
|
+
Functions should usually be used ~3 times before abstracting.
|
|
62
|
+
Otherwise, split up long ones into logical sections with comments.
|
|
63
|
+
The only exception here is if splitting up a function makes it easier to
|
|
64
|
+
write meaningful unit tests.
|
|
65
|
+
If a function is only used inside one other function, nest it inside the
|
|
66
|
+
caller at the top.
|
|
67
|
+
|
|
68
|
+
No spaces on either side of en or em dashes used for ranges or pauses in prose,
|
|
69
|
+
respectively.
|
|
70
|
+
|
|
71
|
+
Never create `helpers` or `utils` modules or packages--tight coupling and
|
|
72
|
+
low cohesion architecture.
|
|
73
|
+
|
|
74
|
+
Don't be verbose in comments. One sentence is usually fine, if anything at all.
|
|
75
|
+
|
|
76
|
+
Agents should typically not be writing prose for human consumption.
|
|
77
|
+
If some is needed, notify
|
|
78
|
+
the human developer and ask them to write in a given file at a specified
|
|
79
|
+
line and make a commit.
|
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
# Contributing to Calkit
|
|
2
|
+
|
|
3
|
+
Thank you for considering contributing to Calkit!
|
|
4
|
+
We welcome contributions of all kinds, including code, documentation,
|
|
5
|
+
bug reports, and feature suggestions.
|
|
6
|
+
This guide will help you get started.
|
|
7
|
+
|
|
8
|
+
## 🛠 How to contribute
|
|
9
|
+
|
|
10
|
+
### 1. Find an issue to work on
|
|
11
|
+
|
|
12
|
+
- Check the **[backlog](https://github.com/orgs/calkit/projects/1/views/1)**
|
|
13
|
+
for issues that are ready to be worked on.
|
|
14
|
+
- Look for issues labeled `good first issue` if you're new.
|
|
15
|
+
- If you have an idea, open a new issue and discuss it before coding.
|
|
16
|
+
|
|
17
|
+
### 2. Set up your development environment
|
|
18
|
+
|
|
19
|
+
1. [**Fork** the repository](https://github.com/calkit/calkit/fork).
|
|
20
|
+
1. **Clone** your fork locally:
|
|
21
|
+
```bash
|
|
22
|
+
git clone https://github.com/{your-username}/calkit.git
|
|
23
|
+
cd calkit
|
|
24
|
+
```
|
|
25
|
+
1. **Install system-level dependencies:**
|
|
26
|
+
- [Docker](https://docker.com)
|
|
27
|
+
- [Miniforge](https://conda-forge.org/download/)
|
|
28
|
+
- [uv](https://docs.astral.sh/uv/getting-started/installation/)
|
|
29
|
+
- [Pixi](https://pixi.sh/latest/)
|
|
30
|
+
1. **Create the virtual environment:**
|
|
31
|
+
```bash
|
|
32
|
+
uv sync --all-packages
|
|
33
|
+
```
|
|
34
|
+
This repo is a uv workspace: the hub backend is a member, and both it
|
|
35
|
+
and the `calkit` package share a single `.venv` at the repo root.
|
|
36
|
+
Always pass `--all-packages`, since a bare `uv sync` installs only one
|
|
37
|
+
member and uninstalls the other's dependencies, leaving either the
|
|
38
|
+
`calkit` CLI or the hub backend unable to import its dependencies.
|
|
39
|
+
1. **Run tests** to ensure everything is working:
|
|
40
|
+
```bash
|
|
41
|
+
uv run pytest
|
|
42
|
+
```
|
|
43
|
+
1. Install the Calkit CLI in dev mode:
|
|
44
|
+
```sh
|
|
45
|
+
uv tool install -e .
|
|
46
|
+
```
|
|
47
|
+
1. Install the JupyterLab extension in development mode
|
|
48
|
+
(if working on the JupyterLab extension):
|
|
49
|
+
```sh
|
|
50
|
+
uv run jupyter-builder develop . --overwrite
|
|
51
|
+
```
|
|
52
|
+
1. Start the JupyterLab extension TypeScript compiler in watch mode
|
|
53
|
+
(if working on the JupyterLab extension):
|
|
54
|
+
```sh
|
|
55
|
+
make jlab-dev
|
|
56
|
+
```
|
|
57
|
+
1. Start JupyterLab:
|
|
58
|
+
```sh
|
|
59
|
+
uv run jupyter lab
|
|
60
|
+
```
|
|
61
|
+
1. **Set up pre-commit hooks** to auto-enforce code style standards:
|
|
62
|
+
```bash
|
|
63
|
+
uv tool install prek
|
|
64
|
+
prek install
|
|
65
|
+
```
|
|
66
|
+
This will run automated checks before each commit.
|
|
67
|
+
|
|
68
|
+
### 3. Make your changes
|
|
69
|
+
|
|
70
|
+
- Create a new branch:
|
|
71
|
+
```bash
|
|
72
|
+
git checkout -b your-feature-name
|
|
73
|
+
```
|
|
74
|
+
- Fix automatically-checked formatting issues:
|
|
75
|
+
```bash
|
|
76
|
+
make format
|
|
77
|
+
```
|
|
78
|
+
- Follow style guidelines not automatically checked:
|
|
79
|
+
- No blank lines inside functions/methods
|
|
80
|
+
- Type hints required for all functions
|
|
81
|
+
- NumPy-style docstrings
|
|
82
|
+
- Commit your changes
|
|
83
|
+
(use the imperative mood and capitalize the first letter,
|
|
84
|
+
but don't use punctuation):
|
|
85
|
+
```bash
|
|
86
|
+
git add .
|
|
87
|
+
git commit -m "Short description of your change"
|
|
88
|
+
```
|
|
89
|
+
- Push your branch:
|
|
90
|
+
```bash
|
|
91
|
+
git push origin your-feature-name -u
|
|
92
|
+
```
|
|
93
|
+
|
|
94
|
+
### 4. Submit a pull request (PR)
|
|
95
|
+
|
|
96
|
+
- Open a **Pull request** on GitHub.
|
|
97
|
+
- Link the PR to the issue it resolves by adding "resolves #{issue number}"
|
|
98
|
+
to the description.
|
|
99
|
+
- Wait for a review and make necessary changes.
|
|
100
|
+
|
|
101
|
+
## Releasing the browser extension
|
|
102
|
+
|
|
103
|
+
Publishing a GitHub release tagged `browser-ext/vX.Y.Z` builds and tests the
|
|
104
|
+
extension, stamps that version into `manifest.json` and `package.json`,
|
|
105
|
+
strips source maps, and attaches a store-ready zip to the release.
|
|
106
|
+
The version comes from the tag because the Chrome Web Store rejects an
|
|
107
|
+
upload whose manifest version isn't higher than the last one, and a version
|
|
108
|
+
kept in sync by hand eventually isn't.
|
|
109
|
+
Uncheck "set as the latest release" for these, since they aren't
|
|
110
|
+
calkit-python releases.
|
|
111
|
+
|
|
112
|
+
The same workflow uploads to the Chrome Web Store once the
|
|
113
|
+
`CHROME_EXTENSION_ID` repository variable is set, using the
|
|
114
|
+
`CHROME_CLIENT_ID`, `CHROME_CLIENT_SECRET`, and `CHROME_REFRESH_TOKEN`
|
|
115
|
+
secrets (an OAuth client for the Web Store API, authorized for the
|
|
116
|
+
publishing account).
|
|
117
|
+
Until that variable exists the upload step is skipped and the zip on the
|
|
118
|
+
release is uploaded by hand.
|
|
119
|
+
|
|
120
|
+
`make browser-ext` builds and packages the same zip locally.
|
|
121
|
+
The packaged manifest drops the local development hub's host permission,
|
|
122
|
+
which is why it is built from a staged copy rather than from `dist`, the
|
|
123
|
+
directory loaded unpacked during development.
|
|
124
|
+
The store listing's text lives in `browser-ext/store/listing.md`, and its
|
|
125
|
+
screenshots are generated from `docs/img/browser-ext` by
|
|
126
|
+
`browser-ext/scripts/store-screenshots.py`.
|
|
127
|
+
|
|
128
|
+
## Releasing the assistant
|
|
129
|
+
|
|
130
|
+
Publishing a GitHub release tagged `assistant/vX.Y.Z` builds the Windows
|
|
131
|
+
executable with PyInstaller and attaches it to the release as
|
|
132
|
+
`calkit-assistant-X.Y.Z-windows.exe`.
|
|
133
|
+
As with the extensions, uncheck "set as the latest release" for these.
|
|
134
|
+
Pull requests that touch `assistant/` run its offscreen smoke test on all
|
|
135
|
+
three platforms and a Windows build, so a broken build is caught before a
|
|
136
|
+
release is cut.
|
|
137
|
+
`make assistant` runs the app locally and `make test-assistant` runs the
|
|
138
|
+
same smoke test.
|
|
139
|
+
|
|
140
|
+
## 💡 Other ways to contribute
|
|
141
|
+
|
|
142
|
+
- **Report bugs**: Open an issue with detailed reproduction steps.
|
|
143
|
+
- **Improve documentation**: Help us make Calkit's docs better.
|
|
144
|
+
- **Suggest features**: Share your ideas for improvements.
|
|
145
|
+
|
|
146
|
+
## 🎉 Join the community
|
|
147
|
+
|
|
148
|
+
- Participate in **[GitHub Discussions](https://github.com/calkit/discussions)**.
|
|
149
|
+
- Join our [**Discord**](https://discord.gg/m2MBC79HzD) for real-time collaboration.
|
|
150
|
+
- Follow our updates on [**LinkedIn**](https://linkedin.com/company/calkit).
|
|
151
|
+
|
|
152
|
+
We appreciate your help in making Calkit better! 🚀
|
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
.PHONY: help
|
|
2
|
+
help: ## Show this help.
|
|
3
|
+
@uv run python -c "import re; \
|
|
4
|
+
[[print(f'\033[36m{m[0]:<20}\033[0m {m[1]}') for m in re.findall(r'^([a-zA-Z_-]+):.*?## (.*)$$', open(makefile).read(), re.M)] for makefile in ('$(MAKEFILE_LIST)').strip().split()]"
|
|
5
|
+
|
|
6
|
+
.PHONY: install
|
|
7
|
+
install: ## Create the project's virtual environment.
|
|
8
|
+
@echo "🚀 Creating virtual environment"
|
|
9
|
+
# --all-packages, since a bare `uv sync` would install only this
|
|
10
|
+
# package and uninstall the hub backend's dependencies from the
|
|
11
|
+
# workspace's single shared .venv
|
|
12
|
+
@uv sync --all-packages
|
|
13
|
+
|
|
14
|
+
.PHONY: dev
|
|
15
|
+
dev: ## Start up the hub containers for development.
|
|
16
|
+
@$(MAKE) -C hub dev
|
|
17
|
+
|
|
18
|
+
.PHONY: dev-reset-user
|
|
19
|
+
dev-reset-user: ## Reset the hub development user's data.
|
|
20
|
+
@$(MAKE) -C hub dev-reset-user
|
|
21
|
+
|
|
22
|
+
.PHONY: frontend-client
|
|
23
|
+
frontend-client: ## Regenerate the hub frontend's API client.
|
|
24
|
+
@$(MAKE) -C hub/frontend client
|
|
25
|
+
|
|
26
|
+
.PHONY: format
|
|
27
|
+
format: sync-docs sync-resources ## Automatically format files.
|
|
28
|
+
@echo "🚀 Linting code with pre-commit"
|
|
29
|
+
@uv run pre-commit run -a
|
|
30
|
+
|
|
31
|
+
.PHONY: check
|
|
32
|
+
check: format ## Run code quality tools.
|
|
33
|
+
@echo "🚀 Checking lock file consistency with 'pyproject.toml'"
|
|
34
|
+
@uv lock --locked
|
|
35
|
+
@echo "🚀 Static type checking with mypy"
|
|
36
|
+
@uv run --all-packages mypy
|
|
37
|
+
@echo "🚀 Checking for obsolete dependencies with deptry"
|
|
38
|
+
@uv run deptry .
|
|
39
|
+
|
|
40
|
+
.PHONY: test
|
|
41
|
+
test: ## Test the code with pytest.
|
|
42
|
+
@echo "🚀 Testing code with pytest"
|
|
43
|
+
@uv run pytest
|
|
44
|
+
|
|
45
|
+
.PHONY: test-cov
|
|
46
|
+
test-cov: ## Test the code coverage with pytest.
|
|
47
|
+
@echo "🚀 Testing code coverage with pytest"
|
|
48
|
+
@uv run pytest --cov --cov-config=pyproject.toml
|
|
49
|
+
|
|
50
|
+
.PHONY: test-docs
|
|
51
|
+
test-docs: sync-docs ## Test if documentation can be built without warnings or errors.
|
|
52
|
+
@uv run mkdocs build -s
|
|
53
|
+
|
|
54
|
+
.PHONY: schema
|
|
55
|
+
schema: ## Generate the published JSON schema for calkit.yaml.
|
|
56
|
+
@echo "🚀 Generating calkit.yaml JSON schema"
|
|
57
|
+
@uv run calkit describe schema -o docs/schemas/calkit.json
|
|
58
|
+
@cp docs/schemas/calkit.json vscode-ext/schemas/calkit.json
|
|
59
|
+
|
|
60
|
+
.PHONY: sync-docs
|
|
61
|
+
sync-docs: schema ## Sync documentation content from docs/*.md into README.md.
|
|
62
|
+
@echo "🚀 Generating docs references"
|
|
63
|
+
@uv run python scripts/generate-docs-references.py
|
|
64
|
+
@echo "🚀 Syncing documentation"
|
|
65
|
+
@uv run python scripts/sync-docs.py
|
|
66
|
+
|
|
67
|
+
.PHONY: unreleased
|
|
68
|
+
unreleased: ## List each product's commits since its last release.
|
|
69
|
+
@uv run python scripts/list-changes.py
|
|
70
|
+
|
|
71
|
+
.PHONY: sync-resources
|
|
72
|
+
sync-resources: ## Regenerate the dev container spec from the VS Code config.
|
|
73
|
+
@echo "🚀 Syncing project resources"
|
|
74
|
+
@uv run python scripts/sync-resources.py
|
|
75
|
+
|
|
76
|
+
.PHONY: devcontainer-image
|
|
77
|
+
devcontainer-image: ## Build the dev container image and smoke test it.
|
|
78
|
+
@echo "🚀 Building the dev container image"
|
|
79
|
+
@docker build -t calkit/devcontainer:dev calkit/resources/devcontainer
|
|
80
|
+
@echo "🚀 Smoke testing the dev container image"
|
|
81
|
+
@docker run --rm calkit/devcontainer:dev bash -c \
|
|
82
|
+
"calkit --version && uv --version && pixi --version && conda --version"
|
|
83
|
+
|
|
84
|
+
.PHONY: docs
|
|
85
|
+
docs: sync-docs ## Build and serve the documentation.
|
|
86
|
+
@uv run mkdocs serve --livereload
|
|
87
|
+
|
|
88
|
+
.PHONY: import-profile
|
|
89
|
+
import-profile: ## Profile the import time of the CLI.
|
|
90
|
+
uv run python -X importtime -m calkit --help 2> import.log && uvx tuna import.log
|
|
91
|
+
|
|
92
|
+
.PHONY: jlab-dev
|
|
93
|
+
jlab-dev: ## Develop the JupyterLab extension.
|
|
94
|
+
cd jupyterlab-ext && uv run jlpm run watch
|
|
95
|
+
|
|
96
|
+
.PHONY: jlab
|
|
97
|
+
jlab: ## Build the JupyterLab extension.
|
|
98
|
+
cd jupyterlab-ext && uv run jlpm run build:prod
|
|
99
|
+
|
|
100
|
+
.PHONY: test-jlab
|
|
101
|
+
test-jlab: ## Run JupyterLab extension unit tests with Jest.
|
|
102
|
+
@echo "🚀 Running JupyterLab extension unit tests"
|
|
103
|
+
@cd jupyterlab-ext && uv run jlpm test
|
|
104
|
+
|
|
105
|
+
.PHONY: test-jlab-ui
|
|
106
|
+
test-jlab-ui: ## Run the JupyterLab UI integration tests.
|
|
107
|
+
@echo "🚀 Running JupyterLab UI tests with Playwright"
|
|
108
|
+
@cd jupyterlab-ext && uv run jlpm run build:prod
|
|
109
|
+
@uv run --directory=jupyterlab-ext/ui-tests jlpm install
|
|
110
|
+
@uv run --directory=jupyterlab-ext/ui-tests jlpm playwright install
|
|
111
|
+
@uv run --directory=jupyterlab-ext/ui-tests jlpm playwright test -u --reporter=list
|
|
112
|
+
|
|
113
|
+
.PHONY: browser-ext
|
|
114
|
+
browser-ext: ## Build the browser extension and package it as a ZIP.
|
|
115
|
+
@echo "🚀 Building the browser extension"
|
|
116
|
+
@cd browser-ext && npm ci && npm run build
|
|
117
|
+
@echo "📦 Packaging the browser extension ZIP"
|
|
118
|
+
@mkdir -p browser-ext/zip
|
|
119
|
+
# Packaged from a staged copy, never from dist: dist is what gets loaded
|
|
120
|
+
# unpacked for development, and the published manifest drops the local
|
|
121
|
+
# hub's host permission, which development needs.
|
|
122
|
+
@rm -rf browser-ext/zip/stage
|
|
123
|
+
@mkdir -p browser-ext/zip/stage
|
|
124
|
+
@cp -R browser-ext/dist/. browser-ext/zip/stage/
|
|
125
|
+
@cd browser-ext && node scripts/package-manifest.mjs zip/stage/manifest.json
|
|
126
|
+
# Source maps are useful loading unpacked, but only bloat a store upload, so
|
|
127
|
+
# they stay in dist and are excluded from the archive.
|
|
128
|
+
# zip adds to an existing archive rather than replacing it, so a rebuild at
|
|
129
|
+
# the same commit would otherwise keep files the build no longer produces.
|
|
130
|
+
# $$ escapes the shell's expansion from Make's own.
|
|
131
|
+
@rm -f "browser-ext/zip/calkit-browser-ext.zip"
|
|
132
|
+
@cd browser-ext/zip/stage && zip -qr \
|
|
133
|
+
"../calkit-browser-ext.zip" . \
|
|
134
|
+
-x '.*' '*/.*' '*.map'
|
|
135
|
+
@rm -rf browser-ext/zip/stage
|
|
136
|
+
|
|
137
|
+
.PHONY: browser-ext-dev
|
|
138
|
+
browser-ext-dev: ## Rebuild the browser extension on every change.
|
|
139
|
+
@echo "🚀 Watching the browser extension"
|
|
140
|
+
# Rebuilds on save. Chrome still needs the extension reloaded, since it
|
|
141
|
+
# reads a content script from disk when a page loads. Vite doesn't type
|
|
142
|
+
# check, so run 'cd browser-ext && npm run check' alongside this.
|
|
143
|
+
@cd browser-ext && npm ci && npm run dev
|
|
144
|
+
|
|
145
|
+
.PHONY: browser-ext-clean-zips
|
|
146
|
+
browser-ext-clean-zips: ## Delete all built browser extension ZIPs.
|
|
147
|
+
@rm -rf browser-ext/zip
|
|
148
|
+
|
|
149
|
+
.PHONY: assistant
|
|
150
|
+
assistant: ## Run the desktop assistant locally for development.
|
|
151
|
+
@cd assistant && uv run main.py
|
|
152
|
+
|
|
153
|
+
.PHONY: test-assistant
|
|
154
|
+
test-assistant: ## Run the desktop assistant's offscreen smoke tests.
|
|
155
|
+
@cd assistant && QT_QPA_PLATFORM=offscreen uv run pytest
|