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
6 changes: 3 additions & 3 deletions .github/workflows/build_and_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ jobs:
CIBW_ARCHS_WINDOWS: "AMD64 x86"

# ---- General settings ----
# Build wheels for CPython 3.11–3.13
CIBW_BUILD: "cp311-* cp312-* cp313-*"
# Build wheels for CPython 3.11–3.14
CIBW_BUILD: "cp311-* cp312-* cp313-* cp314-*"

# If needed, skip PyPy or unsupported combos
CIBW_SKIP: "pp* *-manylinux_i686"
Expand All @@ -43,7 +43,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install cibuildwheel
run: pip install cibuildwheel==2.22.0
run: pip install "cibuildwheel>=2.23"

- name: Build wheels
run: cibuildwheel
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ jobs:
CIBW_ARCHS_WINDOWS: "AMD64 x86"

# ---- General settings ----
# Build wheels for CPython 3.11–3.13
CIBW_BUILD: "cp311-* cp312-* cp313-*"
# Build wheels for CPython 3.11–3.14
CIBW_BUILD: "cp311-* cp312-* cp313-* cp314-*"

# If needed, skip PyPy or unsupported combos
CIBW_SKIP: "pp* *-manylinux_i686"
Expand All @@ -40,7 +40,7 @@ jobs:
- uses: actions/checkout@v4

- name: Install cibuildwheel
run: pip install cibuildwheel==2.22.0
run: pip install "cibuildwheel>=2.23"

- name: Build wheels
run: cibuildwheel
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests_and_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.11, 3.12, 3.13]
python-version: [3.11, 3.12, 3.13, 3.14]
steps:
- uses: actions/checkout@v3

Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,8 @@
</p>

<p align="center">
<img src="https://img.shields.io/badge/python-%203.11%20|%203.12%20|%203.13-green" alt="Python Versions">
<img src="https://img.shields.io/badge/python-%203.11%20|%203.12%20|%203.13%20|%203.14-green" alt="Python Versions">
<img src="https://img.shields.io/codecov/c/github/corticph/error-align/main.svg?style=flat-square" alt="Coverage" style="margin-left:5px;">
<img src="https://github.com/corticph/error-align/actions/workflows/lint.yml/badge.svg?branch=main" alt="Linting" style="margin-left:5px;">
<img src="https://img.shields.io/pypi/v/error-align.svg" alt="PyPI" style="margin-left:5px;">
<img src="https://img.shields.io/badge/License-MIT-blue.svg" alt="License" style="margin-left:5px;">
</p>
Expand Down
10 changes: 5 additions & 5 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name = "error-align"
version = "0.1.0b5"
description = "Text-to-text alignment algorithm for speech recognition error analysis."
readme = "README.md"
requires-python = ">=3.11,<3.14"
requires-python = ">=3.11,<3.15"
license = { text = "MIT" }
authors = [{ name = "Lasse Borgholt", email = "lb@corti.ai" }]
keywords = ["speech-recognition", "text-alignment", "NLP", "evaluation"]
Expand Down