|
22 | 22 | strategy: |
23 | 23 | fail-fast: False |
24 | 24 | matrix: |
25 | | - python-version: [ 3.7, 3.8, 3.9, '3.10' ] |
| 25 | + python-version: [ 3.8, 3.9, '3.10', '3.11' ] |
26 | 26 | steps: |
27 | 27 | - name: Checkout repository |
28 | 28 | uses: actions/checkout@v2 |
@@ -60,22 +60,22 @@ jobs: |
60 | 60 | with: |
61 | 61 | submodules: true |
62 | 62 |
|
63 | | - - name: Setup Python 3.9 |
| 63 | + - name: Setup Python 3.10 |
64 | 64 | uses: actions/setup-python@v2 |
65 | 65 | with: |
66 | | - python-version: 3.9 |
| 66 | + python-version: '3.10' |
67 | 67 |
|
68 | 68 | - name: Build wheels |
69 | 69 | env: |
70 | 70 | # only build CPython-3.6 and later and skip 32-bit builds and skip windows |
71 | | - CIBW_BUILD: cp37-* cp38-* cp39-* cp310-* |
| 71 | + CIBW_BUILD: cp38-* cp39-* cp310-* cp311-* |
72 | 72 | CIBW_SKIP: "*-win* *-manylinux_i686 *-musllinux*" |
73 | 73 | # use latest build |
74 | 74 | CIBW_MANYLINUX_X86_64_IMAGE: danielbok/nlopt_manylinux2014_x86_64:latest |
75 | 75 | CIBW_BEFORE_ALL_MACOS: brew install swig |
76 | 76 | CIBW_BEFORE_BUILD: pip install numpy |
77 | 77 | run: | |
78 | | - pip install -U pip cibuildwheel |
| 78 | + python -m pip install -U pip cibuildwheel |
79 | 79 | python -m cibuildwheel --output-dir dist |
80 | 80 | ls -R dist |
81 | 81 |
|
|
91 | 91 | strategy: |
92 | 92 | matrix: |
93 | 93 | os: [ windows-latest, ubuntu-latest, macos-latest ] |
94 | | - python-version: [ 3.7, 3.8, 3.9, '3.10' ] |
| 94 | + python-version: [ 3.8, 3.9, '3.10', '3.11' ] |
95 | 95 |
|
96 | 96 | steps: |
97 | 97 | - name: Checkout repository |
|
0 commit comments