Upgrade Python in GitHub Actions to 3.9

This commit is contained in:
Chris Rayner 2022-12-15 13:06:06 -08:00 committed by GitHub
commit 20a56be3b2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.6]
python-version: [3.9]
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}

View file

@ -11,9 +11,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python 3.6
- name: Set up Python 3.9
uses: actions/setup-python@v1
with: { python-version: 3.6 }
with: { python-version: 3.9 }
- name: Install
run: |
python -m pip install --upgrade pip