Skip to content

Commit abd62bf

Browse files
authored
Merge pull request #22 from byuflowlab/dev
Dev
2 parents 500c883 + 6a9378d commit abd62bf

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.github/workflows/docs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- name: Install matplotlib
20-
run: if [ "$RUNNER_OS" = "Linux" ]; then sudo apt-get install -y python3-matplotlib; fi
20+
run: if [ "$RUNNER_OS" = "Linux" ]; then sudo apt-get update; sudo apt-get install -y python3-matplotlib --fix-missing; fi
2121
shell: bash
2222
- uses: actions/checkout@v4
2323
- uses: julia-actions/setup-julia@v1

.github/workflows/test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313

1414
steps:
1515
- name: Install matplotlib
16-
run: if [ "$RUNNER_OS" = "Linux" ]; then sudo apt-get install -y python3-matplotlib; fi
16+
run: if [ "$RUNNER_OS" = "Linux" ]; then sudo apt-get update; sudo apt-get install -y python3-matplotlib --fix-missing; fi
1717
shell: bash
1818
- uses: actions/checkout@v2
1919
- uses: julia-actions/setup-julia@v1

Project.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ ImplicitAD = "e7cbb90b-9b31-4eb2-a8c8-45099c074ee1"
1515
julia = "1.6"
1616
Dierckx = "0.5"
1717
GeometricTools = "2.2"
18+
ImplicitAD = "0.3"
19+
Krylov = "0.9"
20+
Requires = "1"
1821

1922
[extras]
2023
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"

0 commit comments

Comments
 (0)