diff options
| author | Kevin Meagher <11620178+kjmeagher@users.noreply.github.com> | 2021-07-18 05:33:47 -0500 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2021-08-18 22:07:27 +0300 |
| commit | 39a92c74e831cf3a6460749056ae8dc751c83f02 (patch) | |
| tree | 261230d31d7fba62c5bfac9f51f10a7d2b238f1a /.github | |
| parent | 035df5369e34fdb7bda954601800cd00b8d8ef8e (diff) | |
| download | meson-39a92c74e831cf3a6460749056ae8dc751c83f02.tar.gz | |
Test boost-python on macOS
Previously the meson test case would only test boost-python on linux.
With the #7909 it is now possible to use boost-python on macOS/homebrew.
This enables the boost-python test on both linux and macOS.
It also uses python.extension_module() instead of shared_library to make the
python extension module.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/macos.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 06de073ac..2a21835aa 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -61,7 +61,7 @@ jobs: - uses: actions/checkout@v2 # use python3 from homebrew because it is a valid framework, unlike the actions one: # https://github.com/actions/setup-python/issues/58 - - run: brew install pkg-config ninja llvm qt@5 boost ldc hdf5 openmpi lapack scalapack sdl2 python3 + - run: brew install pkg-config ninja llvm qt@5 boost ldc hdf5 openmpi lapack scalapack sdl2 python3 boost-python3 - run: | python3 -m pip install --upgrade setuptools python3 -m pip install --upgrade pip |
