ci(SDK): Add 0.7.0 workflow (#2493)

This commit is contained in:
Fangyin Cheng
2025-03-20 15:27:44 +08:00
committed by GitHub
parent 4af28e40d8
commit 52e41bccc9
56 changed files with 986 additions and 358 deletions

View File

@@ -10,6 +10,13 @@ readme = "README.md"
requires-python = ">=3.10"
dependencies = []
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/dbgpt_acc_auto"]
[project.urls]
Homepage = "https://github.com/eosphoros-ai/DB-GPT"
Documentation = "http://docs.dbgpt.cn/docs/overview"

View File

@@ -0,0 +1,3 @@
from ._version import version as __version__ # noqa: F401
__ALL__ = ["__version__"]

View File

@@ -0,0 +1 @@
version = "0.7.0"

View File

@@ -2,12 +2,20 @@
# https://github.com/astral-sh/uv/issues/2252#issuecomment-2624150395
[project]
name = "dbgpt-acc-flash-attn"
version = "0.1.0"
version = "0.7.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.10"
dependencies = []
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/dbgpt_acc_flash_attn"]
[dependency-groups]
build = [
"setuptools>=75.8.0",

View File

@@ -0,0 +1,5 @@
"""Flash Attention wrapper for DB-GPT."""
from ._version import version as __version__ # noqa: F401
__ALL__ = ["__version__"]

View File

@@ -0,0 +1 @@
version = "0.7.0"