Skip to content

Commit

Permalink
Merge pull request #3 from craig8/update-v10
Browse files Browse the repository at this point in the history
Update to v10 version
  • Loading branch information
craig8 authored Oct 1, 2024
2 parents 66a7e87 + f31e78f commit d05c5d1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ profile = "black"
[tool.poetry]
include = ["src/threshold_detection", "config"]
name = "volttron-threshold-detection"
version = "0.1.0"
description = "The ThresholdDetectionAgent will publish an alert when a value published to a topic exceeds or falls below a configured value."
version = "0.2.0"
description = "The `volttron-threshold-detection` agent will publish an alert when a value published to a topic exceeds or falls below a configured value."
authors = ["VOLTTRON Team <[email protected]>"]
license = "Apache License 2.0"
readme = "README.md"
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/threshold_detection/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@
import sys
import uuid

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

utils.setup_logging()
setup_logging()
_log = logging.getLogger(__name__)
__version__ = '3.7'

Expand Down

0 comments on commit d05c5d1

Please sign in to comment.