From 1b3fdf1f149178baa31035f2d5f90632f72b511c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sara=20Aim=C3=A9e=20Smiseth?= <51710585+SaraSmiseth@users.noreply.github.com> Date: Sat, 25 Mar 2023 09:03:52 +0100 Subject: [PATCH] Update test dependencies: aioxmpp, pytest-asyncio + add pytz to requirements.txt This fixes the following error when running the tests: E ModuleNotFoundError: No module named 'pytz' Instead of pytz only pytz-deprecation-shim was installed. TODO Check if "pytz" can be removed from requirements.txt later on. --- tests/requirements.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/requirements.txt b/tests/requirements.txt index c97b92d..cfbef74 100644 --- a/tests/requirements.txt +++ b/tests/requirements.txt @@ -1,3 +1,4 @@ -aioxmpp==0.13.2 +aioxmpp==0.13.3 pip-chill==1.0.1 -pytest-asyncio==0.18.3 +pytest-asyncio==0.21.0 +pytz==2022.7.1