You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
merges manubot/rootstock#383
pandoc-eqnos upgrade addresses the following error:
UnboundLocalError: local variable 'ret' referenced before assignment
tomduck/pandoc-eqnos#43
Hold back pandoc due to the lack of panflute support.
Switch commands in build/README.md to be relative to the repo root.
Copy file name to clipboardExpand all lines: build/README.md
+7-5Lines changed: 7 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -20,30 +20,32 @@ To change the options, either edit the YAML files directly or add additional `--
20
20
21
21
Note: currently, **Windows is not supported**.
22
22
23
-
Install the [conda](https://conda.io) environment specified in [`environment.yml`](environment.yml) by running the following commands from this directory:
23
+
Install the [conda](https://conda.io) environment specified in [`environment.yml`](environment.yml) by running the following commands
24
+
(from the repository's root directory):
24
25
25
26
```sh
26
27
# Install the environment
27
-
conda env create --file environment.yml
28
+
conda env create --file build/environment.yml
28
29
```
29
30
30
31
If the `manubot` environment is already installed, but needs to be updated to reflect changes to `environment.yml`, use one of the following options:
31
32
32
33
```shell
33
34
# option 1: update the existing environment.
34
-
conda env update --file environment.yml
35
+
conda env update --file build/environment.yml
35
36
36
37
# option 2: remove and reinstall the manubot environment.
37
38
# Slower than option 1, but guarantees a fresh environment.
38
39
conda env remove --name manubot
39
-
conda env create --file environment.yml
40
+
conda env create --file build/environment.yml
40
41
```
41
42
42
43
Activate with `conda activate manubot` (assumes `conda` version of [at least](https://github.com/conda/conda/blob/9d759d8edeb86569c25f6eb82053f09581013a2a/CHANGELOG.md#440-2017-12-20) 4.4).
43
44
The environment should successfully install on both Linux and macOS.
44
45
However, it will fail on Windows due to the [`pango`](https://anaconda.org/conda-forge/pango) dependency.
45
46
46
-
Because the build process is dependent on having the appropriate version of the `manubot` Python package, it is necessary to use the version specified in `environment.yml`.
47
+
Because the build process is dependent on having the appropriate version of the `manubot` Python package,
48
+
it is necessary to use the version specified in `environment.yml`.
47
49
The latest `manubot` release on PyPI may not be compatible with the latest version of this rootstock repository.
0 commit comments