Skip to content

Commit

Permalink
remove REPL from custom sysimage (#1112)
Browse files Browse the repository at this point in the history
this should not be needed after JuliaLang/julia#56635
  • Loading branch information
KristofferC authored Nov 27, 2024
1 parent b7f82ec commit 7efc3ba
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 9 deletions.
11 changes: 4 additions & 7 deletions .ci/Manifest.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

julia_version = "1.12.0-DEV"
manifest_format = "2.0"
project_hash = "edd5708cecf8de588063d2c49bdb51fd086a753c"
project_hash = "b25b51369ac1c4a63619c6f77655347661ec5439"

[[deps.ArgTools]]
uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f"
Expand Down Expand Up @@ -134,21 +134,18 @@ version = "2.1.22"
deps = ["Artifacts", "Dates", "Downloads", "FileWatching", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "Random", "SHA", "TOML", "Tar", "UUIDs", "p7zip_jll"]
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
version = "1.12.0"
weakdeps = ["REPL"]

[deps.Pkg.extensions]
REPLExt = "REPL"

[deps.Pkg.weakdeps]
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"

[[deps.Printf]]
deps = ["Unicode"]
uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7"
version = "1.11.0"

[[deps.REPL]]
deps = ["InteractiveUtils", "JuliaSyntaxHighlighting", "Markdown", "Sockets", "StyledStrings", "Unicode"]
uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
version = "1.11.0"

[[deps.Random]]
deps = ["SHA"]
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Expand Down
1 change: 0 additions & 1 deletion .ci/Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,5 @@ Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
PackageCompiler = "9b87118b-4619-50d2-8e1e-99f35a4d4d9d"
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2 changes: 1 addition & 1 deletion .ci/create_sysimage_and_run_tests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ else
end

withenv("JULIA_IMAGE_THREADS" => ncores) do
create_sysimage(["LinearAlgebra", "Test", "Distributed", "Dates", "REPL", "Printf", "Random"]; sysimage_path=sysimage, incremental=false, filter_stdlibs=true)
create_sysimage(["LinearAlgebra", "Test", "Distributed", "Dates", "Printf", "Random"]; sysimage_path=sysimage, incremental=false, filter_stdlibs=true)
end

current_dir = @__DIR__
Expand Down

0 comments on commit 7efc3ba

Please sign in to comment.