From 1d504ac748a8df3c8aa5c6834740e2d391fe66ae Mon Sep 17 00:00:00 2001 From: Tushar Sadhwani Date: Mon, 20 Nov 2023 11:11:39 +0530 Subject: [PATCH] cleanup --- .github/workflows/build_compiled.yml | 9 +++++---- _compiled_pyproject.toml | 1 + 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build_compiled.yml b/.github/workflows/build_compiled.yml index cc98c3f899f691..270b938a599520 100644 --- a/.github/workflows/build_compiled.yml +++ b/.github/workflows/build_compiled.yml @@ -35,7 +35,7 @@ jobs: python-version: 3.11 - name: Install deps - run: python -m pip install cibuildwheel twine + run: python -m pip install cibuildwheel - name: Build wheels run: | @@ -45,14 +45,14 @@ jobs: uses: actions/upload-artifact@v3 with: name: builds-${{ matrix.builds.os }} - path: ./build/dist/* + path: ./build/wheelhouse/*.whl - name: Create GH release uses: softprops/action-gh-release@v1 if: startsWith(github.ref, 'refs/tags/') with: draft: true - files: ./build/dist/*.whl + files: ./build/wheelhouse/*.whl env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -62,4 +62,5 @@ jobs: TWINE_USERNAME: __token__ TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }} run: | - twine upload --skip-existing ./build/dist/* + python -m pip install twine + twine upload --skip-existing ./build/wheelhouse/* diff --git a/_compiled_pyproject.toml b/_compiled_pyproject.toml index 93a9a243a6c3b6..c5d6e2331098a4 100644 --- a/_compiled_pyproject.toml +++ b/_compiled_pyproject.toml @@ -6,6 +6,7 @@ description = "Compiled versions of the stdlib." authors = [ {name = "Tushar Sadhwani", email = "tushar.sadhwani000@gmail.com"}, ] +# TODO: bump this down requires-python = ">=3.11" [project.urls]