bcpkgfox 0.16.5b7__tar.gz → 0.16.5b9__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: bcpkgfox
3
- Version: 0.16.5b7
3
+ Version: 0.16.5b9
4
4
  Summary: Biblioteca BCFOX
5
5
  Home-page: https://github.com/robotsbcfox/PacotePythonBCFOX
6
6
  Author: Guilherme Neri
@@ -735,26 +735,24 @@ class cli:
735
735
 
736
736
  process_finished = False
737
737
  for lib in librarys:
738
- try:
739
- result = subprocess.run(
740
- [pip_path, 'install', lib],
741
- check=True,
742
- stdout=subprocess.PIPE,
743
- stderr=subprocess.PIPE,
744
- text=True
745
- )
746
-
747
- if result.stdout:
748
- print(f"\033[0J{result.stdout.strip()}\033[0J")
749
-
750
- except Exception as e:
751
- print(e)
752
-
738
+ result = subprocess.run(
739
+ [pip_path, 'install', lib],
740
+ # check=True,
741
+ stdout=subprocess.PIPE,
742
+ stderr=subprocess.PIPE,
743
+ text=True
744
+ )
745
+
746
+ if result.returncode != 0:
753
747
  if isinstance(lib, list):
754
748
  self.imports.extend(lib)
755
749
  else: self.imports.append(lib)
756
750
  continue
757
751
 
752
+
753
+ elif result.stdout:
754
+ print(f"\033[0J{result.stdout.strip()}\033[0J")
755
+
758
756
  process_finished = True
759
757
  log_animation.join()
760
758
  print(f" {self.visuals.bold}{self.visuals.GR} > All packages installed successfully {self.visuals.RESET}\n\n")
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bcpkgfox
3
- Version: 0.16.5b7
3
+ Version: 0.16.5b9
4
4
  Summary: Biblioteca BCFOX
5
5
  Home-page: https://github.com/robotsbcfox/PacotePythonBCFOX
6
6
  Author: Guilherme Neri
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="bcpkgfox",
5
- version="0.16.5b7",
5
+ version="0.16.5b9",
6
6
  author="Guilherme Neri",
7
7
  author_email="guilherme.neri@bcfox.com.br",
8
8
  description="Biblioteca BCFOX",
File without changes
File without changes