Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support installing/running with pipx - fixes #238
The curl plugin for peru uses the following as its shebang line: #! /usr/bin/env python3 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.
- Loading branch information