Skip to content

Commit 4559654

Browse files
committed
workflow
1 parent 9179e45 commit 4559654

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

.github/workflows/cibuildwheel.yml

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)