Skip to content

Commit

Permalink
v0.12.4 - Trying Linux aarch64 with qemu workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
atomflunder committed Jul 7, 2022
1 parent b4f0aaa commit 7b7f4e8
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_sdist.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: Build sdist

on: [push, pull_request]

Expand Down
19 changes: 17 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build
name: Build wheels

on: [push, pull_request]

Expand All @@ -9,12 +9,27 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04, windows-2019, macos-10.15]
arch: [auto]
include:
- os: ubuntu-20.04
arch: aarch64

steps:
- uses: actions/checkout@v3

- name: Set up QEMU
if: ${{ matrix.arch == 'aarch64' }}
uses: docker/setup-qemu-action@v1

- name: Build wheels
run: pipx run cibuildwheel==2.8.0
uses: pypa/cibuildwheel@v2.8.0
# env:
# CIBW_SOME_OPTION: value
# ...
# with:
# package-dir: .
# output-dir: wheelhouse
# config-file: {package}/pyproject.toml

- uses: actions/upload-artifact@v3
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ This library **matches compares and strings to each other** based mainly on, amo
What makes stringmatch special compared to other libraries with similar functions:

- 💨 Lightweight, straightforward and easy to use
- ⚡ High speed - at least ~10x faster than fuzzywuzzy and up to 50x
- ⚡ High speed - at least ~10x faster than thefuzz and up to 50x
- 🧰 Allows for highly customisable searches, that yield better results
- 📚 Lots of utility functions to make your life easier
- 📝 Statically typed, using mypy
Expand Down

0 comments on commit 7b7f4e8

Please sign in to comment.