Update version requirements for OMEMO lib

Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
This commit is contained in:
Maxime “pep” Buquet 2022-08-23 21:26:06 +02:00
parent 73bc6b7803
commit 3411d5f673
Signed by: pep
GPG key ID: DEDA74AEECA9D0F2
3 changed files with 3 additions and 2 deletions

View file

@ -7,6 +7,7 @@ xxxx-xx-xx Maxime “pep” Buquet <pep@bouah.net>
- my_fingerprint doesn't traceback anymore on normal operation - my_fingerprint doesn't traceback anymore on normal operation
* Added: * Added:
- New fetch_bundles method to fetch all bundles at once - New fetch_bundles method to fetch all bundles at once
- Add upper bound on OMEMO lib version requirements as it'll become significant
Version 0.7.0: Version 0.7.0:
2022-04-03 Maxime “pep” Buquet <pep@bouah.net> 2022-04-03 Maxime “pep” Buquet <pep@bouah.net>
* Breaking: * Breaking:

View file

@ -1,3 +1,3 @@
slixmpp>=1.8.0 slixmpp>=1.8.0
omemo-backend-signal>=0.3.0 omemo-backend-signal>=0.3.0
omemo>=0.14.0 omemo>=0.14.0,<0.15

View file

@ -63,7 +63,7 @@ setup(
install_requires=[ install_requires=[
'slixmpp>=1.8.0', 'slixmpp>=1.8.0',
'omemo-backend-signal>=0.3.0', 'omemo-backend-signal>=0.3.0',
'omemo>=0.14.0', 'omemo>=0.14.0,<0.15',
], ],
classifiers=CLASSIFIERS, classifiers=CLASSIFIERS,
) )