diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index f8f1acc..b73e08f 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -30,7 +30,7 @@ jobs: # uses: PyO3/maturin-action@v1 # with: # 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' # manylinux: auto # - name: Upload wheels @@ -54,7 +54,7 @@ jobs: uses: PyO3/maturin-action@v1 with: 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' - name: Upload wheels uses: actions/upload-artifact@v3 @@ -76,7 +76,7 @@ jobs: uses: PyO3/maturin-action@v1 with: 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' - name: Upload wheels uses: actions/upload-artifact@v3 diff --git a/cmdapp/pyproject.toml b/cmdapp/pyproject.toml index 1e7ec8d..f5c4a5a 100644 --- a/cmdapp/pyproject.toml +++ b/cmdapp/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "vtracer" -version = "0.6.9" +version = "0.6.10" description = "Python bindings for the Rust Vtracer raster-to-vector library" authors = [ { name = "Chris Tsang", email = "chris.2y3@outlook.com" } ] readme = "vtracer/README.md"