Skip to content

Commit

Permalink
cibuildwheel: build only cp38 to cp312
Browse files Browse the repository at this point in the history
  • Loading branch information
PierreRaybaut committed Aug 6, 2024
1 parent 5d068ce commit 11f6abe
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ classifiers = [
"Topic :: Software Development :: Widget Sets",
"Topic :: Utilities",
]
requires-python = ">=3.8, <=3.12" # Upper limit will be removed when dropping Python 3.8 support
requires-python = ">=3.8, <4"
dependencies = [
"guidata>=3.6.1",
"PythonQwt>=0.12.1",
Expand Down Expand Up @@ -107,3 +107,6 @@ line-ending = "auto" # Like Black, automatically detect the appropr

[tool.ruff.lint.per-file-ignores]
"doc/*" = ["E402"]

[tool.cibuildwheel]
build = ["cp38-*", "cp39-*", "cp310-*", "cp311-*", "cp312-*"]

0 comments on commit 11f6abe

Please sign in to comment.