Welcome to mirror list, hosted at ThFree Co, Russian Federation.

dev.gajim.org/gajim/gajim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilipp Hörist <philipp@hoerist.com>2023-10-22 12:45:04 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-10-22 12:45:46 +0300
commit11f01aa08268e660571072de2b1968df2d7e1848 (patch)
tree46cdcafa9e2da5c748d8a18b787b7f113bd2834e
parent85dfba6322f8dcca6c45919daa39cfdb14f7f923 (diff)
change: Raise nbxmpp version
-rw-r--r--README.md2
-rw-r--r--debian/patches/remove-nbxmpp-from-deps.patch2
-rw-r--r--flatpak/org.gajim.Gajim.yaml6
-rw-r--r--gajim/main.py2
-rw-r--r--pyproject.toml2
5 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index 372c9408e..fac5b916d 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,7 @@
- [PyGObject](https://pypi.org/project/PyGObject/) (>=3.42.0)
- [pycairo](https://pypi.org/project/pycairo/)
- [cairo](https://gitlab.freedesktop.org/cairo/cairo) (>=1.16.0)
-- [nbxmpp](https://pypi.org/project/nbxmpp/) (>=4.3.0)
+- [nbxmpp](https://pypi.org/project/nbxmpp/) (>=4.4.0)
- [cryptography](https://pypi.org/project/cryptography/) (>=3.4.8)
- [css-parser](https://pypi.org/project/css-parser/)
- [keyring](https://pypi.org/project/keyring/)
diff --git a/debian/patches/remove-nbxmpp-from-deps.patch b/debian/patches/remove-nbxmpp-from-deps.patch
index 0d5901a41..4d0d5d27f 100644
--- a/debian/patches/remove-nbxmpp-from-deps.patch
+++ b/debian/patches/remove-nbxmpp-from-deps.patch
@@ -16,7 +16,7 @@ index 93c4acbe6..52544a89d 100644
dependencies = [
"css-parser",
"keyring",
-- "nbxmpp>=4.3.0,<5.0.0",
+- "nbxmpp>=4.4.0,<5.0.0",
"packaging",
"pillow>=9.1.0",
"precis-i18n>=1.0.0",
diff --git a/flatpak/org.gajim.Gajim.yaml b/flatpak/org.gajim.Gajim.yaml
index 98c24e9d1..f6d378002 100644
--- a/flatpak/org.gajim.Gajim.yaml
+++ b/flatpak/org.gajim.Gajim.yaml
@@ -344,11 +344,11 @@ modules:
- name: python3-nbxmpp
buildsystem: simple
build-commands:
- - pip3 install nbxmpp-4.3.3-py3-none-any.whl
+ - pip3 install nbxmpp-4.4.0-py3-none-any.whl
sources:
- type: file
- url: https://files.pythonhosted.org/packages/py3/n/nbxmpp/nbxmpp-4.3.3-py3-none-any.whl
- sha256: 19b6a3e7b24fac155634feb85d0b6fb86659e4359ae880f3e5911b0452aea4d0
+ url: https://files.pythonhosted.org/packages/py3/n/nbxmpp/nbxmpp-4.4.0-py3-none-any.whl
+ sha256: e966480e1df4d9b3feb248687933c4c49533b2d7dd7bf03252757973fed6df29
- name: gajim
buildsystem: simple
diff --git a/gajim/main.py b/gajim/main.py
index cb07a37c3..dea4541c6 100644
--- a/gajim/main.py
+++ b/gajim/main.py
@@ -29,7 +29,7 @@ from types import FrameType
from packaging.version import Version as V
-_MIN_NBXMPP_VER = '4.3.0'
+_MIN_NBXMPP_VER = '4.4.0'
_MIN_GTK_VER = '3.24.30'
_MIN_CAIRO_VER = '1.16.0'
_MIN_PYGOBJECT_VER = '3.42.0'
diff --git a/pyproject.toml b/pyproject.toml
index a56d7afe5..b1523399f 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -27,7 +27,7 @@ classifiers = [
dependencies = [
"css-parser",
"keyring",
- "nbxmpp>=4.3.0,<5.0.0",
+ "nbxmpp>=4.4.0,<5.0.0",
"packaging",
"pillow>=9.1.0",
"precis-i18n>=1.0.0",