Skip to content

Commit 096f6ba

Browse files
committed
Remove support for building windows wheels
1 parent a77f3b2 commit 096f6ba

File tree

1 file changed

+8
-28
lines changed

1 file changed

+8
-28
lines changed

.github/workflows/pypi.yaml

Lines changed: 8 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -75,33 +75,10 @@ jobs:
7575
with:
7676
name: wheels-linux-${{ matrix.platform.target }}
7777
path: dist
78-
79-
windows:
80-
runs-on: ${{ matrix.platform.runner }}
81-
strategy:
82-
matrix:
83-
platform:
84-
- runner: windows-latest
85-
target: x64
86-
- runner: windows-latest
87-
target: x86
88-
steps:
89-
- uses: actions/checkout@v4
90-
- uses: actions/setup-python@v5
91-
with:
92-
python-version: '3.10'
93-
architecture: ${{ matrix.platform.target }}
94-
- name: Build wheels
95-
uses: PyO3/maturin-action@v1
96-
with:
97-
target: ${{ matrix.platform.target }}
98-
args: --release --out dist --find-interpreter
99-
sccache: 'true'
100-
- name: Upload wheels
101-
uses: actions/upload-artifact@v4
102-
with:
103-
name: wheels-windows-${{ matrix.platform.target }}
104-
path: dist
78+
79+
# BEGIN EDITED SECTION #
80+
# The `windows` job has been removed as it is not a supported platform.
81+
# END EDITED SECTION #
10582

10683
macos:
10784
runs-on: ${{ matrix.platform.runner }}
@@ -148,7 +125,10 @@ jobs:
148125
name: Release
149126
runs-on: ubuntu-latest
150127
if: "startsWith(github.ref, 'refs/tags/')"
151-
needs: [linux, windows, macos, sdist]
128+
# BEGIN EDITED SECTION #
129+
# Note: The `windows` job was removed from this list.
130+
needs: [linux, macos, sdist]
131+
# END EDITED SECTION #
152132
steps:
153133
- uses: actions/download-artifact@v4
154134
- name: Publish to PyPI

0 commit comments

Comments
 (0)