Skip to content

Commit 9349b8f

Browse files
committed
bump version [skip ci]
1 parent 9334ed7 commit 9349b8f

3 files changed

Lines changed: 10 additions & 8 deletions

File tree

src/artisanlib/__init__.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
__version__ = '4.2.0'
1+
__version__ = '4.2.1'
22
__revision__ = ''
33
__build__ = '0'
44
__artisan_os__ = 'Linux'
55

6-
__release_sponsor_name__ = 'LABEL!ISTEN'
7-
__release_sponsor_domain__ = 'labelisten.com'
8-
__release_sponsor_url__ = 'https://labelisten.com/'
9-
__signature__ = '29f13f2dbeacd4b04901ccd9a8848c5160d74ecaefdaf4fa565347cfdd820eeac3f92392ccc847f5bb5f58c08ad39be16514a7279141913f0572664b21591b0c'
6+
__release_sponsor_name__ = 'artisan.plus'
7+
__release_sponsor_domain__ = 'artisan.plus'
8+
__release_sponsor_url__ = 'https://artisan.plus/'
9+
__signature__ = '4857e858c31f5a78c45bbee1a8e3d89d7b177feacefe47052d5029d4f8fc6ff4f82829c4e6b04b9ee11e1602613b523a98e6bffe0581793afb50238dafeb1e08'

src/artisanlib/main.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4369,8 +4369,8 @@ def app_signature_valid(self) -> bool:
43694369
signature:bytes = bytes.fromhex(__signature__)
43704370
public_key.verify(signature, message)
43714371
return True
4372-
except Exception: # pylint: disable=broad-except
4373-
pass
4372+
except Exception as e: # pylint: disable=broad-except
4373+
_log.exception(e)
43744374
_log.error('app signature invalid')
43754375
return False
43764376

src/requirements.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ python-statemachine==3.2.0
6666
yoctopuce==2.1.14927
6767
PyQt6==6.11.0
6868
PyQt6-WebEngine==6.11.0
69-
qt6-tools==6.5.0.1.3
7069
paho-mqtt==2.1.0
7170
jmespath==1.1.0
7271
cryptography==49.0.0 # last version with macOS Intel binaries: 48.0.1
@@ -78,6 +77,9 @@ cryptography==49.0.0 # last version with macOS Intel binaries: 48.0.1
7877
###
7978
pyinstaller==6.21.0; platform_system=='Linux' or sys_platform=='darwin' # on Windows pyinstaller is separately installed (see above)
8079
#
80+
### Qt build tools not part of PyQt but required by build-derived
81+
qt5-tools==5.15.2.1.3; (platform_system=='Windows' and python_version<'3.9')
82+
qt6-tools==6.5.0.1.3; (sys_platform=='darwin' and platform_release>='20.0') or (platform_system=='Windows' and python_version>'3.10') or (platform_system=='Linux' and platform_machine!='aarch64')
8183
########
8284
### macOS specific packages
8385
###

0 commit comments

Comments
 (0)