File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55
66This module defines the entry point for command line and programmatic use.
77"""
8-
98from __future__ import print_function
109
10+ import sys
11+ import os
12+
13+ current_path = os .path .dirname (os .path .abspath (__file__ ))
14+ root_path = os .path .abspath ( os .path .join (current_path , os .pardir ))
15+ sys .path .append (root_path )
16+
17+
1118def check_python_dependencies ():
1219 # Check if the Python requirements are installed. This appears
1320 # before the imports because otherwise they're imported elsewhere.
@@ -591,7 +598,7 @@ def clean(self, args):
591598 'Asked to clean "{}" but this argument is not '
592599 'recognised' .format (component )))
593600 component_clean_methods [component ](args )
594-
601+
595602
596603 def clean_all (self , args ):
597604 '''Delete all build components; the package cache, package builds,
You can’t perform that action at this time.
0 commit comments