From f1392aa1ee68ad3791435d40170c12f6ae30dbc6 Mon Sep 17 00:00:00 2001 From: Adrian Moennich Date: Fri, 16 Aug 2024 17:45:49 +0200 Subject: [PATCH] Previewer/Jupyter: Use latest nbconvert version --- previewer_jupyter/README.md | 4 ++++ previewer_jupyter/pyproject.toml | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/previewer_jupyter/README.md b/previewer_jupyter/README.md index 3941d83..2987151 100644 --- a/previewer_jupyter/README.md +++ b/previewer_jupyter/README.md @@ -5,6 +5,10 @@ material to an Indico event. ## Changelog +### 3.3.1 + +- Use the latest `nbconvert` version + ### 3.3 - Support (and require) Python 3.12 diff --git a/previewer_jupyter/pyproject.toml b/previewer_jupyter/pyproject.toml index c77eb76..9324da5 100644 --- a/previewer_jupyter/pyproject.toml +++ b/previewer_jupyter/pyproject.toml @@ -2,7 +2,7 @@ name = 'indico-plugin-previewer-jupyter' description = 'Jupyter notebook rendering for attachments in Indico' readme = 'README.md' -version = '3.3' +version = '3.3.1' license = 'MIT' authors = [{ name = 'Indico Team', email = 'indico-team@cern.ch' }] classifiers = [ @@ -12,7 +12,7 @@ classifiers = [ 'Programming Language :: Python :: 3.12', ] requires-python = '>=3.12.2, <3.13' -dependencies = ['indico>=3.3', 'nbconvert==6.5.0'] +dependencies = ['indico>=3.3', 'nbconvert>=7.16.4,<8'] [project.urls] GitHub = 'https://github.com/indico/indico-plugins'