Skip to content

Commit 195390b

Browse files
authored
Merge pull request #1550 from DimitriPapadopoulos/3.11
MAINT: build Python 3.11 wheels
2 parents 1346585 + 7fa8dde commit 195390b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build_wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- [macos-15-intel, macosx_x86_64]
5656
- [macos-15, macosx_arm64]
5757
- [windows-2022, win_amd64]
58-
python-version: ['3.9', '3.10', '3.12', '3.13', 'pypy3.10']
58+
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13', 'pypy3.10']
5959

6060
steps:
6161
- uses: actions/checkout@v4

test/test_run.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
import datetime
44
import glob
55
import os
6-
import platform
76
import re
87
import shutil
98
import textwrap
@@ -467,6 +466,7 @@ def test_format_durations():
467466
assert msg == expected
468467

469468

469+
@pytest.mark.skipif(tools.HAS_PYPY, reason="Times out randomly on pypy")
470470
def test_return_code(tmpdir, basic_conf_2):
471471
tmpdir, local, conf, machine_file = basic_conf_2
472472

0 commit comments

Comments
 (0)