Skip to content

Commit 7bf6cf0

Browse files
committed
convert backslashes to forward slashes
1 parent 8817145 commit 7bf6cf0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

local/scipy_openblas64/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
def get_include_dir():
3434
"""Return the include directory needed for compilation
3535
"""
36-
return os.path.join(_HERE, "include")
36+
return os.path.join(_HERE, "include").replace("\\", "/")
3737

3838

3939
def get_lib_dir():
4040
"""Return the lib directory needed for linking
4141
"""
42-
return os.path.join(_HERE, "lib")
42+
return os.path.join(_HERE, "lib").replace("\\", "/")
4343

4444

4545
def get_library(fullname=False):

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
88

99
[project]
1010
name = "scipy-openblas64"
11-
version = "0.3.27.63.0"
11+
version = "0.3.27.63.1"
1212
requires-python = ">=3.7"
1313
description = "Provides OpenBLAS for python packaging"
1414
readme = "README.md"

0 commit comments

Comments
 (0)