Skip to content

Commit

Permalink
Update Github workflows for updated Python versions.
Browse files Browse the repository at this point in the history
  • Loading branch information
plypaul committed Mar 7, 2024
1 parent 7ee61bf commit d3577e7
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd-push-to-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- "*"

env:
PYTHON_VERSION: "3.8"
PYTHON_VERSION: "3.9"

jobs:
pypi-publish:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:

env:
# Unclear on how to make 'Reload Test Data in SQL Engines' a constant here as it does not work here.
PYTHON_VERSION: "3.8"
PYTHON_VERSION: "3.9"
ADDITIONAL_PYTEST_OPTIONS: "--log-cli-level info"

jobs:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-sql-engine-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
types: [labeled]

env:
PYTHON_VERSION: "3.8"
PYTHON_VERSION: "3.9"
EXTERNAL_ENGINE_TEST_PARALLELISM: 8
ADDITIONAL_PYTEST_OPTIONS: "--use-persistent-source-schema"

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci-linting.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
name: Run Pre-Commit Linting Hooks
runs-on: ubuntu-latest
env:
python-version: "3.8"
python-version: "3.9"
steps:

- name: Check-out the repo
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/ci-metricflow-unit-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.11"]
python-version: ["3.9", "3.12"]
steps:

- name: Check-out the repo
Expand Down Expand Up @@ -47,10 +47,10 @@ jobs:
- name: Check-out the repo
uses: actions/checkout@v3

- name: Test w/ Python 3.11
- name: Test w/ Python 3.12
uses: ./.github/actions/run-mf-tests
with:
python-version: "3.11"
python-version: "3.12"
make-target: "test-postgresql"

metricflow-unit-tests:
Expand Down

0 comments on commit d3577e7

Please sign in to comment.