Skip to content

Commit

Permalink
Version bump 0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
diceroll123 committed Sep 30, 2023
1 parent 6a988a2 commit b70c1a8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 12 deletions.
27 changes: 16 additions & 11 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,23 +7,28 @@ on:
jobs:
linux:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python: [
{ version: '3.12', abi: 'cp312-cp312' },
{ version: '3.11', abi: 'cp311-cp311' },
{ version: '3.10', abi: 'cp310-cp310' },
{ version: '3.9', abi: 'cp39-cp39' },
{ version: '3.8', abi: 'cp38-cp38' },
]
steps:
- uses: actions/checkout@v2
- uses: PyO3/maturin-action@v1.40.2
with:
manylinux: auto
command: build
args: --release -o dist
args: --release -o dist -i python3.8
- uses: PyO3/maturin-action@v1.40.2
with:
manylinux: auto
command: build
args: --release -o dist -i python3.9
- uses: PyO3/maturin-action@v1.40.2
with:
manylinux: auto
command: build
args: --release -o dist -i python3.10
- uses: PyO3/maturin-action@v1.40.2
with:
manylinux: auto
command: build
args: --release -o dist -i python3.11
- name: Upload wheels
uses: actions/upload-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "neofoodclub"
version = "0.0.1"
version = "0.0.3"
edition = "2021"

[lib]
Expand Down

0 comments on commit b70c1a8

Please sign in to comment.