Skip to content

Commit 11b4bcb

Browse files
authored
Merge pull request #146 from python-project-templates/copier-update-2026-08-23T05-39-57Z
Update from Copier (2026-08-23T05-39-57Z)
2 parents 6082f9b + 1fa73f9 commit 11b4bcb

3 files changed

Lines changed: 7 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: d814faa
2+
_commit: 2f83523
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: js

.gitignore

Lines changed: 5 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,6 +146,7 @@ python_template_js/labextension
142146

143147
# Emscripten SDK (locally installed)
144148
emsdk
149+
.pyodide_build/
145150

146151
# Mac
147152
.DS_Store

Makefile

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,7 @@ develop: develop-js develop-py ## setup project for development
1111

1212
.PHONY: requirements-py requirements-js requirements
1313
requirements-py: ## install prerequisite python build requirements
14-
python -m pip install --upgrade pip toml
15-
python -m pip install `python -c 'import toml; c = toml.load("pyproject.toml"); print("\n".join(c["build-system"]["requires"]))'`
16-
python -m pip install `python -c 'import toml; c = toml.load("pyproject.toml"); print(" ".join(c["project"]["optional-dependencies"]["develop"]))'`
14+
uv pip install -r pyproject.toml --extra develop
1715

1816
requirements-js: ## install prerequisite javascript build requirements
1917
cd js; pnpm install && npx playwright install

0 commit comments

Comments
 (0)