Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tusharsadhwani committed Nov 20, 2023
1 parent 0977095 commit 1d504ac
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/build_compiled.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand All @@ -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 }}

Expand All @@ -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/*
1 change: 1 addition & 0 deletions _compiled_pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ description = "Compiled versions of the stdlib."
authors = [
{name = "Tushar Sadhwani", email = "[email protected]"},
]
# TODO: bump this down
requires-python = ">=3.11"

[project.urls]
Expand Down

0 comments on commit 1d504ac

Please sign in to comment.