Skip to content

Commit 60cb43d

Browse files
stainless-app[bot]stainless-bot
authored andcommitted
chore(ci): update rye install location (#389)
the site is currently down due to DNS issues
1 parent 2b2fa20 commit 60cb43d

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ FROM mcr.microsoft.com/vscode/devcontainers/python:0-${VARIANT}
33

44
USER vscode
55

6-
RUN curl -sSf https://rye-up.com/get | RYE_VERSION="0.24.0" RYE_INSTALL_OPTION="--yes" bash
6+
RUN curl -sSf https://raw.githubusercontent.com/astral-sh/rye/main/scripts/install.sh | RYE_VERSION="0.24.0" RYE_INSTALL_OPTION="--yes" bash
77
ENV PATH=/home/vscode/.rye/shims:$PATH
88

99
RUN echo "[[ -d .venv ]] && source .venv/bin/activate" >> /home/vscode/.bashrc

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- name: Install Rye
2020
run: |
21-
curl -sSf https://rye-up.com/get | bash
21+
curl -sSf https://raw.githubusercontent.com/astral-sh/rye/main/scripts/install.sh | bash
2222
echo "$HOME/.rye/shims" >> $GITHUB_PATH
2323
env:
2424
RYE_VERSION: 0.24.0
@@ -39,7 +39,7 @@ jobs:
3939

4040
- name: Install Rye
4141
run: |
42-
curl -sSf https://rye-up.com/get | bash
42+
curl -sSf https://raw.githubusercontent.com/astral-sh/rye/main/scripts/install.sh | bash
4343
echo "$HOME/.rye/shims" >> $GITHUB_PATH
4444
env:
4545
RYE_VERSION: 0.24.0

.github/workflows/publish-pypi.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- name: Install Rye
2020
run: |
21-
curl -sSf https://rye-up.com/get | bash
21+
curl -sSf https://raw.githubusercontent.com/astral-sh/rye/main/scripts/install.sh | bash
2222
echo "$HOME/.rye/shims" >> $GITHUB_PATH
2323
env:
2424
RYE_VERSION: 0.24.0

0 commit comments

Comments
 (0)