From e37ac2da5c6e75905007b4914f2794b4ff03daa8 Mon Sep 17 00:00:00 2001 From: christophkloeffel Date: Tue, 10 Sep 2024 20:01:21 +0200 Subject: [PATCH] adds python 3.12 to the CI testsuite --- .github/workflows/ci.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index dc829c3f..c9b202e7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macos-13, macos-14] - py-version: ["3.8", "3.9", "3.10", "3.11"] + py-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] include: - os: macos-13 brew: "/usr/local" @@ -49,8 +49,7 @@ jobs: run: | brew install python@${{ matrix.py-version }} echo "${{ matrix.brew }}/opt/python@${{ matrix.py-version }}/libexec/bin" >> $GITHUB_PATH - curl https://bootstrap.pypa.io/get-pip.py -o get-pip.py - python${{ matrix.py-version }} get-pip.py + python${{ matrix.py-version }} -m ensurepip - name: Install dependencies run: | python -m pip install --upgrade pip