First commit

This commit is contained in:
2025-06-22 00:31:33 +02:00
parent a52c20d1fb
commit 4bdbcad256
110 changed files with 31991 additions and 1 deletions

45
libsvm-3.36/.github/workflows/wheel.yml vendored Normal file
View File

@@ -0,0 +1,45 @@
name: Build wheels
on:
# on new tag
push:
tags:
- "*"
# manually trigger
workflow_dispatch:
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-2022, macos-13]
steps:
- uses: actions/checkout@v2
- name: Set MacOS compiler
if: runner.os == 'macOS'
run: |
brew install gcc@13;
echo "CXX=gcc-13" >> $GITHUB_ENV
- name: Build wheels
uses: pypa/cibuildwheel@v2.10.2
env:
# don't build for PyPython and windows 32-bit
CIBW_SKIP: pp* *win32*
# force compiler on macOS
CXX: ${{ env.CXX }}
CC: ${{ env.CXX }}
with:
package-dir: ./python
output-dir: ./python/wheelhouse
- name: Upload a Build Artifact
uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.os }}
path: ./python/wheelhouse