Show More
@@ -2,7 +2,7 b'' | |||
|
2 | 2 | # See https://pre-commit.com/hooks.html for more hooks |
|
3 | 3 | repos: |
|
4 | 4 | - repo: https://github.com/pre-commit/pre-commit-hooks |
|
5 |
rev: v |
|
|
5 | rev: v4.4.0 | |
|
6 | 6 | hooks: |
|
7 | 7 | - id: trailing-whitespace |
|
8 | 8 | - id: end-of-file-fixer |
@@ -10,7 +10,6 b' repos:' | |||
|
10 | 10 | - id: check-added-large-files |
|
11 | 11 | |
|
12 | 12 | - repo: https://github.com/akaihola/darker |
|
13 |
rev: 1. |
|
|
13 | rev: 1.7.2 | |
|
14 | 14 | hooks: |
|
15 | 15 | - id: darker |
|
16 |
@@ -8,6 +8,7 b'' | |||
|
8 | 8 | # The full license is in the file COPYING.txt, distributed with this software. |
|
9 | 9 | #----------------------------------------------------------------------------- |
|
10 | 10 | |
|
11 | import functools | |
|
11 | 12 | import re |
|
12 | 13 | import shlex |
|
13 | 14 | import sys |
@@ -16,33 +17,49 b' from pathlib import Path' | |||
|
16 | 17 | from IPython.core.magic import Magics, magics_class, line_magic |
|
17 | 18 | |
|
18 | 19 | |
|
19 |
def |
|
|
20 | """Return True if the current Python executable is in a conda env""" | |
|
21 | # TODO: does this need to change on windows? | |
|
22 | return Path(sys.prefix, "conda-meta", "history").exists() | |
|
20 | def is_conda_environment(func): | |
|
21 | @functools.wraps(func) | |
|
22 | def wrapper(*args, **kwargs): | |
|
23 | """Return True if the current Python executable is in a conda env""" | |
|
24 | # TODO: does this need to change on windows? | |
|
25 | if not Path(sys.prefix, "conda-meta", "history").exists(): | |
|
26 | raise ValueError( | |
|
27 | "The python kernel does not appear to be a conda environment. " | |
|
28 | "Please use ``%pip install`` instead." | |
|
29 | ) | |
|
30 | return func(*args, **kwargs) | |
|
23 | 31 | |
|
32 | return wrapper | |
|
24 | 33 | |
|
25 | def _get_conda_executable(): | |
|
26 | """Find the path to the conda executable""" | |
|
34 | ||
|
35 | def _get_conda_like_executable(command): | |
|
36 | """Find the path to the given executable | |
|
37 | ||
|
38 | Parameters | |
|
39 | ---------- | |
|
40 | ||
|
41 | executable: string | |
|
42 | Value should be: conda, mamba or micromamba | |
|
43 | """ | |
|
27 | 44 | # Check if there is a conda executable in the same directory as the Python executable. |
|
28 | 45 | # This is the case within conda's root environment. |
|
29 |
|
|
|
30 |
if |
|
|
31 |
return str( |
|
|
46 | executable = Path(sys.executable).parent / command | |
|
47 | if executable.is_file(): | |
|
48 | return str(executable) | |
|
32 | 49 | |
|
33 | 50 | # Otherwise, attempt to extract the executable from conda history. |
|
34 | 51 | # This applies in any conda environment. |
|
35 | 52 | history = Path(sys.prefix, "conda-meta", "history").read_text(encoding="utf-8") |
|
36 | 53 | match = re.search( |
|
37 |
r"^#\s*cmd:\s*(?P<command>.* |
|
|
54 | rf"^#\s*cmd:\s*(?P<command>.*{executable})\s[create|install]", | |
|
38 | 55 | history, |
|
39 | 56 | flags=re.MULTILINE, |
|
40 | 57 | ) |
|
41 | 58 | if match: |
|
42 | 59 | return match.groupdict()["command"] |
|
43 | 60 | |
|
44 |
# Fallback: assume |
|
|
45 |
return |
|
|
61 | # Fallback: assume the executable is available on the system path. | |
|
62 | return command | |
|
46 | 63 | |
|
47 | 64 | |
|
48 | 65 | CONDA_COMMANDS_REQUIRING_PREFIX = { |
@@ -76,18 +93,7 b' class PackagingMagics(Magics):' | |||
|
76 | 93 | |
|
77 | 94 | print("Note: you may need to restart the kernel to use updated packages.") |
|
78 | 95 | |
|
79 | @line_magic | |
|
80 | def conda(self, line): | |
|
81 | """Run the conda package manager within the current kernel. | |
|
82 | ||
|
83 | Usage: | |
|
84 | %conda install [pkgs] | |
|
85 | """ | |
|
86 | if not _is_conda_environment(): | |
|
87 | raise ValueError("The python kernel does not appear to be a conda environment. " | |
|
88 | "Please use ``%pip install`` instead.") | |
|
89 | ||
|
90 | conda = _get_conda_executable() | |
|
96 | def _run_command(self, cmd, line): | |
|
91 | 97 | args = shlex.split(line) |
|
92 | 98 | command = args[0] if len(args) > 0 else "" |
|
93 | 99 | args = args[1:] if len(args) > 1 else [""] |
@@ -108,5 +114,38 b' class PackagingMagics(Magics):' | |||
|
108 | 114 | if needs_prefix and not has_prefix: |
|
109 | 115 | extra_args.extend(["--prefix", sys.prefix]) |
|
110 | 116 | |
|
111 |
self.shell.system( |
|
|
117 | self.shell.system(" ".join([cmd, command] + extra_args + args)) | |
|
112 | 118 | print("\nNote: you may need to restart the kernel to use updated packages.") |
|
119 | ||
|
120 | @line_magic | |
|
121 | @is_conda_environment | |
|
122 | def conda(self, line): | |
|
123 | """Run the conda package manager within the current kernel. | |
|
124 | ||
|
125 | Usage: | |
|
126 | %conda install [pkgs] | |
|
127 | """ | |
|
128 | conda = _get_conda_like_executable("conda") | |
|
129 | self._run_command(conda, line) | |
|
130 | ||
|
131 | @line_magic | |
|
132 | @is_conda_environment | |
|
133 | def mamba(self, line): | |
|
134 | """Run the mamba package manager within the current kernel. | |
|
135 | ||
|
136 | Usage: | |
|
137 | %mamba install [pkgs] | |
|
138 | """ | |
|
139 | mamba = _get_conda_like_executable("mamba") | |
|
140 | self._run_command(mamba, line) | |
|
141 | ||
|
142 | @line_magic | |
|
143 | @is_conda_environment | |
|
144 | def micromamba(self, line): | |
|
145 | """Run the conda package manager within the current kernel. | |
|
146 | ||
|
147 | Usage: | |
|
148 | %micromamba install [pkgs] | |
|
149 | """ | |
|
150 | micromamba = _get_conda_like_executable("micromamba") | |
|
151 | self._run_command(micromamba, line) |
General Comments 0
You need to be logged in to leave comments.
Login now