From 4e1e33c0b55e359f4fadacfb441a24f11d433fee Mon Sep 17 00:00:00 2001 From: "dante.l" Date: Fri, 23 Jun 2023 14:50:06 +0900 Subject: [PATCH 1/2] fix bug --- buffalo/algo/options.py | 2 +- buffalo/misc/__init__.py | 2 +- buffalo/misc/{aux.py => _aux.py} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename buffalo/misc/{aux.py => _aux.py} (100%) diff --git a/buffalo/algo/options.py b/buffalo/algo/options.py index 2593d1d..cdf8c00 100644 --- a/buffalo/algo/options.py +++ b/buffalo/algo/options.py @@ -1,4 +1,4 @@ -from aurochs.misc import aux +from buffalo.misc import aux class AlgoOption(aux.InputOptions): diff --git a/buffalo/misc/__init__.py b/buffalo/misc/__init__.py index 1436c96..2f519a0 100644 --- a/buffalo/misc/__init__.py +++ b/buffalo/misc/__init__.py @@ -1,2 +1,2 @@ -from buffalo.misc._aux import aux +import buffalo.misc._aux as aux from buffalo.misc.log import get_log_level, get_logger, set_log_level diff --git a/buffalo/misc/aux.py b/buffalo/misc/_aux.py similarity index 100% rename from buffalo/misc/aux.py rename to buffalo/misc/_aux.py From 74a642da29bbbc31c657af1505c6b41b9612c110 Mon Sep 17 00:00:00 2001 From: "dante.l" Date: Fri, 23 Jun 2023 14:50:45 +0900 Subject: [PATCH 2/2] update version --- setup.cfg | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 9da922d..cbbd6d3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = buffalo -version = 2.0.2rc2 +version = 2.0.2rc3 author = recoteam author_email = recoteam@kakaocorp.com url = https://github.com/kakao/buffalo