changed: build python wheels using skbuild

the vanilla setup-tools doesn't get the triplet correctly for some
reason. also use cmake from pip as cmake 3.16 in the image has a bug
in the python find rule
This commit is contained in:
Arne Morten Kvarving
2023-04-27 09:33:24 +02:00
parent f16b433b53
commit 6316768bbb
5 changed files with 16 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
from setuptools import setup
from skbuild import setup
import os
@@ -32,7 +32,6 @@ setup(
package_data={'opm' : ['$<TARGET_FILE_NAME:opmcommon_python>']},
include_package_data=True,
license='Open Source',
zip_safe=False,
test_suite='tests',
setup_requires=["pytest-runner", 'setuptools_scm'],
python_requires='>=3.6',