Skip to content

Commit

Permalink
Merge pull request #3 from craig8/upgrade-v10
Browse files Browse the repository at this point in the history
Update agent watch for v10
  • Loading branch information
craig8 authored Oct 1, 2024
2 parents 2aa4ace + 646dd49 commit cf1e8ab
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ profile = "black"
[tool.poetry]
include = ["src/agent_watcher", "config"]
name = "volttron-agent-watcher"
version = "0.1.0"
version = "0.2.0"
description = "Agent Watcher is used to monitor agents running on a VOLTTRON instance"
authors = ["VOLTTRON Team <[email protected]>"]
license = "Apache License 2.0"
Expand All @@ -31,10 +31,10 @@ classifiers = [

[tool.poetry.dependencies]
python = ">=3.10,<4.0"
volttron = "^10.0.4rc1"
volttron-core = {path="../volttron-core", develop=true}

[tool.poetry.group.dev.dependencies]
volttron-testing = "^0.4.0rc0"
#volttron-testing = "^0.4.0rc0"
pytest = "^6.2.5"
pytest-cov = "^3.0.0"
mock = "^4.0.3"
Expand Down
5 changes: 3 additions & 2 deletions src/agent_watcher/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,13 @@

import logging

from volttron import utils
import volttron.utils as utils
from volttron.client.messaging.health import STATUS_BAD, Status
from volttron.client.vip.agent import Agent, Core
from volttron.client.logs import setup_logging
from volttron.utils.scheduling import periodic

utils.setup_logging()
setup_logging()
_log = logging.getLogger(__name__)

__version__ = '0.1'
Expand Down

0 comments on commit cf1e8ab

Please sign in to comment.