From 988ea4154357191744d15801aa985f627b7cf438 Mon Sep 17 00:00:00 2001 From: Miles Wells Date: Fri, 1 Nov 2024 16:39:34 +0200 Subject: [PATCH] Fix workflow files for new min python version --- .github/workflows/ibllib_ci.yml | 6 +++--- .github/workflows/python-publish.yml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ibllib_ci.yml b/.github/workflows/ibllib_ci.yml index 7ca648938..b6a2b1f45 100644 --- a/.github/workflows/ibllib_ci.yml +++ b/.github/workflows/ibllib_ci.yml @@ -18,12 +18,12 @@ jobs: max-parallel: 2 matrix: os: ["windows-latest", "ubuntu-latest"] - python-version: ["3.8", "3.11"] + python-version: ["3.10", "3.12"] exclude: - os: windows-latest - python-version: 3.8 + python-version: 3.10 - os: ubuntu-latest - python-version: 3.11 + python-version: 3.12 steps: - uses: actions/checkout@v2 - name: Set up Python ${{ matrix.python-version }} diff --git a/.github/workflows/python-publish.yml b/.github/workflows/python-publish.yml index e3e79e129..b44d8962e 100644 --- a/.github/workflows/python-publish.yml +++ b/.github/workflows/python-publish.yml @@ -18,7 +18,7 @@ jobs: - name: Set up Python uses: actions/setup-python@v2 with: - python-version: '3.8' + python-version: '3.10' - name: Install dependencies run: | python -m pip install --upgrade pip