Skip to content

Commit

Permalink
fix: 包缺失 (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
OrenZhang authored Feb 21, 2024
1 parent e18e2cf commit 67e3f4f
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 7 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.4.9
0.4.10
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![logo.png](assests/logo.png)

[![License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](https://github.com/TencentBlueKing/bk-resource/blob/main/LICENSE.txt)
[![Release Version](https://img.shields.io/badge/release-0.4.9-brightgreen.svg)](https://github.com/TencentBlueKing/bk-resource/releases)
[![Release Version](https://img.shields.io/badge/release-0.4.10-brightgreen.svg)](https://github.com/TencentBlueKing/bk-resource/releases)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/TencentBlueKing/bk-resource/pulls)
[![codecov](https://codecov.io/gh/TencentBlueKing/bk-resource/branch/main/graph/badge.svg)](https://codecov.io/gh/TencentBlueKing/bk-resource)
[![Unittest Py3](https://github.com/TencentBlueKing/bk-resource/actions/workflows/unittest.yml/badge.svg)](https://github.com/TencentBlueKing/bk-resource/actions/workflows/unittest.yml)
Expand Down
2 changes: 1 addition & 1 deletion readme_en.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
![logo.png](assests/logo.png)

[![License](https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat)](https://github.com/TencentBlueKing/bk-resource/blob/main/LICENSE.txt)
[![Release Version](https://img.shields.io/badge/release-0.4.9-brightgreen.svg)](https://github.com/TencentBlueKing/bk-resource/releases)
[![Release Version](https://img.shields.io/badge/release-0.4.10-brightgreen.svg)](https://github.com/TencentBlueKing/bk-resource/releases)
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg)](https://github.com/TencentBlueKing/bk-resource/pulls)
[![codecov](https://codecov.io/gh/TencentBlueKing/bk-resource/branch/main/graph/badge.svg)](https://codecov.io/gh/TencentBlueKing/bk-resource)
[![Unittest Py3](https://github.com/TencentBlueKing/bk-resource/actions/workflows/unittest.yml/badge.svg)](https://github.com/TencentBlueKing/bk-resource/actions/workflows/unittest.yml)
Expand Down
2 changes: 1 addition & 1 deletion release.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 版本日志

## 0.4.9
## 0.4.10

- 更新 Blueapps 依赖版本

Expand Down
11 changes: 9 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,21 @@

setup(
name="bk_resource",
version="0.4.9",
version="0.4.10",
author="blueking",
url="https://bk.tencent.com",
author_email="[email protected]",
description="Bk Resource",
long_description=readme,
long_description_content_type="text/markdown",
packages=find_packages(include=["bk_resource"]),
packages=[
"bk_resource",
"bk_resource.conf",
"bk_resource.contrib",
"bk_resource.management",
"bk_resource.management.commands",
"bk_resource.utils",
],
install_requires=[
"blueapps>=4.10.0,<5",
"django>=3.2.18",
Expand Down
2 changes: 1 addition & 1 deletion template/{{cookiecutter.project_name}}/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# 各自环境所需的不同依赖, 通过 sites/${env}/deploy/requirements_env.txt得到
-r requirements_env.txt

bk_resource==0.4.9
bk_resource==0.4.10
blueapps>=4.10.0,<5

# web server
Expand Down

0 comments on commit 67e3f4f

Please sign in to comment.