diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 4f54276..d2e3efd 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -1,11 +1,6 @@ name: Build and deploy to PyPI -on: - workflow_dispatch: - pull_request: - push: - branches: - - main +on: push jobs: build_wheels: @@ -95,7 +90,7 @@ jobs: environment: pypi permissions: id-token: write - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') + if: startsWith(github.ref, 'refs/tags/v') steps: - uses: actions/download-artifact@v4 with: diff --git a/pyproject.toml b/pyproject.toml index cd3eca8..051d7e2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,7 +1,7 @@ [project] name = "libpypostal" description = "Python bindings for libpostal C library." -version = "0.0.4" +version = "0.0.5" requires-python = ">=3.8" readme = "README.md" license = {text = "MIT License"}