diff --git a/.github/workflows/cd-push-to-pypi.yaml b/.github/workflows/cd-push-to-pypi.yaml index 6b32bec67e..b97e7c79a1 100644 --- a/.github/workflows/cd-push-to-pypi.yaml +++ b/.github/workflows/cd-push-to-pypi.yaml @@ -6,7 +6,7 @@ on: - "*" env: - PYTHON_VERSION: "3.8" + PYTHON_VERSION: "3.9" jobs: pypi-publish: diff --git a/.github/workflows/cd-sql-engine-populate-persistent-source-schema.yaml b/.github/workflows/cd-sql-engine-populate-persistent-source-schema.yaml index cfae1da5ef..f5381189b3 100644 --- a/.github/workflows/cd-sql-engine-populate-persistent-source-schema.yaml +++ b/.github/workflows/cd-sql-engine-populate-persistent-source-schema.yaml @@ -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: diff --git a/.github/workflows/cd-sql-engine-tests.yaml b/.github/workflows/cd-sql-engine-tests.yaml index bb0782bc21..002ec9d6fa 100644 --- a/.github/workflows/cd-sql-engine-tests.yaml +++ b/.github/workflows/cd-sql-engine-tests.yaml @@ -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" diff --git a/.github/workflows/ci-linting.yaml b/.github/workflows/ci-linting.yaml index bbbf20eb2a..097346f214 100644 --- a/.github/workflows/ci-linting.yaml +++ b/.github/workflows/ci-linting.yaml @@ -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 diff --git a/.github/workflows/ci-metricflow-unit-tests.yaml b/.github/workflows/ci-metricflow-unit-tests.yaml index 9106eaf83a..926ed95a3d 100644 --- a/.github/workflows/ci-metricflow-unit-tests.yaml +++ b/.github/workflows/ci-metricflow-unit-tests.yaml @@ -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 uses: actions/checkout@v3 @@ -46,10 +46,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: