From 15fa664f2457b2b0ae9df443260f21d6d4cb7ed9 Mon Sep 17 00:00:00 2001 From: numb3r3 Date: Tue, 11 Jul 2023 12:45:01 +0800 Subject: [PATCH] fix: clean codes --- open_gpt/cli/commands/deploy.py | 2 -- setup.py | 2 -- 2 files changed, 4 deletions(-) diff --git a/open_gpt/cli/commands/deploy.py b/open_gpt/cli/commands/deploy.py index f2af47f..56c583f 100644 --- a/open_gpt/cli/commands/deploy.py +++ b/open_gpt/cli/commands/deploy.py @@ -81,8 +81,6 @@ def handle(self) -> int: self.line(f"{flow_yaml}") else: asyncify(deploy)(flow=flow_yaml) - # if self.option('dry_run'): - # self.line(f"{flow}") else: raise NotImplementedError( 'Deploying with customized config is not supported yet.' diff --git a/setup.py b/setup.py index 4516653..fa5d1fc 100644 --- a/setup.py +++ b/setup.py @@ -52,12 +52,10 @@ 'bitsandbytes>=0.39.0', 'accelerate>=0.20.3', 'peft>=0.3.0', - 'open_clip_torch>=2.20.0', 'loguru', 'tqdm', ], extras_require={ - 'profile': ['psutil'], 'test': ['pytest', 'pytest-cov', 'pytest-xdist', 'pytest-mock'], }, entry_points={