Skip to content

Commit

Permalink
Merge pull request #131 from OZI-Project/rjdbcm-patch-8
Browse files Browse the repository at this point in the history
📌 pin pip to ~=24.3.1
  • Loading branch information
rjdbcm authored Nov 12, 2024
2 parents b6d5ac2 + d4e6ff6 commit bf10e6a
Showing 1 changed file with 25 additions and 3 deletions.
28 changes: 25 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,28 @@ runs:
allow-prereleases: true
check-latest: true

- name: Install dependencies
- name: Install pip
run: |
python -m pip install pip~=24.3.1
shell: bash

- name: Install tox backend
run: |
python -m pip install --upgrade pip
python -m pip install tox-gh>=1.2 tox==4.15.0
shell: bash

- name: Install pipx
run: |
python -m pip install pipx>=1.5
shell: bash

- name: Setup pipx path
run: |
pipx ensurepath --force
shell: bash

- name: Install meson (pipx)
run: |
pipx install meson --force
shell: bash

Expand All @@ -62,6 +78,12 @@ runs:
pipx reinstall-all
shell: bash

- name: Install core build deps for Windows
if: ${{ inputs.os == 'windows-latest' }}
run: |
pip install OZI.build[core]
shell: bash

- name: 'Run tests (First Try)'
if: ${{ inputs.parallel != 'true' }}
continue-on-error: true
Expand All @@ -80,7 +102,7 @@ runs:

- name: Check binary wheel is buildable from sdist
run: |
tox -e invoke -- release --no-cibuildwheel
tox -e invoke -- release --no-cibuildwheel
shell: bash

- name: Logging Checkpoint Failures
Expand Down

0 comments on commit bf10e6a

Please sign in to comment.