Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/buildThirdPartyLibrary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,6 @@ jobs:
uses: actions/checkout@v4
- name: Install CMake and Ninja
uses: lukka/get-cmake@latest
with:
ninjaVersion: 1.12.1
# Note: use version 1.12.1 since version 1.13+ results in an error message on Ubuntu 22.04 LTS ARM:
# ninja: /lib/aarch64-linux-gnu/libc.so.6: version `GLIBC_2.38' not found (required by ninja)
- name: Install buildcache
uses: opencor/buildcache-action@v1
with:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,6 @@ jobs:
uses: actions/checkout@v4
- name: Install CMake and Ninja
uses: lukka/get-cmake@latest
with:
ninjaVersion: 1.12.1
# Note: use version 1.12.1 since version 1.13+ results in an error message on Ubuntu 22.04 LTS ARM:
# ninja: /lib/aarch64-linux-gnu/libc.so.6: version `GLIBC_2.38' not found (required by ninja)
- name: Install buildcache
uses: opencor/buildcache-action@v1
with:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -344,10 +344,6 @@ jobs:
python-version: '3.11'
- name: Install CMake and Ninja
uses: lukka/get-cmake@latest
with:
ninjaVersion: 1.12.1
# Note: use version 1.12.1 since version 1.13+ results in an error message on Ubuntu 22.04 LTS ARM:
# ninja: /lib/aarch64-linux-gnu/libc.so.6: version `GLIBC_2.38' not found (required by ninja)
- name: Install buildcache
uses: opencor/buildcache-action@v1
with:
Expand Down
3 changes: 1 addition & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,8 @@
requires = [
'setuptools',
'wheel',
'scikit-build>=0.12',
'scikit-build',
'cmake',
'ninja',
]
build-backend = 'setuptools.build_meta'

Expand Down
2 changes: 1 addition & 1 deletion scripts/genericclean.bat
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ IF "%1" == "all" (
CD !AppDir!prebuilt

FOR /D %%I IN (*.*) DO RMDIR /S /Q %%I
FOR %%I IN (*.*) DO IF NOT %%I == ".gitignore" DEL /Q %%I
FOR %%I IN (*.*) DO IF NOT "%%I" == ".gitignore" DEL /Q "%%I"
)
)

Expand Down
Loading