diff --git a/.github/workflows/pythonapp.yml b/.github/workflows/pythonapp.yml index 5b2775d..3d18223 100644 --- a/.github/workflows/pythonapp.yml +++ b/.github/workflows/pythonapp.yml @@ -12,11 +12,12 @@ on: jobs: build_wheels: name: Build wheels on ${{ matrix.os }} + continue-on-error: true runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - os: [windows-latest, ubuntu-latest, macos-13, macos-14] + os: [windows-latest, ubuntu-latest] # , macos-13, macos-14 # cibw_archs: ["x86_64", ""] #include: # - os: ubuntu-latest diff --git a/pyproject.toml b/pyproject.toml index 85277cd..7dc569e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -172,8 +172,7 @@ build-verbosity = 3 #test-command = "pytest {package}/tests" build = "cp3{8,9,10,11,12,13}-*" -manylinux-x86_64-image = "manylinux_2_28" -skip = ["*-manylinux_i686", "*-musllinux_x86_64", "*-musllinux_i686", "cp311-win_amd64", "cp38-manylinux*", "cp39-manylinux*"] +skip = ["*-manylinux_i686", "*-musllinux_x86_64", "*-musllinux_i686", "cp311-win_amd64", "cp312-win_amd64", "cp313-win_amd64", "cp38-manylinux*", "cp39-manylinux*"] build-frontend = "build" [tool.cibuildwheel.macos] @@ -187,7 +186,8 @@ select = "cp3?-*" manylinux-x86_64-image = "manylinux2014" [tool.cibuildwheel.linux] -archs = ["auto", "aarch64"] +# archs = ["auto", "aarch64"] +archs = ["x86_64"] before-all = "yum install -y libffi openssl openssl-devel gcc" [tool.pyright]