moriarty-project 0.1.26__py3-none-any.whl → 0.1.27__py3-none-any.whl

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.
moriarty/__init__.py CHANGED
@@ -1,4 +1,4 @@
1
1
  from __future__ import annotations
2
2
 
3
3
  __all__ = ["__version__"]
4
- __version__ = "0.1.26"
4
+ __version__ = "0.1.27"
moriarty/cli/app.py CHANGED
@@ -156,14 +156,14 @@ def self_update():
156
156
  try:
157
157
  # Verifica se está instalado com pipx
158
158
  if check_pipx_installed():
159
- console.print("🔄 Atualizando via pipx...", style="bold blue")
159
+ console.print("🔄 Atualizando via pipx...", style="bold red")
160
160
  result = subprocess.run(
161
161
  ["pipx", "install", "--upgrade", "moriarty-project"],
162
162
  capture_output=True,
163
163
  text=True
164
164
  )
165
165
  else:
166
- console.print("🔄 Atualizando via pip...", style="bold blue")
166
+ console.print("🔄 Atualizando via pip...", style="bold red")
167
167
  result = subprocess.run(
168
168
  [sys.executable, "-m", "pip", "install", "--upgrade", "moriarty-project"],
169
169
  capture_output=True,