diff --git a/.copier-answers.yaml b/.copier-answers.yaml index 2b1b0bb..8dc7b19 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: python diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 109d0d0..53bb463 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -33,7 +33,7 @@ jobs: python-version: ["3.11"] steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions-ext/python/setup@main with: diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index f62f4a4..4033bad 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -11,9 +11,9 @@ jobs: docs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: actions-ext/python/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/.gitignore b/.gitignore index 6b8a768..e425253 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 hatch_multi/extension diff --git a/Makefile b/Makefile index 26babda..e27aa44 100644 --- a/Makefile +++ b/Makefile @@ -100,7 +100,7 @@ dist-check: ## run python dist checker with twine dist: clean dist-build dist-check ## build all dists -publish: dist # publish python assets +publish: dist ## publish python assets ######### # CLEAN #