From 09fb73daf4a05e5b47052085a3b0feaa694a6859 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 30 Mar 2026 20:23:30 +0000 Subject: [PATCH] Update from copier (2026-03-30T20:23:30) Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- .copier-answers.yaml | 2 +- .gitattributes | 1 - .github/workflows/build.yaml | 2 +- js/jest.config.js | 4 ++-- 4 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.copier-answers.yaml b/.copier-answers.yaml index 9df5eb5..da278c3 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: 9be318c +_commit: '1246721' _src_path: https://github.com/python-project-templates/base.git add_docs: true add_extension: jupyter diff --git a/.gitattributes b/.gitattributes index bb7085b..aaf2698 100644 --- a/.gitattributes +++ b/.gitattributes @@ -7,7 +7,6 @@ Makefile linguist-documentation *.html text=auto eol=lf *.js text=auto eol=lf *.json text=auto eol=lf -*.less text=auto eol=lf *.md text=auto eol=lf *.py text=auto eol=lf *.toml text=auto eol=lf diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e02e344..46bfb47 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -76,7 +76,7 @@ jobs: if: matrix.os == 'ubuntu-latest' - name: Upload coverage - uses: codecov/codecov-action@v5 + uses: codecov/codecov-action@v6 with: token: ${{ secrets.CODECOV_TOKEN }} diff --git a/js/jest.config.js b/js/jest.config.js index 764a009..45f3f7b 100644 --- a/js/jest.config.js +++ b/js/jest.config.js @@ -18,7 +18,7 @@ const esModules = [ module.exports = { moduleDirectories: ["node_modules", "src", "tests"], moduleNameMapper: { - "\\.(css|less|sass|scss)$": "/tests/styleMock.js", + "\\.(css|sass|scss)$": "/tests/styleMock.js", "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "/tests/fileMock.js", }, reporters: [ "default", "jest-junit" ], @@ -26,7 +26,7 @@ module.exports = { testEnvironment: "jsdom", transform: { "^.+\\.jsx?$": "babel-jest", - ".+\\.(css|styl|less|sass|scss)$": "jest-transform-css", + ".+\\.(css|styl|sass|scss)$": "jest-transform-css", }, transformIgnorePatterns: [`/node_modules/.pnpm/(?!(${esModules}))`], };