We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8817145 + 7bf6cf0 commit 359a3daCopy full SHA for 359a3da
2 files changed
local/scipy_openblas64/__init__.py
@@ -33,13 +33,13 @@
33
def get_include_dir():
34
"""Return the include directory needed for compilation
35
"""
36
- return os.path.join(_HERE, "include")
+ return os.path.join(_HERE, "include").replace("\\", "/")
37
38
39
def get_lib_dir():
40
"""Return the lib directory needed for linking
41
42
- return os.path.join(_HERE, "lib")
+ return os.path.join(_HERE, "lib").replace("\\", "/")
43
44
45
def get_library(fullname=False):
pyproject.toml
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
8
9
[project]
10
name = "scipy-openblas64"
11
-version = "0.3.27.63.0"
+version = "0.3.27.63.1"
12
requires-python = ">=3.7"
13
description = "Provides OpenBLAS for python packaging"
14
readme = "README.md"
0 commit comments