diff --git a/previewer_jupyter/README.md b/previewer_jupyter/README.md index 3941d83a..2987151b 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 c77eb763..9324da5b 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'