Skip to content

Commit e0e4a1e

Browse files
authored
Up minimum compat for v1 to 1.10 (current LTS), test "min" and "lts" on CI (#5184)
* Up minimum compat to 1.10 (current LTS), test "min" and "lts" on CI * Take out Requires for supporting extensions on old Julia * Drop "min" from CI matrix, since redundant with "lts"
1 parent 8d8965d commit e0e4a1e

File tree

3 files changed

+2
-21
lines changed

3 files changed

+2
-21
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ jobs:
2929
fail-fast: false
3030
matrix:
3131
version:
32-
- '1.6' # LTS (minimal declared julia compat in `Project.toml`)
33-
- 'lts'
32+
- 'lts' # LTS, also minimum declared julia compat in `Project.toml`
3433
- '1' # latest stable
3534
experimental:
3635
- false

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ UnicodeFun = "0.4"
9494
UnicodePlots = "3.4"
9595
UnitfulLatexify = "1"
9696
Unzip = "0.1 - 0.2"
97-
julia = "1.6"
97+
julia = "1.10"
9898

9999
[extras]
100100
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"

src/init.jl

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -84,24 +84,6 @@ function __init__()
8484
)
8585
end |> atreplinit
8686

87-
@static if !isdefined(Base, :get_extension) # COV_EXCL_LINE
88-
@require FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549" include(
89-
normpath(@__DIR__, "..", "ext", "FileIOExt.jl"),
90-
)
91-
@require GeometryBasics = "5c1252a2-5f33-56bf-86c9-59e7332b4326" include(
92-
normpath(@__DIR__, "..", "ext", "GeometryBasicsExt.jl"),
93-
)
94-
@require IJulia = "7073ff75-c697-5162-941a-fcdaad2a7d2a" include(
95-
normpath(@__DIR__, "..", "ext", "IJuliaExt.jl"),
96-
)
97-
@require ImageInTerminal = "d8c32880-2388-543b-8c61-d9f865259254" include(
98-
normpath(@__DIR__, "..", "ext", "ImageInTerminalExt.jl"),
99-
)
100-
@require Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d" include(
101-
normpath(@__DIR__, "..", "ext", "UnitfulExt.jl"),
102-
)
103-
end
104-
10587
_runtime_init(backend())
10688
return nothing
10789
end

0 commit comments

Comments
 (0)