From 6202ac087413c3a0c23608542f7fe8990d571446 Mon Sep 17 00:00:00 2001 From: Luis Aleixo Date: Thu, 23 May 2024 14:47:49 +0200 Subject: [PATCH 1/2] fixed error in placeholder for secondary school (data registry defaults) --- caimira/store/data_registry.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/caimira/store/data_registry.py b/caimira/store/data_registry.py index e1074587..cced1032 100644 --- a/caimira/store/data_registry.py +++ b/caimira/store/data_registry.py @@ -441,7 +441,7 @@ class DataRegistry: "expiration": {"Breathing": 5, "Speaking": 5}, }, "secondary-school": { - "placeholder": "Primary school", + "placeholder": "Secondary school", "activity": "Light activity", "expiration": {"Breathing": 7, "Speaking": 3}, }, From cf99568a703e05f478646bdeaded3835e790b01c Mon Sep 17 00:00:00 2001 From: Luis Aleixo Date: Thu, 23 May 2024 14:52:18 +0200 Subject: [PATCH 2/2] modified way to restrict pytest version to be installed --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index c0d05007..62e6f5ef 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,7 @@ REQUIREMENTS: dict = { ], 'app': [], 'test': [ - 'pytest', + 'pytest < 8.2', 'pytest-mypy >= 0.10.3', 'mypy >= 1.0.0', 'pytest-tornasync',