Skip to content

Commit fd7a3b9

Browse files
committed
ci fix
1 parent 7084492 commit fd7a3b9

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

.github/workflows/build_wheels.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,12 @@ jobs:
1515
steps:
1616
- name: Check out repository code
1717
uses: actions/checkout@v5
18-
- name: Build wheels
19-
uses: pypa/cibuildwheel@v3.3.0
20-
- uses: actions/upload-artifact@v4
18+
- name: Set up Python
19+
uses: actions/setup-python@v6
2120
with:
22-
name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }}
23-
path: ./wheelhouse/*.whl
21+
python-version: '3.13'
22+
cache: 'pip' # caching pip dependencies
23+
- name: Install build dependencies
24+
run: pip install -r requirements.txt
25+
- name: Build sdist and wheel
26+
run: python -m build --sdist --wheel .

0 commit comments

Comments
 (0)