From 72f738fbbd344e5f5e71703fa687a24b2e116cd9 Mon Sep 17 00:00:00 2001 From: Nicolas Trangez Date: Fri, 15 Nov 2024 22:33:50 +0000 Subject: [PATCH] deps: loosen `nbclient` dependency version bounds The current bounds, `~=0.5.10`, translate to `>= 0.5.10, == 0.5.*` according to the "Version specifiers" spec. Given `nbclient` is currently at version 0.10.0, loosening the bounds allows for `pytest-notebook` to be used in environments using newer versions of `nbclient`. See: https://packaging.python.org/en/latest/specifications/version-specifiers/#compatible-release --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 227503f..2b6553a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -30,7 +30,7 @@ dependencies = [ "attrs<23,>=19", "importlib-metadata~=6.0;python_version<'3.10'", "importlib-resources~=5.0;python_version<'3.9'", - "nbclient~=0.5.10", + "nbclient~=0.5,>=0.5.10", "nbdime>=4", "nbformat", "jsonschema",