Skip to content

Commit 981a414

Browse files
committed
Fix missing packages
1 parent 1800c68 commit 981a414

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/python-packages.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- name: "Install python dependencies"
3131
run: |
32-
pip install setuptools
32+
pip install setuptools pycparser
3333
3434
- name: "Build source distribution"
3535
run: |
@@ -89,6 +89,7 @@ jobs:
8989
CIBW_ARCHS: ${{ matrix.cibw_archs }}
9090
CIBW_SKIP: ${{ matrix.cibw_skip }}
9191
PIP_USE_PEP517: 1
92+
CIBW_BEFORE_ALL_LINUX: yum install -y libffi-devel
9293

9394
- name: "Upload artifacts"
9495
uses: actions/upload-artifact@v5

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@
3232
packages=find_packages(),
3333
setup_requires=[
3434
"cffi>=1.0.0",
35+
"pycparser",
3536
],
3637
install_requires=[
3738
"cffi>=1.0.0",

0 commit comments

Comments
 (0)