Skip to content

Commit ce0646b

Browse files
committed
fix julia version in github actions
1 parent c89e9b6 commit ce0646b

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
fail-fast: false
1616
matrix:
1717
version:
18-
- '1.5' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
18+
- '1.6' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
1919
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
20-
# - 'nightly'
20+
- 'nightly'
2121
os:
2222
- ubuntu-latest
2323
- macos-latest

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ Any linear algebra method on `ExtendableSparseMatrix` starts with a `flush!` met
2020

2121
## Caveat
2222

23-
This package assumes that a $m \times n$ matrix is sparse if *each* row and *each* column have less than $C$ entries with
24-
$C << n$ and $C <<m$ . Adding a full matrix row will be a performance hit.
23+
This package assumes that a $ m \times n $ matrix is sparse if *each* row and *each* column have less than $ C $ entries with
24+
$ C << n$ and $C <<m $ . Adding a full matrix row will be a performance hit.
2525

2626

2727
## Working with ForwardDiff

0 commit comments

Comments
 (0)