Skip to content

Commit

Permalink
Increase version
Browse files Browse the repository at this point in the history
  • Loading branch information
saulshanabrook committed Jan 9, 2023
1 parent 10cea73 commit b26da3a
Showing 1 changed file with 4 additions and 8 deletions.
12 changes: 4 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,15 +35,11 @@ jobs:
if: "startsWith(github.ref, 'refs/tags/')"
steps:
- uses: actions/checkout@v3
- uses: PyO3/maturin-action@v1.31.0
- uses: PyO3/maturin-action@v1.34.0
with:
manylinux: auto
command: build
args: --release -o dist --find-interpreter
# Pin rust toolchain, so it won't install 1.65.0, otherwise get this error:
# Attempting to include the sdist output tarball dist/egg_smol-0.1.0.tar.gz into itself! Check 'cargo package --list' output.
# https://github.com/metadsl/egg-smol-python/actions/runs/3388178229/jobs/5629843303
rust-toolchain: "1.64.0"
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
Expand All @@ -56,7 +52,7 @@ jobs:
if: "startsWith(github.ref, 'refs/tags/')"
steps:
- uses: actions/checkout@v3
- uses: PyO3/maturin-action@v1.31.0
- uses: PyO3/maturin-action@v1.34.0
with:
command: build
args: --release -o dist --find-interpreter
Expand All @@ -72,7 +68,7 @@ jobs:
if: "startsWith(github.ref, 'refs/tags/')"
steps:
- uses: actions/checkout@v3
- uses: PyO3/maturin-action@v1.31.0
- uses: PyO3/maturin-action@v1.34.0
with:
command: build
args: --release -o dist --universal2 --find-interpreter
Expand All @@ -92,7 +88,7 @@ jobs:
with:
name: wheels
- name: Publish to PyPI
uses: PyO3/maturin-action@v1.31.0
uses: PyO3/maturin-action@v1.34.0
env:
MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
with:
Expand Down

0 comments on commit b26da3a

Please sign in to comment.