Skip to content

Commit 6cb3501

Browse files
authored
Merge pull request #132 from mattip/pkgconfig-lib
Pkgconfig lib
2 parents 7bc05d1 + 193432f commit 6cb3501

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- [ ] I updated the version in pyproject.toml and made sure it matches `git describe --tags --abbrev=8` in OpenBLAS at the `OPENBLAS_COMMIT`

local/scipy_openblas64/__init__.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,9 @@ def get_pkg_config():
5959
"""
6060
if sys.platform == "win32":
6161
extralib = "-defaultlib:advapi32 -lgfortran -lquadmath"
62-
libs_flags = f"-L${{libdir}} -l{get_library()}"
6362
else:
6463
extralib = f"-lm -lpthread -lgfortran -lquadmath -L${{libdir}} -l{get_library()}"
65-
libs_flags = "-L${{libdir}} -l{get_library()}"
64+
libs_flags = f"-L${{libdir}} -l{get_library()}"
6665
cflags = "-DBLAS_SYMBOL_PREFIX=scipy_ -DBLAS_SYMBOL_SUFFIX=64_ -DHAVE_BLAS_ILP64 -DOPENBLAS_ILP64_NAMING_SCHEME"
6766
return dedent(f"""\
6867
libdir={get_lib_dir()}

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.26.0"
11+
version = "0.3.26.0.1"
1212
requires-python = ">=3.7"
1313
description = "Provides OpenBLAS for python packaging"
1414
readme = "README.md"

0 commit comments

Comments
 (0)