From 2ef08ba06981ce08a5491731ba115161326d112a Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 12 Mar 2023 07:01:41 +0100 Subject: [PATCH 1/2] GitHub Actions: Upgrade to Python 3.11 production release At this point `3.12-dev` is also a possibility. --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 89a73107..c4ff1ecd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,7 +23,7 @@ jobs: - '3.8' - '3.9' - '3.10' - - '3.11-dev' + - '3.11' continue-on-error: - false runs-on: "${{ matrix.os }}" @@ -35,7 +35,7 @@ jobs: python-version: "${{ matrix.python-version }}" - name: install dependencies run: | - python -m pip install -U pip setuptools wheel + python -m pip install --update pip setuptools wheel pip install flit flit install --extras=all - name: lint and test From dce54423b95a95eb5ed9db7fb88baa4ca61f9372 Mon Sep 17 00:00:00 2001 From: Christian Clauss Date: Sun, 12 Mar 2023 07:06:20 +0100 Subject: [PATCH 2/2] pip install --upgrade pip --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c4ff1ecd..f7c9102e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: python-version: "${{ matrix.python-version }}" - name: install dependencies run: | - python -m pip install --update pip setuptools wheel + python -m pip install --upgrade pip setuptools wheel pip install flit flit install --extras=all - name: lint and test