Skip to content

Commit

Permalink
Merge pull request #143 from pyrtlsdr/py2-buildfix
Browse files Browse the repository at this point in the history
Use third-party setup-python action
  • Loading branch information
nocarryr committed Jun 24, 2023
2 parents bc2332e + 58a4c3a commit 6f4adb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/dist-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,9 +43,10 @@ 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 }}
cache-build: true
- name: Build librtlsdr
run: |
sudo apt-get install -y libusb-1.0-0-dev
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ 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 }}
cache-build: true
- name: Build librtlsdr
run: |
sudo apt-get install -y libusb-1.0-0-dev
Expand Down

0 comments on commit 6f4adb3

Please sign in to comment.