From 4078f82d6578615ca40c4924ca42da86739379e9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Simon=20H=C3=B8xbro=20Hansen?= <simon.hansen@me.com>
Date: Sun, 26 Mar 2023 13:52:46 +0200
Subject: [PATCH] Remove 3.12 for now

---
 .github/workflows/test.yaml | 2 +-
 pyproject.toml              | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index bec9ef1..be958f9 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -21,7 +21,7 @@ jobs:
       fail-fast: false
       matrix:
         os: [ubuntu-latest, macos-latest, windows-latest]
-        python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
+        python-version: ['3.8', '3.9', '3.10', '3.11']
     timeout-minutes: 10
     steps:
     - uses: actions/checkout@v3
diff --git a/pyproject.toml b/pyproject.toml
index 372c5da..8749e84 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -41,7 +41,7 @@ scripts.run = "pre-commit run --all"
 [tool.hatch.envs.test]
 dependencies = ["pytest"]
 scripts.run = "pytest tests"
-matrix = [{python = ["3.8", "3.9", "3.10", "3.11", "3.12"]}]
+matrix = [{python = ["3.8", "3.9", "3.10", "3.11"]}]
 
 [tool.hatch.build]
 sources = ["src"]