Skip to content

Commit c4ef214

Browse files
committed
minor bug fixes in deployment
1 parent 740c034 commit c4ef214

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/gh-pages.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
steps:
1414
- uses: actions/checkout@v3
1515
with:
16-
submodules: false
16+
submodules: recursive
1717

1818
- name: Setup Python
1919
uses: actions/setup-python@v4
@@ -30,7 +30,7 @@ jobs:
3030
3131
- name: Build and install the package
3232
run: |
33-
python -m pip install bitepy
33+
python -m pip install .
3434
3535
- name: Deploy to GitHub Pages
3636
run: |

CMakeLists.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ set(CMAKE_CXX_STANDARD 20)
4040
set(CMAKE_CXX_STANDARD_REQUIRED ON)
4141
set(CMAKE_CXX_EXTENSIONS OFF)
4242

43+
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.15")
44+
4345
pybind11_add_module(_bitepy
4446
bitepy/_bitepy.cpp
4547
bitepy/cpp_source_submodule/bite/src/Simulation.cpp

0 commit comments

Comments
 (0)