Merge pull request #1086 from SheffieldML/devel

add setuptools installation to build workflow
This commit is contained in:
Martin Bubel 2024-07-22 00:07:50 +02:00 committed by GitHub
commit 5c894d1091
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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