Skip to content

Commit 9ca6780

Browse files
authored
fix: C compiler not needed (#92)
1 parent f31b1cc commit 9ca6780

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/wheels.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@ on:
1010
types:
1111
- published
1212

13+
env:
14+
FORCE_COLOR: 3
15+
1316
concurrency:
1417
group: ${{ github.workflow }}-${{ github.ref }}
1518
cancel-in-progress: true

CMakeLists.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
cmake_minimum_required(VERSION 3.15...3.26)
22

3-
project(${SKBUILD_PROJECT_NAME} VERSION ${SKBUILD_PROJECT_VERSION})
3+
project(
4+
${SKBUILD_PROJECT_NAME}
5+
VERSION ${SKBUILD_PROJECT_VERSION}
6+
LANGUAGES CXX)
47

58
find_package(Python REQUIRED COMPONENTS Interpreter Development.Module)
69
find_package(pybind11 CONFIG REQUIRED)

0 commit comments

Comments
 (0)