File tree Expand file tree Collapse file tree 1 file changed +2
-10
lines changed
Expand file tree Collapse file tree 1 file changed +2
-10
lines changed Original file line number Diff line number Diff line change @@ -42,23 +42,15 @@ jobs:
4242 run : python -m cibuildwheel --output-dir wheelhouse
4343 env :
4444 CIBW_BUILD_VERBOSITY : 1
45- CIBW_SKIP : " cp37-* pp*" # Skip Python 3.7 and PyPy as per existing workflows
4645 CIBW_ARCHS_MACOS : " x86_64 arm64" # Build for both architectures on macOS
4746 CIBW_TEST_COMMAND : >
4847 pip install psutil &&
4948 pip install pillow &&
50- python -m pytest {project}/tests/test_all.py --image test_image.jpg --method pillow &&
51- python -m pytest {project}/tests/test_all.py --image test_image.jpg --method cpp
49+ python {project}/tests/test_all.py --image test_image.jpg --method pillow &&
50+ python {project}/tests/test_all.py --image test_image.jpg --method cpp
5251 CIBW_BEFORE_BUILD : >
5352 pip install setuptools wheel rich requests pillow
5453 CIBW_ENVIRONMENT : >
55- PATH="$PATH:/opt/python/cp39-cp39/bin" # Example for manylinux, adjust as needed
56- PATH="$PATH:/opt/python/cp310-cp310/bin"
57- PATH="$PATH:/opt/python/cp311-cp311/bin"
58- PATH="$PATH:/opt/python/cp312-cp312/bin"
59- PATH="$PATH:/opt/python/cp313-cp313/bin"
60- PATH="$PATH:/opt/python/cp314-cp314/bin"
61- # Ensure PURE_PYTHON is not set for C++ extension builds
6254 PURE_PYTHON=False
6355
6456 - uses : actions/upload-artifact@v4
You can’t perform that action at this time.
0 commit comments