course-setup 3.0.8__tar.gz → 3.0.9__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: course-setup
3
- Version: 3.0.8
3
+ Version: 3.0.9
4
4
  Summary: CLI tools for setting up and retiring GitHub-backed course repositories
5
5
  Author: Reuven Lerner
6
6
  Author-email: Reuven Lerner <reuven@lernerpython.com>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "course-setup"
3
- version = "3.0.8"
3
+ version = "3.0.9"
4
4
  description = "CLI tools for setting up and retiring GitHub-backed course repositories"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.13"
@@ -83,8 +83,11 @@ def _build_pyproject_toml(
83
83
  extras: list[str] | None = None,
84
84
  ) -> str:
85
85
  """Generate a pyproject.toml string for the new course directory."""
86
- notebook_dep = "jupyter" if notebook_type == "jupyter" else "marimo"
87
- deps = [notebook_dep, "gitautopush"]
86
+ deps = (
87
+ ["jupyter", "ipyparallel", "gitautopush"]
88
+ if notebook_type == "jupyter"
89
+ else ["marimo", "gitautopush"]
90
+ )
88
91
  if extras:
89
92
  deps.extend(extras)
90
93
  deps_str = "\n".join(f' "{d}",' for d in deps)
@@ -422,7 +425,11 @@ def main() -> None:
422
425
  _print_status(f" Directory: {destination}")
423
426
  _print_status(f" Notebook type: {notebook_type}")
424
427
  _print_status(f" Notebooks: {', '.join(notebook_filenames)}")
425
- deps = ["jupyter" if notebook_type == "jupyter" else "marimo", "gitautopush"]
428
+ deps = (
429
+ ["jupyter", "ipyparallel", "gitautopush"]
430
+ if notebook_type == "jupyter"
431
+ else ["marimo", "gitautopush"]
432
+ )
426
433
  if extra_packages:
427
434
  deps.extend(extra_packages)
428
435
  _print_status(f" Dependencies: {', '.join(deps)}")
@@ -1,7 +0,0 @@
1
- {
2
- "permissions": {
3
- "allow": [
4
- "Bash(cd:*)"
5
- ]
6
- }
7
- }
File without changes