Closed maxwell-k closed 9 months ago
What would it take to get this merged? I submitted the initial issue and l have found peru
to be a great tool that I use quite a bit.
@oconnor663 @olson-sean-k if this were re-opened, could you merge it? I ran into this issue again on a new system and it took me half a day to remember how to fix it
The curl plugin for peru uses the following as its shebang line:
If the user is using pipx, then the system Python interpreter —
/usr/bin/env python3
— likely does not have the peru package installed.Before this change the curl plugin always uses a
get_version
function from the peru package and therefore will error if the Python interpreter does not have the peru package installed.After this change the curl plugin can succeed with only standard library modules available.
Fixes #238