File tree Expand file tree Collapse file tree 2 files changed +8
-9
lines changed
Expand file tree Collapse file tree 2 files changed +8
-9
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -299,18 +299,18 @@ def main():
299299 print ("Unknown wheel name '%s'" % args .wheel_name )
300300 sys .exit (1 )
301301
302- # Configure 'setup.py '
302+ # Configure 'pyproject.toml '
303303 output_file = os .path .join (args .output_dir , 'pyproject.toml' )
304304 configure (template , PYPROJECT_PY_PARAMETERS [args .wheel_name ], output_file )
305305
306306 # Configure or remove 'itk/__init__.py'
307- init_py = os .path .join (args .output_dir , "itk" , "__init__.py" )
308- if args .wheel_name in ["itk" , "itk-core" ]:
309- with open (init_py , 'w' ) as file_ :
310- file_ .write ("# Stub required for setuptools \n " )
311- else :
312- if os .path .exists (init_py ):
313- os .remove (init_py )
307+ # init_py = os.path.join(args.output_dir, "itk", "__init__.py")
308+ # if args.wheel_name in ["itk", "itk-core"]:
309+ # with open(init_py, 'w') as file_:
310+ # file_.write("# Stub required for package \n")
311+ # else:
312+ # if os.path.exists(init_py):
313+ # os.remove(init_py)
314314
315315if __name__ == "__main__" :
316316 main ()
You can’t perform that action at this time.
0 commit comments