File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -25,11 +25,11 @@ jobs:
25
25
26
26
- name : Build wheels
27
27
env :
28
- CIBW_SKIP : " *-musllinux* pp* cp36-* cp37-* cp38-* cp39-* cp313-* "
28
+ CIBW_BUILD : " cp310-manylinux_x86_64 cp311-manylinux_x86_64 cp312-manylinux_x86_64 "
29
29
CIBW_MANYLINUX_X86_64_IMAGE : manylinux_2_28
30
30
CIBW_BUILD_VERBOSITY : " 3"
31
31
CIBW_BEFORE_ALL : |
32
- yum install -y wget glibc.i686 glibc-devel.i686
32
+ yum install -y wget
33
33
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
34
34
bash miniconda.sh -b -p /root/miniconda
35
35
export PATH="/root/miniconda/bin:$PATH"
55
55
python -c "import platform; print('Python version:', platform.python_version())"
56
56
python -c "import sys; print('sys.platform:', sys.platform)"
57
57
python -c "import quaddtype; print('quaddtype imported successfully')"
58
+ pip install {package}[test]
59
+ pytest {project}/tests
60
+ CIBW_TEST_EXTRAS : " test"
58
61
run : |
59
62
python -m cibuildwheel --output-dir wheelhouse
60
63
working-directory : ./quaddtype
You can’t perform that action at this time.
0 commit comments