From d095b80a441c1c87fda98e48a1fc8d7a468e7e5f Mon Sep 17 00:00:00 2001 From: daniel Date: Mon, 8 Aug 2022 13:38:54 +0200 Subject: [PATCH] build: preparing release of version 0.9.2 using PowerAPI 1.1.0 --- Dockerfile-cpython | 2 +- setup.cfg | 2 +- smartwatts/__init__.py | 2 +- smartwatts/__main__.py | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile-cpython b/Dockerfile-cpython index 2ddd500..5743b10 100644 --- a/Dockerfile-cpython +++ b/Dockerfile-cpython @@ -1,4 +1,4 @@ -FROM powerapi/powerapi:1.0.9 +FROM powerapi/powerapi:1.1.0 USER root RUN apt update && apt upgrade -y RUN apt install -y libblas-dev liblapack-dev libatlas-base-dev gfortran diff --git a/setup.cfg b/setup.cfg index 0fd9243..1a65a65 100644 --- a/setup.cfg +++ b/setup.cfg @@ -19,7 +19,7 @@ test_suite = tests setup_requires = pytest-runner >=3.9.2 install_requires = - powerapi [mongodb, influxdb, opentsdb, prometheus, influxdb_client] >= 1.0.9 + powerapi [mongodb, influxdb, opentsdb, prometheus, influxdb_client] >= 1.1.0 scikit-learn tests_require = diff --git a/smartwatts/__init__.py b/smartwatts/__init__.py index 7b68da5..a45f7c4 100644 --- a/smartwatts/__init__.py +++ b/smartwatts/__init__.py @@ -27,4 +27,4 @@ # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -__version__ = "0.9.1" +__version__ = "0.9.2" diff --git a/smartwatts/__main__.py b/smartwatts/__main__.py index 37461c8..0b34c19 100644 --- a/smartwatts/__main__.py +++ b/smartwatts/__main__.py @@ -169,7 +169,7 @@ def run_smartwatts(args) -> None: report_modifier_list = ReportModifierGenerator().generate(fconf) - supervisor = Supervisor(args['verbose']) + supervisor = Supervisor(args['verbose'], args['actor_system']) def term_handler(_, __): supervisor.shutdown()