Skip to content
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
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name = "TestEnv"
uuid = "1e6cf692-eddd-4d53-88a5-2d735e33781b"
version = "1.103.5"
version = "1.103.6"

[deps]
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
Expand Down
8 changes: 7 additions & 1 deletion src/julia-1.11/activate_set.jl
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,13 @@ function activate(pkg::AbstractString=current_pkg_name(); allow_reresolve=true)
# Now that we have set up the sandbox environment, precompile all its packages:
# (Reconnect the `io` back to the original context so the caller can see the
# precompilation progress.)
Pkg._auto_precompile(temp_ctx; already_instantiated=true)
tmp_io = temp_ctx.io
try
temp_ctx.io = ctx.io
Pkg._auto_precompile(temp_ctx; already_instantiated=true)
finally
temp_ctx.io = tmp_io
end

write_env(temp_ctx.env; update_undo=false)

Expand Down
8 changes: 7 additions & 1 deletion src/julia-1.12/activate_set.jl
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,13 @@ function activate(pkg::AbstractString=current_pkg_name(); allow_reresolve=true)
# Now that we have set up the sandbox environment, precompile all its packages:
# (Reconnect the `io` back to the original context so the caller can see the
# precompilation progress.)
Pkg._auto_precompile(temp_ctx; already_instantiated=true)
tmp_io = temp_ctx.io
try
temp_ctx.io = ctx.io
Pkg._auto_precompile(temp_ctx; already_instantiated=true)
finally
temp_ctx.io = tmp_io
end

write_env(temp_ctx.env; update_undo=false)

Expand Down
8 changes: 7 additions & 1 deletion src/julia-1.13/activate_set.jl
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,13 @@ function activate(pkg::AbstractString=current_pkg_name(); allow_reresolve=true)
# Now that we have set up the sandbox environment, precompile all its packages:
# (Reconnect the `io` back to the original context so the caller can see the
# precompilation progress.)
Pkg._auto_precompile(temp_ctx; already_instantiated=true)
tmp_io = temp_ctx.io
try
temp_ctx.io = ctx.io
Pkg._auto_precompile(temp_ctx; already_instantiated=true)
finally
temp_ctx.io = tmp_io
end

write_env(temp_ctx.env; update_undo=false)

Expand Down
8 changes: 7 additions & 1 deletion src/julia-1.9/activate_set.jl
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,13 @@ function activate(pkg::AbstractString=current_pkg_name(); allow_reresolve=true)
# Now that we have set up the sandbox environment, precompile all its packages:
# (Reconnect the `io` back to the original context so the caller can see the
# precompilation progress.)
Pkg._auto_precompile(temp_ctx; already_instantiated=true)
tmp_io = temp_ctx.io
try
temp_ctx.io = ctx.io
Pkg._auto_precompile(temp_ctx; already_instantiated=true)
finally
temp_ctx.io = tmp_io
end

write_env(temp_ctx.env; update_undo=false)

Expand Down
Loading