From cda10856808ef19edaaa8728ea5bc7d97764b4c0 Mon Sep 17 00:00:00 2001
From: Jonathan Slavin <jslavin37@gmail.com>
Date: Tue, 5 Dec 2023 13:37:31 -0500
Subject: [PATCH 1/3] Update testing.yml

Add Python 3.12 to the tests
---
 .github/workflows/testing.yml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml
index ec92c0cfe..05cceb4db 100644
--- a/.github/workflows/testing.yml
+++ b/.github/workflows/testing.yml
@@ -25,7 +25,13 @@ jobs:
           noxenv: tests-3.11
           python: '3.11'
           noxposargs: --durations=10
-
+          
+        - name: Python 3.12 (Windows)
+          os: windows-latest
+          noxenv: tests-3.12
+          python: '3.12'
+          noxposargs: --durations=10
+          
         - name: Linters
           os: ubuntu-latest
           python: '3.11'

From 6ed2a96d60ed1b63220a25f199d9ce69026c4d36 Mon Sep 17 00:00:00 2001
From: Jonathan Slavin <jslavin37@gmail.com>
Date: Tue, 5 Dec 2023 13:42:12 -0500
Subject: [PATCH 2/3] Update noxfile.py

added 3.12
---
 noxfile.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/noxfile.py b/noxfile.py
index d527ee771..79e9ce735 100644
--- a/noxfile.py
+++ b/noxfile.py
@@ -2,7 +2,7 @@
 
 nox.options.sessions = ["tests", "linters"]
 
-python_versions = ("3.9", "3.10", "3.11")
+python_versions = ("3.9", "3.10", "3.11", "3.12")
 
 sphinx_paths = ["docs", "docs/_build/html"]
 sphinx_fail_on_warnings = ["-W", "--keep-going"]

From 4e8d33954ff6196bd99d97500e0cec349709dfec Mon Sep 17 00:00:00 2001
From: "pre-commit-ci[bot]"
 <66853113+pre-commit-ci[bot]@users.noreply.github.com>
Date: Tue, 5 Dec 2023 18:45:43 +0000
Subject: [PATCH 3/3] [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci
---
 .github/workflows/testing.yml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml
index 05cceb4db..bac1b43e9 100644
--- a/.github/workflows/testing.yml
+++ b/.github/workflows/testing.yml
@@ -25,13 +25,13 @@ jobs:
           noxenv: tests-3.11
           python: '3.11'
           noxposargs: --durations=10
-          
+
         - name: Python 3.12 (Windows)
           os: windows-latest
           noxenv: tests-3.12
           python: '3.12'
           noxposargs: --durations=10
-          
+
         - name: Linters
           os: ubuntu-latest
           python: '3.11'