You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently the 'CI' workflow has been failing because for some reason the lint (3.10) step is trying to find python3.9
Run tox -v -e flake8 -- -v
flake8: find interpreter for spec PythonSpec(major=3, minor=9)
...
flake8: skipped because could not find python interpreter with spec(s): python3.9
flake8: SKIP (0.61 seconds)
evaluation failed :( (0.84 seconds)
Error: Process completed with exit code 255.
This seems to be happening on all PRs e.g. like this
Cause
#1663 added python 3.10 to CI and set it as the python-version under lint in ci.yaml but didn't change the basepython for flake8 and friends in tox.ini to match.
Looking back to the change for python 3.9 (4f77faa) we do see that flake8 & friends were moved down a line so I think the same needs to happen here (though it feels odd that we have to specify the same thing in 2 places).
The text was updated successfully, but these errors were encountered:
Hey @sparrowt 👋,
Thank you for opening an issue. We will get back to you as soon as we can.
Also, check out our Open Collective and consider backing us - every little helps!
We also offer priority support for our sponsors.
If you require immediate assistance please consider sponsoring us.
Problem
Recently the 'CI' workflow has been failing because for some reason the
lint (3.10)
step is trying to findpython3.9
This seems to be happening on all PRs e.g. like this
Cause
#1663 added python 3.10 to CI and set it as the
python-version
underlint
inci.yaml
but didn't change thebasepython
forflake8
and friends in tox.ini to match.Looking back to the change for python 3.9 (4f77faa) we do see that flake8 & friends were moved down a line so I think the same needs to happen here (though it feels odd that we have to specify the same thing in 2 places).
The text was updated successfully, but these errors were encountered: