Skip to content

Commit f8229ea

Browse files
committed
put back DelimitedFiles as a non-sysimage "stdlib"
1 parent cd955e1 commit f8229ea

File tree

6 files changed

+12
-1
lines changed

6 files changed

+12
-1
lines changed

contrib/cache_stdlibs.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ stdlibs = [
1414
:Zlib_jll,
1515
:dSFMT_jll,
1616
:libLLVM_jll,
17+
:DelimitedFiles,
1718

1819
# 2-depth packages
1920
:LibSSH2_jll,
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ee5afca99801e37fd3a42a9455ae986b
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
2adec92de521df1668eb13f2903ffdb01efd6afa5f04ce6fbd1737caa4948f7b629cdda7f75a895853a0cd49dccf8b388860d5c19c29e4d4aad6c7f8fa6b7209

stdlib/DelimitedFiles.version

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
DELIMITEDFILES_BRANCH = main
2+
DELIMITEDFILES_SHA1 = db79c842f95f55b1f8d8037c0d3363ab21cd3b90
3+
DELIMITEDFILES_GIT_URL := https://github.com/JuliaData/DelimitedFiles.jl.git
4+
DELIMITEDFILES_TAR_URL = https://api.github.com/repos/JuliaData/DelimitedFiles.jl/tarball/$1

stdlib/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ STDLIBS = Artifacts Base64 CRC32c Dates Distributed FileWatching \
4646
SharedArrays Sockets Test TOML Unicode UUIDs \
4747
$(JLL_NAMES)
4848

49-
STDLIBS_EXT = Pkg Statistics LibCURL Downloads ArgTools Tar NetworkOptions SuiteSparse SparseArrays SHA
49+
STDLIBS_EXT = Pkg Statistics LibCURL DelimitedFiles Downloads ArgTools Tar NetworkOptions SuiteSparse SparseArrays SHA
5050

5151
$(foreach module, $(STDLIBS_EXT), $(eval $(call stdlib-external,$(module),$(shell echo $(module) | tr a-z A-Z))))
5252

test/loading.jl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1135,3 +1135,7 @@ append!(Base.DEPOT_PATH, original_depot_path)
11351135
wait(t2)
11361136
wait(t1)
11371137
end
1138+
1139+
@testset "Upgradable stdlibs" begin
1140+
@test success(`$(Base.julia_cmd()) --startup-file=no -e 'using DelimitedFiles'`)
1141+
end

0 commit comments

Comments
 (0)