e2035fd5afc6005ea810f85364e5d1cc5b0df9c6,setup.py,,,#,5

Before Change


    readme = f.read()

// Get the package version dynamically
exec(open("./garage/__version__.py").read())  // pylint: disable=exec-used
version = __version__  // noqa: F821, pylint: disable=undefined-variable

setup(

After Change



// Get the package version dynamically
with open("VERSION") as v:
    version = v.read().strip()

setup(
    name="rlgarage",
    version=version,
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: rlworkgroup/garage
Commit Name: e2035fd5afc6005ea810f85364e5d1cc5b0df9c6
Time: 2019-05-15
Author: ryanjulian@users.noreply.github.com
File Name: setup.py
Class Name:
Method Name:


Project Name: cesium-ml/cesium
Commit Name: 0c7f52ec5283148dda8ee74c056d42b38e188f94
Time: 2015-01-12
Author: a.crellinquick@gmail.com
File Name: TCP/Software/ingest_tools/feature_extraction_interface.py
Class Name: Internal_Feature_Extractors
Method Name: __init__


Project Name: GPflow/GPflow
Commit Name: 4e2d5aadad95f4a91e4043e7f473afc71e55fbcd
Time: 2019-06-07
Author: art.art.v@gmail.com
File Name: setup.py
Class Name:
Method Name: