From 31eee10f610faeec7ffacb1600be15b940cb094d Mon Sep 17 00:00:00 2001 From: "Haoze(Andrew) Wu" Date: Tue, 9 Apr 2024 17:04:46 -0700 Subject: [PATCH] bump supported python versions in pyproject.toml (#796) * bump versions * Update cibuildwheel.yml * Update cibuildwheel.yml * Update cibuildwheel.yml --- .github/workflows/cibuildwheel.yml | 2 +- pyproject.toml | 9 ++------- 2 files changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/cibuildwheel.yml b/.github/workflows/cibuildwheel.yml index 510bbdc4d..9fbf54126 100644 --- a/.github/workflows/cibuildwheel.yml +++ b/.github/workflows/cibuildwheel.yml @@ -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" diff --git a/pyproject.toml b/pyproject.toml index e17df9246..48ffd825a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [ @@ -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"