Skip to content

Commit 8637ecb

Browse files
committed
Next try
1 parent d865c82 commit 8637ecb

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/CI.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,13 @@ jobs:
3535
steps:
3636
- name: Install matplotlib
3737
run: |
38-
sudo apt-get install -y python3-matplotlib
38+
if [ "$RUNNER_OS" = "Linux" ]; then
39+
sudo apt-get update
40+
sudo apt-get install -y python3-matplotlib
41+
fi
42+
shell: bash
43+
- name: Build PyCall
44+
run: julia --project -e 'ENV["PYTHON"]=""; using Pkg; Pkg.instantiate(); Pkg.add("PyCall"); Pkg.build("PyCall")'
3945
shell: bash
4046
- uses: actions/checkout@v6
4147
- uses: julia-actions/setup-julia@v2

0 commit comments

Comments
 (0)