pyappify 0.0.4__tar.gz → 0.0.5__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-0.0.4 → pyappify-0.0.5}/PKG-INFO +1 -1
- {pyappify-0.0.4 → pyappify-0.0.5}/pyappify/__init__.py +1 -1
- {pyappify-0.0.4 → pyappify-0.0.5}/pyappify.egg-info/PKG-INFO +1 -1
- {pyappify-0.0.4 → pyappify-0.0.5}/pyproject.toml +1 -1
- {pyappify-0.0.4 → pyappify-0.0.5}/pyappify/main.py +0 -0
- {pyappify-0.0.4 → pyappify-0.0.5}/pyappify.egg-info/SOURCES.txt +0 -0
- {pyappify-0.0.4 → pyappify-0.0.5}/pyappify.egg-info/dependency_links.txt +0 -0
- {pyappify-0.0.4 → pyappify-0.0.5}/pyappify.egg-info/entry_points.txt +0 -0
- {pyappify-0.0.4 → pyappify-0.0.5}/pyappify.egg-info/requires.txt +0 -0
- {pyappify-0.0.4 → pyappify-0.0.5}/pyappify.egg-info/top_level.txt +0 -0
- {pyappify-0.0.4 → pyappify-0.0.5}/setup.cfg +0 -0
|
@@ -74,7 +74,7 @@ def hide_pyappify():
|
|
|
74
74
|
pass
|
|
75
75
|
|
|
76
76
|
def upgrade(to_version, executable_sha256, executable_zip_urls, stop_event=None):
|
|
77
|
-
if not pyappify_upgradeable or to_version == pyappify_version:
|
|
77
|
+
if not pyappify_upgradeable or (to_version and to_version.lstrip('v') == pyappify_version.lstrip('v')):
|
|
78
78
|
return
|
|
79
79
|
|
|
80
80
|
def _do_upgrade():
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|