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
2 changes: 1 addition & 1 deletion .github/workflows/keyvi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
uses: actions/checkout@v5

- name: ccache
uses: hendrikmuhs/[email protected].11
uses: hendrikmuhs/[email protected].18
with:
key: ${{ matrix.os }}-${{ matrix.type }}

Expand Down
24 changes: 12 additions & 12 deletions .github/workflows/python-cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,13 @@ jobs:
exclude:
- os: macos-13
target: musl
# skip pypy, https://github.com/pypa/distutils/issues/283
#- os: ubuntu-22.04
# target: musl
# flavor: pypy
#- os: macos-13
# flavor: pypy
- os: macos-14
target: musl

steps:
- uses: actions/checkout@v5
- name: ccache
uses: hendrikmuhs/[email protected].11
uses: hendrikmuhs/[email protected].18
with:
key: ${{ matrix.os }}-${{ matrix.target }}-${{ matrix.flavor }}-python

Expand Down Expand Up @@ -79,8 +76,8 @@ jobs:
- name: Build python wheels for ${{ matrix.os }}
uses: pypa/[email protected]
env:
# Skip CPython 3.{6, 7, 8}
CIBW_SKIP: ${{ env.CIBW_SKIP }} cp36-* cp37-* cp38-*
# Skip CPython 3.8
CIBW_SKIP: ${{ env.CIBW_SKIP }} cp38-*

# only build native packages
CIBW_ARCHS: native
Expand Down Expand Up @@ -127,7 +124,7 @@ jobs:
sudo apt-get update && \
sudo apt-get install -y libsnappy-dev libzzip-dev zlib1g-dev libboost-all-dev ccache
- name: ccache
uses: hendrikmuhs/[email protected].11
uses: hendrikmuhs/[email protected].18
with:
key: ubuntu-sdist-python

Expand All @@ -152,6 +149,11 @@ jobs:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
if: github.event_name == 'release'
environment:
name: pypi
url: https://pypi.org/p/keyvi
permissions:
id-token: write
steps:
- uses: actions/download-artifact@v5
with:
Expand All @@ -160,5 +162,3 @@ jobs:
path: dist

- uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.pypi_password }}
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[build-system]
requires = ["autowrap>=0.16.0", "msgpack>=1.0.0", "pytest>=7.1.1", "cython>=3.0"]
requires = ["autowrap>=0.23.0", "msgpack>=1.0.0", "pytest>=7.1.1", "cython>=3.0"]
2 changes: 1 addition & 1 deletion python/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
autowrap>=0.16.0
autowrap>=0.23.0
msgpack>=1.0.0
pytest>=7.1.1
cython>=3.0
Loading