Skip to content

Commit

Permalink
Try Linux builds #14
Browse files Browse the repository at this point in the history
  • Loading branch information
christoph2 committed Aug 28, 2024
1 parent e5597c3 commit 42ebb15
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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]
Expand Down

0 comments on commit 42ebb15

Please sign in to comment.