We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e0feab commit 78b2681Copy full SHA for 78b2681
1 file changed
.github/workflows/CI.yml
@@ -54,10 +54,14 @@ jobs:
54
cache-name: julia-cache;workflow=${{ github.workflow }};ref=${{ github.run_id }}
55
include-matrix: false
56
- uses: actions/checkout@v4
57
- - name: "Install updates"
58
- run: sudo apt update && sudo apt dist-upgrade
59
- name: "Install Jupyter"
60
- run: pip3 install --break-system-packages notebook jupytext
+ run: |
+ if (( $(echo "$(pip --version | awk '{print $2}') >= 23.1" |bc -l) )); then
+ FLAG='--break-system-packages'
61
+ else
62
+ FLAG=''
63
+ fi
64
+ pip3 install $FLAG notebook jupytext
65
- name: "Install julia pre-requisites"
66
run: |
67
julia -e '
0 commit comments