From 446a8e421253976d7e067038dd9d23b9df967228 Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Thu, 29 May 2025 13:17:42 +0200 Subject: [PATCH 1/4] fixup? --- .github/workflows/wheels.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 2d55fdb..7abd418 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -32,7 +32,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: ${{matrix.python.cp}}-${{matrix.buildplat.sys}}-${{matrix.buildplat.arch}} - path: dist + path: dist/* windows: runs-on: windows-latest @@ -55,7 +55,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: ${{matrix.python.cp}}-${{matrix.buildplat.sys}}-${{matrix.buildplat.arch}} - path: dist + path: dist/* macos: runs-on: macos-latest @@ -77,7 +77,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: ${{matrix.python.cp}}-${{matrix.buildplat.sys}}-${{matrix.buildplat.arch}} - path: dist + path: dist/* sdist: runs-on: ubuntu-latest @@ -92,7 +92,7 @@ jobs: uses: actions/upload-artifact@v4 with: name: ${{matrix.python.cp}}-${{matrix.buildplat.sys}}-${{matrix.buildplat.arch}} - path: dist + path: dist/* release: name: Release From a6356ad45b536a05a0474d9cb0463b3bcf6595fe Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Thu, 29 May 2025 13:25:31 +0200 Subject: [PATCH 2/4] fixup --- .github/workflows/wheels.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 7abd418..edc2385 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -31,7 +31,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: ${{matrix.python.cp}}-${{matrix.buildplat.sys}}-${{matrix.buildplat.arch}} + name: stam-${{matrix.python.cp}}-${{matrix.target}}-linux path: dist/* windows: @@ -54,7 +54,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: ${{matrix.python.cp}}-${{matrix.buildplat.sys}}-${{matrix.buildplat.arch}} + name: stam-${{matrix.python.cp}}-${{matrix.target}}-win path: dist/* macos: @@ -76,7 +76,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: ${{matrix.python.cp}}-${{matrix.buildplat.sys}}-${{matrix.buildplat.arch}} + name: stam-${{matrix.python.cp}}-${{matrix.target}}-macos path: dist/* sdist: @@ -91,7 +91,7 @@ jobs: - name: Upload sdist uses: actions/upload-artifact@v4 with: - name: ${{matrix.python.cp}}-${{matrix.buildplat.sys}}-${{matrix.buildplat.arch}} + name: stam-${{matrix.python.cp}}-${{matrix.target}}-source path: dist/* release: From 61e37a4b3756104310c166cdef3919d851e89bba Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Thu, 29 May 2025 13:33:50 +0200 Subject: [PATCH 3/4] fixup --- .github/workflows/wheels.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index edc2385..2ead40d 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -31,7 +31,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: stam-${{matrix.python.cp}}-${{matrix.target}}-linux + name: stam-${{matrix.target}}-linux path: dist/* windows: @@ -54,7 +54,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: stam-${{matrix.python.cp}}-${{matrix.target}}-win + name: stam-${{matrix.target}}-win path: dist/* macos: @@ -76,7 +76,7 @@ jobs: - name: Upload wheels uses: actions/upload-artifact@v4 with: - name: stam-${{matrix.python.cp}}-${{matrix.target}}-macos + name: stam-${{matrix.target}}-macos path: dist/* sdist: @@ -91,7 +91,7 @@ jobs: - name: Upload sdist uses: actions/upload-artifact@v4 with: - name: stam-${{matrix.python.cp}}-${{matrix.target}}-source + name: stam-source path: dist/* release: @@ -102,7 +102,7 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: wheels + name: dist # - name: Publish to PyPI # uses: PyO3/maturin-action@v1 # env: From 2275ac95c69359e21cd1ea2f35691209ac254fd7 Mon Sep 17 00:00:00 2001 From: Maarten van Gompel Date: Thu, 29 May 2025 13:34:39 +0200 Subject: [PATCH 4/4] ci: skip python 3.7 on windows --- .github/workflows/wheels.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 2ead40d..05b5ed5 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -49,7 +49,7 @@ jobs: uses: PyO3/maturin-action@v1 with: target: ${{ matrix.target }} - args: --release --out dist -i 3.7 3.8 3.9 3.10 3.11 3.12 + args: --release --out dist -i 3.8 3.9 3.10 3.11 3.12 sccache: 'true' - name: Upload wheels uses: actions/upload-artifact@v4