From 968146295383c81b43ee854b4932673d896795bf Mon Sep 17 00:00:00 2001 From: Aaron <29749331+aarnphm@users.noreply.github.com> Date: Tue, 28 Feb 2023 03:21:41 -0800 Subject: [PATCH] fix: release 0.0.3 Signed-off-by: Aaron <29749331+aarnphm@users.noreply.github.com> --- .github/workflows/wheels.yml | 6 +++--- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index f8f8259..9cc50f2 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -51,9 +51,6 @@ jobs: matrix: python: ["3.8", "3.9", "3.10", "3.11"] os: ["ubuntu-latest", "macos-latest"] - env: - TWINE_USERNAME: __token__ - TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} steps: - name: Checkout uses: actions/checkout@v3 @@ -81,6 +78,9 @@ jobs: name: artifact path: dist - name: Publish built wheels + env: + TWINE_USERNAME: __token__ + TWINE_PASSWORD: ${{ secrets.PYPI_API_TOKEN }} run: | pip install twine twine upload dist/* --repository pypi --verbose diff --git a/pyproject.toml b/pyproject.toml index 98c466c..9a5918e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -8,7 +8,7 @@ description = "whispercpp: Pybind11 bindings for whisper.cpp" readme = { file = "README.md", content-type = "text/markdown" } license = { text = "Apache-2.0" } requires-python = ">=3.8" -version = "0.0.2" +version = "0.0.3" classifiers = [ "Development Status :: 4 - Beta", "Intended Audience :: Developers",