Skip to content

Commit

Permalink
add setuptools installation to build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBubel committed Jul 21, 2024
1 parent 282fcd4 commit 6d577ce
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/test-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,7 @@ jobs:

- name: Build lib
run: |
pip install setuptools
pip install wheel
python setup.py develop
python setup.py bdist_wheel
Expand Down Expand Up @@ -159,6 +160,7 @@ jobs:

- name: Build lib
run: |
pip install setuptools
pip install wheel
python setup.py develop
python setup.py bdist_wheel
Expand All @@ -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
Expand Down

0 comments on commit 6d577ce

Please sign in to comment.