Skip to content

Commit

Permalink
Use third-party setup-python action
Browse files Browse the repository at this point in the history
Python2.7 removed from github/setup-python
as of June 19, 2023:
actions/setup-python#672

A wrapper action was suggested in this comment:
actions/setup-python#672 (comment)
  • Loading branch information
nocarryr committed Jun 24, 2023
1 parent bc2332e commit 469b7b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dist-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: MatteoH2O1999/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Build librtlsdr
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
uses: MatteoH2O1999/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Build librtlsdr
Expand Down

0 comments on commit 469b7b0

Please sign in to comment.