Andrew Geissler | 3eeda90 | 2023-05-19 10:14:02 -0500 | [diff] [blame] | 1 | We don't need to build ninja so there's no need to use scikit-build, |
| 2 | as we just need the python module with it's one ninja() function. |
| 3 | |
| 4 | Upstream-Status: Inappropriate |
| 5 | Signed-off-by: Ross Burton <ross.burton@arm.com> |
| 6 | |
| 7 | diff --git a/pyproject.toml b/pyproject.toml |
| 8 | index b895c20..577b642 100644 |
| 9 | --- a/pyproject.toml |
| 10 | +++ b/pyproject.toml |
Patrick Williams | 169d7bc | 2024-01-05 11:33:25 -0600 | [diff] [blame^] | 11 | @@ -2,7 +2,6 @@ |
Andrew Geissler | 3eeda90 | 2023-05-19 10:14:02 -0500 | [diff] [blame] | 12 | requires = [ |
Patrick Williams | 169d7bc | 2024-01-05 11:33:25 -0600 | [diff] [blame^] | 13 | "setuptools >=42", |
| 14 | "setuptools-scm[toml]", |
| 15 | - "scikit-build", |
Andrew Geissler | 3eeda90 | 2023-05-19 10:14:02 -0500 | [diff] [blame] | 16 | ] |
| 17 | build-backend = "setuptools.build_meta" |
| 18 | |
| 19 | diff --git a/setup.py b/setup.py |
| 20 | index dbe1fbc..3259754 100755 |
| 21 | --- a/setup.py |
| 22 | +++ b/setup.py |
| 23 | @@ -5,7 +5,7 @@ import os |
| 24 | import sys |
| 25 | from distutils.text_file import TextFile |
| 26 | |
| 27 | -from skbuild import setup |
| 28 | +from setuptools import setup |
| 29 | |
| 30 | # Add current folder to path |
| 31 | # This is required to import versioneer in an isolated pip build |