@@ -10,13 +10,13 @@ jobs:
1010 matrix :
1111 include :
1212 - name : ' check'
13- python : ' 3.11 '
14- toxpython : ' python3.11 '
13+ python : ' 3.13 '
14+ toxpython : ' python3.13 '
1515 tox_env : ' check'
1616 os : ' ubuntu-latest'
1717 - name : ' docs'
18- python : ' 3.11 '
19- toxpython : ' python3.11 '
18+ python : ' 3.13 '
19+ toxpython : ' python3.13 '
2020 tox_env : ' docs'
2121 os : ' ubuntu-latest'
2222{% for env in tox_environments %}
2525{% if prefix.startswith('pypy') %}
2626{% set python %}pypy-{{ prefix[4] }}.{{ prefix[5:] }}{% endset %}
2727{% set cpython %}pp{{ prefix[4:5] }}{% endset %}
28- {% set toxpython %}pypy{{ prefix[4] }}.{{ prefix[5:] }}{% endset %}
2928{% else %}
3029{% set python %}{{ prefix[2] }}.{{ prefix[3:].rstrip('t') }}{% endset %}
3130{% set cpython %}cp{{ prefix[2:] }}{% endset %}
32- {% set toxpython %}python{{ prefix[2] }}.{{ prefix[3:] }}{% endset %}
3331{% endif %}
3432{% for os, python_arch, cibw_arch, wheel_arch, include_cover in [
3533 ['ubuntu', 'x64', 'x86_64', '*manylinux*', True],
4644 - name : ' {{ env }} ({{ os }}/{{ cibw_arch }}{{ name_suffix }})'
4745 artifact : ' {{ env.rsplit(' -', 1)[0] }}-{{ os }}-{{ cibw_arch }}{{ name_suffix.replace('/', '-') }}'
4846 python : ' {{ python }}'
49- toxpython : ' {{ toxpython }}'
5047 python_arch : ' {{ python_arch }}{% if freethreaded %}-freethreaded{% endif %}'
5148 tox_env : ' {{ env }}'
5249{% if 'cover' in env %}
9289 if : matrix.cibw_build
9390 run : cibuildwheel
9491 env :
95- TOXPYTHON : ' {{ ' ${{ matrix.toxpython }}' }}'
9692 CIBW_ARCHS : ' {{ ' ${{ matrix.cibw_arch }}' }}'
9793 CIBW_BUILD : ' {{ ' ${{ matrix.cibw_build }}' }}'
9894 CIBW_FREE_THREADED_SUPPORT : ' {{ ' ${{ matrix.cibw_ft }}' }}'
@@ -109,8 +105,6 @@ jobs:
109105 cd /d {project} &&
110106 tox --skip-pkg-install --direct-yolo -e {{ '${{ matrix.tox_env }}' }} -v
111107 - name : regular build and test
112- env :
113- TOXPYTHON : ' {{ ' ${{ matrix.toxpython }}' }}'
114108 if : >
115109 !matrix.cibw_build
116110 run : >
0 commit comments