We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 09ef8fe commit c65734cCopy full SHA for c65734c
1 file changed
.github/workflows/build_wheels.yaml
@@ -15,6 +15,16 @@ jobs:
15
steps:
16
- uses: actions/checkout@v5
17
18
+ - name: Install Fortran compiler
19
+ # When building from source, ensure we have a Fortran compiler
20
+ if: ${{ startsWith(matrix.os, 'macos') }}
21
+ uses: fortran-lang/setup-fortran@v1
22
+ id: setup-fortran
23
+ with:
24
+ # TODO: figure out whether we need to use other compilers too
25
+ compiler: "gcc"
26
+ version: "13"
27
+
28
- name: Build wheels
29
uses: pypa/cibuildwheel@v3.1.4
30
# env:
0 commit comments