Skip to content

Commit

Permalink
bump supported python versions in pyproject.toml (#796)
Browse files Browse the repository at this point in the history
* bump versions

* Update cibuildwheel.yml

* Update cibuildwheel.yml

* Update cibuildwheel.yml
  • Loading branch information
wu-haoze authored Apr 10, 2024
1 parent 3526396 commit 31eee10
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
run: docker system prune -a -f

- name: Build wheel
uses: pypa/cibuildwheel@v2.15.0
uses: pypa/cibuildwheel@v2.17.0
with:
output-dir: "./wheelhouse"
config-file: "{package}/pyproject.toml"
Expand Down
9 changes: 2 additions & 7 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [{ name = "The Marabou Development Team" }]
description = "A package wrapping the Marabou Neural Network Verification tool."
readme = "README.md"
license = { file = "COPYING" }
requires-python = ">=3.8,<3.12"
requires-python = ">=3.8,<=3.12"

[project.optional-dependencies]
test = [
Expand Down Expand Up @@ -59,18 +59,13 @@ skip = [
before-test = ["python {package}/setup.py build_ext --inplace"]
test-command = "pytest {package}/maraboupy/test"
test-extras = ["test"]
test-skip = [
# 2023-04-15: onnxruntime does not support Python 3.11
"cp311-*"
]
test-skip = []

[tool.cibuildwheel.linux]
before-all = "yum install -y wget"

[tool.cibuildwheel.macos]
test-skip = [
# 2023-04-15: onnxruntime does not support Python 3.11
"cp311-*",
# 2023-04-15: Skip trying to test arm64 builds on Intel Macs
"*-macosx_arm64",
"*-macosx_universal2:arm64"
Expand Down

0 comments on commit 31eee10

Please sign in to comment.