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

Implement config file location 'base' to config all environments of an interpreter #11487

Merged
merged 5 commits into from
Jan 31, 2023

Commits on Oct 6, 2022

  1. Add the "base" config level concept, to allow configuration of all vi…

    …rtual environments sharing the same base.
    
    The new functionality serves a use case which was not previously possible with pip configuration files, namely the situation where you have a base Python installation and want to influence the pip configuration for all derivative virtual environments *without* changing the config for all other environments on a machine (global), or for all other environment run by the same user (user). Concretely, this could be used for a centrally managed network mounted filesystem based Python installation, from which multiple users can build virtual environments and inside which a specific pip configuration is needed (e.g. an index URL).
    pelson committed Oct 6, 2022
    Configuration menu
    Copy the full SHA
    b777bcd View commit details
    Browse the repository at this point in the history

Commits on Nov 16, 2022

  1. Configuration menu
    Copy the full SHA
    4a87ab0 View commit details
    Browse the repository at this point in the history
  2. Update docs/html/topics/configuration.md

    Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com>
    pelson and uranusjr authored Nov 16, 2022
    Configuration menu
    Copy the full SHA
    93ade85 View commit details
    Browse the repository at this point in the history

Commits on Nov 17, 2022

  1. Use the VIRTUAL_ENV environment variable in the configuration documen…

    …tation
    
    This follows the discussion in https://github.com/pypa/pip/pull/11487/files#r988625394,
    that despite the VIRTUAL_ENV environment variable not being the technically correct
    value, it is more readily understood by readers than ``sys.prefix``.
    pelson committed Nov 17, 2022
    Configuration menu
    Copy the full SHA
    81d6053 View commit details
    Browse the repository at this point in the history

Commits on Nov 25, 2022

  1. Configuration menu
    Copy the full SHA
    8d34a11 View commit details
    Browse the repository at this point in the history