Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
craig8 committed Oct 11, 2024
1 parent 560e925 commit 8f4db78
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "volttron-core"
version = "2.0.0rc0"
version = "2.0.0rc1"
description = "VOLTTRON™ is an open source platform for distributed sensing and control. The platform provides services for collecting and storing data from buildings and devices and provides an environment for developing applications which interact with that data."
authors = ["volttron <volttron@pnnl.gov>"]
license = "Apache-2.0"
Expand All @@ -23,10 +23,13 @@ packages = [
{ include = "volttron/py.typed", from = "src" }
]

[tool.poetry.group.dev]
optional = true

[tool.poetry.dependencies]
poetry = "^1.8.2"
python = "^3.10"
gevent = "^24.2.1"
gevent = ">=24.2.1,<24.3"
PyYAML = "^6.0"
toml = "^0.10.2"
dateutils = "^0.6.12"
Expand Down
2 changes: 1 addition & 1 deletion src/volttron/server/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
# Finally set the logging parameter to the absolute path
sys.argv[index + 1] = logging_config.absolute().as_posix()

total_count += vcount
total_count += vcount

logging.config.dictConfig(get_default_logging_config(level=total_count))

Expand Down

0 comments on commit 8f4db78

Please sign in to comment.