1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
|
Description: Remove python 3.13 from the classifiers list in pyproject.toml
to avoid build errors. Python 3.13 is not shipped in bookworm(-backports).
Author: Santiago Ruano Rincón <santiago@freexian.com>
Forwarded: not-needed
Index: scikit-build-core/pyproject.toml
===================================================================
--- scikit-build-core.orig/pyproject.toml
+++ scikit-build-core/pyproject.toml
@@ -25,7 +25,6 @@ classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
- "Programming Language :: Python :: 3.13",
"Development Status :: 4 - Beta",
"Typing :: Typed",
]
|