diff --git a/pyproject.toml b/pyproject.toml index 103eebb..505bcca 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "volttron-lib-sql-historian" -version = "0.2.0-rc" +version = "2.0.0rc0" description = "A library for supporting sql based historians." authors = ["VOLTTRON Team "] license = "Apache License 2.0" @@ -16,7 +16,8 @@ packages = [ { include = "historian", from = "src" } ] [tool.poetry.dependencies] python = ">=3.10,<4.0" -volttron-lib-base-historian = "^0.2.0rc4" +#volttron-lib-base-historian = "^0.2.0rc4" +volttron-lib-base-historian = ">=2.0.0rc0" [tool.poetry.group.dev.dependencies] pytest = "^6.2.5" diff --git a/src/historian/sql/basedb.py b/src/historian/sql/basedb.py index 9418352..243ac8e 100644 --- a/src/historian/sql/basedb.py +++ b/src/historian/sql/basedb.py @@ -31,10 +31,8 @@ from abc import abstractmethod from gevent.local import local -from volttron import utils from volttron.utils import jsonapi -utils.setup_logging() _log = logging.getLogger(__name__) diff --git a/src/historian/sql/historian.py b/src/historian/sql/historian.py index 360a18d..3c1a310 100644 --- a/src/historian/sql/historian.py +++ b/src/historian/sql/historian.py @@ -33,7 +33,6 @@ __version__ = "4.0.0" -utils.setup_logging() _log = logging.getLogger(__name__) diff --git a/src/historian/sql/sqlutils.py b/src/historian/sql/sqlutils.py index ffe8379..79d5d61 100644 --- a/src/historian/sql/sqlutils.py +++ b/src/historian/sql/sqlutils.py @@ -25,10 +25,8 @@ import inspect import logging -from volttron import utils from historian.sql import DbDriver -utils.setup_logging() _log = logging.getLogger(__name__)