Skip to content

Commit 3d29723

Browse files
committed
CI: Stop building and testing on Py2.7 macOS/Windows because it stopped working a while ago.
1 parent b4a7ea2 commit 3d29723

File tree

1 file changed

+1
-13
lines changed

1 file changed

+1
-13
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -155,14 +155,11 @@ jobs:
155155
#os: [macos-10.15, windows-latest]
156156
#os: [macos-10.15, macOS-M1]
157157
os: [macos-11.0, windows-latest]
158-
python-version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"]
158+
python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13-dev"]
159159

160160
include:
161161
- python-version: "3.13-dev"
162162
allowed_failure: true
163-
exclude:
164-
- python-version: "2.7"
165-
os: windows-latest
166163

167164
runs-on: ${{ matrix.os }}
168165
env: { MACOSX_DEPLOYMENT_TARGET: 11.0 }
@@ -172,7 +169,6 @@ jobs:
172169

173170
- name: Set up Python
174171
uses: actions/setup-python@v5
175-
if: startsWith(matrix.python-version, '3.')
176172
with:
177173
python-version: ${{ matrix.python-version }}
178174

@@ -187,21 +183,13 @@ jobs:
187183
- name: Run slow tests
188184
run: make testslow
189185

190-
- name: Release
191-
uses: softprops/action-gh-release@v2
192-
if: startsWith(github.ref, 'refs/tags/') && matrix.python-version == '2.7'
193-
with:
194-
files: dist/*.whl
195-
196186
- name: Upload wheels
197187
uses: actions/upload-artifact@v4
198188
with:
199189
name: wheels-${{ matrix.os }}-${{ matrix.python-version }}
200190
path: dist/*.whl
201191
if-no-files-found: ignore
202192

203-
- name: Running benchmark
204-
if: startsWith(matrix.python-version, '3.')
205193
run: |
206194
python benchmark/telco_fractions.py -n 250
207195
python benchmark/microbench.py create pydigits

0 commit comments

Comments
 (0)