Skip to content

Commit

Permalink
Update sip_check to modern python version
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Oct 15, 2024
1 parent 790e3c2 commit 3c9c07d
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/code_layout.yml
Original file line number Diff line number Diff line change
Expand Up @@ -162,12 +162,13 @@ jobs:
sip_check:
runs-on: ubuntu-latest
steps:
- name: Set up Python 3.7
uses: actions/setup-python@v4
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.7
python-version: '3.12'
- name: Install Requirements
run: |
sudo apt-get update
sudo apt install -y \
cpanminus \
libyaml-tiny-perl \
Expand All @@ -185,7 +186,7 @@ jobs:
libtry-tiny-perl \
expect
python -m pip install --upgrade pip
pip install autopep8 nose2 mock termcolor
pip install autopep8 nose2 mock termcolor pyyaml
- name: Checkout
uses: actions/checkout@v4
- name: Sip Checks
Expand Down

0 comments on commit 3c9c07d

Please sign in to comment.