Skip to content

Commit

Permalink
Upgrade to v10
Browse files Browse the repository at this point in the history
  • Loading branch information
craig8 committed Oct 1, 2024
1 parent 2240686 commit f933a37
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
12 changes: 6 additions & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ ignore_missing_imports = true

[tool.poetry]
name = "volttron-dnp3-outstation"
version = "0.0.1-rc"
version = "0.2.0"
description = "A Volttron agent that acts as a dnp3 outstation."
authors = ["Kefei Mo <[email protected]>"]
authors = ["Kefei Mo <[email protected]>", "C. Allwardt <[email protected]>"]
license = "Apache-2.0"
maintainers = ["Volttron Team <[email protected]>"]
readme = "README.md"
Expand All @@ -36,13 +36,13 @@ classifiers = [
"Topic :: Home Automation",
"Topic :: Software Development :: Embedded Systems",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9"
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11"
]

[tool.poetry.dependencies]
python = ">=3.8,<4.0"
volttron = ">=10.0.2rc0"
volttron-core = {path="../volttron-core", develop=true}
dnp3-python = ">=0.2.3b3, <0.3.0"


Expand All @@ -52,7 +52,7 @@ pytest-cov = ">=3.0.0"
pytest-env = ">0.0.0"
black = ">=21.5b2"
pre-commit = ">=2.13.0"
volttron-testing = ">=0.3.1a7"
#volttron-testing = ">=0.3.1a7"
mypy = ">=0.982"

[tool.poetry.group.docs.dependencies]
Expand Down
3 changes: 2 additions & 1 deletion src/dnp3_outstation/agent.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@
from pathlib import Path
from pprint import pformat
from typing import Callable, Dict
from volttron.client.logs import setup_logging

from volttron.client.messaging import (headers)
from volttron.utils import (format_timestamp, get_aware_utc_now, load_config,
setup_logging, vip_main)
vip_main)

import logging
import sys
Expand Down

0 comments on commit f933a37

Please sign in to comment.