Skip to content

Commit d90732e

Browse files
authored
Merge pull request #262 from skirpichev/macos-wheels
Misc fixes
2 parents 6cec36b + c9fa606 commit d90732e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/os.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
strategy:
77
fail-fast: false
88
matrix:
9-
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-14]
9+
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-15]
1010
env:
1111
PYTEST_ADDOPTS: --verbose
1212
CFLAGS: -Wall -Wpedantic -Werror -std=c17 -Wconversion

.github/workflows/wheels.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ jobs:
66
runs-on: ${{ matrix.os }}
77
strategy:
88
matrix:
9-
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-13, macos-14,
9+
os: [ubuntu-24.04, ubuntu-24.04-arm, macos-15-intel, macos-15,
1010
windows-2022]
1111
steps:
1212
- uses: actions/checkout@v5

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ functions (`comb`_, `factorial`_, `gcd`_, `isqrt`_, `lcm`_ and `perm`_),
1010
compatible with the Python stdlib's module `math`_.
1111

1212
This module requires Python 3.9 or later versions and has been tested with
13-
CPython 3.9 through 3.14, with PyPy 3.11 and with GraalPy 24.2. Free-threading
13+
CPython 3.9 through 3.14, with PyPy 3.11 and with GraalPy 25.0. Free-threading
1414
builds of the CPython are supported.
1515

1616
Releases are available in the Python Package Index (PyPI) at

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ select = ["E", "F", "I", "PT", "W", "Q", "SIM"]
6767
[tool.cibuildwheel]
6868
build-frontend = {name="build", args=["--verbose"]}
6969
enable = "pypy cpython-prerelease cpython-freethreading graalpy"
70-
skip = """*-win32 *-manylinux_i686 *-musllinux_* \
70+
skip = """*-win32 gp311_242* *-manylinux_i686 *-musllinux_* \
7171
*-manylinux_armv7l pp*aarch64* gp3*win*"""
7272
before-all = "bash scripts/cibw_before_all.sh"
7373
test-extras = "tests"

0 commit comments

Comments
 (0)