From f71dd47907940cf6256ab9c60c84ed5bfa725f0c Mon Sep 17 00:00:00 2001 From: Chris Tsang Date: Sat, 16 Sep 2023 17:47:04 +0100 Subject: [PATCH] python release --- .github/workflows/python.yml | 6 +++--- cmdapp/pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index ce480ba..d446de5 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 --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 --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 --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 e463390..bb1fa68 100644 --- a/cmdapp/pyproject.toml +++ b/cmdapp/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "vtracer" -version = "0.6.7" +version = "0.6.8" description = "Python bindings for the Rust Vtracer raster-to-vector library" authors = [ { name = "Chris Tsang", email = "chris.2y3@outlook.com" } ] readme = "vtracer/README.md"