aa96f769d2ebc3a9ff57134e2c3b24a9a915eee8,fabfile.py,,make,#,54

Before Change




def make():
    with lcd(path.dirname(__file__)):
        with virtualenv(VENV_DIR) as venv_local:
            venv_local("pip install wheel")
            venv_local("pip install cython")
            venv_local("pip install murmurhash")
            venv_local("pip install -r requirements.txt")
            venv_local("python setup.py build_ext --inplace")

def sdist():
    with lcd(path.dirname(__file__)):
        with virtualenv(VENV_DIR) as venv_local:
            local("python setup.py sdist")

After Change




def make():
    with virtualenv(VENV_DIR) as venv_local:
        with lcd(path.dirname(__file__)):
            venv_local("pip install cython")
            venv_local("pip install -r requirements.txt")
            venv_local("PYTHONPATH=`pwd`  python setup.py build_ext --inplace")

def sdist():
    with virtualenv(VENV_DIR) as venv_local:
        with lcd(path.dirname(__file__)):
            local("python setup.py sdist")
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 8

Instances


Project Name: explosion/spaCy
Commit Name: aa96f769d2ebc3a9ff57134e2c3b24a9a915eee8
Time: 2018-02-27
Author: honnibal+gh@gmail.com
File Name: fabfile.py
Class Name:
Method Name: make


Project Name: explosion/spaCy
Commit Name: aa96f769d2ebc3a9ff57134e2c3b24a9a915eee8
Time: 2018-02-27
Author: honnibal+gh@gmail.com
File Name: fabfile.py
Class Name:
Method Name: test


Project Name: explosion/spaCy
Commit Name: aa96f769d2ebc3a9ff57134e2c3b24a9a915eee8
Time: 2018-02-27
Author: honnibal+gh@gmail.com
File Name: fabfile.py
Class Name:
Method Name: wheel