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-05-26 20:24:24 +0300
committerPhilipp Hörist <philipp@hoerist.com>2023-05-26 20:24:24 +0300
commitabff68bed793dcbabd9fe28397471224f5f56df1 (patch)
treefe6041b682bff40a1bda09d25d8a02efb6411832
parent037ddbdbdf3e61007c2d41312121c943aef6d923 (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/gajim.py2
-rw-r--r--pyproject.toml2
5 files changed, 7 insertions, 7 deletions
diff --git a/README.md b/README.md
index 93f2c580d..2ed12f3e6 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.2.2)
+- [nbxmpp](https://pypi.org/project/nbxmpp/) (>=4.3.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 8bb6b034c..24c76b095 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.2.2,<5.0.0",
+- "nbxmpp>=4.3.0,<5.0.0",
"packaging",
"pillow",
"precis-i18n>=1.0.0",
diff --git a/flatpak/org.gajim.Gajim.yaml b/flatpak/org.gajim.Gajim.yaml
index 1c87ed361..4b10950b8 100644
--- a/flatpak/org.gajim.Gajim.yaml
+++ b/flatpak/org.gajim.Gajim.yaml
@@ -317,11 +317,11 @@ modules:
- name: python3-nbxmpp
buildsystem: simple
build-commands:
- - pip3 install nbxmpp-4.2.2-py3-none-any.whl
+ - pip3 install nbxmpp-4.3.0-py3-none-any.whl
sources:
- type: file
- url: https://files.pythonhosted.org/packages/py3/n/nbxmpp/nbxmpp-4.2.2-py3-none-any.whl
- sha256: 807d8bbe19dcc77e23cd2b0420581fecd1168ad5cb88b201a15ec7d0b1f8aff3
+ url: https://files.pythonhosted.org/packages/py3/n/nbxmpp/nbxmpp-4.3.0-py3-none-any.whl
+ sha256: dcbf5cec51ddc3ac7aeaa2d5fca02e2b004b92fc1622cb0d7f1e18c33e593b1e
# OMEMO dependencies
- name: python3-protobuf
diff --git a/gajim/gajim.py b/gajim/gajim.py
index b7eeaa1dd..4a5e9a734 100644
--- a/gajim/gajim.py
+++ b/gajim/gajim.py
@@ -30,7 +30,7 @@ from types import FrameType
from packaging.version import Version as V
-_MIN_NBXMPP_VER = '4.2.2'
+_MIN_NBXMPP_VER = '4.3.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 0efb16b34..d454ee5b6 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -27,7 +27,7 @@ classifiers = [
dependencies = [
"css-parser",
"keyring",
- "nbxmpp>=4.2.2,<5.0.0",
+ "nbxmpp>=4.3.0,<5.0.0",
"packaging",
"pillow",
"precis-i18n>=1.0.0",