bcpkgfox 0.16.5b6__tar.gz → 0.16.5b8__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.5b6
3
+ Version: 0.16.5b8
4
4
  Summary: Biblioteca BCFOX
5
5
  Home-page: https://github.com/robotsbcfox/PacotePythonBCFOX
6
6
  Author: Guilherme Neri
@@ -738,19 +738,21 @@ class cli:
738
738
  try:
739
739
  result = subprocess.run(
740
740
  [pip_path, 'install', lib],
741
- check=True,
741
+ # check=True,
742
742
  stdout=subprocess.PIPE,
743
743
  stderr=subprocess.PIPE,
744
744
  text=True
745
745
  )
746
746
 
747
- if result.stdout:
748
- print(f"\033[0J{result.stdout.strip()}\033[0J")
747
+ if result.returncode != 0:
748
+ if isinstance(lib, list):
749
+ self.imports.extend(lib)
750
+ else: self.imports.append(lib)
751
+ continue
749
752
 
750
- except Exception as e:
751
- print(e)
752
- self.erro_libs.append(lib)
753
- continue
753
+
754
+ elif result.stdout:
755
+ print(f"\033[0J{result.stdout.strip()}\033[0J")
754
756
 
755
757
  process_finished = True
756
758
  log_animation.join()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bcpkgfox
3
- Version: 0.16.5b6
3
+ Version: 0.16.5b8
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.5b6",
5
+ version="0.16.5b8",
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