File tree Expand file tree Collapse file tree 2 files changed +8
-8
lines changed
ci/templates/.github/workflows Expand file tree Collapse file tree 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -146,20 +146,20 @@ jobs:
146
146
tox_env : ' pypy39'
147
147
os : ' macos-latest'
148
148
- name : ' pypy310 (ubuntu)'
149
- python : ' pypy-3.1 '
150
- toxpython : ' pypy3.1 '
149
+ python : ' pypy-3.10 '
150
+ toxpython : ' pypy3.10 '
151
151
python_arch : ' x64'
152
152
tox_env : ' pypy310'
153
153
os : ' ubuntu-latest'
154
154
- name : ' pypy310 (windows)'
155
- python : ' pypy-3.1 '
156
- toxpython : ' pypy3.1 '
155
+ python : ' pypy-3.10 '
156
+ toxpython : ' pypy3.10 '
157
157
python_arch : ' x64'
158
158
tox_env : ' pypy310'
159
159
os : ' windows-latest'
160
160
- name : ' pypy310 (macos)'
161
- python : ' pypy-3.1 '
162
- toxpython : ' pypy3.1 '
161
+ python : ' pypy-3.10 '
162
+ toxpython : ' pypy3.10 '
163
163
python_arch : ' x64'
164
164
tox_env : ' pypy310'
165
165
os : ' macos-latest'
Original file line number Diff line number Diff line change 22
22
{% for env in tox_environments %}
23
23
{% set prefix = env.split('-')[0] -%}
24
24
{% if prefix.startswith('pypy') %}
25
- {% set python %}pypy-{{ prefix[4] }}.{{ prefix[5] }}{% endset %}
25
+ {% set python %}pypy-{{ prefix[4] }}.{{ prefix[5: ] }}{% endset %}
26
26
{% set cpython %}pp{{ prefix[4:5] }}{% endset %}
27
- {% set toxpython %}pypy{{ prefix[4] }}.{{ prefix[5] }}{% endset %}
27
+ {% set toxpython %}pypy{{ prefix[4] }}.{{ prefix[5: ] }}{% endset %}
28
28
{% else %}
29
29
{% set python %}{{ prefix[2] }}.{{ prefix[3:] }}{% endset %}
30
30
{% set cpython %}cp{{ prefix[2:] }}{% endset %}
You can’t perform that action at this time.
0 commit comments