pyappify 1.0.1__tar.gz → 1.0.2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {pyappify-1.0.1 → pyappify-1.0.2}/PKG-INFO +1 -1
- {pyappify-1.0.1 → pyappify-1.0.2}/pyappify/__init__.py +1 -1
- {pyappify-1.0.1 → pyappify-1.0.2}/pyappify.egg-info/PKG-INFO +1 -1
- {pyappify-1.0.1 → pyappify-1.0.2}/pyproject.toml +1 -1
- {pyappify-1.0.1 → pyappify-1.0.2}/pyappify/main.py +0 -0
- {pyappify-1.0.1 → pyappify-1.0.2}/pyappify.egg-info/SOURCES.txt +0 -0
- {pyappify-1.0.1 → pyappify-1.0.2}/pyappify.egg-info/dependency_links.txt +0 -0
- {pyappify-1.0.1 → pyappify-1.0.2}/pyappify.egg-info/entry_points.txt +0 -0
- {pyappify-1.0.1 → pyappify-1.0.2}/pyappify.egg-info/requires.txt +0 -0
- {pyappify-1.0.1 → pyappify-1.0.2}/pyappify.egg-info/top_level.txt +0 -0
- {pyappify-1.0.1 → pyappify-1.0.2}/setup.cfg +0 -0
- {pyappify-1.0.1 → pyappify-1.0.2}/tests/TestVersion.py +0 -0
|
@@ -137,7 +137,7 @@ def upgrade(to_version, executable_sha256, executable_zip_urls, stop_event=None)
|
|
|
137
137
|
for byte_block in iter(lambda: f.read(4096), b""):
|
|
138
138
|
sha256_hash.update(byte_block)
|
|
139
139
|
|
|
140
|
-
if sha256_hash.hexdigest() != executable_sha256:
|
|
140
|
+
if executable_sha256 and sha256_hash.hexdigest() != executable_sha256:
|
|
141
141
|
if logger:
|
|
142
142
|
logger.error("pyappify SHA256 checksum mismatch.")
|
|
143
143
|
return
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|