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-11-26 18:32:36 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-11-26 18:32:36 +0300
commit58398a31aa43f3e2aa7d82ff31be8551b2ba75dc (patch)
tree87342e6fd4ccd11b76e7ecf653d0d6d1e178717a
parent1b318b73e2728dc8160c7db95a81b3dce61a6642 (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 824029268..6c6b38df0 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.4.0)
+- [nbxmpp](https://pypi.org/project/nbxmpp/) (>=4.5.3)
- [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 4d0d5d27f..29919d2b4 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.4.0,<5.0.0",
+- "nbxmpp>=4.5.3,<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 b64becdf9..ee9643756 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.5.0-py3-none-any.whl
+ - pip3 install nbxmpp-4.5.3-py3-none-any.whl
sources:
- type: file
- url: https://files.pythonhosted.org/packages/py3/n/nbxmpp/nbxmpp-4.5.0-py3-none-any.whl
- sha256: 4de2d8f6253e39a1e1bc66324d574bc2cb393058aa76c1cf4a5edf5e2bf383ca
+ url: https://files.pythonhosted.org/packages/py3/n/nbxmpp/nbxmpp-4.5.3-py3-none-any.whl
+ sha256: 2a346ac006d35bab98461c3c8f7fa0378c65226edbaf2aacbef56386586a9c1e
- name: gajim
buildsystem: simple
diff --git a/gajim/main.py b/gajim/main.py
index 5c7d0ab79..4ccc15aec 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.4.0'
+_MIN_NBXMPP_VER = '4.5.3'
_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 b1523399f..98c48dcac 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -27,7 +27,7 @@ classifiers = [
dependencies = [
"css-parser",
"keyring",
- "nbxmpp>=4.4.0,<5.0.0",
+ "nbxmpp>=4.5.3,<5.0.0",
"packaging",
"pillow>=9.1.0",
"precis-i18n>=1.0.0",