Skip to content

Commit

Permalink
fix: use python 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
dlbrittain committed May 23, 2024
1 parent ca9a3cb commit 216d040
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/materialization_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ jobs:

name: Test against different Python versions
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]

services:
postgres:
image: postgis/postgis:13-master
Expand All @@ -33,10 +37,10 @@ jobs:
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.9
python-version: ${{ matrix.python-version }}
- uses: actions/cache@v2
with:
path: ~/.cache/pip
Expand All @@ -47,7 +51,7 @@ jobs:
with:
auto-update-conda: true
auto-activate-base: true
python-version: 3.9
python-version: ${{ matrix.python-version }}
- name: Install dependencies
shell: bash -l {0}
run: |
Expand Down

0 comments on commit 216d040

Please sign in to comment.