Skip to content

Commit 3f78b1a

Browse files
committed
1.禁用激进的性能优化选项 2.显示系统信息
1 parent 42abd52 commit 3f78b1a

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

AutoCython/tools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ def parse_arguments():
6262
'del_help': 'Remove source code after compilation (default: False)',
6363
'help_help': 'Show help message',
6464
'version_help': 'Show program version',
65-
'version_text': 'v2.0.0',
65+
'version_text': 'v2.1.0',
6666
'required_error': 'The following arguments are required: {}',
6767
'epilog': 'Example:\n AutoCython -f demo.py\n AutoCython -p path'
6868
},
@@ -74,7 +74,7 @@ def parse_arguments():
7474
'del_help': '编译后删除源代码(默认:False)',
7575
'help_help': '显示帮助信息',
7676
'version_help': '显示程序版本',
77-
'version_text': 'v2.0.0',
77+
'version_text': 'v2.1.0',
7878
'required_error': '缺少必要参数: {}',
7979
'epilog': '示例:\n AutoCython -f demo.py\n AutoCython -p path'
8080
}

README.en.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# AutoCython V2
22
[中文](https://github.com/EVA-JianJun/AutoCython/blob/master/README.md) | English
33

4-
**AutoCython: Batch Compile Python Files to PYD Files with One Click**
5-
![py_pyd](https://raw.githubusercontent.com/EVA-JianJun/GitPigBed/master/blog_files/img/AutoCython_20210824.png)
4+
**AutoCython: Batch Compile Python Files to `PYD / SO` Files with One Click**
5+
![py_pyd](https://raw.githubusercontent.com/EVA-JianJun/GitPigBed/master/blog_files/img/AutoCython_20250623.png)
66

77
## ✨ Features
88
- Single-file/Multi-file batch compilation
@@ -56,7 +56,8 @@ Consult [Cython Wiki](https://github.com/cython/cython/wiki) official documentat
5656

5757
## 📅 Changelog
5858
### V2 Releases
59-
1. 20250609 release V2.0.0: Codebase refactored with new UI
59+
1. 20250623 release V2.1.0: Disables aggressive performance optimization options. Display system information.
60+
2. 20250609 release V2.0.0: Codebase refactored with new UI (insecure version)
6061

6162
### V1 Releases
6263
1. 20220613: Added Linux support (requires gcc & g++ configuration)

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# AutoCython V2
22
中文 | [English](https://github.com/EVA-JianJun/AutoCython/blob/master/README.en.md)
33

4-
**自动 Cython:一键将 Python 文件批量编译为 PYD 文件**
5-
![py_pyd](https://raw.githubusercontent.com/EVA-JianJun/GitPigBed/master/blog_files/img/AutoCython_20210824.png)
4+
**自动 Cython:一键将 Python 文件批量编译为 `PYD / SO` 文件**
5+
![py_pyd](https://raw.githubusercontent.com/EVA-JianJun/GitPigBed/master/blog_files/img/AutoCython_20250623.png)
66

77
## ✨ 特性
88
- 单文件/多文件批量编译
@@ -56,7 +56,8 @@ AutoCython -d True -p D:/python_code/ProjectPath
5656

5757
## 📅 更新记录
5858
### V2 版本
59-
1. 20250609 release V2.0.0 重构了代码, 使用新的界面
59+
1. 20250623 release V2.1.0 禁用激进的性能优化选项. 显示系统信息.
60+
2. 20250609 release V2.0.0 重构了代码, 使用新的界面 (不安全版本)
6061

6162
### V1 版本
6263
1. 20220613 更新对Linux的支持, Linux下需要配置gcc&g++

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "AutoCython-jianjun"
7-
version = "2.0.0"
7+
version = "2.1.0"
88
authors = [{name = "jianjun", email = "910667956@qq.com"}]
99
description = "自动Cython,使用Cython批量编译.py文件为.pyd文件!"
1010
readme = "README.md"

0 commit comments

Comments
 (0)