We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1800c68 commit 981a414Copy full SHA for 981a414
.github/workflows/python-packages.yml
@@ -29,7 +29,7 @@ jobs:
29
30
- name: "Install python dependencies"
31
run: |
32
- pip install setuptools
+ pip install setuptools pycparser
33
34
- name: "Build source distribution"
35
@@ -89,6 +89,7 @@ jobs:
89
CIBW_ARCHS: ${{ matrix.cibw_archs }}
90
CIBW_SKIP: ${{ matrix.cibw_skip }}
91
PIP_USE_PEP517: 1
92
+ CIBW_BEFORE_ALL_LINUX: yum install -y libffi-devel
93
94
- name: "Upload artifacts"
95
uses: actions/upload-artifact@v5
setup.py
@@ -32,6 +32,7 @@
packages=find_packages(),
setup_requires=[
"cffi>=1.0.0",
+ "pycparser",
36
],
37
install_requires=[
38
0 commit comments