Skip to content

Commit

Permalink
Merge pull request #971 from kysrpex/fix_tpv_workflow
Browse files Browse the repository at this point in the history
Update TPV GitHub Actions workflow to work with Python 3.11
  • Loading branch information
kysrpex authored Oct 30, 2023
2 parents 74d9381 + 3108658 commit 3251a56
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tpv.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ jobs:
git submodule update --init --recursive --remote --checkout
- name: Set up Python 3.
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: '3.11'
cache: 'pip'

# Install Ansible.
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
working-directory: 'infrastructure-playbook'
run: |
import glob
import importlib
import importlib.util
import sys
# import tpv.py
Expand Down Expand Up @@ -187,9 +187,9 @@ jobs:
git submodule update --init --recursive --remote --checkout
- name: Set up Python 3.
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
python-version: '3.x'
python-version: '3.11'
cache: 'pip'

# Install Ansible.
Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:
working-directory: 'infrastructure-playbook'
run: |
import glob
import importlib
import importlib.util
import os
import subprocess
import sys
Expand Down

0 comments on commit 3251a56

Please sign in to comment.