From c249b0a8d094137ca3acf1920e7b21a696f02cef Mon Sep 17 00:00:00 2001 From: Lars Holmberg Date: Tue, 3 Oct 2023 17:53:31 +0200 Subject: [PATCH] Run flake8 and black on Python 3.11 instead of 3.10 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index fe1aabdf79..c58ad1a70e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,8 +17,8 @@ jobs: #- {name: Linux, python: '3.9', os: ubuntu-latest, tox: py39} #- {name: Windows, python: '3.9', os: windows-latest, tox: py39} #- {name: Mac, python: '3.9', os: macos-latest, tox: py39} - - { name: "flake8", python: "3.10", os: ubuntu-latest, tox: "flake8" } - - { name: "black", python: "3.10", os: ubuntu-latest, tox: "black" } + - { name: "flake8", python: "3.11", os: ubuntu-latest, tox: "flake8" } + - { name: "black", python: "3.11", os: ubuntu-latest, tox: "black" } - { name: "mypy", python: "3.10", os: ubuntu-latest, tox: "mypy" } - { name: "3.12", python: "3.12", os: ubuntu-latest, tox: py312 } - { name: "3.11", python: "3.11", os: ubuntu-latest, tox: py311 }