Remove bin directory of the current environment from PATH
(env, env_bin_dir)
| 165 | |
| 166 | |
| 167 | def remove_env_bin_from_path(env, env_bin_dir): |
| 168 | """ |
| 169 | Remove bin directory of the current environment from PATH |
| 170 | """ |
| 171 | return env.replace(env_bin_dir + ':', '') |
| 172 | |
| 173 | |
| 174 | def parse_version(version_str): |