Skip to content

Commit

Permalink
MAINT - Update npm dependencies for docusaurus v3 (#704)
Browse files Browse the repository at this point in the history
Co-authored-by: Tania Allard <taniar.allard@gmail.com>
  • Loading branch information
pavithraes and trallard committed Dec 14, 2023
1 parent d1081c7 commit 6f23405
Show file tree
Hide file tree
Showing 7 changed files with 5,481 additions and 2,880 deletions.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion docusaurus-docs/conda-store-ui/tutorials/create-envs.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Next, select the package version and constrain from the dropdown (you can also t

![pandas version 2.1.3 selected](../images/package-version-number.png)

![pandas version set "=" 2.1.3, other options are <=, >=, etc.](../images/package-version-contraint.png)
![pandas version set equal 2.1.3, other options are less-than-or-equal, greater-than-or-equal, etc.](../images/package-version-contraint.png)

### Add preferred channel

Expand Down
16 changes: 8 additions & 8 deletions docusaurus-docs/conda-store/references/faq.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ enough memory to `conda-store-workers` for solving and building the
given environment. Solve this by increasing the memory allocated to
the container.

```shell
```bash
Process 'ForkPoolWorker-31' pid:90 exited with 'signal 9 (SIGKILL)'

Task handler raised error: WorkerLostError('Worker exited prematurely: signal 9 (SIGKILL) Job: 348.')
Expand Down Expand Up @@ -40,12 +40,12 @@ for several reasons:
## Build path length
Conda packages are guaranteed to be [relocatable][relocatable] as long as the environment
Conda packages are guaranteed to be [relocatable] as long as the environment
prefix length is `<=` 255 characters. In conda-store, the said prefix is specified
in `Build.build_path`. When building an environment, you might see an error like
this:
```shell
```bash
build_path too long: must be <= 255 characters
```
Expand All @@ -63,7 +63,7 @@ The part of the build path that identifies a particular environment build is the
build key. Originally, conda-store used the following format, known as version
1:
```shell
```bash
c7afdeffbe2bda7d16ca69beecc8bebeb29280a95d4f3ed92849e4047710923b-20231105-035410-510258-12345678-this-is-a-long-environment-name
^ (1) ^ (2) ^ (3) ^ (4)
```
Expand All @@ -80,7 +80,7 @@ It consists of:
To help mitigate build path length issues, a shorter build key format was
introduced, known as version 2:
```
```bash
c7afdeff-1699156450-12345678-this-is-a-long-environment-name
^ (1) ^ (2) ^ (3) ^ (4)
```
Expand All @@ -101,14 +101,14 @@ version 2 format. No changes are needed for existing deployments of conda-store.
There is no real reason to use the version 1 format anymore, but it can be
explicitly set via the config:
```shell
```python
c.CondaStore.build_key_version = 1
```
The version 2 format can also be explicitly set if needed (this is the same as
the default):
```shell
```python
c.CondaStore.build_key_version = 2
```
Expand All @@ -117,7 +117,7 @@ c.CondaStore.build_key_version = 2
conda-store supports Windows in standalone mode. However, when creating
environments with certain packages, you may see errors like
```shell
```bash
ERROR:root:[WinError 206] The filename or extension is too long: 'C:\\...'
```
Expand Down
Loading

0 comments on commit 6f23405

Please sign in to comment.