From 43e66a615af7b54439db530c8e46dc02d1fce85f Mon Sep 17 00:00:00 2001 From: severinsimmler Date: Thu, 12 Dec 2024 09:34:55 +0100 Subject: [PATCH] fix: gh actions --- .github/workflows/main.yml | 4 +++- pyproject.toml | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d266fea..3029afc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,4 +27,6 @@ jobs: run: cibuildwheel --output-dir dist - name: Deploy wheels - run: poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }} && poetry publish + run: | + poetry config pypi-token.pypi ${{ secrets.PYPI_TOKEN }} + poetry publish diff --git a/pyproject.toml b/pyproject.toml index e55fc1f..18b5909 100755 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "chaine" -version = "3.13.0" +version = "3.13.1" description = "Linear-chain conditional random fields for natural language processing" authors = ["Severin Simmler "] readme = "README.md"