Skip to content

Commit bccece3

Browse files
Update from Copier (2026-08-23T05-40-04Z)
Signed-off-by: python-templates-copier-update[bot] <python-templates-copier-update[bot]@users.noreply.github.com>
1 parent 6b68b53 commit bccece3

3 files changed

Lines changed: 10 additions & 4 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: a63c624
2+
_commit: 2f83523
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: false
55
add_extension: python

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ __pycache__/
1313
*.exp
1414
*.lib
1515

16+
# vcpkg
17+
vcpkg/
18+
vcpkg_installed/
19+
1620
# Rust
1721
target
1822
target-capi
@@ -142,8 +146,12 @@ hatch_cpp/labextension
142146

143147
# Emscripten SDK (locally installed)
144148
emsdk
149+
<<<<<<< before updating
145150
.pyodide_build
146151
.venv-pyodide
152+
=======
153+
.pyodide_build/
154+
>>>>>>> after updating
147155

148156
# Mac
149157
.DS_Store

Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@ develop: ## install dependencies and build library
77
uv pip install -e .[develop]
88

99
requirements: ## install prerequisite python build requirements
10-
python -m pip install --upgrade pip toml
11-
python -m pip install `python -c 'import toml; c = toml.load("pyproject.toml"); print("\n".join(c["build-system"]["requires"]))'`
12-
python -m pip install `python -c 'import toml; c = toml.load("pyproject.toml"); print(" ".join(c["project"]["optional-dependencies"]["develop"]))'`
10+
uv pip install -r pyproject.toml --extra develop
1311

1412
build: ## build the python library
1513
python -m build -n

0 commit comments

Comments
 (0)