1
1
mirror of https://github.com/KenanZhu/AutoLibrary.git synced 2026-06-18 07:23:03 +08:00

fix(build): 重命名 requirement.txt 并统一所有引用

- 重命名 requirement.txt → requirements.txt
- 更新 build.yml 和 build-test.yml 中的 pip cache 和
  install 路径引用
- README.md 恢复 pip install -r requirements.txt 构建步骤

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
2026-05-29 14:16:35 +08:00
parent bea12d5f0c
commit f3360423e5
4 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -45,12 +45,12 @@ jobs:
with:
python-version: '3.13'
cache: 'pip'
cache-dependency-path: requirement.txt
cache-dependency-path: requirements.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirement.txt
pip install -r requirements.txt
- name: Solve ddddocr compatibility and copy model files
run: |
+2 -2
View File
@@ -86,12 +86,12 @@ jobs:
with:
python-version: '3.13'
cache: 'pip'
cache-dependency-path: requirement.txt
cache-dependency-path: requirements.txt
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirement.txt
pip install -r requirements.txt
- name: Solve ddddocr compatibility and copy model files
run: |