File tree Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Expand file tree Collapse file tree 2 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 14
14
strategy :
15
15
fail-fast : false
16
16
matrix :
17
- os : ["ubuntu-latest", "macos-latest", "windows-latest"]
18
- python-version : [3.7, 3.8, 3.9]
17
+ os : ["windows-latest"]
18
+ python-version : [3.9]
19
+ # os: ["ubuntu-latest", "macos-latest", "windows-latest"]
20
+ # python-version: [3.7, 3.8, 3.9]
19
21
steps :
20
22
- name : Checkout
21
23
uses : actions/checkout@v2
Original file line number Diff line number Diff line change 10
10
with open (os .path .join (thisdir , "source.c" )) as f :
11
11
source = f .read ()
12
12
13
+ include_dirs = [os .path .join (sys .prefix , "include" )]
14
+ if sys .platform == "win32" :
15
+ include_dirs .append (os .path .join (sys .prefix , "Library" , "include" ))
16
+
13
17
ffibuilder .set_source (
14
18
"suitesparse_graphblas._graphblas" ,
15
19
source ,
16
20
libraries = ["graphblas" ],
17
- include_dirs = [ os . path . join ( sys . prefix , "include" )] ,
21
+ include_dirs = include_dirs ,
18
22
)
19
23
20
24
header = "suitesparse_graphblas.h"
You can’t perform that action at this time.
0 commit comments