File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 33
33
def get_include_dir ():
34
34
"""Return the include directory needed for compilation
35
35
"""
36
- return os .path .join (_HERE , "include" )
36
+ return os .path .join (_HERE , "include" ). replace ( " \\ " , "/" )
37
37
38
38
39
39
def get_lib_dir ():
40
40
"""Return the lib directory needed for linking
41
41
"""
42
- return os .path .join (_HERE , "lib" )
42
+ return os .path .join (_HERE , "lib" ). replace ( " \\ " , "/" )
43
43
44
44
45
45
def get_library (fullname = False ):
Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
8
8
9
9
[project ]
10
10
name = " scipy-openblas64"
11
- version = " 0.3.27.63.0 "
11
+ version = " 0.3.27.63.1 "
12
12
requires-python = " >=3.7"
13
13
description = " Provides OpenBLAS for python packaging"
14
14
readme = " README.md"
You can’t perform that action at this time.
0 commit comments