Skip to content

Commit ef8eb32

Browse files
Remove deprecated functionality
1 parent d24f2cf commit ef8eb32

File tree

4 files changed

+0
-26
lines changed

4 files changed

+0
-26
lines changed

Project.toml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ Logging = "56ddb016-857b-54e1-b83d-db4d58db5568"
1313
Observables = "510215fc-4207-5dde-b226-833fc4488ee2"
1414
Pkg = "44cfe95a-1eb2-52ea-b672-e2afdf69b78f"
1515
Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
16-
Requires = "ae029012-a4dd-5104-9daa-d747884805df"
1716
Sockets = "6462fe0b-24de-5631-8697-dd941f90decc"
1817
UUIDs = "cf7118a7-6976-5b1a-9a39-7adc72f591a4"
1918
Widgets = "cc8bc4a8-27d6-5769-a93b-9d913e69aa62"
@@ -35,7 +34,6 @@ IJulia = "1.13"
3534
JSON = "0.18, 0.19, 0.20, 0.21"
3635
Mux = "1"
3736
Observables = "0.5"
38-
Requires = "0.4.4, 0.5, 1.0.0"
3937
WebSockets = "1.5.0, 1.6.0"
4038
Widgets = "0.6.2"
4139
julia = "1.10"

deps/jupyter.jl

Lines changed: 0 additions & 11 deletions
This file was deleted.

src/WebIO.jl

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
module WebIO
22

33
using Observables
4-
using Requires
54
using AssetRegistry
65
using Base64: stringmime
76
import Widgets
@@ -49,8 +48,6 @@ include("rpc.jl")
4948

5049
# Extra "non-core" functionality
5150
include("devsetup.jl")
52-
include("../deps/jupyter.jl")
53-
5451

5552
"""
5653
setup_provider(s::Union{Symbol, AbstractString})
@@ -88,12 +85,6 @@ function setup(provider::Symbol)
8885
end
8986
setup(provider::AbstractString) = setup(Symbol(provider))
9087

91-
function prefetch_provider_file(basename)
92-
filepath = joinpath(@__DIR__, "..", "ext", basename)
93-
code = read(filepath, String)
94-
(file = filepath, code = code)
95-
end
96-
9788
struct _IJuliaInit
9889
function _IJuliaInit()
9990
# based on assert_extension from longemen3000/ExtensionsExt

src/devsetup.jl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,3 @@
1-
function devsetup()
2-
Base.depwarn("WebIO.devsetup() is no longer required. You can simply run WebIO.bundlejs().", :webio_devesetup)
3-
end
4-
51
function bundlejs()
62
include(joinpath(@__DIR__, "..", "deps", "_bundlejs.jl"))
73
end

0 commit comments

Comments
 (0)