Jason Novinger@programming.devM to Python@programming.dev · 5 months agoPython Insider: Python 3.12.4 releasedpythoninsider.blogspot.comexternal-linkmessage-square5fedilinkarrow-up135arrow-down10file-text
arrow-up135arrow-down1external-linkPython Insider: Python 3.12.4 releasedpythoninsider.blogspot.comJason Novinger@programming.devM to Python@programming.dev · 5 months agomessage-square5fedilinkfile-text
minus-squareUndercoverUlrikHD@programming.devlinkfedilinkarrow-up6·5 months agoPEP 701 seems like a good QoL improvement. Honestly not sure in what scenarios nesting of f-strings should be needed.
minus-squareunalivejoy@lemm.eelinkfedilinkEnglisharrow-up3·5 months agoThat’s part of the 3.11->3.12 changelog. To get the full changes for 3.12.3->3.12.4, consult the git log.
minus-squareUndercoverUlrikHD@programming.devlinkfedilinkarrow-up2·5 months agoAh, my bad. Seems like ublock breaks the format of the webpage so I missed that part of the header. Still on 3.11 as it’s a chore to reinstall packages, so I guess it still apply.
minus-squareunalivejoy@lemm.eelinkfedilinkEnglisharrow-up3·5 months agoYou should try using pipx. Updating python is as simple as pipx reinstall-all --python python3.12
minus-squareUndercoverUlrikHD@programming.devlinkfedilinkarrow-up1·5 months agoThank you for the recommendation, looks interesting if it supports venv.
PEP 701 seems like a good QoL improvement. Honestly not sure in what scenarios nesting of f-strings should be needed.
That’s part of the 3.11->3.12 changelog. To get the full changes for 3.12.3->3.12.4, consult the git log.
Ah, my bad. Seems like ublock breaks the format of the webpage so I missed that part of the header. Still on 3.11 as it’s a chore to reinstall packages, so I guess it still apply.
You should try using pipx. Updating python is as simple as
pipx reinstall-all --python python3.12
Thank you for the recommendation, looks interesting if it supports venv.