@@ -59,20 +59,36 @@ class MesonpyFinder(importlib.abc.MetaPathFinder):
59
59
60
60
def __init__ (
61
61
self ,
62
+ project_name : str ,
63
+ hook_name : str ,
62
64
project_path : str ,
63
65
build_path : str ,
64
66
import_paths : List [str ],
65
67
top_level_modules : List [str ],
66
68
rebuild_commands : List [List [str ]],
67
69
verbose : bool = False ,
68
70
) -> None :
71
+ self ._project_name = project_name
72
+ self ._hook_name = hook_name
69
73
self ._project_path = project_path
70
74
self ._build_path = build_path
71
75
self ._import_paths = import_paths
72
76
self ._top_level_modules = top_level_modules
73
77
self ._rebuild_commands = rebuild_commands
74
78
self ._verbose = verbose
75
79
80
+ for path in (self ._project_path , self ._build_path ):
81
+ if not os .path .isdir (path ):
82
+ raise ImportError (
83
+ f'{ path } is not a directory, but it is required to rebuild '
84
+ f'"{ self ._project_name } ", which is installed in editable '
85
+ 'mode. Please reinstall the project to get it back to '
86
+ 'working condition. If there are any issues uninstalling '
87
+ 'this installation, you can manually remove '
88
+ f'{ self ._hook_name } and { os .path .basename (__file__ )} , '
89
+ f'located in { os .path .dirname (__file__ )} .'
90
+ )
91
+
76
92
def __repr__ (self ) -> str :
77
93
return f'{ self .__class__ .__name__ } ({ self ._project_path } )'
78
94
@@ -128,6 +144,8 @@ def find_spec(
128
144
@classmethod
129
145
def install (
130
146
cls ,
147
+ project_name : str ,
148
+ hook_name : str ,
131
149
project_path : str ,
132
150
build_path : str ,
133
151
import_paths : List [str ],
@@ -140,7 +158,16 @@ def install(
140
158
if os .environ .get ('MESONPY_EDITABLE_VERBOSE' , '' ):
141
159
verbose = True
142
160
# install our finder
143
- finder = cls (project_path , build_path , import_paths , top_level_modules , rebuild_commands , verbose )
161
+ finder = cls (
162
+ project_name ,
163
+ hook_name ,
164
+ project_path ,
165
+ build_path ,
166
+ import_paths ,
167
+ top_level_modules ,
168
+ rebuild_commands ,
169
+ verbose ,
170
+ )
144
171
if finder not in sys .meta_path :
145
172
# prepend our finder to sys.meta_path, so that it is queried before
146
173
# the normal finders, and can trigger a project rebuild
0 commit comments