@@ -188,7 +188,7 @@ jobs:
188188 runs-on : windows-latest
189189 strategy :
190190 matrix :
191- python-version : [3.7, 3.8, 3.9, '3.10', '3.11', '3.12']
191+ python-version : [3.7, 3.8, 3.9, '3.10', '3.11', '3.12', '3.13' ]
192192 python-architecture : [x64, x86]
193193 fail-fast : false
194194 steps :
@@ -244,7 +244,7 @@ jobs:
244244 needs : build-docstrings
245245 strategy :
246246 matrix :
247- python-version : [3.8, 3.9, '3.10', '3.11', '3.12']
247+ python-version : [3.8, 3.9, '3.10', '3.11', '3.12', '3.13' ]
248248 os : [macos-13, macos-14] # macos-13 is x64, macos-14 is arm64
249249 runs-on : ${{ matrix.os }}
250250 steps :
@@ -352,7 +352,7 @@ jobs:
352352 /opt/python/cp38-cp38/bin/python3.8 setup.py sdist --formats=gztar
353353 mv dist/* wheelhouse/audited/
354354 - name : Build wheels
355- run : for PYBIN in /opt/python/cp3{7..12 }*/bin; do "${PYBIN}/pip" wheel . -w ./wheelhouse/ --verbose; done
355+ run : for PYBIN in /opt/python/cp3{7..13 }*/bin; do "${PYBIN}/pip" wheel . -w ./wheelhouse/ --verbose; done
356356 - name : Audit wheels
357357 run : for whl in wheelhouse/*.whl; do auditwheel repair "$whl" --plat $PLAT -w wheelhouse/audited/; done
358358 - name : Archive wheel artifacts
@@ -413,7 +413,7 @@ jobs:
413413 if : startsWith(github.ref, 'refs/tags/v') != true
414414 run : echo "BUILD_COMMIT_HASH=${{github.sha}}" >> $GITHUB_ENV
415415 - name : Building wheels
416- run : for PYBIN in /opt/python/cp3{7..12 }*/bin; do "${PYBIN}/pip" wheel . -w ./wheelhouse/ --verbose; done
416+ run : for PYBIN in /opt/python/cp3{7..13 }*/bin; do "${PYBIN}/pip" wheel . -w ./wheelhouse/ --verbose; done
417417 - name : Auditing wheels
418418 run : for whl in wheelhouse/*.whl; do auditwheel repair "$whl" --plat $PLAT -w wheelhouse/audited/; done
419419 - name : Archive wheel artifacts
0 commit comments