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

CONTRIBUTING: Switching pip install to use local install #136

Open
wants to merge 2 commits into
base: master
Choose a base branch
from

Commits on Aug 2, 2022

  1. CONTRIBUTING: Switching pip install to use local install

    Problem
    
    The current developer install is using
    pip setup.py
    which creates a distributable installation. If a developer makes changes
    to code then they essentailly need to build and reinstall the package
    
    Solution
    
    If pip install -e . is used then the local site packages will
    create a symbolic link which means developers can make cahnges locally
    and they will automatically picked up.
    It also has the bonus of installing dependencies automatically
    rm-star committed Aug 2, 2022
    Configuration menu
    Copy the full SHA
    5c476c0 View commit details
    Browse the repository at this point in the history
  2. Making pip install output verbose so that it is possible to see what is

    happening during a build and debug any issues quicker
    rm-star committed Aug 2, 2022
    Configuration menu
    Copy the full SHA
    de7d51d View commit details
    Browse the repository at this point in the history