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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyappify
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: My awesome Python application
5
5
  Classifier: Programming Language :: Python :: 3
6
6
  Classifier: License :: OSI Approved :: MIT License
@@ -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
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pyappify
3
- Version: 1.0.1
3
+ Version: 1.0.2
4
4
  Summary: My awesome Python application
5
5
  Classifier: Programming Language :: Python :: 3
6
6
  Classifier: License :: OSI Approved :: MIT License
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "pyappify"
7
- version = "1.0.1"
7
+ version = "1.0.2"
8
8
  description = "My awesome Python application"
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.7"
File without changes
File without changes
File without changes