Skip to content
Open
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
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -122,14 +122,14 @@ jobs:

env:
# ---- Build selection ----
# Linux/Windows: Python 3.10, 3.11, 3.12
# macOS: Python 3.10, 3.11 only (skip 3.12)
CIBW_BUILD: "cp310-* cp311-* cp312-*"
CIBW_SKIP: "pp* *-musllinux_* cp312-macosx*"
# Linux/Windows: Python 3.10, 3.11, 3.12, 3.13, 3.14
# macOS: Python 3.10, 3.11 only (skip 3.12, 3.13, 3.14)
CIBW_BUILD: "cp310-* cp311-* cp312-* cp313-* cp314-*"
CIBW_SKIP: "pp* *-musllinux_* cp312-macosx* cp313-macosx* cp314-macosx*"
CIBW_ARCHS: ${{ matrix.arch }}

# ---- Dependencies ----
CIBW_BEFORE_BUILD: pip install pybind11==2.10.1
CIBW_BEFORE_BUILD: pip install "pybind11>=2.13.0"

# ---- Linux ----
CIBW_BEFORE_ALL_LINUX: bindings/python/tools/prepare_build_environment_linux.sh
Expand Down
2 changes: 1 addition & 1 deletion bindings/python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
requires = [
"setuptools>=61",
"wheel",
"pybind11>=2.10.4"
"pybind11>=2.13.0"
]
build-backend = "setuptools.build_meta"
[tool.isort]
Expand Down
2 changes: 2 additions & 0 deletions bindings/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ def _maybe_add_library_root(lib_name, header_only=False):
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Text Processing :: Linguistic",
"Topic :: Software Development :: Libraries :: Python Modules",
],
Expand Down
Loading