From cfbe894fc575de4a8c23e6df24e196f5560b7624 Mon Sep 17 00:00:00 2001 From: "Luke W. Johnston" Date: Thu, 24 Jul 2025 14:15:11 +0200 Subject: [PATCH] refactor: :fire: remove content not needed for data packages --- template/.vscode/google-notypes.mustache | 5 ----- template/.vscode/json.code-snippets | 23 ----------------------- template/justfile | 1 - template/pyproject.toml.jinja | 13 ------------- 4 files changed, 42 deletions(-) diff --git a/template/.vscode/google-notypes.mustache b/template/.vscode/google-notypes.mustache index 55477fa..60c5209 100644 --- a/template/.vscode/google-notypes.mustache +++ b/template/.vscode/google-notypes.mustache @@ -34,8 +34,3 @@ Yields: {{descriptionPlaceholder}}. {{/yields}} {{/yieldsExist}} - -Examples: - ```{python} - {{descriptionPlaceholder}} - ``` diff --git a/template/.vscode/json.code-snippets b/template/.vscode/json.code-snippets index b21dfa2..1f48a0f 100644 --- a/template/.vscode/json.code-snippets +++ b/template/.vscode/json.code-snippets @@ -31,21 +31,6 @@ ], "description": "Insert bash formatted text" }, - "Insert YAML header for blogs": { - "scope": "quarto,markdown", - "prefix": "post_yaml", - "body": [ - "---", - "title: \"\"", - "description: \"Our reasons for ...\"", - "author: \"\"", - "date: last-modified", - "categories:", - " ${0:Type 'category_keywords' to insert categories}", - "---" - ], - "description": "Insert YAML header for Quarto blog posts." - }, "Insert a hidden comment section": { "scope": "quarto,markdown", "prefix": "hidden", @@ -76,14 +61,6 @@ ], "description": "Insert a 3 col table" }, - "Insert video": { - "scope": "quarto,markdown", - "prefix": "video", - "body": [ - "{{< video ${0:Insert link here} >}}" - ], - "description": "Insert video that will be shown" - }, "Insert paneltab": { "scope": "quarto,markdown", "prefix": "paneltab", diff --git a/template/justfile b/template/justfile index d7d07f3..865cf27 100644 --- a/template/justfile +++ b/template/justfile @@ -4,7 +4,6 @@ # Run all build-related recipes in the justfile run-all: install-deps format-python check-python check-spelling check-commits build - # List all TODO items in the repository list-todos: grep -R -n --exclude="*.code-snippets" "TODO" * diff --git a/template/pyproject.toml.jinja b/template/pyproject.toml.jinja index d2a25f5..f06361a 100644 --- a/template/pyproject.toml.jinja +++ b/template/pyproject.toml.jinja @@ -16,21 +16,8 @@ readme = "README.md" license = "MIT AND " license-files = ["LICENSE-MIT.md", ""] requires-python = ">=3.12" -dependencies = [ - "polars>=1.27.0", - "seedcase-sprout>=0.46.3", -] - {% if package_github_repo %} [project.urls] issues = "https://github.com/{{ package_github_repo }}/issues" repository = "https://github.com/{{ package_github_repo }}" {% endif %} - -[dependency-groups] -dev = [ - "commitizen>=4.5.1", - "pre-commit>=4.2.0", - "ruff>=0.11.4", - "typos>=1.32.0", -]