diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 719c15c..10767c5 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -15,10 +15,10 @@ jobs: strategy: matrix: os: - - ubuntu-20.04 - - windows-2019 + - ubuntu-latest + - windows-latest - macos-13 # x86_64 - - macos-14 # amr64 + - macos-latest # arm64 fail-fast: false steps: @@ -27,10 +27,10 @@ jobs: - uses: yezz123/setup-uv@v4 with: - uv-version: 0.2.18 + uv-version: 0.2.33 - name: Build wheels for CPython - uses: pypa/cibuildwheel@v2.19.2 + uses: pypa/cibuildwheel@v2.20.0 with: output-dir: dist diff --git a/pyproject.toml b/pyproject.toml index b1897ee..9883fed 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -124,10 +124,9 @@ filterwarnings = [ ] [tool.cibuildwheel] -build = "cp310-* cp311-* cp312-*" +build = "cp310-* cp311-* cp312-* cp313-*" build-frontend = "build[uv]" build-verbosity = 1 -test-skip = "*-musllinux*" test-command = [ "uv pip install -r {project}/requirements/tests.txt", "pytest {project} --color=yes -ra", diff --git a/requirements/tests.txt b/requirements/tests.txt index ad1d4f3..99934c9 100644 --- a/requirements/tests.txt +++ b/requirements/tests.txt @@ -2,3 +2,5 @@ coverage[toml]>=6.5 pytest>=7.0.0 pytest-mpl>=0.16.1 matplotlib>=3.5 +# https://github.com/matplotlib/matplotlib/issues/28551 +matplotlib!=3.9.1 ; platform_system=='Windows'