Skip to content

Commit 479dcf5

Browse files
Update from copier (2026-02-22T05:44:05)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent f2cf017 commit 479dcf5

4 files changed

Lines changed: 26 additions & 5 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: 7e5612d
2+
_commit: 08a244d
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
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-
check_dist/extension
145144

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

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

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

Makefile

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,22 @@ format: fix
4646
################
4747
# Other Checks #
4848
################
49+
<<<<<<< before updating
4950
.PHONY: check-dist checks check
5051

5152
check-dist: ## check python sdist with check-dist
5253
check-dist -v
5354

55+
=======
56+
.PHONY: check-dist check-types checks check
57+
58+
check-dist: ## check python sdist and wheel with check-dist
59+
check-dist -v
60+
61+
check-types: ## check python types with ty
62+
ty check --python $$(which python)
63+
64+
>>>>>>> after updating
5465
checks: check-dist
5566

5667
# Alias

pyproject.toml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,14 @@ dependencies = [
3737
develop = [
3838
"build",
3939
"bump-my-version",
40+
<<<<<<< before updating
4041
"codespell>=2.4,<2.5",
42+
=======
43+
"check-dist",
44+
"codespell",
45+
>>>>>>> after updating
4146
"hatchling",
42-
"mdformat>=0.7.22,<1.1",
47+
"mdformat",
4348
"mdformat-tables>=1",
4449
"pytest",
4550
"pytest-cov",
@@ -73,6 +78,7 @@ filename = "pyproject.toml"
7378
search = 'version = "{current_version}"'
7479
replace = 'version = "{new_version}"'
7580

81+
<<<<<<< before updating
7682
[tool.check-dist]
7783
present = [
7884
"check_dist",
@@ -106,6 +112,8 @@ absent = [
106112

107113
]
108114

115+
=======
116+
>>>>>>> after updating
109117
[tool.coverage.run]
110118
branch = true
111119
omit = [

0 commit comments

Comments
 (0)