Skip to content

Commit 90f0bde

Browse files
authored
Merge pull request #8 from python-project-templates/copier-update-2026-03-08T05-37-04
Update from copier (2026-03-08T05:37:04)
2 parents ba743dc + eded89b commit 90f0bde

File tree

4 files changed

+21
-29
lines changed

4 files changed

+21
-29
lines changed

.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: 3160d4c
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: python

.gitignore

Lines changed: 12 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,9 @@ __pycache__/
1111
*.exp
1212
*.lib
1313

14+
# Rust
15+
target
16+
1417
# Distribution / packaging
1518
.Python
1619
build/
@@ -55,26 +58,12 @@ junit.xml
5558
.hypothesis/
5659
.pytest_cache/
5760

58-
# Translations
59-
*.mo
60-
*.pot
61-
62-
# Django stuff:
61+
# Django
6362
*.log
6463
local_settings.py
6564
db.sqlite3
6665
db.sqlite3-journal
6766

68-
# Flask stuff:
69-
instance/
70-
.webassets-cache
71-
72-
# Scrapy stuff:
73-
.scrapy
74-
75-
# PyBuilder
76-
target/
77-
7867
# IPython
7968
profile_default/
8069
ipython_config.py
@@ -85,15 +74,12 @@ ipython_config.py
8574
# pipenv
8675
Pipfile.lock
8776

88-
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
89-
__pypackages__/
90-
91-
# Celery stuff
77+
# Celery
9278
celerybeat-schedule
9379
celerybeat.pid
9480

95-
# SageMath parsed files
96-
*.sage.py
81+
# Airspeed Velocity
82+
.asv
9783

9884
# Environments
9985
.env
@@ -141,14 +127,12 @@ js/node_modules
141127
js/test-results
142128
js/playwright-report
143129
js/*.tgz
144-
check_dist/extension
145130

146131
# Jupyter
147132
.ipynb_checkpoints
148133
.autoversion
149134
Untitled*.ipynb
150-
!check_dist/extension/check_dist.json
151-
!check_dist/extension/install.json
135+
check_dist/extension
152136
check_dist/nbextension
153137
check_dist/labextension
154138

@@ -157,3 +141,7 @@ check_dist/labextension
157141

158142
# Rust
159143
target
144+
145+
# Hydra
146+
outputs/
147+
multirun/

Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,14 @@ format: fix
4646
################
4747
# Other Checks #
4848
################
49-
.PHONY: check-dist checks check
49+
.PHONY: check-dist check-types checks check
5050

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

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

5659
# Alias

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ dependencies = [
3838
develop = [
3939
"build",
4040
"bump-my-version",
41-
"codespell>=2.4,<2.5",
41+
"codespell",
4242
"hatchling",
43-
"mdformat>=0.7.22,<1.1",
43+
"mdformat",
4444
"mdformat-tables>=1",
4545
"pytest",
4646
"pytest-cov",
@@ -112,6 +112,7 @@ branch = true
112112
omit = [
113113
"check_dist/tests/integration/",
114114
]
115+
115116
[tool.coverage.report]
116117
exclude_also = [
117118
"raise NotImplementedError",

0 commit comments

Comments
 (0)