Try again

This commit is contained in:
Chris Tsang
2023-09-16 19:27:30 +01:00
parent e44e750721
commit 1080c562ce
2 changed files with 4 additions and 4 deletions

View File

@@ -30,7 +30,7 @@ jobs:
# uses: PyO3/maturin-action@v1 # uses: PyO3/maturin-action@v1
# with: # with:
# target: ${{ matrix.target }} # target: ${{ matrix.target }}
# args: -m cmdapp/Cargo.toml --release --out dist --find-interpreter # args: -m cmdapp/Cargo.toml --release --lib --features=python-binding --out dist --find-interpreter
# sccache: 'true' # sccache: 'true'
# manylinux: auto # manylinux: auto
# - name: Upload wheels # - name: Upload wheels
@@ -54,7 +54,7 @@ jobs:
uses: PyO3/maturin-action@v1 uses: PyO3/maturin-action@v1
with: with:
target: ${{ matrix.target }} target: ${{ matrix.target }}
args: -m cmdapp/Cargo.toml --release --out dist --find-interpreter args: -m cmdapp/Cargo.toml --release --lib --features=python-binding --out dist --find-interpreter
sccache: 'true' sccache: 'true'
- name: Upload wheels - name: Upload wheels
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3
@@ -76,7 +76,7 @@ jobs:
uses: PyO3/maturin-action@v1 uses: PyO3/maturin-action@v1
with: with:
target: ${{ matrix.target }} target: ${{ matrix.target }}
args: -m cmdapp/Cargo.toml --release --out dist --find-interpreter args: -m cmdapp/Cargo.toml --release --lib --features=python-binding --out dist --find-interpreter
sccache: 'true' sccache: 'true'
- name: Upload wheels - name: Upload wheels
uses: actions/upload-artifact@v3 uses: actions/upload-artifact@v3

View File

@@ -1,6 +1,6 @@
[project] [project]
name = "vtracer" name = "vtracer"
version = "0.6.9" version = "0.6.10"
description = "Python bindings for the Rust Vtracer raster-to-vector library" description = "Python bindings for the Rust Vtracer raster-to-vector library"
authors = [ { name = "Chris Tsang", email = "chris.2y3@outlook.com" } ] authors = [ { name = "Chris Tsang", email = "chris.2y3@outlook.com" } ]
readme = "vtracer/README.md" readme = "vtracer/README.md"