diff --git a/python-scikit-build.changes b/python-scikit-build.changes index e1ab72e..cdb9082 100644 --- a/python-scikit-build.changes +++ b/python-scikit-build.changes @@ -1,3 +1,12 @@ +------------------------------------------------------------------- +Sat Oct 29 15:32:48 UTC 2022 - Ben Greiner + +- Update to 0.16.1 + * Patch release that fixes a missing Python requires setting and + some missing files #790, and addresses a warning from + setuptools in the tests. +- Drop skbuild-pr785-ignoredeprecation.patch fixed upstream + ------------------------------------------------------------------- Sat Oct 29 12:54:06 UTC 2022 - Ben Greiner diff --git a/python-scikit-build.spec b/python-scikit-build.spec index ac27f13..a2677b5 100644 --- a/python-scikit-build.spec +++ b/python-scikit-build.spec @@ -27,15 +27,13 @@ %define skip_python2 1 Name: python-scikit-build%{psuffix} -Version: 0.16.0 +Version: 0.16.1 Release: 0 Summary: Improved build system generator for Python C/C++/Fortran/Cython extensions License: MIT URL: https://github.com/scikit-build/scikit-build Source: https://files.pythonhosted.org/packages/source/s/scikit-build/scikit-build-%{version}.tar.gz Source99: sample-setup.cfg -# PATCH-FIX-UPSTREAM skbuild-pr785-ignoredeprecation.patch gh#scikit-build/scikit-build#785 -Patch0: skbuild-pr785-ignoredeprecation.patch BuildRequires: %{python_module devel >= 3.6} BuildRequires: %{python_module pip} BuildRequires: %{python_module setuptools >= 42.0.0} diff --git a/scikit-build-0.16.0.tar.gz b/scikit-build-0.16.0.tar.gz deleted file mode 100644 index c56cc2f..0000000 --- a/scikit-build-0.16.0.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:ff2e64e8900d019d04893a3f70e6dc0f87ad83f4ba196b4d625db22ecf506c7f -size 269432 diff --git a/scikit-build-0.16.1.tar.gz b/scikit-build-0.16.1.tar.gz new file mode 100644 index 0000000..aa6a139 --- /dev/null +++ b/scikit-build-0.16.1.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:9b87dcac5cfd884ccfe313e66a1feea596075a99d370d20488314ae5d19296db +size 269763 diff --git a/skbuild-pr785-ignoredeprecation.patch b/skbuild-pr785-ignoredeprecation.patch deleted file mode 100644 index d3d69a0..0000000 --- a/skbuild-pr785-ignoredeprecation.patch +++ /dev/null @@ -1,21 +0,0 @@ -From 15ba29983fe24beabc03031369abfd610db7ec89 Mon Sep 17 00:00:00 2001 -From: Ben Greiner -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 = [