Skip to content

Commit 2d13830

Browse files
修复github自动化流程
因为错误地在构建时安装requirements_dev.txt
1 parent 3ae8303 commit 2d13830

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/pypi.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ${{ matrix.os }}
1111
strategy:
1212
matrix:
13-
python-version: ["3.9", "3.10", "3.11", "3.12"]
13+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1414
os: [windows-latest] # Optional: build on multiple platforms
1515

1616
steps:
@@ -22,7 +22,7 @@ jobs:
2222
python-version: ${{ matrix.python-version }}
2323

2424
- name: Install pypa/build
25-
run: python -m pip install -r requirements_dev.txt --user
25+
run: python -m pip install build
2626

2727
- name: Build a binary wheel and a source tarball
2828
run: git clone https://github.com/strukturag/libde265.git &&
@@ -47,7 +47,7 @@ jobs:
4747
runs-on: ubuntu-latest
4848
strategy:
4949
matrix:
50-
python-version: ["3.9", "3.10", "3.11", "3.12"]
50+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
5151
os: [windows-latest]
5252

5353
steps:

.github/workflows/wheels.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: windows-latest
99
strategy:
1010
matrix:
11-
python-version: ["3.9", "3.10", "3.11", "3.12"]
11+
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
1212

1313
steps:
1414
- uses: actions/checkout@v4
@@ -19,7 +19,7 @@ jobs:
1919
python-version: ${{ matrix.python-version }}
2020

2121
- name: Install pypa/build
22-
run: python -m pip install -r requirements_dev.txt --user
22+
run: python -m pip install build
2323

2424
- name: Build a binary wheel and a source tarball
2525
run: git clone https://github.com/strukturag/libde265.git &&

.gitmodules

Whitespace-only changes.

requirements_dev.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ build==1.2.2
66
cmake==3.31.4
77

88
# for Syntax prompt
9-
numpy==2.2.2
10-
scipy==1.15.1
9+
numpy>=2.0.0
10+
scipy>=1.14.0
1111

1212
# optional dependencies
1313
pyinstrument==5.0.1

0 commit comments

Comments
 (0)