From 5109a4e1500fa9196f8b89910e7e777dd9c0e1ac Mon Sep 17 00:00:00 2001 From: Matthias Hochsteger Date: Thu, 13 Jun 2024 21:43:44 +0200 Subject: [PATCH] Add github workflows --- .github/workflows/wheels.yml | 22 ++++++++++++++++++++++ pyproject.toml | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 .github/workflows/wheels.yml diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml new file mode 100644 index 0000000000..ad161ba46a --- /dev/null +++ b/.github/workflows/wheels.yml @@ -0,0 +1,22 @@ +name: Build + +on: [push, pull_request] + +jobs: + build_wheels: + name: Build wheels on ${{ matrix.os }} + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-13, macos-14] + + steps: + - uses: actions/checkout@v4 + + - name: Build wheels + uses: pypa/cibuildwheel@v2.19.1 + + - uses: actions/upload-artifact@v4 + with: + name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} + path: ./wheelhouse/*.whl diff --git a/pyproject.toml b/pyproject.toml index 59f217bef4..787a3fea2a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "netgen_occt" -version = "0.0.4" +version = "0.0.5" description="Open CASCADE Technology libraries, used by Netgen Mesher" requires-python = ">=3.8" classifiers = [