bcpkgfox 0.16.5b4__tar.gz → 0.16.5b6__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.5b4
3
+ Version: 0.16.5b6
4
4
  Summary: Biblioteca BCFOX
5
5
  Home-page: https://github.com/robotsbcfox/PacotePythonBCFOX
6
6
  Author: Guilherme Neri
@@ -163,13 +163,16 @@ class cli:
163
163
  self.exec_gen.zip_file()
164
164
 
165
165
  # LOG - Verify imports
166
- if self.args.find_imports \
167
- or self.args.install_imports \
168
- or self.args.venv \
169
- or self.args.recreate_venv \
170
- or self.args.exe:
171
- if self.args.verify_imports:
166
+ if self.args.verify_imports:
167
+ if self.args.find_imports \
168
+ or self.args.install_imports \
169
+ or self.args.venv \
170
+ or self.args.recreate_venv \
171
+ or self.args.exe:
172
172
  self.find_imports.verify_imports()
173
+ else:
174
+ print(f"{self.visuals.bold}{self.visuals.RD} > Error: You need to use one function that installs imports before verifying them.{self.visuals.RESET}")
175
+ print("\033[J", end='', flush=True)
173
176
 
174
177
  self.clean_terminal()
175
178
 
@@ -744,17 +747,20 @@ class cli:
744
747
  if result.stdout:
745
748
  print(f"\033[0J{result.stdout.strip()}\033[0J")
746
749
 
747
- except subprocess.CalledProcessError as e:
750
+ except Exception as e:
751
+ print(e)
748
752
  self.erro_libs.append(lib)
753
+ continue
749
754
 
750
755
  process_finished = True
751
756
  log_animation.join()
752
- print(f" {self.visuals.bold}{self.visuals.GR} > All packges installed with sucessfully {self.visuals.RESET}\n\n")
757
+ print(f" {self.visuals.bold}{self.visuals.GR} > All packages installed successfully {self.visuals.RESET}\n\n")
753
758
 
754
759
  except Exception as e:
755
760
  process_finished = True
756
761
  self.descerror = e
757
762
  self.error = 1
763
+ print(e)
758
764
  sys.exit()
759
765
 
760
766
  def recreate_venv(self):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: bcpkgfox
3
- Version: 0.16.5b4
3
+ Version: 0.16.5b6
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.5b4",
5
+ version="0.16.5b6",
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