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

docs(config): fix default value for install_command #3126

Merged
merged 1 commit into from
Sep 18, 2023

Commits on Sep 18, 2023

  1. docs(config): fix default value for install_command

    The `install_command` config is documented as having the default value:
    
      python -I -m pip install <opts> <packages>
    
    The last two arguments are not substituable and are thus passed as is
    (eg as packages to install) resulting in:
    
      py3-test: install_deps> python -I -m pip install -v '<opts>'
      '<packages>' '.[test]'
      ERROR: Invalid requirement: '<opts>'
    
    Adjust the documentation to use the replaceable variables: `{opts}` and
    `{packages}`.
    hashar committed Sep 18, 2023
    Configuration menu
    Copy the full SHA
    3705262 View commit details
    Browse the repository at this point in the history