Skip to content

Commit

Permalink
Updating pip whenever its possible
Browse files Browse the repository at this point in the history
  • Loading branch information
hentt30 committed Feb 19, 2022
1 parent 20a43c2 commit 2ec4aff
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ jobs:
name: Install Python
with:
python-version: "3.8"

- name: Before build
run: pip install --upgrade pip

- name: Build wheels
uses: joerick/cibuildwheel@v1.10.0
Expand All @@ -59,7 +62,7 @@ jobs:
python-version: "3.8"

- name: Build sdist
run: pip install numpy && python setup.py sdist build_src --inplace
run: pip install --upgrade pip && pip install numpy && python setup.py sdist build_src --inplace

- uses: actions/upload-artifact@v2
with:
Expand Down

0 comments on commit 2ec4aff

Please sign in to comment.