From 42cd3a8bfaf6ca829d97c941b948c9a8be719ddd Mon Sep 17 00:00:00 2001 From: staticf0x <44530786+staticf0x@users.noreply.github.com> Date: Wed, 16 Nov 2022 18:54:59 +0100 Subject: [PATCH 1/3] Allow executing dependency to be >1.0.0 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c21820a..af1097c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ classifiers = [ ] requires-python = '>=3.7' dependencies = [ - 'executing>=0.9.1,<1.0.0', + 'executing>=0.9.1,<2.0.0', 'asttokens>=2.0.0,<3.0.0', ] optional-dependencies = {pygments = ['Pygments>=2.2.0'] } From 1d1ed90a0150282116def7b28e36a344d5401345 Mon Sep 17 00:00:00 2001 From: staticf0x <44530786+staticf0x@users.noreply.github.com> Date: Wed, 16 Nov 2022 19:21:53 +0100 Subject: [PATCH 2/3] Constrain executing on >=1.1.1 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index af1097c..a5ba7e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ classifiers = [ ] requires-python = '>=3.7' dependencies = [ - 'executing>=0.9.1,<2.0.0', + 'executing>=1.1.1,<2.0.0', 'asttokens>=2.0.0,<3.0.0', ] optional-dependencies = {pygments = ['Pygments>=2.2.0'] } From 2273b5cb49b23bee7896229b2a9e816d2485311f Mon Sep 17 00:00:00 2001 From: staticf0x <44530786+staticf0x@users.noreply.github.com> Date: Wed, 16 Nov 2022 19:28:18 +0100 Subject: [PATCH 3/3] Remove upper bound --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index a5ba7e0..ebe9dd4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -34,7 +34,7 @@ classifiers = [ ] requires-python = '>=3.7' dependencies = [ - 'executing>=1.1.1,<2.0.0', + 'executing>=1.1.1', 'asttokens>=2.0.0,<3.0.0', ] optional-dependencies = {pygments = ['Pygments>=2.2.0'] }