From c0119e66fd8610736efaedb15bbb65fe726b2864 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Wed, 15 Oct 2025 20:51:37 +1100 Subject: [PATCH 1/3] Updated to macOS 15 --- .github/workflows/test.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ef16589a..a8d13822 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -20,16 +20,16 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu-latest, macos-13, macos-latest ] #, windows-latest] + os: [ubuntu-latest, macos-15-intel, macos-latest ] #, windows-latest] python-version: ["3.13"] # ["2.7", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "pypy3"] include: # By default, specify an OSX_VER of 11.0, triggering ARM64 build. - python-osx-ver: "11.0" - # macos-13 is the last remaining x86-64 runner; + # macos-15-intel is the last remaining x86-64 runner; # set OSX_VER to 10.9 trigger x86_64 builds by default. - - os: macos-13 + - os: macos-15-intel python-osx-ver: "10.9" # The type of runner that the job will run on From ff4b6bfb81e4ae7fefa643e2f3da79673566d316 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Wed, 15 Oct 2025 21:06:05 +1100 Subject: [PATCH 2/3] Updated libpng to 1.6.50 --- library_builders.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library_builders.sh b/library_builders.sh index 7f41a727..c666729a 100644 --- a/library_builders.sh +++ b/library_builders.sh @@ -13,7 +13,7 @@ OPENBLAS_LIB_URL="https://anaconda.org/multibuild-wheels-staging/openblas-libs" OPENBLAS_VERSION="${OPENBLAS_VERSION:-0.3.10}" # We use system zlib by default - see build_new_zlib ZLIB_VERSION="${ZLIB_VERSION:-1.2.10}" -LIBPNG_VERSION="${LIBPNG_VERSION:-1.6.37}" +LIBPNG_VERSION="${LIBPNG_VERSION:-1.6.50}" BZIP2_VERSION="${BZIP2_VERSION:-1.0.7}" FREETYPE_VERSION="${FREETYPE_VERSION:-2.11.0}" TIFF_VERSION="${TIFF_VERSION:-4.1.0}" From fb8ecdbe64b317a087149b06ba87f162e72bc1e0 Mon Sep 17 00:00:00 2001 From: Andrew Murray Date: Wed, 15 Oct 2025 21:29:00 +1100 Subject: [PATCH 3/3] Updated zlib to 1.3.1 --- library_builders.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library_builders.sh b/library_builders.sh index c666729a..685a05e6 100644 --- a/library_builders.sh +++ b/library_builders.sh @@ -12,7 +12,7 @@ OPENBLAS_LIB_URL="https://anaconda.org/multibuild-wheels-staging/openblas-libs" # Recipes for building some libraries OPENBLAS_VERSION="${OPENBLAS_VERSION:-0.3.10}" # We use system zlib by default - see build_new_zlib -ZLIB_VERSION="${ZLIB_VERSION:-1.2.10}" +ZLIB_VERSION="${ZLIB_VERSION:-1.3.1}" LIBPNG_VERSION="${LIBPNG_VERSION:-1.6.50}" BZIP2_VERSION="${BZIP2_VERSION:-1.0.7}" FREETYPE_VERSION="${FREETYPE_VERSION:-2.11.0}"