From 78c2ca9f8227f9ff2475a504d8214c60f4dba4db Mon Sep 17 00:00:00 2001 From: Syed Ali Abbas Date: Tue, 2 Jun 2026 18:15:38 +0500 Subject: [PATCH 1/3] chore: drop compatibility with Python 3.9 and ensure compatibility with Python 3.14 (#35) --- .github/workflows/test.yml | 2 +- .../20260415_180719_ali.abbas02_python_version_upgrade.md | 1 + pyproject.toml | 5 +++-- 3 files changed, 5 insertions(+), 3 deletions(-) create mode 100644 changelog.d/20260415_180719_ali.abbas02_python_version_upgrade.md diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ba2d0be..7169fbf 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: ["3.9", "3.12"] + python-version: ["3.10", "3.14"] steps: - uses: actions/checkout@v4 - name: Set up ${{ matrix.python-version }} diff --git a/changelog.d/20260415_180719_ali.abbas02_python_version_upgrade.md b/changelog.d/20260415_180719_ali.abbas02_python_version_upgrade.md new file mode 100644 index 0000000..108a7a4 --- /dev/null +++ b/changelog.d/20260415_180719_ali.abbas02_python_version_upgrade.md @@ -0,0 +1 @@ +- 💥[Improvement] Add Python 3.13 and 3.14 support. Drop Python 3.9 (end-of-life). Update CI matrix from Python 3.9/3.12 to 3.10/3.14. (by @Syed-Ali-Abbas-568) diff --git a/pyproject.toml b/pyproject.toml index 4e88b73..4f83860 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,17 +14,18 @@ maintainers = [ ] description = "Jupyter Notebook plugin for Tutor" readme = { file = "README.rst", content-type = "text/x-rst" } -requires-python = ">=3.9" +requires-python = ">=3.10" classifiers = [ "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: GNU Affero General Public License v3", "Operating System :: OS Independent", "Programming Language :: Python", - "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] dependencies = [ "tutor>=21.0.0,<22.0.0", From 1ac3fef97c877726008e9d1d33f4f3350ff2f6fc Mon Sep 17 00:00:00 2001 From: Ahmed Khalid Date: Fri, 17 Apr 2026 16:11:23 +0500 Subject: [PATCH 2/3] feat: upgrade to Verawood Generated by Claude Code on behalf of @ahmed-arb --- changelog.d/20260417_verawood_upgrade.md | 1 + pyproject.toml | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) create mode 100644 changelog.d/20260417_verawood_upgrade.md diff --git a/changelog.d/20260417_verawood_upgrade.md b/changelog.d/20260417_verawood_upgrade.md new file mode 100644 index 0000000..570a108 --- /dev/null +++ b/changelog.d/20260417_verawood_upgrade.md @@ -0,0 +1 @@ +- 💥[Feature] Upgrade to Verawood. (generated by Claude Code on behalf of @ahmed-arb) diff --git a/pyproject.toml b/pyproject.toml index 4f83860..9596844 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,14 +28,14 @@ classifiers = [ "Programming Language :: Python :: 3.14", ] dependencies = [ - "tutor>=21.0.0,<22.0.0", - "tutor-mfe>=21.0.0,<22.0.0" + "tutor>=22.0.0,<23.0.0", + "tutor-mfe>=22.0.0,<23.0.0" ] dynamic = ["version"] [project.optional-dependencies] dev = [ - "tutor[dev]>=21.0.0,<22.0.0", + "tutor[dev]>=22.0.0,<23.0.0", "ruff", ] From eb2344429efa5ba46e1ec5732a32bfb6d8a3c1ad Mon Sep 17 00:00:00 2001 From: Ahmed Khalid Date: Mon, 4 May 2026 17:48:40 +0500 Subject: [PATCH 3/3] chore: bump version to 22.0.0 for verawood --- tutorjupyter/__about__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tutorjupyter/__about__.py b/tutorjupyter/__about__.py index 9bfcca5..655f53b 100644 --- a/tutorjupyter/__about__.py +++ b/tutorjupyter/__about__.py @@ -1 +1 @@ -__version__ = "21.0.0" +__version__ = "22.0.0"