From 30e850cd96fff02a26460f04e217d1d60ad86c6d Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 22 Feb 2026 05:50:52 +0000 Subject: [PATCH] Update from copier (2026-02-22T05:50:52) Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- .copier-answers.yaml | 2 +- .gitignore | 8 +++++--- Makefile | 11 +++++++---- pyproject.toml | 17 +++++------------ 4 files changed, 18 insertions(+), 20 deletions(-) diff --git a/.copier-answers.yaml b/.copier-answers.yaml index 317c8a5..7f436f8 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: 37f89c1 +_commit: 08a244d _src_path: https://github.com/python-project-templates/base.git add_docs: false add_extension: python diff --git a/.gitignore b/.gitignore index 3b8b9ed..3943af9 100644 --- a/.gitignore +++ b/.gitignore @@ -141,14 +141,12 @@ js/node_modules js/test-results js/playwright-report js/*.tgz -p2a/extension # Jupyter .ipynb_checkpoints .autoversion Untitled*.ipynb -!p2a/extension/p2a.json -!p2a/extension/install.json +p2a/extension p2a/nbextension p2a/labextension @@ -157,3 +155,7 @@ p2a/labextension # Rust target + +# Hydra +outputs/ +multirun/ diff --git a/Makefile b/Makefile index aacd26c..9563db2 100644 --- a/Makefile +++ b/Makefile @@ -46,12 +46,15 @@ format: fix ################ # Other Checks # ################ -.PHONY: check-manifest checks check +.PHONY: check-dist check-types checks check -check-manifest: ## check python sdist manifest with check-manifest - check-manifest -v +check-dist: ## check python sdist and wheel with check-dist + check-dist -v -checks: check-manifest +check-types: ## check python types with ty + ty check --python $$(which python) + +checks: check-dist # Alias check: checks diff --git a/pyproject.toml b/pyproject.toml index 8a7a2f1..5a267b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ requires = [ "hatchling", ] -build-backend="hatchling.build" +build-backend = "hatchling.build" [project] name = "p2a" @@ -44,14 +44,14 @@ dependencies = [ develop = [ "build", "bump-my-version", - "check-manifest", - "codespell>=2.4,<2.5", + "check-dist", + "codespell", "hatchling", - "mdformat>=0.7.22,<1.1", + "mdformat", "mdformat-tables>=1", "pytest", "pytest-cov", - "ruff>=0.9,<0.15", + "ruff", "twine", "ty", "uv", @@ -80,13 +80,6 @@ filename = "pyproject.toml" search = 'version = "{current_version}"' replace = 'version = "{new_version}"' -[tool.check-manifest] -ignore = [ - ".copier-answers.yaml", - "Makefile", - "docs/**/*", -] - [tool.coverage.run] branch = true omit = [