~sergiusens/snapcraft/config

« back to all changes in this revision

Viewing changes to snapcraft/yaml.py

  • Committer: Snappy Tarmac
  • Author(s): Ted Gould, Sergio Schvezov
  • Date: 2015-09-18 13:42:57 UTC
  • mfrom: (131.1.28 python-pip)
  • Revision ID: snappy_tarmac-20150918134257-op2stjrergtsyiup
Add in support for PIP requirements.txt files in the python plugins. by ted approved by sergiusens

Show diffs side-by-side

added added

removed removed

Lines of Context:
183
183
 
184
184
        for dep in part.deps:
185
185
            root = dep.installdir
186
 
            env += self.runtime_env(root)
187
 
            env += self.build_env(root)
188
186
            env += dep.env(root)
189
187
            env += self.build_env_for_part(dep)
190
188
 
 
189
        env += part.env(part.installdir)
 
190
        env += self.runtime_env(part.installdir)
 
191
        env += self.build_env(part.installdir)
 
192
 
191
193
        return env
192
194
 
193
195
    def stage_env(self):