Skip to content

Commit

Permalink
Updated dependency version.
Browse files Browse the repository at this point in the history
  • Loading branch information
ATATC committed Dec 12, 2024
1 parent 25c1727 commit 309eed9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions leads_jarvis/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from leads import require_config, FRONT_VIEW_CAMERA, LEFT_VIEW_CAMERA, RIGHT_VIEW_CAMERA, REAR_VIEW_CAMERA, L, \
controller, MAIN_CONTROLLER, Controller, DataContainer
from leads.comm import start_client, create_client, Callback, Service, ConnectionBase
from leads_gui import Window, ContextManager, RuntimeData, Photo, ImageVariable
from leads_gui import Pot, ContextManager, RuntimeData, Photo, ImageVariable
from numpy import array as _array

from leads_jarvis.network import Detection, PretrainedYOLO
Expand Down Expand Up @@ -71,7 +71,7 @@ def _() -> None:

def main() -> int:
cfg = require_config()
w = Window(cfg.width, cfg.height, cfg.refresh_rate, RuntimeData(), title="LEADS Jarvis", fullscreen=cfg.fullscreen,
w = Pot(cfg.width, cfg.height, cfg.refresh_rate, RuntimeData(), title="LEADS Jarvis", fullscreen=cfg.fullscreen,
no_title_bar=cfg.no_title_bar, theme_mode=cfg.theme_mode)
front = ImageVariable(w.root(), None)
left = ImageVariable(w.root(), None)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ requires-python = ">=3.12"
authors = [
{ name = "Project Neura", email = "[email protected]" }
]
dependencies = ["leads>=0.9.5", "torch", "torchvision", "timm", "segment-anything", "requests", "rich", "ultralytics", "mmseg"]
dependencies = ["leads>=0.9.6a0", "torch", "torchvision", "timm", "segment-anything", "requests", "rich", "ultralytics", "mmseg"]

[tool.hatch.build.targets.sdist]
only-include = ["leads_jarvis"]
Expand Down

0 comments on commit 309eed9

Please sign in to comment.