Skip to content

Commit 95cf1a9

Browse files
committed
尽量减少对其他包的依赖
1 parent 45c3e3b commit 95cf1a9

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

CONTRIBUTING.md

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
# 更新日志
2-
## JadeV2.4.1 - 2025-06-11
3-
* 区分操作系统的依赖
4-
---
52

3+
## JadeV2.4.2 - 2025-06-11
4+
* 尽量减少对其他包的依赖
5+
---
66

77
<details onclose>
88
<summary>查看更多更新日志</summary>
99

10+
## JadeV2.4.1 - 2025-06-11
11+
* 区分操作系统的依赖
12+
---
13+
1014
## JadeV2.4.0 - 2025-06-11
1115
* 去除不编译的文件,包括其import的环境也不写入
1216
---

setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,7 @@ def get_app_version():
3232
import sys
3333
from jade import get_app_version,write_version,CreateSavePath
3434
if __name__ == '__main__':
35-
dependencies = ["easycython","pyinstaller","cryptography==3.4.8","cffi","psutil"]
36-
if sys.platform == 'win32':
37-
dependencies.append('Cython==0.29.33')
38-
elif sys.platform == 'linux':
39-
dependencies.append('Cython==3.0.8')
35+
dependencies = ["psutil"]
4036
pack_list = [package_name]
4137
CreateSavePath("Ouput")
4238
find_packages(package_name, pack_list)

0 commit comments

Comments
 (0)