add setuptools installation to build workflow

This commit is contained in:
Martin Bubel 2024-07-21 23:49:05 +02:00
parent 282fcd4d68
commit 6d577cee35

View file

@ -127,6 +127,7 @@ jobs:
- name: Build lib
run: |
pip install setuptools
pip install wheel
python setup.py develop
python setup.py bdist_wheel
@ -159,6 +160,7 @@ jobs:
- name: Build lib
run: |
pip install setuptools
pip install wheel
python setup.py develop
python setup.py bdist_wheel
@ -185,6 +187,10 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
- name: Install build dependencies
run: |
/opt/python/${{ matrix.python }}/bin/python -m pip install setuptools
- name: Compile c headers
run: |
/opt/python/${{ matrix.python }}/bin/python setup.py develop