-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
43 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v1.2.1 | ||
v1.2.2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,9 @@ | ||
# 版本日志 | ||
|
||
## v1.2.2 | ||
|
||
- 更新支持的 OT SDK 版本为 >=1.20.0 | ||
|
||
## v1.2.1 | ||
|
||
- 修复 Django 初始化异常 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,11 @@ | ||
# IAM | ||
bk_iam | ||
|
||
# Version | ||
packaging | ||
|
||
# OT | ||
protobuf==3.19.5 | ||
opentelemetry-api>=1.7.1,<1.13.0 | ||
opentelemetry-sdk>=1.7.1,<1.13.0 | ||
opentelemetry-exporter-otlp>=1.7.1,<1.13.0 | ||
opentelemetry-api>=1.20.0 | ||
opentelemetry-sdk>=1.20.0 | ||
opentelemetry-exporter-otlp>=1.20.0 | ||
|
||
# bk_resource | ||
bk_resource==0.4.8 | ||
bk_resource==0.4.11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,3 +13,5 @@ pytest-html==3.1.1 | |
xmlrunner==1.7.7 | ||
pyparsing==2.2.0 | ||
PyYAML==6.0 | ||
|
||
django>=3,<5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
|
||
setup( | ||
name="bk-audit", | ||
version="1.2.1", | ||
version="1.2.2", | ||
author="blueking", | ||
url="https://bk.tencent.com", | ||
author_email="[email protected]", | ||
|
@@ -46,29 +46,26 @@ | |
], | ||
requires=[ | ||
"bk_iam", | ||
"packaging", | ||
], | ||
extras_require={ | ||
# OT 仅支持 Py3.6 及以上版本 | ||
"opentelemetry": [ | ||
"protobuf>=3.19.5", | ||
"opentelemetry-api>=1.7.1,<1.13.0", | ||
"opentelemetry-sdk>=1.7.1,<1.13.0", | ||
"opentelemetry-exporter-otlp>=1.7.1,<1.13.0", | ||
"opentelemetry-api>=1.20.0", | ||
"opentelemetry-sdk>=1.20.0", | ||
"opentelemetry-exporter-otlp>=1.20.0", | ||
], | ||
# BKResource 仅支持 Py3.6 及以上版本 | ||
"bk_resource": [ | ||
"bk_resource>=0.4.0", | ||
], | ||
}, | ||
classifiers=[ | ||
"Programming Language :: Python :: 2.7", | ||
"Programming Language :: Python :: 3.6", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, <4", | ||
python_requires=">=3.10, <4", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters