From daddab23762b098cc83d300eaca4a7de1270d725 Mon Sep 17 00:00:00 2001 From: gmweaver Date: Thu, 6 Jun 2024 16:13:57 -0700 Subject: [PATCH] fix deploy and bump version to 0.0.5 --- .github/workflows/deploy.yml | 9 ++------- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 8 deletions(-) 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"}