Skip to content

Commit 1b3baa4

Browse files
KristofferCKristofferC
authored and
KristofferC
committed
remove REPL from custom sysimage (#1112)
this should not be needed after JuliaLang/julia#56635 (cherry picked from commit 7efc3ba)
1 parent d6ba153 commit 1b3baa4

File tree

3 files changed

+5
-13
lines changed

3 files changed

+5
-13
lines changed

.ci/Manifest.toml

+4-11
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
julia_version = "1.11.1"
44
manifest_format = "2.0"
5-
project_hash = "7ebf32dcf9a4cee2984390e78b55d94bdfcf7b2f"
5+
project_hash = "b1db2d2904769f927c6af5a3db5e844b52ca3d7d"
66

77
[[deps.ArgTools]]
88
uuid = "0dad84c5-d112-42e6-8d28-ef12dabb789f"
@@ -129,21 +129,18 @@ version = "2.1.24"
129129
deps = ["Artifacts", "Dates", "Downloads", "FileWatching", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "Random", "SHA", "TOML", "Tar", "UUIDs", "p7zip_jll"]
130130
uuid = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
131131
version = "1.11.0"
132-
weakdeps = ["REPL"]
133132

134133
[deps.Pkg.extensions]
135134
REPLExt = "REPL"
136135

136+
[deps.Pkg.weakdeps]
137+
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
138+
137139
[[deps.Printf]]
138140
deps = ["Unicode"]
139141
uuid = "de0858da-6303-5e67-8744-51eddeeeb8d7"
140142
version = "1.11.0"
141143

142-
[[deps.REPL]]
143-
deps = ["InteractiveUtils", "Markdown", "Sockets", "StyledStrings", "Unicode"]
144-
uuid = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
145-
version = "1.11.0"
146-
147144
[[deps.Random]]
148145
deps = ["SHA"]
149146
uuid = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
@@ -173,10 +170,6 @@ version = "1.11.0"
173170
uuid = "6462fe0b-24de-5631-8697-dd941f90decc"
174171
version = "1.11.0"
175172

176-
[[deps.StyledStrings]]
177-
uuid = "f489334b-da3d-4c2e-b8f0-e476e12c162b"
178-
version = "1.11.0"
179-
180173
[[deps.TOML]]
181174
deps = ["Dates"]
182175
uuid = "fa267f1f-6049-4f14-aa54-33bafae1ed76"

.ci/Project.toml

-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,5 @@ Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
44
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
55
PackageCompiler = "9b87118b-4619-50d2-8e1e-99f35a4d4d9d"
66
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7"
7-
REPL = "3fa0cd96-eef1-5676-8a61-b3b8758bbffb"
87
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
98
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

.ci/create_sysimage_and_run_tests.jl

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ else
99
end
1010

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

1515
current_dir = @__DIR__

0 commit comments

Comments
 (0)