Skip to content

Commit 50951b5

Browse files
authored
Merge pull request #31 from python-project-templates/copier-update-2025-08-11T17-42-58
Update from copier (2025-08-11T17:42:58)
2 parents f741315 + 67be332 commit 50951b5

File tree

6 files changed

+9
-7
lines changed

6 files changed

+9
-7
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: f3ffa74
2+
_commit: fa27c8d
33
_src_path: https://github.com/python-project-templates/base.git
44
add_docs: true
55
add_extension: cpp

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
cibuildwheel: "cp312"
7676

7777
steps:
78-
- uses: actions/checkout@v4
78+
- uses: actions/checkout@v5
7979

8080
- uses: actions-ext/python/setup@main
8181
with:

.github/workflows/docs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ jobs:
1111
docs:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v4
14+
- uses: actions/checkout@v5
1515
- uses: actions-ext/python/setup@main
16-
- run: uv pip install .
16+
- run: uv pip install .[develop]
1717
- run: uv pip install yardang
1818
- run: yardang build
1919
- uses: peaceiris/actions-gh-pages@v4

.github/workflows/wiki.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
deploy:
2121
runs-on: ubuntu-latest
2222
steps:
23-
- uses: actions/checkout@v4
23+
- uses: actions/checkout@v5
2424
- run: cp README.md docs/wiki/Home.md
2525
- uses: Andrew-Chen-Wang/github-wiki-action@v5
2626
with:

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,8 @@ js/coverage
138138
js/dist
139139
js/lib
140140
js/node_modules
141+
js/test-results
142+
js/playwright-report
141143
js/*.tgz
142144
python_template_cpp/extension
143145

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,15 +113,15 @@ major: ## bump a major version
113113
########
114114
.PHONY: dist dist-py dist-check publish
115115

116-
dist-py: # build python dists
116+
dist-py: ## build python dists
117117
python -m build -w -s
118118

119119
dist-check: ## run python dist checker with twine
120120
python -m twine check dist/*
121121

122122
dist: clean build dist-js dist-py dist-check ## build all dists
123123

124-
publish: dist # publish python assets
124+
publish: dist ## publish python assets
125125

126126
#########
127127
# CLEAN #

0 commit comments

Comments
 (0)