Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates for Julia LTS switch to 1.10 #137

Merged
merged 4 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading