Skip to content

Commit 3776074

Browse files
Update from copier (2026-03-08T05:47:54)
Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 0384eae commit 3776074

File tree

3 files changed

+11
-24
lines changed

3 files changed

+11
-24
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: 08a244d
2+
_commit: 3160d4c
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: cppjswasm

.gitignore

Lines changed: 7 additions & 21 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

pyproject.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[build-system]
22
requires = [
33
"hatchling",
4-
"hatch-cpp<0.3",
4+
"hatch-cpp",
55
"hatch-js",
66
"pybind11",
77
]
@@ -42,7 +42,7 @@ develop = [
4242
"check-dist",
4343
"cibuildwheel",
4444
"codespell",
45-
"hatch-cpp<0.3",
45+
"hatch-cpp",
4646
"hatch-js",
4747
"hatchling",
4848
"pybind11",
@@ -106,6 +106,7 @@ branch = true
106106
omit = [
107107
"python_template_cppjswasm/tests/integration/",
108108
]
109+
109110
[tool.coverage.report]
110111
exclude_also = [
111112
"raise NotImplementedError",

0 commit comments

Comments
 (0)