q2rad 0.1.215__tar.gz → 0.1.216__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.
Potentially problematic release.
This version of q2rad might be problematic. Click here for more details.
- {q2rad-0.1.215 → q2rad-0.1.216}/PKG-INFO +1 -1
- {q2rad-0.1.215 → q2rad-0.1.216}/pyproject.toml +1 -1
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2rad.py +4 -1
- q2rad-0.1.216/q2rad/version.py +1 -0
- q2rad-0.1.215/q2rad/version.py +0 -1
- {q2rad-0.1.215 → q2rad-0.1.216}/LICENSE +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/README.md +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/__init__.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/__main__.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2actions.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2appmanager.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2appselector.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2constants.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2extensions.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2forms.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2lines.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2make.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2market.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2modules.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2packages.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2queries.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2raddb.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2reports.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2stylesettings.py +0 -0
- {q2rad-0.1.215 → q2rad-0.1.216}/q2rad/q2utils.py +0 -0
|
@@ -762,7 +762,7 @@ class Q2RadApp(Q2App):
|
|
|
762
762
|
upgraded = []
|
|
763
763
|
w = Q2WaitShow(len(packages_list))
|
|
764
764
|
for package in packages_list:
|
|
765
|
-
if w.step(package):
|
|
765
|
+
if w.step(f"{package if isinstance(package, str) else package[0]}"):
|
|
766
766
|
break
|
|
767
767
|
latest_version, current_version = self.get_package_versions(package)
|
|
768
768
|
# q2mess([package, latest_version, current_version])
|
|
@@ -860,6 +860,9 @@ class Q2RadApp(Q2App):
|
|
|
860
860
|
if self.frozen:
|
|
861
861
|
return
|
|
862
862
|
|
|
863
|
+
if isinstance(package, tuple) or isinstance(package, list):
|
|
864
|
+
package = package[1] if package[1] else package[0]
|
|
865
|
+
|
|
863
866
|
def pip_runner():
|
|
864
867
|
trm = Q2Terminal(callback=print)
|
|
865
868
|
trm.run(
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.216"
|
q2rad-0.1.215/q2rad/version.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.215"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|