|
11 | 11 | wheel_env_no_py = '{}-wheel_dep'.format(module_name) |
12 | 12 | # We only actually need to build it once, but we specify multiple versions here |
13 | 13 | # to prevent tox from trying to build the wheel with an unsupported (earlier) Python version |
14 | | - wheel_env = 'py{39,310,311,312,313}-' + wheel_env_no_py + ',' |
| 14 | + wheel_env = 'py{310,311,312,313}-' + wheel_env_no_py + ',' |
15 | 15 | uses_other_wheel = True |
16 | 16 | if module_name == 'nitclk': |
17 | 17 | # nitclk system tests use niscope |
|
28 | 28 | # test suite on all supported python versions. To use it, "pip install tox" |
29 | 29 | # and then run "tox -c tox-system_tests.ini" from the driver directory. (generated/${module_name}) |
30 | 30 | [tox] |
31 | | -envlist = ${wheel_env}py{39,310,311,312,313}-${module_name}-system_tests, py313-${module_name}-coverage |
| 31 | +envlist = ${wheel_env}py{310,311,312,313}-${module_name}-system_tests, py313-${module_name}-coverage |
32 | 32 | skip_missing_interpreters=True |
33 | 33 | ignore_basepython_conflict=True |
34 | 34 | # We put the .tox directory outside of the Jenkins workspace so that it isn't wiped with the rest of the repo |
|
90 | 90 | ${module_name}-coverage: coverage |
91 | 91 |
|
92 | 92 | depends = |
93 | | - ${module_name}-coverage: py{39,310,311,312,313}-${module_name}-system_tests |
| 93 | + ${module_name}-coverage: py{310,311,312,313}-${module_name}-system_tests |
94 | 94 | % if uses_other_wheel: |
95 | 95 | ${module_name}-system_tests: ${wheel_env} |
96 | 96 | % endif |
|
0 commit comments