Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update npm dependencies for docusaurus v3 #704

Merged
merged 3 commits into from
Dec 14, 2023
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading