File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 1616 'install' ,
1717 'installable_rhino_packages' ,
1818 'after_rhino_install' ,
19- 'after_rhino_uninstall' ,
2019]
2120
2221
@@ -126,6 +125,7 @@ def install(version=None, packages=None):
126125 if exit_code != 0 :
127126 sys .exit (exit_code )
128127
128+
129129def _run_post_execution_steps (steps_generator ):
130130 post_execution_errors = []
131131 for result in steps_generator :
@@ -210,6 +210,7 @@ def after_rhino_install(installed_packages):
210210 """
211211 pass
212212
213+
213214def _update_bootstrapper (install_path , packages ):
214215 # Take either the CONDA environment directory or the current Python executable's directory
215216 python_directory = os .environ .get ('CONDA_PREFIX' , None ) or os .path .dirname (sys .executable )
Original file line number Diff line number Diff line change 1212from compas_rhino .install import _run_post_execution_steps
1313from compas_rhino .install import installable_rhino_packages
1414
15- __all__ = ['uninstall' ]
15+ __all__ = [
16+ 'uninstall' ,
17+ 'after_rhino_uninstall' ,
18+ ]
1619
1720
1821def uninstall (version = None , packages = None ):
You can’t perform that action at this time.
0 commit comments