bcpkgfox 0.16.5b8__tar.gz → 0.16.5b10__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.
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/PKG-INFO +1 -1
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/bcpkgfox/cli.py +18 -15
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/bcpkgfox.egg-info/PKG-INFO +1 -1
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/setup.py +1 -1
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/README.md +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/bcpkgfox/__init__.py +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/bcpkgfox/exec_file.py +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/bcpkgfox/find_elements.py +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/bcpkgfox/get_driver.py +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/bcpkgfox/invoke_api.py +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/bcpkgfox/system.py +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/bcpkgfox.egg-info/SOURCES.txt +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/bcpkgfox.egg-info/dependency_links.txt +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/bcpkgfox.egg-info/entry_points.txt +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/bcpkgfox.egg-info/requires.txt +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/bcpkgfox.egg-info/top_level.txt +0 -0
- {bcpkgfox-0.16.5b8 → bcpkgfox-0.16.5b10}/setup.cfg +0 -0
|
@@ -735,24 +735,23 @@ class cli:
|
|
|
735
735
|
|
|
736
736
|
process_finished = False
|
|
737
737
|
for lib in librarys:
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
)
|
|
738
|
+
result = subprocess.run(
|
|
739
|
+
[pip_path, 'install', lib],
|
|
740
|
+
# check=True,
|
|
741
|
+
stdout=subprocess.PIPE,
|
|
742
|
+
stderr=subprocess.PIPE,
|
|
743
|
+
text=True
|
|
744
|
+
)
|
|
746
745
|
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
|
|
751
|
-
|
|
746
|
+
if result.returncode != 0:
|
|
747
|
+
if isinstance(lib, list):
|
|
748
|
+
self.imports.extend(lib)
|
|
749
|
+
else: self.imports.append(lib)
|
|
750
|
+
continue
|
|
752
751
|
|
|
753
752
|
|
|
754
|
-
|
|
755
|
-
|
|
753
|
+
elif result.stdout:
|
|
754
|
+
print(f"\033[0J{result.stdout.strip()}\033[0J")
|
|
756
755
|
|
|
757
756
|
process_finished = True
|
|
758
757
|
log_animation.join()
|
|
@@ -763,6 +762,10 @@ class cli:
|
|
|
763
762
|
self.descerror = e
|
|
764
763
|
self.error = 1
|
|
765
764
|
print(e)
|
|
765
|
+
print(e)
|
|
766
|
+
print(e)
|
|
767
|
+
print(e)
|
|
768
|
+
print(e)
|
|
766
769
|
sys.exit()
|
|
767
770
|
|
|
768
771
|
def recreate_venv(self):
|
|
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
|