From ee957652cbcdb2ed192fd85e0f8afc24cf646df1 Mon Sep 17 00:00:00 2001 From: Christian Roth Date: Fri, 3 Apr 2026 11:18:45 +0200 Subject: [PATCH 1/2] docs: update rattler-index s3 command to use --addressing-style The `--force-path-style` flag was deprecated in rattler-index v0.25.0 (conda/rattler#1629) in favor of `--addressing-style path`. Co-Authored-By: Claude Opus 4.6 --- docs/deployment/s3.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/deployment/s3.md b/docs/deployment/s3.md index 6b7346487a..d92ccd0e64 100644 --- a/docs/deployment/s3.md +++ b/docs/deployment/s3.md @@ -257,11 +257,14 @@ For S3 buckets, on the other hand, we need to do this manually since an S3 bucke To re-index an S3 bucket, you can use the `rattler-index` package which is available on [conda-forge](https://prefix.dev/channels/conda-forge/packages/rattler-index). +!!! note "" + Since `rattler-index` v0.25.0 ([conda/rattler#1629](https://github.com/conda/rattler/pull/1629)), the `--force-path-style` flag has been deprecated in favor of `--addressing-style path`. + ```shell pixi exec rattler-index s3 s3://my-s3-bucket/my-channel \ --endpoint-url https://my-s3-host \ --region us-east-1 \ - --force-path-style \ + --addressing-style path \ --access-key-id \ --secret-access-key ``` From 5cb20134212b7fa3e090bc9bb626dc36ee0ea688 Mon Sep 17 00:00:00 2001 From: Christian Roth Date: Fri, 3 Apr 2026 12:15:16 +0200 Subject: [PATCH 2/2] Update docs/deployment/s3.md Co-authored-by: Pavel Zwerschke --- docs/deployment/s3.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/docs/deployment/s3.md b/docs/deployment/s3.md index d92ccd0e64..00aa533e3a 100644 --- a/docs/deployment/s3.md +++ b/docs/deployment/s3.md @@ -257,9 +257,6 @@ For S3 buckets, on the other hand, we need to do this manually since an S3 bucke To re-index an S3 bucket, you can use the `rattler-index` package which is available on [conda-forge](https://prefix.dev/channels/conda-forge/packages/rattler-index). -!!! note "" - Since `rattler-index` v0.25.0 ([conda/rattler#1629](https://github.com/conda/rattler/pull/1629)), the `--force-path-style` flag has been deprecated in favor of `--addressing-style path`. - ```shell pixi exec rattler-index s3 s3://my-s3-bucket/my-channel \ --endpoint-url https://my-s3-host \