Skip to content

Commit 30e850c

Browse files
Update from copier (2026-02-22T05:50:52)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent ddf3462 commit 30e850c

4 files changed

Lines changed: 18 additions & 20 deletions

File tree

.copier-answers.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Changes here will be overwritten by Copier
2-
_commit: 37f89c1
2+
_commit: 08a244d
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: false
55
add_extension: python

.gitignore

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -141,14 +141,12 @@ js/node_modules
141141
js/test-results
142142
js/playwright-report
143143
js/*.tgz
144-
p2a/extension
145144

146145
# Jupyter
147146
.ipynb_checkpoints
148147
.autoversion
149148
Untitled*.ipynb
150-
!p2a/extension/p2a.json
151-
!p2a/extension/install.json
149+
p2a/extension
152150
p2a/nbextension
153151
p2a/labextension
154152

@@ -157,3 +155,7 @@ p2a/labextension
157155

158156
# Rust
159157
target
158+
159+
# Hydra
160+
outputs/
161+
multirun/

Makefile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,15 @@ format: fix
4646
################
4747
# Other Checks #
4848
################
49-
.PHONY: check-manifest checks check
49+
.PHONY: check-dist check-types checks check
5050

51-
check-manifest: ## check python sdist manifest with check-manifest
52-
check-manifest -v
51+
check-dist: ## check python sdist and wheel with check-dist
52+
check-dist -v
5353

54-
checks: check-manifest
54+
check-types: ## check python types with ty
55+
ty check --python $$(which python)
56+
57+
checks: check-dist
5558

5659
# Alias
5760
check: checks

pyproject.toml

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
requires = [
33
"hatchling",
44
]
5-
build-backend="hatchling.build"
5+
build-backend = "hatchling.build"
66

77
[project]
88
name = "p2a"
@@ -44,14 +44,14 @@ dependencies = [
4444
develop = [
4545
"build",
4646
"bump-my-version",
47-
"check-manifest",
48-
"codespell>=2.4,<2.5",
47+
"check-dist",
48+
"codespell",
4949
"hatchling",
50-
"mdformat>=0.7.22,<1.1",
50+
"mdformat",
5151
"mdformat-tables>=1",
5252
"pytest",
5353
"pytest-cov",
54-
"ruff>=0.9,<0.15",
54+
"ruff",
5555
"twine",
5656
"ty",
5757
"uv",
@@ -80,13 +80,6 @@ filename = "pyproject.toml"
8080
search = 'version = "{current_version}"'
8181
replace = 'version = "{new_version}"'
8282

83-
[tool.check-manifest]
84-
ignore = [
85-
".copier-answers.yaml",
86-
"Makefile",
87-
"docs/**/*",
88-
]
89-
9083
[tool.coverage.run]
9184
branch = true
9285
omit = [

0 commit comments

Comments
 (0)