Skip to content

Commit

Permalink
debug ci
Browse files Browse the repository at this point in the history
  • Loading branch information
thomasryck committed Sep 26, 2024
1 parent e57b8dc commit 790fe77
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[build-system]
requires = [
"setuptools==58.0.4",
"setuptools",
"wheel==0.37.0",
"scipy<=1.8.1;python_version<'3.11'", "scipy>=1.8.1;python_version>='3.11'",
"numpy>=1.23.5;python_version>='3.11'", "numpy<=1.23.5;python_version<'3.11'",
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,11 +121,11 @@ def getBlas():
LIBS = libs

if platform.system() == "Darwin":
INCLUDE_DIRS = ['/usr/local/miniconda/envs/build/include', '/usr/local/opt/openblas/include'] + [numpy.get_include()]
INCLUDE_DIRS = ['/usr/local/micromamba/include', '/usr/local/opt/openblas/include'] + [numpy.get_include()]
EXTRA_COMPILE_ARGS = [
'-DINT_64BITS', '-DAXPBY', '-fPIC',
'-std=c++11']
LIBRARY_DIRS = ['/usr/local/miniconda/envs/build/lib', '/usr/local/opt/openblas/lib'] + LIBRARY_DIRS
LIBRARY_DIRS = ['/usr/local/micromamba/lib', '/usr/local/opt/openblas/lib'] + LIBRARY_DIRS
LIBS = libs
RUNTIME_LIRABRY_DIRS = LIBRARY_DIRS
EXTRA_LINK_ARGS = []
Expand Down

0 comments on commit 790fe77

Please sign in to comment.