Skip to content

Commit

Permalink
Fix checks (#10)
Browse files Browse the repository at this point in the history
Python 3.7.9 is no longer available via actions/setup-python, but this code
should work with any Python 3.7 patch version.
  • Loading branch information
victorlin authored May 21, 2024
1 parent 1798183 commit a572e67
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up Python 3.7.9
- name: Set up Python 3.7
uses: actions/setup-python@v2
with:
python-version: 3.7.9
python-version: 3.7
- name: Install dependencies
run: |
pip install flake8
Expand Down

0 comments on commit a572e67

Please sign in to comment.