From 5426d5bf9d5109f113bdf10a6133eefdcacad2ff Mon Sep 17 00:00:00 2001 From: Hank Greenburg Date: Mon, 28 Oct 2024 20:07:12 -0700 Subject: [PATCH 1/3] chore: upgrade matrix-nio and fix dasbus version --- setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 379f76f..5b9abec 100644 --- a/setup.py +++ b/setup.py @@ -28,13 +28,13 @@ "cachetools >= 3.0.0", "prompt_toolkit > 2, < 4", "typing;python_version<'3.5'", - "matrix-nio[e2e] >= 0.20, < 0.21", + "matrix-nio[e2e] >= 0.24, < 0.25.2", ], extras_require={ "ui": [ "dbus-python >= 1.2, < 1.3", "PyGObject >= 3.36, < 3.39", - "dasbus == 1.71", + "dasbus == 1.7", "notify2 >= 0.3, < 0.4", ] }, From e2abab1ecc8a5cfec171f164456d10a514d4216e Mon Sep 17 00:00:00 2001 From: Hank Greenburg Date: Mon, 28 Oct 2024 20:11:44 -0700 Subject: [PATCH 2/3] chore: update pip install instructions in README --- README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/README.md b/README.md index 412db2a..0e45f28 100644 --- a/README.md +++ b/README.md @@ -25,6 +25,11 @@ Installing pantalaimon works like usually with python packages: python setup.py install +or you can use `pip` and install it with: +``` +pip install .[ui] +``` + Pantalaimon can also be found on pypi: pip install pantalaimon From bfb3b0615342c7625ceae7f95bc91fe9d2e3d54c Mon Sep 17 00:00:00 2001 From: Hank Greenburg Date: Mon, 28 Oct 2024 20:13:16 -0700 Subject: [PATCH 3/3] docs: Update how to install packages with package manager --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index 0e45f28..7f2bd2d 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,9 @@ or you can use `pip` and install it with: pip install .[ui] ``` +It is recommended that you create a virtual environment first or install dependencies +via your package manager. They are usually found with `python-`. + Pantalaimon can also be found on pypi: pip install pantalaimon