From 0d91713e2e692d40fb97544b4010ff1482663f86 Mon Sep 17 00:00:00 2001 From: Jamie Matthews Date: Thu, 21 Mar 2024 14:53:55 +0000 Subject: [PATCH 1/3] Add Python 3.11 and 3.12 to test matrix --- .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 31ff9c9..571fcfd 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - python: ["3.7", "3.8", "3.9", "3.10"] + python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2 From 348b7743241223e1518ed0ec852e4214a619f533 Mon Sep 17 00:00:00 2001 From: Jamie Matthews Date: Thu, 21 Mar 2024 14:57:23 +0000 Subject: [PATCH 2/3] Bump dev dependencies --- dev-requirements.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-requirements.txt b/dev-requirements.txt index cc5eb5a..f65b5f5 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -1,4 +1,4 @@ -black==22.3.0 -blacken-docs==1.12.1 -flake8==4.0.1 -isort==5.10.1 +black==24.3.0 +blacken-docs==1.16.0 +flake8==7.0.0 +isort==5.13.2 From 4fda8eefca51e84aa8451e9f1e334dff1bddd1a0 Mon Sep 17 00:00:00 2001 From: Jamie Matthews Date: Thu, 21 Mar 2024 14:59:18 +0000 Subject: [PATCH 3/3] Remove Python 3.7 from test matrix --- .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 571fcfd..5534d86 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: - python: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"] + python: ["3.8", "3.9", "3.10", "3.11", "3.12"] steps: - uses: actions/checkout@v2