From 212d0b7b4d260b194ceb6a0030d2ee22372b4d75 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Paul=20M=C3=BCller?= Date: Sat, 23 Dec 2023 00:25:19 +0100 Subject: [PATCH] ci: fix pipeline --- .github/workflows/deploy_pypi.yml | 9 +++------ CHANGELOG | 2 ++ 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/deploy_pypi.yml b/.github/workflows/deploy_pypi.yml index 2085e6d..a629fbf 100644 --- a/.github/workflows/deploy_pypi.yml +++ b/.github/workflows/deploy_pypi.yml @@ -11,7 +11,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, windows-2019, macos-11] + os: [ubuntu-latest] steps: - uses: actions/checkout@v4 @@ -21,11 +21,8 @@ jobs: # Used to host cibuildwheel - uses: actions/setup-python@v3 - - name: Install cibuildwheel - run: python -m pip install cibuildwheel - - name: Build wheels - run: python -m cibuildwheel --output-dir wheelhouse + run: python -m pip wheel --no-deps -w dist - name: publish env: @@ -33,7 +30,7 @@ jobs: TWINE_PASSWORD: ${{ secrets.PYPI_PWD }} run: | pipx install twine - twine upload --skip-existing wheelhouse/* + twine upload --skip-existing dist/* build_sdist: name: Build source distribution diff --git a/CHANGELOG b/CHANGELOG index 0ddbd01..b5f557c 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,5 @@ +0.1.3 + - maintenance release 0.1.2 - ci: fix pypi build 0.1.1