From 968627a9336e592eddaecff6bccdb48fa56da72f Mon Sep 17 00:00:00 2001
From: Thomas A Caswell <tcaswell@gmail.com>
Date: Sat, 28 Dec 2024 21:19:38 -0500
Subject: [PATCH] API: bump minimum Python to match SPEC0

---
 .github/workflows/testing.yml | 2 +-
 setup.py                      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml
index a016ff1..cbc76b9 100644
--- a/.github/workflows/testing.yml
+++ b/.github/workflows/testing.yml
@@ -12,7 +12,7 @@ jobs:
     runs-on: ubuntu-latest
     strategy:
       matrix:
-        python-version: ['3.9', '3.10', '3.11', '3.12']
+        python-version: ['3.11', '3.12', '3.11']
       fail-fast: false
     steps:
 
diff --git a/setup.py b/setup.py
index a828056..25aae60 100644
--- a/setup.py
+++ b/setup.py
@@ -7,7 +7,7 @@
 # NOTE: This file must remain Python 2 compatible for the foreseeable future,
 # to ensure that we error out properly for people with outdated setuptools
 # and/or pip.
-min_version = (3, 7)
+min_version = (3, 11)
 if sys.version_info < min_version:
     error = """
 mpl-gui does not support Python {0}.{1}.