diff --git a/.github/workflows/python-cibuildwheel.yml b/.github/workflows/python-cibuildwheel.yml index b4c63cf2f..783ee2abe 100644 --- a/.github/workflows/python-cibuildwheel.yml +++ b/.github/workflows/python-cibuildwheel.yml @@ -5,6 +5,8 @@ on: branches: [ master, release-* ] pull_request: branches: [ master ] + release: + types: [published] workflow_dispatch: jobs: @@ -183,7 +185,7 @@ jobs: upload_all: needs: [build_wheels, build_sdist] runs-on: ubuntu-latest - if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags') + if: github.event_name == 'release' steps: - uses: actions/download-artifact@v4 with: diff --git a/python/setup.py b/python/setup.py index 6a6720a82..6f3279d68 100644 --- a/python/setup.py +++ b/python/setup.py @@ -35,7 +35,7 @@ VERSION_MAJOR = 0 VERSION_MINOR = 6 -VERSION_PATCH = 3 +VERSION_PATCH = 4 VERSION_DEV = 0 IS_RELEASED = False @@ -418,6 +418,7 @@ class build_ext(custom_opts, build_cxx): "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", "Operating System :: MacOS :: MacOS X", diff --git a/rust/Cargo.toml b/rust/Cargo.toml index deb28627b..125fb8cb3 100644 --- a/rust/Cargo.toml +++ b/rust/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "keyvi" -version = "0.6.3" +version = "0.6.4" build = "build.rs" authors = ["Hendrik Muhs", "Narek Gharibyan ", "Subu "] license = "Apache-2.0"