calkit-python 0.43.0__tar.gz → 0.44.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (868) hide show
  1. {calkit_python-0.43.0 → calkit_python-0.44.1}/.gitmodules +3 -0
  2. {calkit_python-0.43.0 → calkit_python-0.44.1}/CONTRIBUTING.md +9 -0
  3. {calkit_python-0.43.0 → calkit_python-0.44.1}/Makefile +15 -2
  4. {calkit_python-0.43.0 → calkit_python-0.44.1}/PKG-INFO +3 -3
  5. {calkit_python-0.43.0 → calkit_python-0.44.1}/README.md +2 -2
  6. {calkit_python-0.43.0 → calkit_python-0.44.1}/agent-plugin/skills/conventions/SKILL.md +4 -0
  7. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/__init__.py +2 -0
  8. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/calc.py +19 -10
  9. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/check.py +1 -1
  10. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/check.py +122 -17
  11. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/describe.py +27 -0
  12. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/import_.py +1 -3
  13. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/list.py +2 -2
  14. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/main/core.py +103 -118
  15. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/new.py +80 -17
  16. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/overleaf.py +445 -25
  17. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/scheduler.py +29 -14
  18. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/config.py +6 -0
  19. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/core.py +488 -86
  20. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/datasets.py +1 -1
  21. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/dependencies.py +58 -0
  22. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/detect.py +1 -1
  23. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/environments.py +330 -12
  24. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/git.py +196 -0
  25. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/install.py +1 -1
  26. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/jupyterlab/routes.py +1 -1
  27. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/latex.py +10 -2
  28. calkit_python-0.44.1/calkit/models/core.py +1209 -0
  29. calkit_python-0.44.1/calkit/models/io.py +77 -0
  30. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/models/iteration.py +17 -28
  31. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/models/pipeline.py +421 -101
  32. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/notebooks.py +6 -2
  33. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/overleaf.py +253 -45
  34. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/pipeline.py +13 -2
  35. calkit_python-0.44.1/calkit/schema.py +71 -0
  36. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/main/test_core.py +55 -1
  37. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/test_check.py +72 -0
  38. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/test_new.py +38 -1
  39. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/test_overleaf.py +574 -17
  40. calkit_python-0.44.1/calkit/tests/models/test_core.py +203 -0
  41. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/models/test_pipeline.py +120 -0
  42. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_core.py +118 -10
  43. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_dependencies.py +38 -0
  44. calkit_python-0.44.1/calkit/tests/test_docs_references.py +134 -0
  45. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_environments.py +368 -0
  46. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_git.py +130 -0
  47. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_magics.py +14 -0
  48. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_pipeline.py +50 -1
  49. calkit_python-0.44.1/calkit/tests/test_schema.py +179 -0
  50. calkit_python-0.44.1/calkit/tests/test_workspace.py +1476 -0
  51. calkit_python-0.44.1/calkit/workspace.py +1890 -0
  52. calkit_python-0.44.1/docs/apps.md +140 -0
  53. calkit_python-0.44.1/docs/calkit-yaml.md +550 -0
  54. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/cli-reference.md +115 -19
  55. calkit_python-0.44.1/docs/environments.md +1130 -0
  56. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/index.md +1 -1
  57. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/installation.md +1 -1
  58. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/notebooks.md +4 -0
  59. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/overleaf.md +163 -5
  60. calkit_python-0.44.1/docs/pipeline/index.md +708 -0
  61. calkit_python-0.43.0/docs/dependencies.md → calkit_python-0.44.1/docs/requirements.md +98 -36
  62. calkit_python-0.44.1/docs/schemas/calkit.json +7653 -0
  63. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/adding-latex-pub-docker.md +2 -5
  64. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/procedures.md +17 -27
  65. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/AGENTS.md +80 -0
  66. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/README.md +10 -2
  67. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/routes/projects/core.py +354 -23
  68. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/git.py +2 -6
  69. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/models/core.py +24 -2
  70. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/pipeline.py +53 -37
  71. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/projects.py +9 -10
  72. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/api/routes/projects/test_core.py +304 -4
  73. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/test_pipeline.py +57 -0
  74. calkit_python-0.44.1/hub/backend/prestart.sh +16 -0
  75. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/Makefile +11 -4
  76. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/index.ts +6 -0
  77. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/schemas.gen.ts +97 -2
  78. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/sdk.gen.ts +46 -0
  79. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/types.gen.ts +97 -2
  80. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/ArtifactCompareModal.tsx +17 -11
  81. calkit_python-0.44.1/hub/frontend/src/components/Common/Markdown.test.tsx +60 -0
  82. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/Markdown.tsx +55 -27
  83. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/SidebarItems.tsx +3 -1
  84. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Projects/EditQuestion.tsx +30 -3
  85. calkit_python-0.44.1/hub/frontend/src/components/Tables/TableThumbnail.tsx +172 -0
  86. calkit_python-0.44.1/hub/frontend/src/components/Tables/TableView.test.tsx +117 -0
  87. calkit_python-0.44.1/hub/frontend/src/components/Tables/TableView.tsx +550 -0
  88. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/hooks/useProject.ts +27 -0
  89. calkit_python-0.44.1/hub/frontend/src/lib/tables.test.ts +286 -0
  90. calkit_python-0.44.1/hub/frontend/src/lib/tables.ts +477 -0
  91. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routeTree.gen.ts +23 -0
  92. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/figures.tsx +11 -6
  93. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/index.tsx +51 -2
  94. calkit_python-0.44.1/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/tables.tsx +366 -0
  95. {calkit_python-0.43.0 → calkit_python-0.44.1}/mkdocs.yml +1 -1
  96. {calkit_python-0.43.0 → calkit_python-0.44.1}/pyproject.toml +24 -1
  97. {calkit_python-0.43.0 → calkit_python-0.44.1}/scripts/generate-docs-references.py +327 -49
  98. calkit_python-0.44.1/scripts/list-changes.py +115 -0
  99. {calkit_python-0.43.0 → calkit_python-0.44.1}/uv.lock +22 -39
  100. calkit_python-0.44.1/vscode-ext/.gitignore +5 -0
  101. calkit_python-0.44.1/vscode-ext/changelog-notes.md +21 -0
  102. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/package.json +11 -1
  103. calkit_python-0.44.1/vscode-ext/schemas/calkit.json +7653 -0
  104. calkit_python-0.44.1/vscode-ext/scripts/gen-changelog.js +150 -0
  105. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/src/environments.ts +1 -1
  106. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/src/extension.ts +0 -24
  107. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/src/test/environments.test.ts +3 -3
  108. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/src/test/kernel-selection.test.ts +1 -1
  109. calkit_python-0.43.0/calkit/models/core.py +0 -550
  110. calkit_python-0.43.0/calkit/models/io.py +0 -53
  111. calkit_python-0.43.0/calkit/tests/models/test_core.py +0 -107
  112. calkit_python-0.43.0/docs/apps.md +0 -93
  113. calkit_python-0.43.0/docs/calkit-yaml.md +0 -42
  114. calkit_python-0.43.0/docs/environments.md +0 -784
  115. calkit_python-0.43.0/docs/pipeline/index.md +0 -517
  116. calkit_python-0.43.0/hub/backend/prestart.sh +0 -10
  117. calkit_python-0.43.0/vscode-ext/.gitignore +0 -3
  118. calkit_python-0.43.0/vscode-ext/CHANGELOG.md +0 -6
  119. {calkit_python-0.43.0 → calkit_python-0.44.1}/.claude-plugin/marketplace.json +0 -0
  120. {calkit_python-0.43.0 → calkit_python-0.44.1}/.dockerignore +0 -0
  121. {calkit_python-0.43.0 → calkit_python-0.44.1}/.gitattributes +0 -0
  122. {calkit_python-0.43.0 → calkit_python-0.44.1}/.gitignore +0 -0
  123. {calkit_python-0.43.0 → calkit_python-0.44.1}/.pre-commit-config.yaml +0 -0
  124. {calkit_python-0.43.0 → calkit_python-0.44.1}/.prettierignore +0 -0
  125. {calkit_python-0.43.0 → calkit_python-0.44.1}/.prettierrc.json +0 -0
  126. {calkit_python-0.43.0 → calkit_python-0.44.1}/.python-version +0 -0
  127. {calkit_python-0.43.0 → calkit_python-0.44.1}/.vscode/launch.json +0 -0
  128. {calkit_python-0.43.0 → calkit_python-0.44.1}/.vscode/tasks.json +0 -0
  129. {calkit_python-0.43.0 → calkit_python-0.44.1}/AGENTS.md +0 -0
  130. {calkit_python-0.43.0 → calkit_python-0.44.1}/CITATION.cff +0 -0
  131. {calkit_python-0.43.0 → calkit_python-0.44.1}/CODE_OF_CONDUCT.md +0 -0
  132. {calkit_python-0.43.0 → calkit_python-0.44.1}/LICENSE +0 -0
  133. {calkit_python-0.43.0 → calkit_python-0.44.1}/actions/run/README.md +0 -0
  134. {calkit_python-0.43.0 → calkit_python-0.44.1}/actions/run/action.yml +0 -0
  135. {calkit_python-0.43.0 → calkit_python-0.44.1}/actions/run/example.yml +0 -0
  136. {calkit_python-0.43.0 → calkit_python-0.44.1}/agent-plugin/.claude-plugin/plugin.json +0 -0
  137. {calkit_python-0.43.0 → calkit_python-0.44.1}/agent-plugin/skills/add-pipeline-stage/SKILL.md +0 -0
  138. {calkit_python-0.43.0 → calkit_python-0.44.1}/agent-plugin/skills/create-pipeline/SKILL.md +0 -0
  139. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/.gitignore +0 -0
  140. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/README.md +0 -0
  141. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/options.html +0 -0
  142. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/package-lock.json +0 -0
  143. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/package.json +0 -0
  144. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/popup.html +0 -0
  145. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/public/icons/calkit-128.png +0 -0
  146. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/public/icons/calkit-16.png +0 -0
  147. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/public/icons/calkit-32.png +0 -0
  148. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/public/icons/calkit-48.png +0 -0
  149. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/public/icons/calkit.svg +0 -0
  150. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/public/manifest.json +0 -0
  151. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/scripts/build-content.mjs +0 -0
  152. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/scripts/package-manifest.mjs +0 -0
  153. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/scripts/store-screenshots.py +0 -0
  154. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/scripts/watch.mjs +0 -0
  155. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/background/index.ts +0 -0
  156. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/content/github.ts +0 -0
  157. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/content/overleaf.ts +0 -0
  158. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/content/references.ts +0 -0
  159. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/api.ts +0 -0
  160. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/auth.ts +0 -0
  161. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/calkit-yaml.test.ts +0 -0
  162. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/calkit-yaml.ts +0 -0
  163. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/detect.test.ts +0 -0
  164. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/detect.ts +0 -0
  165. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/hub-url.ts +0 -0
  166. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/hubs.test.ts +0 -0
  167. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/hubs.ts +0 -0
  168. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/latex.test.ts +0 -0
  169. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/latex.ts +0 -0
  170. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/lifecycle.ts +0 -0
  171. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/messages.test.ts +0 -0
  172. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/messages.ts +0 -0
  173. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/pickers.ts +0 -0
  174. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/storage.ts +0 -0
  175. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/types.ts +0 -0
  176. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/ui.test.ts +0 -0
  177. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/core/ui.ts +0 -0
  178. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/options/options.ts +0 -0
  179. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/popup/popup.css +0 -0
  180. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/popup/popup.ts +0 -0
  181. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/src/viewer/viewer.ts +0 -0
  182. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/tsconfig.json +0 -0
  183. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/viewer.html +0 -0
  184. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/vite.config.ts +0 -0
  185. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/vite.content.config.ts +0 -0
  186. {calkit_python-0.43.0 → calkit_python-0.44.1}/browser-ext/vitest.config.ts +0 -0
  187. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/__main__.py +0 -0
  188. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/__init__.py +0 -0
  189. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/config.py +0 -0
  190. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/core.py +0 -0
  191. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/delete.py +0 -0
  192. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/dev.py +0 -0
  193. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/hub.py +0 -0
  194. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/latex.py +0 -0
  195. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/main/__init__.py +0 -0
  196. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/main/xr.py +0 -0
  197. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/notebooks.py +0 -0
  198. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/office.py +0 -0
  199. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/sync.py +0 -0
  200. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/cli/update.py +0 -0
  201. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/conda.py +0 -0
  202. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/docker.py +0 -0
  203. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/dvc/__init__.py +0 -0
  204. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/dvc/core.py +0 -0
  205. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/dvc/zip.py +0 -0
  206. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/fs.py +0 -0
  207. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/github.py +0 -0
  208. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/gui.py +0 -0
  209. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/hub.py +0 -0
  210. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/invenio.py +0 -0
  211. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/julia.py +0 -0
  212. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/jupyter.py +0 -0
  213. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/jupyterlab/__init__.py +0 -0
  214. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/labextension/package.json +0 -0
  215. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/labextension/schemas/calkit/package.json.orig +0 -0
  216. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/labextension/schemas/calkit/plugin.json +0 -0
  217. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/labextension/static/502.9a2c5772a15466e923ef.js +0 -0
  218. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/labextension/static/695.2c41003a452d43d2b358.js +0 -0
  219. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/labextension/static/867.a42a046aa5108f54f8fb.js +0 -0
  220. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/labextension/static/909.e3f9cc3408834a7fdcc3.js +0 -0
  221. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/labextension/static/946.050af2abf7845cfbdbd2.js +0 -0
  222. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/labextension/static/946.050af2abf7845cfbdbd2.js.LICENSE.txt +0 -0
  223. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/labextension/static/b2f1c3efe70cb539d121.png +0 -0
  224. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/labextension/static/remoteEntry.ac9035764d5b2adbb542.js +0 -0
  225. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/labextension/static/style.js +0 -0
  226. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/labextension/static/third-party-licenses.json +0 -0
  227. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/licenses.py +0 -0
  228. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/magics.py +0 -0
  229. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/matlab.py +0 -0
  230. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/models/__init__.py +0 -0
  231. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/office.py +0 -0
  232. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/ops.py +0 -0
  233. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/releases.py +0 -0
  234. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/resources/README.md +0 -0
  235. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/resources/__init__.py +0 -0
  236. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/resources/devcontainer/Dockerfile +0 -0
  237. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/resources/devcontainer/README.md +0 -0
  238. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/resources/devcontainer/base.json +0 -0
  239. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/resources/devcontainer/devcontainer.json +0 -0
  240. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/resources/devcontainer/scripts/check-envs.sh +0 -0
  241. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/resources/devcontainer/scripts/post-create.sh +0 -0
  242. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/resources/devcontainer/scripts/post-start.sh +0 -0
  243. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/resources/devcontainer/scripts/update-content.sh +0 -0
  244. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/resources/github-actions/example.yml +0 -0
  245. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/resources/vscode/README.md +0 -0
  246. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/resources/vscode/extensions.json +0 -0
  247. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/resources/vscode/settings.json +0 -0
  248. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/server.py +0 -0
  249. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/templates/__init__.py +0 -0
  250. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/templates/core.py +0 -0
  251. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/templates/latex/__init__.py +0 -0
  252. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/templates/latex/article/paper.tex +0 -0
  253. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/templates/latex/core.py +0 -0
  254. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/templates/latex/jfm/jfm.bst +0 -0
  255. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/templates/latex/jfm/jfm.cls +0 -0
  256. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/templates/latex/jfm/lineno-FLM.sty +0 -0
  257. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/templates/latex/jfm/paper.tex +0 -0
  258. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/templates/latex/jfm/upmath.sty +0 -0
  259. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/__init__.py +0 -0
  260. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/__init__.py +0 -0
  261. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/main/__init__.py +0 -0
  262. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/main/test_lock.py +0 -0
  263. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/main/test_subprojects.py +0 -0
  264. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/main/test_xr.py +0 -0
  265. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/test_config.py +0 -0
  266. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/test_core.py +0 -0
  267. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/test_delete.py +0 -0
  268. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/test_describe.py +0 -0
  269. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/test_hub.py +0 -0
  270. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/test_import.py +0 -0
  271. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/test_latex.py +0 -0
  272. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/test_list.py +0 -0
  273. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/test_notebooks.py +0 -0
  274. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/test_scheduler.py +0 -0
  275. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/test_sync.py +0 -0
  276. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/cli/test_update.py +0 -0
  277. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/dvc/__init__.py +0 -0
  278. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/dvc/test_core.py +0 -0
  279. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/dvc/test_zip.py +0 -0
  280. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/jupyterlab/__init__.py +0 -0
  281. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/jupyterlab/conftest.py +0 -0
  282. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/jupyterlab/test_routes.py +0 -0
  283. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/models/__init__.py +0 -0
  284. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/models/test_iteration.py +0 -0
  285. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_calc.py +0 -0
  286. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_check.py +0 -0
  287. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_conda.py +0 -0
  288. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_config.py +0 -0
  289. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_detect.py +0 -0
  290. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_docker.py +0 -0
  291. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_fs.py +0 -0
  292. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_hub.py +0 -0
  293. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_install.py +0 -0
  294. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_invenio.py +0 -0
  295. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_julia.py +0 -0
  296. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_jupyter.py +0 -0
  297. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_keyring_windows.py +0 -0
  298. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_licenses.py +0 -0
  299. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_matlab.py +0 -0
  300. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_notebooks.py +0 -0
  301. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_overleaf.py +0 -0
  302. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_releases.py +0 -0
  303. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_resources.py +0 -0
  304. {calkit_python-0.43.0 → calkit_python-0.44.1}/calkit/tests/test_templates.py +0 -0
  305. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/CNAME +0 -0
  306. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/acknowledgements.md +0 -0
  307. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/ai-tools.md +0 -0
  308. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/browser-ext/index.md +0 -0
  309. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/browser-ext/privacy.md +0 -0
  310. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/calculations.md +0 -0
  311. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/cloud-integration.md +0 -0
  312. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/datasets.md +0 -0
  313. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/examples.md +0 -0
  314. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/governance.md +0 -0
  315. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/help.md +0 -0
  316. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/hpc.md +0 -0
  317. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/hub/index.md +0 -0
  318. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/hub/self-hosting.md +0 -0
  319. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/img/c-to-the-k-white.svg +0 -0
  320. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/img/calkit-fragmentation-compendium.png +0 -0
  321. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/img/calkit-no-bg.png +0 -0
  322. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/img/caltech.png +0 -0
  323. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/img/connect-zenodo.png +0 -0
  324. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/img/jupyterlab/all-green.png +0 -0
  325. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/img/jupyterlab/collect-data-stale.png +0 -0
  326. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/img/jupyterlab/new-env.png +0 -0
  327. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/img/jupyterlab/new-notebook.png +0 -0
  328. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/img/jupyterlab/pipeline-badge.png +0 -0
  329. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/img/jupyterlab-params.png +0 -0
  330. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/img/pipeline.png +0 -0
  331. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/img/plos-osi-code-2024-03.png +0 -0
  332. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/img/schmidt-sciences.png +0 -0
  333. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/img/vscode-nb-params.png +0 -0
  334. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/jupyterlab.md +0 -0
  335. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/latex.md +0 -0
  336. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/local-server.md +0 -0
  337. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/pipeline/manual-steps.md +0 -0
  338. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/pipeline/running-and-logging.md +0 -0
  339. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/questions.md +0 -0
  340. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/quickstart.md +0 -0
  341. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/references.md +0 -0
  342. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/releases.md +0 -0
  343. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/reproducibility.md +0 -0
  344. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/subprojects.md +0 -0
  345. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/ai-agents.md +0 -0
  346. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/conda-envs.md +0 -0
  347. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/existing-project.md +0 -0
  348. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/first-project.md +0 -0
  349. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/github-actions.md +0 -0
  350. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/actions-repo-secrets.png +0 -0
  351. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/latex-codespaces/building-codespace.png +0 -0
  352. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/latex-codespaces/codespaces-secrets-2.png +0 -0
  353. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/latex-codespaces/editor-split.png +0 -0
  354. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/latex-codespaces/go-to-linked-code.png +0 -0
  355. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/latex-codespaces/issue-from-selection.png +0 -0
  356. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/latex-codespaces/new-project.png +0 -0
  357. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/latex-codespaces/new-pub-2.png +0 -0
  358. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/latex-codespaces/new-token.png +0 -0
  359. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/latex-codespaces/paper.tex.png +0 -0
  360. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/latex-codespaces/project-home-3.png +0 -0
  361. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/latex-codespaces/push.png +0 -0
  362. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/latex-codespaces/stage.png +0 -0
  363. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/anakin-excel.jpg +0 -0
  364. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/chart-more-rows.png +0 -0
  365. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/create-project.png +0 -0
  366. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/elsevier-research-data-guidelines.png +0 -0
  367. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/excel-chart.png +0 -0
  368. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/excel-data.png +0 -0
  369. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/insert-link-to-file.png +0 -0
  370. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/needs-clone.png +0 -0
  371. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/new-stage.png +0 -0
  372. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/phd-comics-version-control.webp +0 -0
  373. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/pipeline-out-of-date.png +0 -0
  374. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/status-more-rows.png +0 -0
  375. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/uncommitted-changes.png +0 -0
  376. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/untracked-data.png +0 -0
  377. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/updated-publication.png +0 -0
  378. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/word-to-pdf-stage-2.png +0 -0
  379. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/office/workflow-page.png +0 -0
  380. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/openfoam/clone.png +0 -0
  381. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/openfoam/create-project.png +0 -0
  382. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/openfoam/datasets-page.png +0 -0
  383. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/openfoam/figure-on-website-updated.png +0 -0
  384. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/openfoam/figure-on-website.png +0 -0
  385. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/openfoam/new-token.png +0 -0
  386. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/openfoam/reclone.png +0 -0
  387. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/openfoam/status-after-import-dataset.png +0 -0
  388. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/quick-actions.png +0 -0
  389. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/run-proc.png +0 -0
  390. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/vscode-slurm-notebook/create-calkit-env.png +0 -0
  391. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/vscode-slurm-notebook/create-inner-env.png +0 -0
  392. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/vscode-slurm-notebook/create-new-calkit-env.png +0 -0
  393. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/vscode-slurm-notebook/select-calkit-env.png +0 -0
  394. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/vscode-slurm-notebook/slurm-job-running.png +0 -0
  395. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/vscode-slurm-notebook/slurm-launch-options.png +0 -0
  396. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/img/vscode-slurm-notebook/starting-slurm-job.png +0 -0
  397. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/index.md +0 -0
  398. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/jupyterlab.md +0 -0
  399. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/latex-codespaces.md +0 -0
  400. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/matlab.md +0 -0
  401. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/notebook-pipeline.md +0 -0
  402. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/office.md +0 -0
  403. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/openfoam.md +0 -0
  404. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/tutorials/vscode-slurm-notebook.md +0 -0
  405. {calkit_python-0.43.0 → calkit_python-0.44.1}/docs/version-control.md +0 -0
  406. {calkit_python-0.43.0 → calkit_python-0.44.1}/flake.lock +0 -0
  407. {calkit_python-0.43.0 → calkit_python-0.44.1}/flake.nix +0 -0
  408. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/.env.example +0 -0
  409. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/.gitattributes +0 -0
  410. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/.gitignore +0 -0
  411. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/.vscode/launch.json +0 -0
  412. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/LICENSE +0 -0
  413. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/Makefile +0 -0
  414. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/README.md +0 -0
  415. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/.gitignore +0 -0
  416. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/.python-version +0 -0
  417. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/Dockerfile +0 -0
  418. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/Makefile +0 -0
  419. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/alembic.ini +0 -0
  420. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/__init__.py +0 -0
  421. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/README +0 -0
  422. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/env.py +0 -0
  423. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/script.py.mako +0 -0
  424. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/.keep +0 -0
  425. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/07c8236476c4_add_fields_to_usertoken.py +0 -0
  426. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/10a05eaedfbd_add_dataset_table.py +0 -0
  427. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/1546aa334cd5_make_project_description_nullable.py +0 -0
  428. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/1a31ce608336_add_cascade_delete_relationships.py +0 -0
  429. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/1fb6e38eb0e9_add_deviceauth_table.py +0 -0
  430. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/208e7457f3ba_add_title_to_project.py +0 -0
  431. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/2e7c25a00842_add_is_public_to_project.py +0 -0
  432. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/38e178698db2_update_subscription_model_to_use_plan_.py +0 -0
  433. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/3b1e67e9c318_add_usertoken_table.py +0 -0
  434. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/4dac15c0282a_add_stripe_customer_id_to_user.py +0 -0
  435. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/4e1c917fcca4_add_status_columns_to_project_table.py +0 -0
  436. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/5ba89308431f_add_project_table.py +0 -0
  437. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/5d6f8217c890_add_subscriber_user_id_to_org_.py +0 -0
  438. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/65b2d15cc702_add_github_username_field_to_user.py +0 -0
  439. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/697c3c1a8a27_add_git_repo_url_to_project.py +0 -0
  440. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/6f3a3afbea8b_add_number_field_to_question.py +0 -0
  441. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/7076d9b5c887_use_account_for_project_owner.py +0 -0
  442. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/71e1d1e69bbd_add_table_for_storing_user_github_tokens.py +0 -0
  443. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/799476973bce_add_created_ts_to_user_github_token_.py +0 -0
  444. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/7cacee34034c_add_parent_child_relationship_to_.py +0 -0
  445. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/9c0a54914c78_add_max_length_for_string_varchar_.py +0 -0
  446. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/9c4f70636d73_add_fields_to_usertoken.py +0 -0
  447. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/a333fc5aa994_index_project_folders_synced_with_.py +0 -0
  448. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/a4af19842927_create_table_to_store_user_zenodo_tokens.py +0 -0
  449. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/ab7816be480b_drop_items.py +0 -0
  450. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/ac622559475f_save_timestamps_for_github_token_.py +0 -0
  451. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/af024967630d_lowercase_account_names.py +0 -0
  452. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/c1f9a3e27d48_consolidate_comment_tables.py +0 -0
  453. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/c46a78ba506c_add_created_column_to_account.py +0 -0
  454. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/c749b39072d3_add_figurecomment.py +0 -0
  455. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/c7c41c3f0d22_add_user_external_credential_table.py +0 -0
  456. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/d01ce914143d_make_question_a_table.py +0 -0
  457. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/d21ed1c9537e_add_zenodo_user_id_column_to_user.py +0 -0
  458. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/d3a8021fb433_add_table_for_user_project_access.py +0 -0
  459. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/d4e5f6a7b8c9_ghless_membership_and_invitations.py +0 -0
  460. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/d6366015af35_add_discount_code_table.py +0 -0
  461. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/d98dd8ec85a3_edit_replace_id_integers_in_all_models_.py +0 -0
  462. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/dcef842dee10_add_refreshtoken_table.py +0 -0
  463. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/e1b0fa2a6d34_backfill_external_credentials_from_legacy_.py +0 -0
  464. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/e2412789c190_initialize_models.py +0 -0
  465. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/e7671197c00b_add_account_table.py +0 -0
  466. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/ed74edb0a9e6_create_table_for_user_overleaf_token.py +0 -0
  467. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/edcabfca98df_add_subscription_and_org_membership_.py +0 -0
  468. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/f0e23e048b1b_add_fields_to_project.py +0 -0
  469. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/f3a9c1b7e240_add_releases_feature.py +0 -0
  470. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/f5ad6445ad03_enable_user_project_access_to_be_null.py +0 -0
  471. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/alembic/versions/f74a96172dbd_add_table_for_locking_project_files.py +0 -0
  472. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/__init__.py +0 -0
  473. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/deps.py +0 -0
  474. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/main.py +0 -0
  475. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/routes/__init__.py +0 -0
  476. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/routes/accounts.py +0 -0
  477. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/routes/datasets.py +0 -0
  478. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/routes/feature_votes.py +0 -0
  479. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/routes/login.py +0 -0
  480. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/routes/misc.py +0 -0
  481. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/routes/orgs.py +0 -0
  482. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/routes/projects/__init__.py +0 -0
  483. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/routes/projects/dvc.py +0 -0
  484. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/routes/projects/fs.py +0 -0
  485. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/routes/projects/releases.py +0 -0
  486. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/routes/references.py +0 -0
  487. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/api/routes/users.py +0 -0
  488. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/arxiv.py +0 -0
  489. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/client.py +0 -0
  490. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/config.py +0 -0
  491. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/core.py +0 -0
  492. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/db.py +0 -0
  493. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/dvc.py +0 -0
  494. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/email-templates/build/new_account.html +0 -0
  495. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/email-templates/build/project_invitation.html +0 -0
  496. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/email-templates/build/release_share.html +0 -0
  497. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/email-templates/build/reset_password.html +0 -0
  498. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/email-templates/build/test_email.html +0 -0
  499. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/email-templates/src/new_account.mjml +0 -0
  500. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/email-templates/src/project_invitation.mjml +0 -0
  501. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/email-templates/src/release_share.mjml +0 -0
  502. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/email-templates/src/reset_password.mjml +0 -0
  503. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/email-templates/src/test_email.mjml +0 -0
  504. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/github.py +0 -0
  505. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/main.py +0 -0
  506. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/messaging.py +0 -0
  507. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/mixpanel.py +0 -0
  508. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/models/__init__.py +0 -0
  509. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/models/projects.py +0 -0
  510. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/models/releases.py +0 -0
  511. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/orgs.py +0 -0
  512. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/pdftext.py +0 -0
  513. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/security.py +0 -0
  514. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/storage.py +0 -0
  515. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/stripe.py +0 -0
  516. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/subscriptions.py +0 -0
  517. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/__init__.py +0 -0
  518. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/api/__init__.py +0 -0
  519. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/api/routes/__init__.py +0 -0
  520. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/api/routes/projects/__init__.py +0 -0
  521. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/api/routes/projects/test_dvc.py +0 -0
  522. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/api/routes/projects/test_fs.py +0 -0
  523. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/api/routes/projects/test_overleaf_links.py +0 -0
  524. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/api/routes/test_feature_votes.py +0 -0
  525. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/api/routes/test_login.py +0 -0
  526. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/api/routes/test_misc.py +0 -0
  527. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/api/routes/test_releases.py +0 -0
  528. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/api/routes/test_users.py +0 -0
  529. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/conftest.py +0 -0
  530. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/test_arxiv.py +0 -0
  531. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/test_client.py +0 -0
  532. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/test_core.py +0 -0
  533. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/test_db.py +0 -0
  534. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/test_dvc.py +0 -0
  535. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/test_git.py +0 -0
  536. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/test_pdftext.py +0 -0
  537. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/test_projects.py +0 -0
  538. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/test_users.py +0 -0
  539. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/tests/test_version.py +0 -0
  540. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/users.py +0 -0
  541. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/version.py +0 -0
  542. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/zenodo.py +0 -0
  543. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/app/zotero.py +0 -0
  544. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/pyproject.toml +0 -0
  545. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/scripts/backend-pre-start.py +0 -0
  546. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/scripts/create-initial-data.py +0 -0
  547. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/scripts/format.sh +0 -0
  548. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/scripts/generate-client.py +0 -0
  549. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/scripts/lint.sh +0 -0
  550. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/scripts/rotate-fernet-secrets.py +0 -0
  551. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/scripts/test.sh +0 -0
  552. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/backend/tests-start.sh +0 -0
  553. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/config/alloy/config.alloy +0 -0
  554. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/config/grafana/provisioning/dashboards/dashboards.yml +0 -0
  555. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/config/grafana/provisioning/dashboards/fastapi.json +0 -0
  556. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/config/grafana/provisioning/datasources/datasources.yml +0 -0
  557. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/config/loki/loki.yml +0 -0
  558. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/config/prometheus/prometheus.yml +0 -0
  559. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/docker-compose.override.yml +0 -0
  560. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/docker-compose.traefik.yml +0 -0
  561. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/docker-compose.yml +0 -0
  562. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/docs/dev/database-migrations.md +0 -0
  563. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/docs/dev/deployment.md +0 -0
  564. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/docs/dev/development.md +0 -0
  565. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/.dockerignore +0 -0
  566. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/.gitignore +0 -0
  567. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/.nvmrc +0 -0
  568. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/Dockerfile +0 -0
  569. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/README.md +0 -0
  570. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/biome.json +0 -0
  571. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/index.html +0 -0
  572. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/modify-openapi-operationids.js +0 -0
  573. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/nginx-backend-not-found.conf +0 -0
  574. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/nginx.conf +0 -0
  575. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/openapi-ts.config.ts +0 -0
  576. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/package-lock.json +0 -0
  577. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/package.json +0 -0
  578. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/playwright.config.ts +0 -0
  579. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/public/assets/images/c-to-the-k.svg +0 -0
  580. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/public/assets/images/calkit-no-bg.svg +0 -0
  581. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/public/assets/images/calkit.svg +0 -0
  582. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/public/assets/images/fastapi-logo.svg +0 -0
  583. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/public/assets/images/favicon.png +0 -0
  584. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/public/assets/images/kdot.svg +0 -0
  585. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/public/tex/.gitignore +0 -0
  586. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/public/tex/LICENSE-busytex +0 -0
  587. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/public/tex/busytex.js +0 -0
  588. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/public/tex/busytex.wasm +0 -0
  589. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/public/tex/busytex_pipeline.js +0 -0
  590. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/public/tex/busytex_worker.js +0 -0
  591. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/scripts/download-tex-engine.sh +0 -0
  592. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/client/client.gen.ts +0 -0
  593. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/client/index.ts +0 -0
  594. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/client/types.gen.ts +0 -0
  595. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/client/utils.gen.ts +0 -0
  596. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/client.gen.ts +0 -0
  597. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/core/auth.gen.ts +0 -0
  598. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/core/bodySerializer.gen.ts +0 -0
  599. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/core/params.gen.ts +0 -0
  600. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/core/pathSerializer.gen.ts +0 -0
  601. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/core/queryKeySerializer.gen.ts +0 -0
  602. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/core/serverSentEvents.gen.ts +0 -0
  603. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/core/types.gen.ts +0 -0
  604. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/client/core/utils.gen.ts +0 -0
  605. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Admin/AddUser.tsx +0 -0
  606. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Admin/EditUser.tsx +0 -0
  607. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/ActionsMenu.tsx +0 -0
  608. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/ClearableInput.tsx +0 -0
  609. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/CodeEditorPane.tsx +0 -0
  610. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/CommentsPanel.tsx +0 -0
  611. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/ConnectGitHubPrompt.tsx +0 -0
  612. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/ConnectZoteroPrompt.tsx +0 -0
  613. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/DeleteAlert.tsx +0 -0
  614. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/GlobalSearch.tsx +0 -0
  615. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/LoadingSpinner.tsx +0 -0
  616. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/Mermaid.tsx +0 -0
  617. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/Navbar.tsx +0 -0
  618. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/NotBuiltAlert.tsx +0 -0
  619. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/NotFound.tsx +0 -0
  620. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/NotificationBell.tsx +0 -0
  621. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/PageMenu.tsx +0 -0
  622. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/PdfCanvas.tsx +0 -0
  623. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/PdfDocumentViewer.tsx +0 -0
  624. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/ProjectCommandPalette.tsx +0 -0
  625. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/RefPicker.tsx +0 -0
  626. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/Sidebar.tsx +0 -0
  627. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/Tooltip.tsx +0 -0
  628. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/Topbar.tsx +0 -0
  629. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Common/UserMenu.tsx +0 -0
  630. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Datasets/DatasetFromExisting.tsx +0 -0
  631. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Datasets/UploadDataset.tsx +0 -0
  632. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Environments/ViewEnvironment.tsx +0 -0
  633. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Figures/FigureFromExisting.tsx +0 -0
  634. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Figures/FigureView.tsx +0 -0
  635. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Figures/UploadFigure.tsx +0 -0
  636. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Files/EditFileInfo.tsx +0 -0
  637. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Files/FileContent.tsx +0 -0
  638. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Files/FileEditorModal.tsx +0 -0
  639. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Files/SelectedItemInfo.tsx +0 -0
  640. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Files/UploadFile.tsx +0 -0
  641. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Local/AddPath.tsx +0 -0
  642. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Local/DiscardChanges.tsx +0 -0
  643. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Local/IgnorePath.tsx +0 -0
  644. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Local/NewStage.tsx +0 -0
  645. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Local/SaveFiles.tsx +0 -0
  646. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Notebooks/NotebookView.tsx +0 -0
  647. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Orgs/AddMember.tsx +0 -0
  648. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Orgs/NewOrg.tsx +0 -0
  649. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Pipeline/StageEditorModal.tsx +0 -0
  650. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Presentations/PresentationView.tsx +0 -0
  651. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Projects/AddCollaborator.tsx +0 -0
  652. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Projects/CloneProject.tsx +0 -0
  653. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Projects/CreateIssue.tsx +0 -0
  654. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Projects/CreateQuestion.tsx +0 -0
  655. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Projects/EditProject.tsx +0 -0
  656. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Projects/HelpContent.tsx +0 -0
  657. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Projects/InviteLinks.tsx +0 -0
  658. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Projects/MakeProjectPublic.tsx +0 -0
  659. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Projects/NewProject.tsx +0 -0
  660. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Projects/ProjectShowcase.tsx +0 -0
  661. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Projects/ProjectStatus.tsx +0 -0
  662. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Publications/ImportOverleaf.tsx +0 -0
  663. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Publications/LatexEditor.tsx +0 -0
  664. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Publications/NewPublication.tsx +0 -0
  665. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Publications/PdfAnnotator.tsx +0 -0
  666. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Publications/PublicationView.tsx +0 -0
  667. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/References/DeleteReferenceItemDialog.tsx +0 -0
  668. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/References/DeleteReferencesCollectionDialog.tsx +0 -0
  669. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/References/EditReferenceItemModal.tsx +0 -0
  670. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/References/FileViewModal.tsx +0 -0
  671. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/References/ImportFromZoteroModal.tsx +0 -0
  672. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/References/LabelExistingReferences.tsx +0 -0
  673. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/References/NewReferencesCollection.tsx +0 -0
  674. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/References/ReferenceItemModal.tsx +0 -0
  675. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/References/ReferencesInfoPanel.tsx +0 -0
  676. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Releases/ArtifactReleasesPanel.tsx +0 -0
  677. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Releases/NewRelease.tsx +0 -0
  678. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Releases/PathPicker.tsx +0 -0
  679. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Releases/ReleasePdfAnnotator.tsx +0 -0
  680. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Releases/ReleaseViewer.tsx +0 -0
  681. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Releases/ReleasesTable.tsx +0 -0
  682. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Releases/ShareDialog.tsx +0 -0
  683. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/Releases/releaseSort.ts +0 -0
  684. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/UserSettings/Appearance.tsx +0 -0
  685. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/UserSettings/ChangePassword.tsx +0 -0
  686. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/UserSettings/ConnectedAccounts.tsx +0 -0
  687. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/UserSettings/DeleteAccount.tsx +0 -0
  688. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/UserSettings/DeleteConfirmation.tsx +0 -0
  689. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/UserSettings/NewToken.tsx +0 -0
  690. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/UserSettings/PickSubscription.tsx +0 -0
  691. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/UserSettings/Subscription.tsx +0 -0
  692. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/UserSettings/UpdateOverleafToken.tsx +0 -0
  693. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/UserSettings/UserInformation.tsx +0 -0
  694. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/components/UserSettings/UserTokens.tsx +0 -0
  695. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/hooks/useAuth.ts +0 -0
  696. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/hooks/useCustomToast.ts +0 -0
  697. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/analytics.test.ts +0 -0
  698. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/analytics.ts +0 -0
  699. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/api.test.ts +0 -0
  700. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/api.ts +0 -0
  701. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/auth.test.ts +0 -0
  702. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/auth.ts +0 -0
  703. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/bibtex.test.ts +0 -0
  704. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/bibtex.ts +0 -0
  705. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/core.ts +0 -0
  706. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/errors.ts +0 -0
  707. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/github.test.ts +0 -0
  708. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/github.ts +0 -0
  709. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/google.ts +0 -0
  710. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/keyboard.ts +0 -0
  711. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/latexCompiler.ts +0 -0
  712. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/latexProject.mapPaths.test.ts +0 -0
  713. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/latexProject.test.ts +0 -0
  714. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/latexProject.ts +0 -0
  715. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/layout.ts +0 -0
  716. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/pipelineYaml.test.ts +0 -0
  717. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/pipelineYaml.ts +0 -0
  718. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/releases.ts +0 -0
  719. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/staleChunks.test.ts +0 -0
  720. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/staleChunks.ts +0 -0
  721. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/strings.test.ts +0 -0
  722. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/strings.ts +0 -0
  723. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/zenodo.ts +0 -0
  724. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/lib/zotero.ts +0 -0
  725. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/main.tsx +0 -0
  726. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/__root.tsx +0 -0
  727. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/app.tsx +0 -0
  728. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/apps/$appName.tsx +0 -0
  729. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/apps/index.tsx +0 -0
  730. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/apps.tsx +0 -0
  731. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/collaborators.tsx +0 -0
  732. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/datasets.tsx +0 -0
  733. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/environments.tsx +0 -0
  734. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/files.tsx +0 -0
  735. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/history.tsx +0 -0
  736. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/local.tsx +0 -0
  737. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/notebooks.tsx +0 -0
  738. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/pipeline.tsx +0 -0
  739. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/presentations.tsx +0 -0
  740. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/publications.tsx +0 -0
  741. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/references.tsx +0 -0
  742. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/releases.tsx +0 -0
  743. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout/software.tsx +0 -0
  744. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/_layout.tsx +0 -0
  745. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/$projectName/releases/$releaseName.tsx +0 -0
  746. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/$accountName/index.tsx +0 -0
  747. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/admin.tsx +0 -0
  748. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/datasets.tsx +0 -0
  749. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/index.tsx +0 -0
  750. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/learn.tsx +0 -0
  751. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/orgs.tsx +0 -0
  752. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/projects.tsx +0 -0
  753. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout/settings.tsx +0 -0
  754. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/_layout.tsx +0 -0
  755. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/auth/google.tsx +0 -0
  756. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/auth/zenodo.tsx +0 -0
  757. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/auth/zotero.tsx +0 -0
  758. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/checkout.tsx +0 -0
  759. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/join/$token.tsx +0 -0
  760. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/login/device.tsx +0 -0
  761. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/login/index.tsx +0 -0
  762. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/recover-password.tsx +0 -0
  763. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/reset-password.tsx +0 -0
  764. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/routes/signup.tsx +0 -0
  765. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/theme.tsx +0 -0
  766. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/src/vite-env.d.ts +0 -0
  767. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/tests/auth.setup.ts +0 -0
  768. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/tests/config.ts +0 -0
  769. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/tests/figures-pagination.spec.ts +0 -0
  770. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/tests/login.spec.ts +0 -0
  771. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/tests/reset-password.spec.ts +0 -0
  772. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/tests/user-settings.spec.ts +0 -0
  773. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/tests/utils/mailcatcher.ts +0 -0
  774. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/tests/utils/random.ts +0 -0
  775. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/tests/utils/user.ts +0 -0
  776. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/tsconfig.json +0 -0
  777. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/tsconfig.node.json +0 -0
  778. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/vite.config.ts +0 -0
  779. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/frontend/vitest.config.ts +0 -0
  780. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/scripts/build-push.sh +0 -0
  781. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/scripts/build.sh +0 -0
  782. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/scripts/deploy.sh +0 -0
  783. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/scripts/pem-to-env.sh +0 -0
  784. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/scripts/test-local.sh +0 -0
  785. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/scripts/test.sh +0 -0
  786. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/texmf-proxy/Dockerfile +0 -0
  787. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/texmf-proxy/README.md +0 -0
  788. {calkit_python-0.43.0 → calkit_python-0.44.1}/hub/texmf-proxy/proxy.py +0 -0
  789. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/.yarnrc.yml +0 -0
  790. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/babel.config.js +0 -0
  791. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/install.json +0 -0
  792. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/jest.config.js +0 -0
  793. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/jupyter-config/server-config/calkit.json +0 -0
  794. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/package.json +0 -0
  795. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/schema/plugin.json +0 -0
  796. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/__tests__/useQueries.spec.ts +0 -0
  797. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/calkit-config.ts +0 -0
  798. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/cell-output-marker.ts +0 -0
  799. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/components/commit-dialog.tsx +0 -0
  800. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/components/environment-editor.tsx +0 -0
  801. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/components/notebook-registration.tsx +0 -0
  802. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/components/notebook-toolbar.tsx +0 -0
  803. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/components/pipeline-status-bar.tsx +0 -0
  804. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/components/project-info-editor.tsx +0 -0
  805. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/components/sidebar-settings.tsx +0 -0
  806. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/components/sidebar.tsx +0 -0
  807. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/components/stage-editor.tsx +0 -0
  808. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/feature-flags.ts +0 -0
  809. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/file-browser-menu.ts +0 -0
  810. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/hooks/__tests__/useQueries.test.tsx +0 -0
  811. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/hooks/useQueries.ts +0 -0
  812. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/icons.ts +0 -0
  813. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/index.ts +0 -0
  814. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/io-tracker.ts +0 -0
  815. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/pipeline-state.ts +0 -0
  816. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/queryClient.ts +0 -0
  817. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/request.ts +0 -0
  818. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/src/shims-mainmenu.d.ts +0 -0
  819. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/style/base.css +0 -0
  820. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/style/cell-output-marker.css +0 -0
  821. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/style/environment-editor.css +0 -0
  822. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/style/environment-selector.css +0 -0
  823. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/style/img/calkit-no-bg.png +0 -0
  824. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/style/index.css +0 -0
  825. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/style/index.js +0 -0
  826. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/style/notebook-toolbar.css +0 -0
  827. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/style/pipeline-status-bar.css +0 -0
  828. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/style/sidebar.css +0 -0
  829. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/tsconfig.json +0 -0
  830. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/tsconfig.test.json +0 -0
  831. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/ui-tests/.gitignore +0 -0
  832. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/ui-tests/README.md +0 -0
  833. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/ui-tests/jupyter_server_test_config.py +0 -0
  834. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/ui-tests/package.json +0 -0
  835. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/ui-tests/playwright.config.js +0 -0
  836. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/ui-tests/tests/calkit.spec.ts +0 -0
  837. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/ui-tests/yarn.lock +0 -0
  838. {calkit_python-0.43.0 → calkit_python-0.44.1}/jupyterlab-ext/yarn.lock +0 -0
  839. {calkit_python-0.43.0 → calkit_python-0.44.1}/scripts/install.ps1 +0 -0
  840. {calkit_python-0.43.0 → calkit_python-0.44.1}/scripts/install.sh +0 -0
  841. {calkit_python-0.43.0 → calkit_python-0.44.1}/scripts/make-calk9.sh +0 -0
  842. {calkit_python-0.43.0 → calkit_python-0.44.1}/scripts/sync-docs.py +0 -0
  843. {calkit_python-0.43.0 → calkit_python-0.44.1}/scripts/sync-resources.py +0 -0
  844. {calkit_python-0.43.0 → calkit_python-0.44.1}/test/dvc-md5-dir/osx-arm64.txt +0 -0
  845. {calkit_python-0.43.0 → calkit_python-0.44.1}/test/nb-julia.ipynb +0 -0
  846. {calkit_python-0.43.0 → calkit_python-0.44.1}/test/nb-params.ipynb +0 -0
  847. {calkit_python-0.43.0 → calkit_python-0.44.1}/test/nb-subdir.ipynb +0 -0
  848. {calkit_python-0.43.0 → calkit_python-0.44.1}/test/pipeline.ipynb +0 -0
  849. {calkit_python-0.43.0 → calkit_python-0.44.1}/test/script.py +0 -0
  850. {calkit_python-0.43.0 → calkit_python-0.44.1}/test/test-log.log +0 -0
  851. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/.vscodeignore +0 -0
  852. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/LICENSE +0 -0
  853. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/README.md +0 -0
  854. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/images/calkit-icon.svg +0 -0
  855. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/images/calkit-no-bg.png +0 -0
  856. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/package-lock.json +0 -0
  857. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/scripts/set-proposed-api.js +0 -0
  858. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/src/figures/core.ts +0 -0
  859. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/src/figures/view.ts +0 -0
  860. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/src/notebooks.ts +0 -0
  861. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/src/pipeline/core.ts +0 -0
  862. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/src/sidebar.ts +0 -0
  863. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/src/test/figures.test.ts +0 -0
  864. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/src/test/notebooks.test.ts +0 -0
  865. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/src/test/pipeline.test.ts +0 -0
  866. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/src/test/sidebar.test.ts +0 -0
  867. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/src/types.ts +0 -0
  868. {calkit_python-0.43.0 → calkit_python-0.44.1}/vscode-ext/tsconfig.json +0 -0
@@ -1,3 +1,6 @@
1
1
  [submodule "examples/basic"]
2
2
  path = examples/basic
3
3
  url = https://github.com/calkit/example-basic.git
4
+ [submodule "examples/ssh"]
5
+ path = examples/ssh
6
+ url = git@github.com:calkit/example-ssh.git
@@ -27,6 +27,15 @@ This guide will help you get started.
27
27
  - [Miniforge](https://conda-forge.org/download/)
28
28
  - [uv](https://docs.astral.sh/uv/getting-started/installation/)
29
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.
30
39
  1. **Run tests** to ensure everything is working:
31
40
  ```bash
32
41
  uv run pytest
@@ -6,7 +6,10 @@ help: ## Show this help.
6
6
  .PHONY: install
7
7
  install: ## Create the project's virtual environment.
8
8
  @echo "🚀 Creating virtual environment"
9
- @uv sync
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
10
13
 
11
14
  .PHONY: dev
12
15
  dev: ## Start up the hub containers for development.
@@ -44,13 +47,23 @@ test-cov: ## Test the code coverage with pytest.
44
47
  test-docs: sync-docs ## Test if documentation can be built without warnings or errors.
45
48
  @uv run mkdocs build -s
46
49
 
50
+ .PHONY: schema
51
+ schema: ## Generate the published JSON schema for calkit.yaml.
52
+ @echo "🚀 Generating calkit.yaml JSON schema"
53
+ @uv run calkit describe schema -o docs/schemas/calkit.json
54
+ @cp docs/schemas/calkit.json vscode-ext/schemas/calkit.json
55
+
47
56
  .PHONY: sync-docs
48
- sync-docs: ## Sync documentation content from docs/*.md into README.md.
57
+ sync-docs: schema ## Sync documentation content from docs/*.md into README.md.
49
58
  @echo "🚀 Generating docs references"
50
59
  @uv run python scripts/generate-docs-references.py
51
60
  @echo "🚀 Syncing documentation"
52
61
  @uv run python scripts/sync-docs.py
53
62
 
63
+ .PHONY: unreleased
64
+ unreleased: ## List each product's commits since its last release.
65
+ @uv run python scripts/list-changes.py
66
+
54
67
  .PHONY: sync-resources
55
68
  sync-resources: ## Regenerate the dev container spec from the VS Code config.
56
69
  @echo "🚀 Syncing project resources"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.5
2
2
  Name: calkit-python
3
- Version: 0.43.0
3
+ Version: 0.44.1
4
4
  Summary: Reproducibility simplified.
5
5
  Project-URL: Homepage, https://calkit.org
6
6
  Project-URL: Issues, https://github.com/calkit/calkit/issues
@@ -96,7 +96,7 @@ without the cognitive overhead.
96
96
 
97
97
  <!-- https://docs.google.com/drawings/d/1XMGnbgYYNFAVUBDyUaCyLfRB7efvJdrnrKmFlNmT19o/edit -->
98
98
 
99
- ![pipeline](docs/img/pipeline.png)
99
+ ![pipeline](https://docs.calkit.org/img/pipeline.png)
100
100
 
101
101
  ## Features
102
102
 
@@ -261,7 +261,7 @@ This re-execs the CLI via `uvx --from calkit-python@<version> calkit`,
261
261
  so it requires [uv](https://docs.astral.sh/uv/) on `PATH`.
262
262
  You can also declare a minimum version in `calkit.yaml`;
263
263
  see
264
- [Pinning the Calkit CLI version](https://docs.calkit.org/dependencies.md#pinning-the-calkit-cli-version).
264
+ [Pinning the Calkit CLI version](https://docs.calkit.org/requirements.md#pinning-the-calkit-cli-version).
265
265
 
266
266
  ### Calkit Assistant
267
267
 
@@ -37,7 +37,7 @@ without the cognitive overhead.
37
37
 
38
38
  <!-- https://docs.google.com/drawings/d/1XMGnbgYYNFAVUBDyUaCyLfRB7efvJdrnrKmFlNmT19o/edit -->
39
39
 
40
- ![pipeline](docs/img/pipeline.png)
40
+ ![pipeline](https://docs.calkit.org/img/pipeline.png)
41
41
 
42
42
  ## Features
43
43
 
@@ -202,7 +202,7 @@ This re-execs the CLI via `uvx --from calkit-python@<version> calkit`,
202
202
  so it requires [uv](https://docs.astral.sh/uv/) on `PATH`.
203
203
  You can also declare a minimum version in `calkit.yaml`;
204
204
  see
205
- [Pinning the Calkit CLI version](https://docs.calkit.org/dependencies.md#pinning-the-calkit-cli-version).
205
+ [Pinning the Calkit CLI version](https://docs.calkit.org/requirements.md#pinning-the-calkit-cli-version).
206
206
 
207
207
  ### Calkit Assistant
208
208
 
@@ -18,6 +18,10 @@ is `calkit.yaml`, the project's metadata database.
18
18
 
19
19
  `calkit.yaml` lives at the repo root and contains:
20
20
 
21
+ - `requirements`—what must be true of the machine before anything runs
22
+ (apps on `PATH`, environmental variables, setup steps, machine
23
+ properties like CPU count); formerly called `dependencies`, which
24
+ still works
21
25
  - `environments`—computational environments (Python venvs, Conda, Docker,
22
26
  R, Julia, MATLAB, etc.)
23
27
  - `pipeline.stages`—the reproducible pipeline
@@ -39,6 +39,7 @@ if TYPE_CHECKING:
39
39
  pipeline,
40
40
  releases,
41
41
  resources,
42
+ schema,
42
43
  server,
43
44
  templates,
44
45
  )
@@ -78,6 +79,7 @@ _SUBMODULES = {
78
79
  "install",
79
80
  "magics",
80
81
  "ops",
82
+ "schema",
81
83
  "server",
82
84
  }
83
85
 
@@ -2,11 +2,9 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
- from typing import Literal
5
+ from typing import Annotated, Literal
6
6
 
7
- import arithmetic_eval
8
- import requests
9
- from pydantic import BaseModel, model_validator
7
+ from pydantic import BaseModel, Discriminator, model_validator
10
8
 
11
9
  DTYPES = {"int": int, "float": float, "str": str}
12
10
  DEFAULT_IN_TYPE = "float"
@@ -131,10 +129,12 @@ class FormulaParams(BaseModel):
131
129
 
132
130
 
133
131
  class Formula(Calculation):
134
- kind: str = "formula"
132
+ kind: Literal["formula"] = "formula"
135
133
  params: FormulaParams
136
134
 
137
135
  def calculate(self, **inputs):
136
+ import arithmetic_eval
137
+
138
138
  inputs = self.check_inputs(**inputs)
139
139
  return arithmetic_eval.evaluate(self.params.formula, inputs)
140
140
 
@@ -147,7 +147,7 @@ class LinearParams(BaseModel):
147
147
  class Linear(Calculation):
148
148
  """Calculation for a simple linear relationship."""
149
149
 
150
- kind: str = "linear"
150
+ kind: Literal["linear"] = "linear"
151
151
  params: LinearParams
152
152
 
153
153
  @model_validator(mode="after")
@@ -172,7 +172,7 @@ class LookupTableParams(BaseModel):
172
172
  class LookupTable(Calculation):
173
173
  """A 1-D lookup table."""
174
174
 
175
- kind: str = "lookup-table"
175
+ kind: Literal["lookup-table"] = "lookup-table"
176
176
  params: LookupTableParams
177
177
 
178
178
 
@@ -191,15 +191,17 @@ class HttpRequest(Calculation):
191
191
  sensitive data.
192
192
  """
193
193
 
194
- kind: str = "http"
194
+ kind: Literal["http"] = "http"
195
195
  params: HttpRequestParams
196
196
 
197
197
  def calculate(self, **inputs):
198
+ import requests
199
+
198
200
  func = getattr(requests, self.params.method)
199
201
  if self.params.inputs_as_params:
200
202
  kws = {"params": inputs}
201
203
  else:
202
- kws = {"json", inputs}
204
+ kws = {"json": inputs}
203
205
  resp: requests.Response = func(url=self.params.url, **kws)
204
206
  resp.raise_for_status()
205
207
  if self.params.as_json:
@@ -222,7 +224,7 @@ class XGBoostModel(Calculation):
222
224
  ``predict`` method.
223
225
  """
224
226
 
225
- kind: str = "xgboost"
227
+ kind: Literal["xgboost"] = "xgboost"
226
228
  params: XGBoostModelParams
227
229
 
228
230
  def calculate(self, **inputs):
@@ -239,6 +241,13 @@ class XGBoostModel(Calculation):
239
241
  return model.predict(**inputs)
240
242
 
241
243
 
244
+ # The calculation kinds that ``parse`` can run, as a discriminated union so
245
+ # ``calkit.yaml`` gets per-kind validation and autocompletion of ``params``
246
+ CalculationType = Annotated[
247
+ Formula | Linear | LookupTable, Discriminator("kind")
248
+ ]
249
+
250
+
242
251
  def parse(data: dict) -> Calculation:
243
252
  if isinstance(data, BaseModel):
244
253
  data = data.model_dump()
@@ -206,7 +206,7 @@ def check_reproducibility(
206
206
  else:
207
207
  res["has_readme"] = False
208
208
  res["instructions_in_readme"] = False
209
- ck_info = calkit.load_calkit_info(wdir=wdir, process_includes=False)
209
+ ck_info = calkit.load_calkit_info(wdir=wdir)
210
210
  pipeline = calkit.dvc.read_pipeline(wdir=wdir)
211
211
  # Check for non-imported artifacts not produced by the pipeline
212
212
  for artifact_type in ["datasets", "figures", "publications"]:
@@ -324,10 +324,11 @@ def check_environment(
324
324
  get_default_venv_prefix,
325
325
  get_env_lock_fpath,
326
326
  write_scheduler_env_lock,
327
+ write_system_env_lock,
327
328
  )
328
329
 
329
330
  dotenv.load_dotenv(dotenv_path=".env", verbose=verbose)
330
- ck_info = calkit.load_calkit_info(process_includes="environments")
331
+ ck_info = calkit.load_calkit_info()
331
332
  envs = ck_info.get("environments", {})
332
333
  if not envs:
333
334
  raise_error("No environments defined in calkit.yaml")
@@ -434,12 +435,6 @@ def check_environment(
434
435
  alt_lock_fpaths=alt_lock_fpaths,
435
436
  verbose=verbose,
436
437
  )
437
- elif env["kind"] == "ssh":
438
- # TODO: How to check SSH environments?
439
- # Maybe just check that we can connect
440
- raise_error(
441
- "Environment checking not implemented for SSH environments"
442
- )
443
438
  elif env["kind"] == "renv":
444
439
  env_path = env.get("path")
445
440
  if env_path is None:
@@ -473,6 +468,104 @@ def check_environment(
473
468
  # env config so DVC stages that depend on the env get invalidated
474
469
  # when the config changes.
475
470
  write_scheduler_env_lock(env_name=env_name, env=env)
471
+ elif env["kind"] == "system":
472
+ # Nothing is installed or built for a system env; checking it means
473
+ # making sure the machine is as the project requires, then reading
474
+ # the properties it declared it depends on and recording them, so
475
+ # stages depending on the env see them change.
476
+ if calkit.environments.env_is_local(env):
477
+ try:
478
+ calkit.check_requirements(
479
+ requirements=env.get("requirements", [])
480
+ )
481
+ write_system_env_lock(env_name=env_name, env=env)
482
+ except ValueError as e:
483
+ # A requirement that isn't met, or a property that can't be
484
+ # locked -- a misspelled one, or a tool that isn't
485
+ # installed. Both are the user's to fix. The remote branch
486
+ # below already reports these; this one used to let them
487
+ # out as a traceback.
488
+ raise_error(f"Environment '{env_name}': {e}")
489
+ else:
490
+ # For a host that isn't this one, checking means getting to the
491
+ # point where we can actually reach it -- better sorted out here
492
+ # than partway through a pipeline -- and reading the properties
493
+ # from that machine, since those are the ones the results
494
+ # depend on.
495
+ import calkit.workspace as workspace
496
+ from calkit.dependencies import _is_interactive
497
+
498
+ interactive = _is_interactive()
499
+ ck_info = calkit.load_calkit_info()
500
+ try:
501
+ # Anything written as ${CK_SSH_HOST} is the first thing to
502
+ # be missing for anyone but the project's author, since a
503
+ # project shares its calkit.yaml but not its .env
504
+ env = dict(env)
505
+ for key in workspace.CONNECTION_FIELDS:
506
+ if isinstance(env.get(key), str):
507
+ env[key] = workspace.expand_with_prompts(
508
+ env[key],
509
+ interactive=interactive,
510
+ described_as=(
511
+ f"environment '{env_name}' "
512
+ f"{key.replace('_', ' ')}"
513
+ ),
514
+ )
515
+ ws = workspace.Workspace.from_env(
516
+ env=env,
517
+ env_name=env_name,
518
+ ck_info=ck_info,
519
+ )
520
+ # Reassigned: a key created during setup belongs to the
521
+ # workspace we go on to use
522
+ ws = workspace.ensure_reachable(
523
+ ws, interactive=interactive, verbose=verbose
524
+ )
525
+ # Calkit is needed there to read the machine's properties,
526
+ # and to activate an inner env, but an environment that
527
+ # only dispatches a command never calls it. A declared
528
+ # machine ID needs it for the same reason a lock does: the
529
+ # far end is what reports its own ID, so it has to be asked.
530
+ # Requirements only need it when one of them asks about the
531
+ # machine itself rather than about what's installed on it.
532
+ locks = bool(env.get("lock"))
533
+ requirements = env.get("requirements", []) or []
534
+ needs_system_info = (
535
+ locks
536
+ or bool(ws.machine_id)
537
+ or workspace.requirements_need_system_info(requirements)
538
+ )
539
+ workspace.ensure_calkit_installed(
540
+ ws,
541
+ interactive=interactive,
542
+ required=needs_system_info,
543
+ verbose=verbose,
544
+ )
545
+ system_info = None
546
+ if needs_system_info:
547
+ system_info = workspace.remote_system_info(ws)
548
+ # Before anything else is decided from it, so a
549
+ # mismatched machine is reported rather than measured
550
+ # and recorded as what results depend on
551
+ workspace.verify_machine_id(ws, system_info)
552
+ # Before the lock: a machine that doesn't meet the project's
553
+ # requirements shouldn't have its properties written down as
554
+ # though stages had run there.
555
+ workspace.check_requirements(
556
+ ws,
557
+ requirements,
558
+ system_info=system_info,
559
+ verbose=verbose,
560
+ )
561
+ if locks:
562
+ write_system_env_lock(
563
+ env_name=env_name,
564
+ env=env,
565
+ system_info=system_info,
566
+ )
567
+ except ValueError as e:
568
+ raise_error(f"Environment '{env_name}': {e}")
476
569
  elif env["kind"] == "nix":
477
570
  check_nix_env(env=env, verbose=verbose)
478
571
  else:
@@ -520,7 +613,7 @@ def check_environments(
520
613
  bool, typer.Option("--verbose", help="Print verbose output.")
521
614
  ] = False,
522
615
  ) -> None:
523
- ck_info = calkit.load_calkit_info(process_includes="environments")
616
+ ck_info = calkit.load_calkit_info()
524
617
  envs = ck_info.get("environments", {})
525
618
  if not envs:
526
619
  typer.echo("No environments defined in calkit.yaml")
@@ -540,6 +633,12 @@ def check_environments(
540
633
  typer.echo(f"Checking environment: '{env_name}'")
541
634
  try:
542
635
  check_environment(env_name=env_name, verbose=verbose)
636
+ except typer.Exit:
637
+ # The check reported its own reason through raise_error, which
638
+ # has already printed it. Repeating it here would replace a
639
+ # real message ("Unknown system property to lock: ...") with
640
+ # the exit code, since that is all this exception carries.
641
+ failures.append(env_name)
543
642
  except Exception as e:
544
643
  warn(f"Error checking environment '{env_name}': {e}")
545
644
  failures.append(env_name)
@@ -1297,8 +1396,16 @@ def check_matlab_env(
1297
1396
  )
1298
1397
 
1299
1398
 
1300
- @check_app.command(name="deps|dependencies")
1301
- def check_dependencies(
1399
+ @check_app.command(
1400
+ name="deps|dependencies",
1401
+ hidden=True,
1402
+ help=(
1403
+ "Check that a project's system-level requirements are met "
1404
+ "(alias for 'reqs')."
1405
+ ),
1406
+ )
1407
+ @check_app.command(name="reqs|requirements")
1408
+ def check_project_requirements(
1302
1409
  verbose: Annotated[
1303
1410
  bool, typer.Option("--verbose", "-v", help="Print verbose output")
1304
1411
  ] = False,
@@ -1307,21 +1414,19 @@ def check_dependencies(
1307
1414
  typer.Option(
1308
1415
  "--no-cache",
1309
1416
  help=(
1310
- "Re-probe every setup dependency, ignoring (and clearing) "
1417
+ "Re-probe every setup requirement, ignoring (and clearing) "
1311
1418
  "the cache at .calkit/local/dep-checks.sqlite."
1312
1419
  ),
1313
1420
  ),
1314
1421
  ] = False,
1315
1422
  ) -> None:
1316
- """Check that a project's system-level dependencies are set up
1317
- correctly.
1318
- """
1319
- typer.echo("Checking project dependencies")
1423
+ """Check that a project's system-level requirements are met."""
1424
+ typer.echo("Checking project requirements")
1320
1425
  dotenv.load_dotenv(dotenv_path=".env", verbose=verbose)
1321
1426
  if no_cache:
1322
1427
  calkit.dependencies.cache_clear()
1323
1428
  try:
1324
- calkit.check_system_deps(use_cache=not no_cache)
1429
+ calkit.check_requirements(use_cache=not no_cache)
1325
1430
  except Exception as e:
1326
1431
  raise_error(str(e))
1327
1432
  message = "✅ All set!"
@@ -1338,7 +1443,7 @@ def check_env_vars(
1338
1443
  typer.echo("Checking project environmental variables")
1339
1444
  dotenv.load_dotenv(dotenv_path=".env")
1340
1445
  ck_info = calkit.load_calkit_info()
1341
- deps = ck_info.get("dependencies", [])
1446
+ deps = calkit.get_requirements(ck_info)
1342
1447
  env_var_dep_names = calkit.get_env_var_dep_names(ck_info)
1343
1448
  for name in env_var_dep_names:
1344
1449
  if verbose:
@@ -2,6 +2,7 @@
2
2
 
3
3
  from __future__ import annotations
4
4
 
5
+ import os
5
6
  from typing import Annotated
6
7
 
7
8
  import typer
@@ -95,3 +96,29 @@ def describe_envs(
95
96
  for env_name, desc in result.items():
96
97
  typer.echo(env_name + ":")
97
98
  _echo_description(desc, indent=" ")
99
+
100
+
101
+ @describe_app.command(name="schema")
102
+ def describe_schema(
103
+ output: Annotated[
104
+ str | None,
105
+ typer.Option(
106
+ "--output",
107
+ "-o",
108
+ help="Path at which to write the schema instead of printing it.",
109
+ ),
110
+ ] = None,
111
+ ) -> None:
112
+ """Print the JSON schema for calkit.yaml.
113
+
114
+ Editors can use this to validate and autocomplete the file. See
115
+ https://docs.calkit.org/calkit-yaml for how to set that up.
116
+ """
117
+ txt = calkit.schema.generate_json()
118
+ if output is None:
119
+ typer.echo(txt, nl=False)
120
+ return
121
+ os.makedirs(os.path.dirname(output) or ".", exist_ok=True)
122
+ with open(output, "w", encoding="utf-8") as f:
123
+ f.write(txt)
124
+ typer.echo(f"Wrote schema to {output}")
@@ -271,9 +271,7 @@ def import_environment(
271
271
  raise_error("Invalid source environment specification")
272
272
  if os.path.isdir(project):
273
273
  typer.echo(f"Importing from local project directory: {project}")
274
- src_ck_info = dict(
275
- calkit.load_calkit_info(wdir=project, process_includes=True)
276
- )
274
+ src_ck_info = dict(calkit.load_calkit_info(wdir=project))
277
275
  environments = src_ck_info.get("environments", {})
278
276
  if env_name not in environments:
279
277
  raise_error(f"Environment {env_name} not found in project")
@@ -71,8 +71,8 @@ def _list_artifacts(
71
71
  declared and auto-detected artifacts apart.
72
72
  """
73
73
  ck_info = calkit.load_calkit_info()
74
- declared = ck_info.get(kind, []) or []
75
- declared_paths = {o.get("path") for o in declared if isinstance(o, dict)}
74
+ declared = [o for o in ck_info.get(kind) or [] if isinstance(o, dict)]
75
+ declared_paths = {o.get("path") for o in declared}
76
76
  detected: list[dict] = []
77
77
  if not declared_only:
78
78
  found = calkit.detect.detect_project_artifacts(ck_info=ck_info)