From 6207434e6ccf1c54443b871e3937a3f377f3bd68 Mon Sep 17 00:00:00 2001 From: Leon Wright Date: Wed, 18 Sep 2024 13:40:27 +0800 Subject: [PATCH] ci: Update builds to Python 3.12 --- .github/workflows/coverage-build.yml | 3 +-- .github/workflows/deploy.yml | 3 +-- .github/workflows/test.yml | 3 +-- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/coverage-build.yml b/.github/workflows/coverage-build.yml index 8073b2f..d17e154 100644 --- a/.github/workflows/coverage-build.yml +++ b/.github/workflows/coverage-build.yml @@ -16,9 +16,8 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: "3.11" + python-version: "3.12" cache: pip - cache-dependency-path: netkan/setup.py - name: Install test dependencies run: pip install .[test] - name: force our git config diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a035d39..5eb7f0b 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -67,9 +67,8 @@ jobs: - name: Set up Python uses: actions/setup-python@v5 with: - python-version: 3.11 + python-version: 3.12 cache: pip - cache-dependency-path: netkan/setup.py - name: Install Dependencies run: pip install netkan/. - name: Re-deploy Containers diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e5c9f45..b671fd4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -12,9 +12,8 @@ jobs: - name: Setup Python uses: actions/setup-python@v5 with: - python-version: 3.11 + python-version: 3.12 cache: pip - cache-dependency-path: netkan/setup.py - name: Install test dependencies working-directory: netkan run: pip install .[test]