From 1bfc553f0a1d1f3ab5423884c20e149c9057c230 Mon Sep 17 00:00:00 2001 From: RamSaw Date: Tue, 24 Mar 2026 00:18:52 +0100 Subject: [PATCH 1/3] Fix mac os --- .github/workflows/publish.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 404e9d82..f49ac17a 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -11,17 +11,17 @@ jobs: max-parallel: 12 matrix: # TODO: fix for Mac and Windows. - os: [ubuntu-latest] + os: [ubuntu-latest, macos-latest] python-version: [3.11, 3.12, 3.13, 3.14] runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: submodules: true - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} @@ -106,7 +106,7 @@ jobs: - name: Get poetry cache dir id: poetry-cache run: | - echo "::set-output name=dir::$(poetry config cache-dir)" + echo \"dir=$(poetry config cache-dir)\" >> $GITHUB_OUTPUT - name: poetry cache uses: actions/cache@v4 @@ -123,7 +123,7 @@ jobs: - name: Build PyDP macOS wheel if: runner.os == 'macOS' run: | - poetry run python setup.py build bdist_wheel --plat-name macosx_10_14_x86_64 + poetry run python setup.py build bdist_wheel - name: Build PyDP Windows wheel if: runner.os == 'Windows' From f65d5502bb46cafc7367cdc2c4618acf3b14be72 Mon Sep 17 00:00:00 2001 From: RamSaw Date: Tue, 24 Mar 2026 00:28:04 +0100 Subject: [PATCH 2/3] Update TODO comment in publish.yml --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f49ac17a..f8e33670 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -10,7 +10,7 @@ jobs: fail-fast: false max-parallel: 12 matrix: - # TODO: fix for Mac and Windows. + # TODO: fix for Windows. os: [ubuntu-latest, macos-latest] python-version: [3.11, 3.12, 3.13, 3.14] runs-on: ${{ matrix.os }} From 1d83597d313b995a3d0c0023b06028a8aafaadb4 Mon Sep 17 00:00:00 2001 From: RamSaw Date: Tue, 24 Mar 2026 00:30:32 +0100 Subject: [PATCH 3/3] Small change --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index f8e33670..dc1061d0 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -106,7 +106,7 @@ jobs: - name: Get poetry cache dir id: poetry-cache run: | - echo \"dir=$(poetry config cache-dir)\" >> $GITHUB_OUTPUT + echo "dir=$(poetry config cache-dir)" >> $GITHUB_OUTPUT - name: poetry cache uses: actions/cache@v4