From e233ea43b16d998178c9e3cbe29e9a347519171c Mon Sep 17 00:00:00 2001 From: Nicolas Mounet Date: Wed, 29 Nov 2023 17:31:39 +0100 Subject: [PATCH] Updating package requirements in setup.py to make the tests pass locally and to avoid the expert app to crash (mypy, pytest-mypy and ipympl) --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 11003315..5bfc2729 100644 --- a/setup.py +++ b/setup.py @@ -20,7 +20,7 @@ REQUIREMENTS: dict = { 'core': [ 'dataclasses; python_version < "3.7"', 'ipykernel', - 'ipympl', + 'ipympl >= 0.9.0', 'ipywidgets < 8.0', 'Jinja2', 'loky', @@ -44,8 +44,8 @@ REQUIREMENTS: dict = { 'app': [], 'test': [ 'pytest', - 'pytest-mypy', - 'mypy', + 'pytest-mypy >= 0.10.3', + 'mypy >= 1.0.0', 'pytest-tornasync', 'numpy-stubs @ git+https://github.com/numpy/numpy-stubs.git', 'types-dataclasses',