Skip to content
Closed
Show file tree
Hide file tree
Changes from all 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
3 changes: 2 additions & 1 deletion .devcontainer/linux-homebrew/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ RUN curl https://raw.githubusercontent.com/DonJayamanne/vscode-jupyter/container
RUN echo "# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh." >> ~/.zshrc
RUN echo "[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh" >> ~/.zshrc

# Install Pythone
# Install Python
RUN brew update
RUN brew install python@3.12 python@3.11

# Install Rust
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -395,7 +395,9 @@ jobs:
# Homebrew
- name: Homebrew Python
if: startsWith( matrix.image, 'homebrew')
run: brew install python@3.12 python@3.11
run: |
brew update
brew install python@3.12 python@3.11
shell: bash

# Rust
Expand Down
Loading