From 4f8ae47732128ed81373be4ee0fdf6ea736e75de Mon Sep 17 00:00:00 2001 From: "tzhu@143" Date: Mon, 7 Dec 2020 20:33:59 +0800 Subject: [PATCH] fix watchclient bug --- README.md | 2 ++ setup.py | 2 +- watchmen/__init__.py | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7877f0a..3f838fd 100644 --- a/README.md +++ b/README.md @@ -120,6 +120,8 @@ send_email( To get more reminders, please check `watchmen/reminder.py`. ## UPDATE +- v0.3.2: fix `WatchClient` bug +- v0.3.1: change `Client` into `WatchClient`, fix `ClientCollection` and `send_email` bug - v0.3.0: support gpu scheduling, fix blank input output, fix `check_gpus_existence` - v0.2.2: fix html package data, add multi-card example diff --git a/setup.py b/setup.py index 0ce4043..1bf146e 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setuptools.setup( name='gpu-watchmen', - version='0.3.1', + version='0.3.2', author="Tong Zhu", author_email="tzhu1997@outlook.com", description="watchmen for GPU scheduling", diff --git a/watchmen/__init__.py b/watchmen/__init__.py index 645a138..b5f1e7a 100644 --- a/watchmen/__init__.py +++ b/watchmen/__init__.py @@ -1,2 +1,2 @@ -from .client import Client +from .client import WatchClient from .client import ClientMode