Skip to content

Commit fff40e3

Browse files
KemingHegithub-actions[bot]
authored andcommitted
docs(src/assets/): update pixi official documentation
1 parent 3aeb5e4 commit fff40e3

File tree

5 files changed

+23
-4
lines changed

5 files changed

+23
-4
lines changed

src/assets/pixi/_metadata.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"source_repo": "prefix-dev/pixi",
33
"docs_path": "docs",
4-
"updated_at": "2025-08-17T03:16:51Z",
5-
"commit_sha": "344b8913c5af073d225e5237d182704821170396"
4+
"updated_at": "2025-08-19T22:05:16Z",
5+
"commit_sha": "167b115daa9ba771f96e27008ea0fe6313bab0ad"
66
}

src/assets/pixi/integration/ci/github_actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ We created [prefix-dev/setup-pixi](https://github.com/prefix-dev/setup-pixi) to
1010
```yaml
1111
- uses: prefix-dev/setup-pixi@v0.9.0
1212
with:
13-
pixi-version: v0.52.0
13+
pixi-version: v0.53.0
1414
cache: true
1515
auth-host: prefix.dev
1616
auth-token: ${{ secrets.PREFIX_DEV_TOKEN }}

src/assets/pixi/integration/editor/vscode.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Then, create the following two files in the `.devcontainer` directory:
2828
```dockerfile title=".devcontainer/Dockerfile"
2929
FROM mcr.microsoft.com/devcontainers/base:jammy
3030

31-
ARG PIXI_VERSION=v0.52.0
31+
ARG PIXI_VERSION=v0.53.0
3232

3333
RUN curl -L -o /usr/local/bin/pixi -fsSL --compressed "https://github.com/prefix-dev/pixi/releases/download/${PIXI_VERSION}/pixi-$(uname -m)-unknown-linux-musl" \
3434
&& chmod +x /usr/local/bin/pixi \

src/assets/pixi/reference/cli/pixi/build.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ pixi build [OPTIONS]
1515
- <a id="arg---target-platform" href="#arg---target-platform">`--target-platform (-t) <TARGET_PLATFORM>`</a>
1616
: The target platform to build for (defaults to the current platform)
1717
<br>**default**: `current_platform`
18+
- <a id="arg---build-platform" href="#arg---build-platform">`--build-platform <BUILD_PLATFORM>`</a>
19+
: The build platform to use for building (defaults to the current platform)
20+
<br>**default**: `current_platform`
1821
- <a id="arg---output-dir" href="#arg---output-dir">`--output-dir (-o) <OUTPUT_DIR>`</a>
1922
: The output directory to place the built artifacts
2023
<br>**default**: `.`

src/assets/pixi/reference/pixi_configuration.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -192,6 +192,22 @@ Configuration for conda channel-mirrors, more info [below](#mirror-configuration
192192
--8<-- "docs/source_files/pixi_config_tomls/main_config.toml:mirrors"
193193
```
194194

195+
### `proxy-config`
196+
197+
`pixi` respects the proxy environments such as `https_proxy` with the highest priority.
198+
Also we can set the proxies in `proxy-config` table of the `pixi` config, which affect all the pixi
199+
network actions, such as resolve, self-update, download, etc.
200+
Now `proxy-config` table supports the following options:
201+
202+
- `https` and `http`: The proxy url for https:// or http:// url, works like `https_proxy` and `http_proxy` environments.
203+
- `non-proxy-hosts`: A list of domains which should bypass proxies.
204+
205+
206+
```toml title="config.toml"
207+
--8<-- "docs/source_files/pixi_config_tomls/main_config.toml:proxy-config"
208+
```
209+
210+
195211
### `repodata-config`
196212

197213
Configuration for repodata fetching.

0 commit comments

Comments
 (0)