From 541ef205abc262fccacfcbab556e6ac6cf206747 Mon Sep 17 00:00:00 2001 From: github-actions <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 26 Jul 2026 07:38:30 +0000 Subject: [PATCH 1/2] Update from copier (2026-07-26T07:38:30) Signed-off-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com> --- .copier-answers.yaml | 2 +- .github/workflows/build.yaml | 25 ++++++++++++++++++++++++- .github/workflows/copier.yaml | 2 +- 3 files changed, 26 insertions(+), 3 deletions(-) diff --git a/.copier-answers.yaml b/.copier-answers.yaml index 33ad3a1..4a8cf15 100644 --- a/.copier-answers.yaml +++ b/.copier-answers.yaml @@ -1,5 +1,5 @@ # Changes here will be overwritten by Copier -_commit: '4875149' +_commit: c2ea129 _src_path: https://github.com/python-project-templates/base.git add_docs: false add_extension: python diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 52567ee..50af8bf 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -31,7 +31,15 @@ jobs: cibuildwheel: - "cp311" steps: +<<<<<<< before updating - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 +======= + - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 + with: + persist-credentials: false + + - uses: actions-ext/python/setup@6e1b91a408ea89f49bc8aff8724f83826f7b5446 +>>>>>>> after updating with: submodules: 'true' @@ -43,8 +51,13 @@ jobs: restore-keys: cache-${{ runner.os }}- if: ${{ runner.os != 'Windows' }} +<<<<<<< before updating - name: Setup cache (windows) uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 +======= + - name: Upload test results (Python) + uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 +>>>>>>> after updating with: path: "C:/ProgramData/chocolatey/" key: cache-${{ runner.os }}- @@ -90,6 +103,7 @@ jobs: run: python -m pip install dist/*.whl if: ${{ runner.os != 'Windows' }} +<<<<<<< before updating - name: Install wheel (windows) run: python -m pip install -U (Get-ChildItem .\dist\*.whl | Select-Object -Expand FullName) if: ${{ runner.os == 'Windows' }} @@ -99,8 +113,17 @@ jobs: - name: Test Wheel run: python -m pytest -vvv systemc/tests +======= + - uses: actions-ext/python/test-wheel@6e1b91a408ea89f49bc8aff8724f83826f7b5446 + with: + module: systemc + + - uses: actions-ext/python/test-sdist@6e1b91a408ea89f49bc8aff8724f83826f7b5446 + with: + module: systemc +>>>>>>> after updating - - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7 + - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: name: dist-${{matrix.os}} path: dist diff --git a/.github/workflows/copier.yaml b/.github/workflows/copier.yaml index 871b414..a936d5f 100644 --- a/.github/workflows/copier.yaml +++ b/.github/workflows/copier.yaml @@ -12,6 +12,6 @@ jobs: pull-requests: write runs-on: ubuntu-latest steps: - - uses: actions-ext/copier-update@main + - uses: actions-ext/copier-update@378500315a83b5985e175139a55f1fa5ea6dde09 with: token: ${{ secrets.WORKFLOW_TOKEN }} From 02cbb3f39dad8307590b0b0a470763a1939a8a5b Mon Sep 17 00:00:00 2001 From: Tim Paine <3105306+timkpaine@users.noreply.github.com> Date: Sun, 26 Jul 2026 21:37:58 -0500 Subject: [PATCH 2/2] Update build.yaml --- .github/workflows/build.yaml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 50af8bf..7ec628c 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -31,16 +31,9 @@ jobs: cibuildwheel: - "cp311" steps: -<<<<<<< before updating - - uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0 -======= - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: persist-credentials: false - - - uses: actions-ext/python/setup@6e1b91a408ea89f49bc8aff8724f83826f7b5446 ->>>>>>> after updating - with: submodules: 'true' - name: Setup cache (mac/linux) @@ -51,13 +44,8 @@ jobs: restore-keys: cache-${{ runner.os }}- if: ${{ runner.os != 'Windows' }} -<<<<<<< before updating - name: Setup cache (windows) uses: actions/cache@55cc8345863c7cc4c66a329aec7e433d2d1c52a9 # v6.1.0 -======= - - name: Upload test results (Python) - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 ->>>>>>> after updating with: path: "C:/ProgramData/chocolatey/" key: cache-${{ runner.os }}- @@ -103,7 +91,6 @@ jobs: run: python -m pip install dist/*.whl if: ${{ runner.os != 'Windows' }} -<<<<<<< before updating - name: Install wheel (windows) run: python -m pip install -U (Get-ChildItem .\dist\*.whl | Select-Object -Expand FullName) if: ${{ runner.os == 'Windows' }} @@ -113,15 +100,6 @@ jobs: - name: Test Wheel run: python -m pytest -vvv systemc/tests -======= - - uses: actions-ext/python/test-wheel@6e1b91a408ea89f49bc8aff8724f83826f7b5446 - with: - module: systemc - - - uses: actions-ext/python/test-sdist@6e1b91a408ea89f49bc8aff8724f83826f7b5446 - with: - module: systemc ->>>>>>> after updating - uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1 with: