Package problem: tis-7zip 21.05
Published: November 26, 2021 - 12:34 PM
Hello everyone,
I've noticed a problem with the latest version of 7-Zip on the store; all installations end in error
Upon closer inspection of setup.py, I noticed that it was missing this
After modifying the package, everything works perfectly; I'm sharing this information in case it can help others.
Good day
I've noticed a problem with the latest version of 7-Zip on the store; all installations end in error
Upon closer inspection of setup.py, I noticed that it was missing this
Code: Select all
def get_version_from_binary(filename):
if filename.endswith('.msi'):
return get_msi_properties(filename)['ProductVersion']
else:
return get_file_properties(filename)['ProductVersion']Good day