Skip to content

Commit 8e17bc8

Browse files
committed
Add macOS ARM builds
1 parent 8cc6b58 commit 8e17bc8

4 files changed

Lines changed: 6 additions & 7 deletions

File tree

.github/workflows/build_and_install.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ jobs:
1212
runs-on: ${{ matrix.os }}
1313
strategy:
1414
matrix:
15-
os: [ubuntu-24.04, macOS-13]
16-
python-version: ["3.10", "3.13"]
15+
os: [ubuntu-24.04, macOS-13, macOS-15]
16+
python-version: ["3.11", "3.13"]
1717
timeout-minutes: 5
1818

1919
steps:

.github/workflows/release-pypi.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ jobs:
3131
name: Build wheels for MacOS
3232
strategy:
3333
matrix:
34-
os: [macOS-13]
35-
python: ["3.10", "3.11", "3.12", "3.13"]
34+
os: [macOS-13, macOS-15]
35+
python: ["3.11", "3.12", "3.13"]
3636

3737
steps:
3838
- uses: actions/checkout@v4

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "fast_unidecode"
3-
version = "1.0.0"
3+
version = "1.0.1"
44
edition = "2024"
55
authors = ["Daniel Stancl <daniel.stancl@gmail.com>", "Amit Chowdhury <amitc97@gmail.com>"]
66
description = "Provides pure ASCII transliterations of Unicode strings."
@@ -16,7 +16,6 @@ keywords = [
1616
]
1717
classifiers = [
1818
"Programming Language :: Python",
19-
"Programming Language :: Python :: 3.10",
2019
"Programming Language :: Python :: 3.11",
2120
"Programming Language :: Python :: 3.12",
2221
"Programming Language :: Python :: 3.13"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div align="center">
44

55
[![Build](https://github.com/stancld/rust-unidecode/actions/workflows/build_and_install.yml/badge.svg?branch=master&event=push)](https://github.com/stancld/rust-unidecode/actions/workflows/build_and_install.yml)
6-
[![Python version](https://img.shields.io/badge/python-3.10%7C3.11%7C3.12%7C3.13-blue)](https://img.shields.io/badge/python-3.10%7C3.11%7C3.12%7C3.13-blue)
6+
[![Python version](https://img.shields.io/badge/python-3.11%7C3.12%7C3.13-blue)](https://img.shields.io/badge/python-3.11%7C3.12%7C3.13-blue)
77
[![Tests](https://github.com/stancld/rust-unidecode/actions/workflows/tests.yml/badge.svg?branch=master&event=push)](https://github.com/stancld/rust-unidecode/actions/workflows/tests.yml)
88
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/stancld/rust-unidecode/blob/master/LICENSE)
99

0 commit comments

Comments
 (0)