@@ -75,33 +75,10 @@ jobs:
75
75
with :
76
76
name : wheels-linux-${{ matrix.platform.target }}
77
77
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 #
105
82
106
83
macos :
107
84
runs-on : ${{ matrix.platform.runner }}
@@ -148,7 +125,10 @@ jobs:
148
125
name : Release
149
126
runs-on : ubuntu-latest
150
127
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 #
152
132
steps :
153
133
- uses : actions/download-artifact@v4
154
134
- name : Publish to PyPI
0 commit comments