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/wheel-builder.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- uses: actions/checkout@v7

- name: Build and test wheel
uses: pypa/cibuildwheel@v4.1.0
uses: pypa/cibuildwheel@v3.4.1
with:
package-dir: python
output-dir: wheelhouse
Expand Down
7 changes: 5 additions & 2 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,17 @@ authors = [
]
description = "Treelite: Universal model exchange format for decision tree forests"
readme = {file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.11"
requires-python = ">=3.8"
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 5 - Production/Stable",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
Expand Down Expand Up @@ -56,7 +59,7 @@ version = "CMakeLists.txt"
build-type = "Release"

[tool.cibuildwheel]
build = ["cp312-*"]
build = ["cp38-*"]
archs = ["auto64"] # so win32 is excluded
skip = ["*musllinux*"]
build-verbosity = 3
Expand Down
Loading