Accepting request 1032214 from home:bnavigator:branches:devel:languages:python:numeric

- 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

OBS-URL: https://build.opensuse.org/request/show/1032214
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-scikit-build?expand=0&rev=24
This commit is contained in:
Benjamin Greiner 2022-10-29 15:45:46 +00:00 committed by Git OBS Bridge
parent a22a251cad
commit 149d6d54e0
5 changed files with 13 additions and 27 deletions

View File

@ -1,3 +1,12 @@
-------------------------------------------------------------------
Sat Oct 29 15:32:48 UTC 2022 - Ben Greiner <code@bnavigator.de>
- 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 <code@bnavigator.de>

View File

@ -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}

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ff2e64e8900d019d04893a3f70e6dc0f87ad83f4ba196b4d625db22ecf506c7f
size 269432

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:9b87dcac5cfd884ccfe313e66a1feea596075a99d370d20488314ae5d19296db
size 269763

View File

@ -1,21 +0,0 @@
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 = [