From f6c4180502ad5b8f6a9d71713b40ff86b232be38 Mon Sep 17 00:00:00 2001 From: Peter Pfeufer Date: Fri, 28 Feb 2025 11:09:22 +0100 Subject: [PATCH] [CHANGE] Limit `slixmpp` version An update to `slixmpp` v1.9.0 pulls in `pyasn1` v0.6.1, which causes a dependency issue with `python-jose` > ERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts. > python-jose 3.4.0 requires pyasn1<0.5.0,>=0.4.1, but you have pyasn1 0.6.1 which is incompatible. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c6f73359..4f76be36 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -65,7 +65,7 @@ dependencies = [ "requests>=2.9.1", "requests-oauthlib", "semantic-version", - "slixmpp", + "slixmpp<1.9", ] optional-dependencies.docs = [ "myst-parser",