2222 strategy :
2323 fail-fast : False
2424 matrix :
25- python-version : [ 3.8, 3.9, '3.10', '3.11' ]
25+ # python-version: [ 3.8, 3.9, '3.10', '3.11' ]
26+ python-version : [ '3.11' ]
2627 steps :
2728 - name : Checkout repository
2829 uses : actions/checkout@v2
3940
4041 - name : Build wheels
4142 run : |
42- python -m pip install -U pip numpy wheel
43+ python -m pip install -U pip numpy wheel setuptools
4344 python setup.py bdist_wheel -d dist
45+ ls -al ./dist
4446
4547 - name : Place wheels in artifacts folder
4648 uses : actions/upload-artifact@v2
@@ -60,15 +62,16 @@ jobs:
6062 with :
6163 submodules : true
6264
63- - name : Setup Python 3.10
65+ - name : Setup Python 3.11
6466 uses : actions/setup-python@v2
6567 with :
66- python-version : ' 3.10 '
68+ python-version : ' 3.11 '
6769
6870 - name : Build wheels
6971 env :
70- # only build CPython-3.6 and later and skip 32-bit builds and skip windows
71- CIBW_BUILD : cp38-* cp39-* cp310-* cp311-*
72+ # only build CPython-3.8 and later and skip 32-bit builds and skip windows
73+ # CIBW_BUILD: cp38-* cp39-* cp310-* cp311-*
74+ CIBW_BUILD : cp311-*
7275 CIBW_SKIP : " *-win* *-manylinux_i686 *-musllinux*"
7376 # use latest build
7477 CIBW_MANYLINUX_X86_64_IMAGE : danielbok/nlopt_manylinux2014_x86_64:latest
9194 strategy :
9295 matrix :
9396 os : [ windows-latest, ubuntu-latest, macos-latest ]
94- python-version : [ 3.8, 3.9, '3.10', '3.11' ]
97+ python-version : [ '3.11' ]
9598
9699 steps :
97100 - name : Checkout repository
0 commit comments