forked from pool/python-scikit-build
- Update to 0.16.0 * This release adds support for Python 3.11 and removes support for Python 2.7 and 3.5 (#688). Testing and static checking improved, including being fully statically typed internally (though setuptools is not fully typed, so it is of limited use). * All deprecated setuptools/distutils features are also deprecated in scikit-build, like the test command, easy_install, etc. Editable mode is still unsupported. Python 3.6 support is deprecated. Older versions of CMake (<3.15) are not recommended; a future version will remove support for older CMake's (along with providing a better mechanism for ensuring a proper CMake is available). If you need any of these features, please open or find an issue explaining what and why you need something. * Cython module now supports FindPython mode. #743 * PyPy is discovered without extra settings in FindPython mode #744 * FindPython mode uses a new path specification, should help make it usable. #774 * Better flushing and output streams for more consistent output ordering. #781 - Add skbuild-pr785-ignoredeprecation.patch * gh#scikit-build/scikit-build#785 - Update to 0.15.0 * Add support for FindPython (including 2 and 3). Thanks @hameerabbasi for the contribution. See #712. * Add support for Cygwin. Thanks @ax3l and @DWesl and @poikilos for the help! See #485. OBS-URL: https://build.opensuse.org/request/show/1032211 OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-scikit-build?expand=0&rev=23
22 lines
833 B
Diff
22 lines
833 B
Diff
From 15ba29983fe24beabc03031369abfd610db7ec89 Mon Sep 17 00:00:00 2001
|
|
From: Ben Greiner <code@bnavigator.de>
|
|
Date: Sat, 29 Oct 2022 15:57:01 +0200
|
|
Subject: [PATCH 1/2] Ignore distutils deprecation warning
|
|
|
|
---
|
|
pyproject.toml | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
Index: scikit-build-0.16.0/pyproject.toml
|
|
===================================================================
|
|
--- scikit-build-0.16.0.orig/pyproject.toml
|
|
+++ scikit-build-0.16.0/pyproject.toml
|
|
@@ -86,6 +86,7 @@ filterwarnings = [
|
|
"ignore:Config variable 'Py_DEBUG' is unset:RuntimeWarning",
|
|
"ignore:Config variable 'WITH_PYMALLOC' is unset, Python ABI tag may be incorrect:RuntimeWarning",
|
|
'ignore:\s*Installing .* as data is deprecated:Warning',
|
|
+ "ignore:shell/Perl-style subs.* are deprecated:DeprecationWarning",
|
|
]
|
|
log_cli_level = "info"
|
|
markers = [
|