From 0099b20d2dab887d1938d3c06aef60a5944efafa Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 11 Aug 2025 17:44:35 +0000 Subject: [PATCH] Update from copier (2025-08-11T17:44:35) Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- .copier-answers.yaml | 2 +- .github/workflows/build.yaml | 4 ++-- .github/workflows/docs.yaml | 4 ++-- .github/workflows/wiki.yaml | 2 +- .gitignore | 2 ++ Makefile | 4 ++-- 6 files changed, 10 insertions(+), 8 deletions(-) diff --git a/.copier-answers.yaml b/.copier-answers.yaml index d8d2add..43e427d 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: f3ffa74 +_commit: fa27c8d _src_path: https://github.com/python-project-templates/base.git add_docs: true add_extension: jupyter diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index a0096b6..e73ccbd 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -34,7 +34,7 @@ jobs: node-version: [20.x] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions-ext/python/setup@main with: @@ -42,7 +42,7 @@ jobs: - uses: actions-ext/node/setup@main with: - version: 20.x + version: 22.x - name: Install dependencies run: make develop diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 9a32e69..c8cdda4 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -11,10 +11,10 @@ jobs: docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions-ext/python/setup@main - uses: actions-ext/node/setup@main - - run: uv pip install . + - run: uv pip install .[develop] - run: uv pip install yardang - run: yardang build - uses: peaceiris/actions-gh-pages@v4 diff --git a/.github/workflows/wiki.yaml b/.github/workflows/wiki.yaml index 8de232b..e0a4608 100644 --- a/.github/workflows/wiki.yaml +++ b/.github/workflows/wiki.yaml @@ -20,7 +20,7 @@ jobs: deploy: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - run: cp README.md docs/wiki/Home.md - uses: Andrew-Chen-Wang/github-wiki-action@v5 with: diff --git a/.gitignore b/.gitignore index 24e1c05..4bd5f5a 100644 --- a/.gitignore +++ b/.gitignore @@ -138,6 +138,8 @@ js/coverage js/dist js/lib js/node_modules +js/test-results +js/playwright-report js/*.tgz python_template_jupyter/extension diff --git a/Makefile b/Makefile index d88639c..578700c 100644 --- a/Makefile +++ b/Makefile @@ -134,7 +134,7 @@ major: ## bump a major version ######## .PHONY: dist dist-py dist-js dist-check publish -dist-py: # build python dists +dist-py: ## build python dists python -m build -w -s dist-js: # build js dists @@ -145,7 +145,7 @@ dist-check: ## run python dist checker with twine dist: clean build dist-js dist-py dist-check ## build all dists -publish: dist # publish python assets +publish: dist ## publish python assets ######### # CLEAN #