Skip to content

Commit

Permalink
Updates for Julia LTS switch to 1.10 (#137)
Browse files Browse the repository at this point in the history
* Update docstrings for Julia 1.11

* Test against LTS 1.10

* Use min alias

* Use lts alias
  • Loading branch information
omus authored Oct 23, 2024
1 parent 856b399 commit 49be98e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,9 @@ jobs:
fail-fast: false
matrix:
version:
- "1.0" # Oldest supported version
- "1.6" # LTS
- "min" # Oldest supported version
- "lts" # LTS
- "1" # Latest Release
- "pre" # ScopedValue support introduced in Julia 1.11
os:
- ubuntu-latest
arch:
Expand Down
4 changes: 2 additions & 2 deletions src/dispatch.jl
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,10 @@ end
julia> m = first(methods(first, (String,)));
julia> m.sig
Tuple{typeof(first), Any}
Tuple{typeof(first), AbstractString}
julia> anonymous_signature(m)
Tuple{Any}
Tuple{AbstractString}
```
```@meta
Expand Down

0 comments on commit 49be98e

Please sign in to comment.