Skip to content

Commit

Permalink
chore:tag_v0.5.9 (eosphoros-ai#1674)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aries-ckt authored Jun 28, 2024
1 parent 45a960f commit 2eeef2f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
Binary file modified assets/wechat.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion dbgpt/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version = "0.5.8"
version = "0.5.9"
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
IS_DEV_MODE = os.getenv("IS_DEV_MODE", "true").lower() == "true"
# If you modify the version, please modify the version in the following files:
# dbgpt/_version.py
DB_GPT_VERSION = os.getenv("DB_GPT_VERSION", "0.5.8")
DB_GPT_VERSION = os.getenv("DB_GPT_VERSION", "0.5.9")

BUILD_NO_CACHE = os.getenv("BUILD_NO_CACHE", "true").lower() == "true"
LLAMA_CPP_GPU_ACCELERATION = (
Expand Down Expand Up @@ -758,7 +758,7 @@ def init_install_requires():
class PrintExtrasCommand(setuptools.Command):
description = "print extras_require"
user_options = [
('output=', 'o', 'Path to output the extras_require JSON'),
("output=", "o", "Path to output the extras_require JSON"),
]

def initialize_options(self):
Expand All @@ -769,7 +769,7 @@ def finalize_options(self):
raise ValueError("output is not set")

def run(self):
with open(self.output, 'w') as f:
with open(self.output, "w") as f:
json.dump(setup_spec.unique_extras, f, indent=2)


Expand All @@ -791,7 +791,7 @@ def run(self):
python_requires=">=3.10",
extras_require=setup_spec.unique_extras,
cmdclass={
'print_extras': PrintExtrasCommand,
"print_extras": PrintExtrasCommand,
},
entry_points={
"console_scripts": [
Expand Down

0 comments on commit 2eeef2f

Please sign in to comment.