Skip to content

remove setup.py

remove setup.py #18

Workflow file for this run

name: CI
on:
push:
branches:
- '*'
paths-ignore:
- README.md
pull_request:
branches:
- master
paths-ignore:
- README.md
jobs:
build:
name: Build the package
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [windows-latest, macos-latest, ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Pull pybind11
run: git submodule update --init --recursive
- uses: actions/setup-python@v5
with:
python-version: '3.9'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Build the package
run: python -m build