Skip to content

Commit

Permalink
Add ubuntu to build matrix; fix issue with setuptools and Python 3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
gmloose committed Sep 3, 2024
1 parent d423b0a commit 363f6ad
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
os: [macos-12, macos-14]
os: [ubuntu-latest, macos-12, macos-14]
toolchain:
- {compiler: gcc, version: 12}
include:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ requires = [
"numpy<2",
"scikit-build>=0.13",
"setuptools",
"setuptools<65; python_version<'3.11'",
"setuptools<65; python_version<'3.12'",
"setuptools_scm",
"wheel",
]
Expand Down Expand Up @@ -99,7 +99,7 @@ repair-wheel-command = """\
"""

[tool.cibuildwheel.linux]
skip = ["*-musllinux_*"]
skip = ["*-musllinux_*", "*_i686"]


###########################
Expand Down

0 comments on commit 363f6ad

Please sign in to comment.