From 43bfbf37a9918209f55a3ff023fa2516d261b6b0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Sep 2024 22:03:46 +0000 Subject: [PATCH 1/3] Bump actions/download-artifact from 2 to 4.1.7 in /.github/workflows Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from 2 to 4.1.7. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/v2...v4.1.7) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 50e91df..a8fa98d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -124,7 +124,7 @@ jobs: needs: [build_wheels, build_sdist] runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v2 + - uses: actions/download-artifact@v4.1.7 with: name: artifact path: dist From 3e0d899ca3c2f1e1e6ef0c061c0ff1dbed865b48 Mon Sep 17 00:00:00 2001 From: vincentsarago Date: Mon, 20 Jan 2025 16:21:03 +0100 Subject: [PATCH 2/3] update version --- .github/workflows/ci.yml | 10 ++++++---- vtzero/version.py | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5cb2a8b..77e1091 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -92,9 +92,10 @@ jobs: CIBW_SKIP: 'pp*' CIBW_ARCHS_MACOS: auto universal2 - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: path: ./wheelhouse + overwrite: true build_sdist: needs: [tests] @@ -117,20 +118,21 @@ jobs: - name: Build sdist run: python setup.py sdist - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: path: dist/*.tar.gz + overwrite: true upload_pypi: needs: [build_wheels, build_sdist] runs-on: ubuntu-latest steps: - - uses: actions/download-artifact@v4.1.7 + - uses: actions/download-artifact@v4 with: name: artifact path: dist - - uses: pypa/gh-action-pypi-publish@master + - uses: pypa/gh-action-pypi-publish@release/v1 with: user: ${{ secrets.PYPI_USERNAME }} password: ${{ secrets.PYPI_PASSWORD }} diff --git a/vtzero/version.py b/vtzero/version.py index b9777ba..545c080 100644 --- a/vtzero/version.py +++ b/vtzero/version.py @@ -1,3 +1,3 @@ """vtzero version.""" -__version__ = "0.0.1b4" +__version__ = "0.0.1b5" From 41e628d8b0ec45c0ec08951ebbde3ca87f14e2b0 Mon Sep 17 00:00:00 2001 From: vincentsarago Date: Fri, 24 Jan 2025 14:32:29 +0100 Subject: [PATCH 3/3] fix CI release --- .github/workflows/ci.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77e1091..9c02bf4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -80,7 +80,7 @@ jobs: python-version: '3.10' - name: Install cibuildwheel - run: python -m pip install cibuildwheel==2.11.1 + run: python -m pip install cibuildwheel==2.22.0 - name: Install dependencies run: | @@ -94,8 +94,8 @@ jobs: - uses: actions/upload-artifact@v4 with: - path: ./wheelhouse - overwrite: true + name: vtzero-wheels-${{ matrix.os }}-${{ strategy.job-index }} + path: ./wheelhouse/*.whl build_sdist: needs: [tests] @@ -120,8 +120,8 @@ jobs: - uses: actions/upload-artifact@v4 with: + name: vtzero-sdist path: dist/*.tar.gz - overwrite: true upload_pypi: needs: [build_wheels, build_sdist] @@ -129,8 +129,9 @@ jobs: steps: - uses: actions/download-artifact@v4 with: - name: artifact + pattern: vtzero-* path: dist + merge-multiple: true - uses: pypa/gh-action-pypi-publish@release/v1 with: