We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 178ac64 + f31168b commit ddf0e3aCopy full SHA for ddf0e3a
.github/workflows/MacOS_CI.yml
@@ -38,4 +38,4 @@ jobs:
38
flake8 . --count --exit-zero --max-complexity=10 --max-line-length=127 --statistics
39
- name: Test with pytest
40
run: |
41
- pytest
+ pytest brainpy/
extensions/setup_mac.py
@@ -21,7 +21,8 @@
21
Pybind11Extension("brainpylib/cpu_ops",
22
sources=["lib/cpu_ops.cc"] + glob.glob("lib/*_cpu.cc"),
23
cxx_std=11,
24
- extra_link_args=["-rpath", "/Users/ztqakita/opt/miniconda3/lib"],
+ # extra_link_args=["-rpath", "/Users/ztqakita/miniforge3/lib"], # m1
25
+ extra_link_args=["-rpath", "/Users/ztqakita/miniforge3/lib"], # intel
26
define_macros=[('VERSION_INFO', __version__)]),
27
]
28
0 commit comments