From 6fb8b0fb4980a423f9a3c5ff2d5c5bab70f401e4 Mon Sep 17 00:00:00 2001
From: Ian Hunt-Isaak <ianhuntisaak@gmail.com>
Date: Tue, 4 Mar 2025 21:17:40 -0500
Subject: [PATCH 1/2] build: bump ipython requirement

---
 pyproject.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pyproject.toml b/pyproject.toml
index 27e5712f..760cb113 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -42,7 +42,7 @@ classifiers = [
     "Topic :: Multimedia :: Graphics",
 ]
 dependencies = [
-    "ipython<9",
+    "ipython<10",
     "ipywidgets>=7.6.0,<9",
     "matplotlib>=3.5.0,<4",
     "numpy",

From 6a62c62bc3c0edce933828d786077717cd5f129d Mon Sep 17 00:00:00 2001
From: Ian Hunt-Isaak <ianhuntisaak@gmail.com>
Date: Tue, 4 Mar 2025 21:21:24 -0500
Subject: [PATCH 2/2] release 0.9.7

---
 README.md          | 2 +-
 docs/installing.md | 2 +-
 ipympl/_version.py | 2 +-
 package.json       | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/README.md b/README.md
index dbda5a12..98934ebc 100644
--- a/README.md
+++ b/README.md
@@ -66,7 +66,7 @@ Versions lookup table:
 
 | `ipympl` | `jupyter-matplotlib` | `JupyterLab` | `Matplotlib` |
 |----------|----------------------|--------------|--------------|
-| 0.9.5-6  | 0.11.5-6             | >=2,<5       | >=3.5.0      |
+| 0.9.5-7  | 0.11.5-7             | >=2,<5       | >=3.5.0      |
 | 0.9.3-4  | 0.11.3-4             | >=2,<5       | 3.4.0>=      |
 | 0.9.0-2  | 0.11.0-2             | >=2,<5       | 3.4.0>=  <3.7|
 | 0.8.8    | 0.10.x               | >=2,<5       | 3.3.1>=  <3.7|
diff --git a/docs/installing.md b/docs/installing.md
index 727e76bb..828ad6df 100644
--- a/docs/installing.md
+++ b/docs/installing.md
@@ -49,7 +49,7 @@ Not all versions of `ipympl` are compatible with different version of Jupyterlab
 
 | `ipympl` | `jupyter-matplotlib` | `JupyterLab` | `Matplotlib` |
 |----------|----------------------|--------------|--------------|
-| 0.9.5-6  | 0.11.5-6             | >=2,<5       | >=3.5.0      |
+| 0.9.5-7  | 0.11.5-7             | >=2,<5       | >=3.5.0      |
 | 0.9.3-4  | 0.11.3-4             | >=2,<5       | 3.4.0>=      |
 | 0.9.0-2  | 0.11.0-2             | >=2,<5       | 3.4.0>=  <3.7|
 | 0.8.8    | 0.10.x               | 3 or 2       | 3.3.1>=  <3.7|
diff --git a/ipympl/_version.py b/ipympl/_version.py
index 72b00247..3bfa42c0 100644
--- a/ipympl/_version.py
+++ b/ipympl/_version.py
@@ -1,3 +1,3 @@
-version_info = (0, 9, 6)
+version_info = (0, 9, 7)
 __version__ = '.'.join(map(str, version_info))
 js_semver = '^0.11'
diff --git a/package.json b/package.json
index 870f1fad..30bec053 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
 {
     "name": "jupyter-matplotlib",
-    "version": "0.11.6",
+    "version": "0.11.7",
     "description": "Matplotlib Jupyter Interactive Widget",
     "author": "Matplotlib Development team",
     "license": "BSD-3-Clause",