I am facing a package that is giving me trouble because it seems to be blocking my other deployments.
Let me explain: I created a package that runs an MSI installer and the installation goes perfectly.
However, I also have an audit function and I notice that in the tasks, it gets stuck indefinitely on the "Updating the list of available packages" status just before executing the audit task for my package:
Code: Select all
def audit():
if installed_softwares('XLSTAT'):
return 'OK'
else:
return 'ERROR'
Have you ever seen this type of error?2025-01-29 16:37:46,468 CRITICAL Audit C:\waptdev\xlstat-2024_26.4.0_x64_Windows\WAPT\..: AttributeError: 'PackageEntry' object has no attribute 'setuppy'
I had thought it might be an encoding problem, but I am definitely using UTF-8 (checked with another editor such as Notepad++) and my "setup.py" file does have the header "# -*- coding: utf-8 -*-" at the beginning of the file.
Thanks in advance.
Fred
