From 26e4f1981d414366e70604bfadd86abdeb62fdbc Mon Sep 17 00:00:00 2001 From: Mark Qvist Date: Tue, 14 Nov 2023 10:26:31 +0100 Subject: [PATCH] Updated RNS dependency and version --- sbapp/buildozer.spec | 2 +- sbapp/main.py | 2 +- setup.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/sbapp/buildozer.spec b/sbapp/buildozer.spec index 3e28077..4496290 100644 --- a/sbapp/buildozer.spec +++ b/sbapp/buildozer.spec @@ -10,7 +10,7 @@ source.exclude_patterns = app_storage/*,venv/*,Makefile,./Makefil*,requirements, version.regex = __version__ = ['"](.*)['"] version.filename = %(source.dir)s/main.py -android.numeric_version = 20231113 +android.numeric_version = 20231114 # Cryptography recipe is currently broken, using RNS-internal crypto for now requirements = kivy==2.2.1,libbz2,pillow,qrcode==7.3.1,usb4a,usbserial4a diff --git a/sbapp/main.py b/sbapp/main.py index 1a4afbb..887c06c 100644 --- a/sbapp/main.py +++ b/sbapp/main.py @@ -1,6 +1,6 @@ __debug_build__ = False __disable_shaders__ = False -__version__ = "0.7.5" +__version__ = "0.7.6" __variant__ = "beta" import sys diff --git a/setup.py b/setup.py index 3527c8f..98b9669 100644 --- a/setup.py +++ b/setup.py @@ -82,7 +82,7 @@ setuptools.setup( 'sideband=sbapp:main.run', ] }, - install_requires=["rns>=0.6.6", "lxmf>=0.3.8", "kivy>=2.2.1", "plyer", "pillow", "qrcode", "materialyoucolor"], + install_requires=["rns>=0.6.8", "lxmf>=0.3.8", "kivy>=2.2.1", "plyer", "pillow", "qrcode", "materialyoucolor"], extras_require={ "macos": ["pyobjus"], },