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
The CI workflow (and maybe others) are failing because they can't install python2.7. This is happening because Github Actions recently switched ubuntu-latest to point to ubuntu-24.04, which doesn't have python2.7 available by default.
The quickest fix would be to explicitly use ubuntu-22.04 in our workflows, so we get back to our previous behavior.
Later, to get back to ubuntu-latest, we can either 1) add what's needed to install python2.7 in 24.04, or 2) remove our dependency on python2.7 (which I'd prefer since Python 2 reached end-of-life almost 5 years ago)
The text was updated successfully, but these errors were encountered:
The CI workflow (and maybe others) are failing because they can't install
python2.7
. This is happening because Github Actions recently switchedubuntu-latest
to point toubuntu-24.04
, which doesn't havepython2.7
available by default.The quickest fix would be to explicitly use
ubuntu-22.04
in our workflows, so we get back to our previous behavior.Later, to get back to
ubuntu-latest
, we can either 1) add what's needed to installpython2.7
in 24.04, or 2) remove our dependency onpython2.7
(which I'd prefer since Python 2 reached end-of-life almost 5 years ago)The text was updated successfully, but these errors were encountered: