Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support installing/running with pipx - fixes #238 #241

Closed
wants to merge 1 commit into from

Commits on Jul 26, 2023

  1. Support installing/running with pipx - fixes buildinspace#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.
    maxwell-k committed Jul 26, 2023
    Configuration menu
    Copy the full SHA
    68fd841 View commit details
    Browse the repository at this point in the history