From 733c95dac4d2c0586ae8b0def0621909bacbf3e4 Mon Sep 17 00:00:00 2001 From: Andreas Fehlner Date: Sat, 20 Jul 2024 22:40:44 +0200 Subject: [PATCH] update Signed-off-by: Andreas Fehlner --- .github/workflows/release_mac.yml | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) diff --git a/.github/workflows/release_mac.yml b/.github/workflows/release_mac.yml index a522151f616..ae732d182bb 100644 --- a/.github/workflows/release_mac.yml +++ b/.github/workflows/release_mac.yml @@ -85,17 +85,8 @@ jobs: brew install gnu-sed gsed -i '' 's/name = "onnx"/name = "onnx-weekly"/' 'pyproject.toml' - # Does not work; https://unix.stackexchange.com/questions/13711/differences-between-sed-on-mac-osx-and-other-standard-sed - # head -n 10 pyproject.toml - # todays_date=.dev'${{ inputs.currdate }}' - # cat VERSION_NUMBER - # cat $todays_date - # gsed -i "1s/$/$todays_date/" 'VERSION_NUMBER' - # cat VERSION_NUMBER - # export ONNX_PREVIEW_BUILD=1 - - python -m build --wheel - + export ONNX_PREVIEW_BUILD=1 + python -m build --wheel - uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b @@ -110,7 +101,7 @@ jobs: runs-on: ${{ (matrix.target-architecture == 'x86_64') && 'macos-12' || 'macos-14' }} strategy: matrix: - python-version: ['3.10'] # ['3.8', '3.9', '3.10', '3.11', '3.12'] + python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] target-architecture: ['x86_64', 'arm64'] steps: