Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/python-cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [ master, release-* ]
pull_request:
branches: [ master ]
release:
types: [published]
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -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:
Expand Down
3 changes: 2 additions & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

VERSION_MAJOR = 0
VERSION_MINOR = 6
VERSION_PATCH = 3
VERSION_PATCH = 4
VERSION_DEV = 0
IS_RELEASED = False

Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "keyvi"
version = "0.6.3"
version = "0.6.4"
build = "build.rs"
authors = ["Hendrik Muhs<[email protected]>", "Narek Gharibyan <[email protected]>", "Subu <[email protected]>"]
license = "Apache-2.0"
Expand Down
Loading