From 53639bff852e37b7fe9de6a91f7f19303d5c2176 Mon Sep 17 00:00:00 2001 From: adrhill Date: Mon, 7 Oct 2024 16:50:38 +0200 Subject: [PATCH] Fix Plotly warnings --- homework/H3_Custom_Types.jl | 45 ++++++++++++++++++----- lectures/L3_Plotting.jl | 60 ++++++++++++++++++++++++------- lectures/L7_Deep_Learning.jl | 70 ++++++++++++++++++++++++++---------- 3 files changed, 135 insertions(+), 40 deletions(-) diff --git a/homework/H3_Custom_Types.jl b/homework/H3_Custom_Types.jl index 9b8a7b4..07a4662 100644 --- a/homework/H3_Custom_Types.jl +++ b/homework/H3_Custom_Types.jl @@ -7,14 +7,7 @@ using InteractiveUtils # This Pluto notebook uses @bind for interactivity. When running this notebook outside of Pluto, the following 'mock version' of @bind gives bound variables a default value (instead of an error). macro bind(def, element) quote - local iv = try - Base.loaded_modules[Base.PkgId( - Base.UUID("6e696c72-6542-2067-7265-42206c756150"), - "AbstractPlutoDingetjes", - )].Bonds.initial_value - catch - b -> missing - end + local iv = try Base.loaded_modules[Base.PkgId(Base.UUID("6e696c72-6542-2067-7265-42206c756150"), "AbstractPlutoDingetjes")].Bonds.initial_value catch; b -> missing; end local el = $(esc(element)) global $(esc(def)) = Core.applicable(Base.get, el) ? Base.get(el) : iv(el) el @@ -29,6 +22,7 @@ begin using LaTeXStrings using Plots + using PlotlyBase, PlotlyKaleido plotly() end @@ -723,6 +717,8 @@ PLUTO_PROJECT_TOML_CONTENTS = """ [deps] LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f" Optimisers = "3bd65402-5787-11e9-1adc-39752487f4e2" +PlotlyBase = "a03496cd-edff-5a9b-9e67-9cda94a718b5" +PlotlyKaleido = "f2990250-8cf9-495f-b13a-cce12b45703c" Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" PlutoTeachingTools = "661c6b06-c737-4d37-b85c-46df65de6f69" PlutoUI = "7f904dfe-b85e-4ff6-b463-dae2292396a8" @@ -732,6 +728,8 @@ Zygote = "e88e6eb3-aa80-5325-afca-941959d7151f" [compat] LaTeXStrings = "~1.3.1" Optimisers = "~0.3.2" +PlotlyBase = "~0.8.19" +PlotlyKaleido = "~2.2.5" Plots = "~1.40.2" PlutoTeachingTools = "~0.2.14" PlutoUI = "~0.7.58" @@ -744,7 +742,7 @@ PLUTO_MANIFEST_TOML_CONTENTS = """ julia_version = "1.10.5" manifest_format = "2.0" -project_hash = "3d387482b50f32b7f746f36cc2bc5168bf3e6044" +project_hash = "089b0a488810cbbdbcfa5a58a73af6149ac4fc8c" [[deps.AbstractFFTs]] deps = ["LinearAlgebra"] @@ -1198,6 +1196,12 @@ git-tree-sha1 = "2984284a8abcfcc4784d95a9e2ea4e352dd8ede7" uuid = "aa1ae85d-cabe-5617-a682-6adf51b2e16a" version = "0.9.36" +[[deps.Kaleido_jll]] +deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] +git-tree-sha1 = "43032da5832754f58d14a91ffbe86d5f176acda9" +uuid = "f7e6163d-2fa5-5f23-b69c-1db539e41963" +version = "0.2.1+0" + [[deps.LAME_jll]] deps = ["Artifacts", "JLLWrappers", "Libdl"] git-tree-sha1 = "170b660facf5df5de098d866564877e119141cbd" @@ -1491,6 +1495,12 @@ git-tree-sha1 = "e127b609fb9ecba6f201ba7ab753d5a605d53801" uuid = "36c8627f-9965-5494-a995-c6b170f724f3" version = "1.54.1+0" +[[deps.Parameters]] +deps = ["OrderedCollections", "UnPack"] +git-tree-sha1 = "34c0e9ad262e5f7fc75b10a9952ca7692cfc5fbe" +uuid = "d96e819e-fc66-5662-9728-84c9c7592b0a" +version = "0.12.3" + [[deps.Parsers]] deps = ["Dates", "PrecompileTools", "UUIDs"] git-tree-sha1 = "8489905bcdbcfac64d1daa51ca07c0d8f0283821" @@ -1525,6 +1535,18 @@ git-tree-sha1 = "7b1a9df27f072ac4c9c7cbe5efb198489258d1f5" uuid = "995b91a9-d308-5afd-9ec6-746e21dbc043" version = "1.4.1" +[[deps.PlotlyBase]] +deps = ["ColorSchemes", "Dates", "DelimitedFiles", "DocStringExtensions", "JSON", "LaTeXStrings", "Logging", "Parameters", "Pkg", "REPL", "Requires", "Statistics", "UUIDs"] +git-tree-sha1 = "56baf69781fc5e61607c3e46227ab17f7040ffa2" +uuid = "a03496cd-edff-5a9b-9e67-9cda94a718b5" +version = "0.8.19" + +[[deps.PlotlyKaleido]] +deps = ["Base64", "JSON", "Kaleido_jll"] +git-tree-sha1 = "3210de4d88af7ca5de9e26305758a59aabc48aac" +uuid = "f2990250-8cf9-495f-b13a-cce12b45703c" +version = "2.2.5" + [[deps.Plots]] deps = ["Base64", "Contour", "Dates", "Downloads", "FFMPEG", "FixedPointNumbers", "GR", "JLFzf", "JSON", "LaTeXStrings", "Latexify", "LinearAlgebra", "Measures", "NaNMath", "Pkg", "PlotThemes", "PlotUtils", "PrecompileTools", "Printf", "REPL", "Random", "RecipesBase", "RecipesPipeline", "Reexport", "RelocatableFolders", "Requires", "Scratch", "Showoff", "SparseArrays", "Statistics", "StatsBase", "TOML", "UUIDs", "UnicodeFun", "UnitfulLatexify", "Unzip"] git-tree-sha1 = "45470145863035bb124ca51b320ed35d071cc6c2" @@ -1812,6 +1834,11 @@ version = "1.5.1" deps = ["Random", "SHA"] uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4" +[[deps.UnPack]] +git-tree-sha1 = "387c1f73762231e86e0c9c5443ce3b4a0a9a0c2b" +uuid = "3a884ed6-31ef-47d7-9d2a-63182c4928ed" +version = "1.0.2" + [[deps.Unicode]] uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5" diff --git a/lectures/L3_Plotting.jl b/lectures/L3_Plotting.jl index 9b19901..56ef9c6 100644 --- a/lectures/L3_Plotting.jl +++ b/lectures/L3_Plotting.jl @@ -17,9 +17,6 @@ end # ╔═╡ 755b8685-0711-48a2-a3eb-f80af39f10e1 using PlutoTeachingTools -# ╔═╡ 327399fe-a38e-4410-b928-a7f9410aba90 -using Plots - # ╔═╡ 7353d961-b03f-4be8-acf9-d87e2b27b307 using PlutoUI @@ -35,6 +32,14 @@ end # ╔═╡ dfd6fdc5-536e-4474-9634-9e0544e7874d using StatsPlots +# ╔═╡ 327399fe-a38e-4410-b928-a7f9410aba90 +begin + using Plots + using PlotlyBase, PlotlyKaleido + + plotly() # activate Plotly backend +end + # ╔═╡ 88a8b41b-4fff-4a60-b0b8-6ac8da3d902a using Dates @@ -80,9 +85,6 @@ Plots.jl calls these packages [backends](https://docs.juliaplots.org/latest/back Because Pluto notebooks play well with JavaScript, we are going to load Plots.jl with the Plotly backend: " -# ╔═╡ 175b724b-add0-4484-a3a0-257f8e7494e0 -plotly(); # activate Plotly backend - # ╔═╡ f9f1d2f0-9d3e-4b53-8938-b78bcfa7d8f2 md"""## Line plots Plots.jl makes great use of multiple dispatch. Let's explore the different ways we can call `plot`: @@ -576,6 +578,8 @@ CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b" DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" Dates = "ade2ca70-3891-5945-98fb-dc099432e06a" LaTeXStrings = "b964fa9f-0449-5b57-a5c2-d3ea65f4040f" +PlotlyBase = "a03496cd-edff-5a9b-9e67-9cda94a718b5" +PlotlyKaleido = "f2990250-8cf9-495f-b13a-cce12b45703c" Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" PlutoTeachingTools = "661c6b06-c737-4d37-b85c-46df65de6f69" PlutoUI = "7f904dfe-b85e-4ff6-b463-dae2292396a8" @@ -583,9 +587,11 @@ StatsPlots = "f3b207a7-027a-5e70-b257-86293d7955fd" [compat] CSV = "~0.10.13" -DataFrames = "~1.7.0" +DataFrames = "~1.6.1" LaTeXStrings = "~1.3.1" -Plots = "~1.40.2" +PlotlyBase = "~0.8.19" +PlotlyKaleido = "~2.2.5" +Plots = "~1.40.8" PlutoTeachingTools = "~0.2.14" PlutoUI = "~0.7.58" StatsPlots = "~0.15.7" @@ -597,7 +603,7 @@ PLUTO_MANIFEST_TOML_CONTENTS = """ julia_version = "1.10.5" manifest_format = "2.0" -project_hash = "4ce5a6827ecbc1b9dc10083106faba986ae4f639" +project_hash = "e51eb6c1b4098cd6f8122c9db0626e57b8497b5c" [[deps.AbstractFFTs]] deps = ["LinearAlgebra"] @@ -776,10 +782,10 @@ uuid = "9a962f9c-6df0-11e9-0e5d-c546b8b5ee8a" version = "1.16.0" [[deps.DataFrames]] -deps = ["Compat", "DataAPI", "DataStructures", "Future", "InlineStrings", "InvertedIndices", "IteratorInterfaceExtensions", "LinearAlgebra", "Markdown", "Missings", "PooledArrays", "PrecompileTools", "PrettyTables", "Printf", "Random", "Reexport", "SentinelArrays", "SortingAlgorithms", "Statistics", "TableTraits", "Tables", "Unicode"] -git-tree-sha1 = "fb61b4812c49343d7ef0b533ba982c46021938a6" +deps = ["Compat", "DataAPI", "DataStructures", "Future", "InlineStrings", "InvertedIndices", "IteratorInterfaceExtensions", "LinearAlgebra", "Markdown", "Missings", "PooledArrays", "PrecompileTools", "PrettyTables", "Printf", "REPL", "Random", "Reexport", "SentinelArrays", "SortingAlgorithms", "Statistics", "TableTraits", "Tables", "Unicode"] +git-tree-sha1 = "04c738083f29f86e62c8afc341f0967d8717bdb8" uuid = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0" -version = "1.7.0" +version = "1.6.1" [[deps.DataStructures]] deps = ["Compat", "InteractiveUtils", "OrderedCollections"] @@ -1106,6 +1112,12 @@ git-tree-sha1 = "2984284a8abcfcc4784d95a9e2ea4e352dd8ede7" uuid = "aa1ae85d-cabe-5617-a682-6adf51b2e16a" version = "0.9.36" +[[deps.Kaleido_jll]] +deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] +git-tree-sha1 = "43032da5832754f58d14a91ffbe86d5f176acda9" +uuid = "f7e6163d-2fa5-5f23-b69c-1db539e41963" +version = "0.2.1+0" + [[deps.KernelDensity]] deps = ["Distributions", "DocStringExtensions", "FFTW", "Interpolations", "StatsBase"] git-tree-sha1 = "7d703202e65efa1369de1279c162b915e245eed1" @@ -1419,6 +1431,12 @@ git-tree-sha1 = "e127b609fb9ecba6f201ba7ab753d5a605d53801" uuid = "36c8627f-9965-5494-a995-c6b170f724f3" version = "1.54.1+0" +[[deps.Parameters]] +deps = ["OrderedCollections", "UnPack"] +git-tree-sha1 = "34c0e9ad262e5f7fc75b10a9952ca7692cfc5fbe" +uuid = "d96e819e-fc66-5662-9728-84c9c7592b0a" +version = "0.12.3" + [[deps.Parsers]] deps = ["Dates", "PrecompileTools", "UUIDs"] git-tree-sha1 = "8489905bcdbcfac64d1daa51ca07c0d8f0283821" @@ -1453,6 +1471,18 @@ git-tree-sha1 = "7b1a9df27f072ac4c9c7cbe5efb198489258d1f5" uuid = "995b91a9-d308-5afd-9ec6-746e21dbc043" version = "1.4.1" +[[deps.PlotlyBase]] +deps = ["ColorSchemes", "Dates", "DelimitedFiles", "DocStringExtensions", "JSON", "LaTeXStrings", "Logging", "Parameters", "Pkg", "REPL", "Requires", "Statistics", "UUIDs"] +git-tree-sha1 = "56baf69781fc5e61607c3e46227ab17f7040ffa2" +uuid = "a03496cd-edff-5a9b-9e67-9cda94a718b5" +version = "0.8.19" + +[[deps.PlotlyKaleido]] +deps = ["Base64", "JSON", "Kaleido_jll"] +git-tree-sha1 = "3210de4d88af7ca5de9e26305758a59aabc48aac" +uuid = "f2990250-8cf9-495f-b13a-cce12b45703c" +version = "2.2.5" + [[deps.Plots]] deps = ["Base64", "Contour", "Dates", "Downloads", "FFMPEG", "FixedPointNumbers", "GR", "JLFzf", "JSON", "LaTeXStrings", "Latexify", "LinearAlgebra", "Measures", "NaNMath", "Pkg", "PlotThemes", "PlotUtils", "PrecompileTools", "Printf", "REPL", "Random", "RecipesBase", "RecipesPipeline", "Reexport", "RelocatableFolders", "Requires", "Scratch", "Showoff", "SparseArrays", "Statistics", "StatsBase", "TOML", "UUIDs", "UnicodeFun", "UnitfulLatexify", "Unzip"] git-tree-sha1 = "45470145863035bb124ca51b320ed35d071cc6c2" @@ -1814,6 +1844,11 @@ version = "1.5.1" deps = ["Random", "SHA"] uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4" +[[deps.UnPack]] +git-tree-sha1 = "387c1f73762231e86e0c9c5443ce3b4a0a9a0c2b" +uuid = "3a884ed6-31ef-47d7-9d2a-63182c4928ed" +version = "1.0.2" + [[deps.Unicode]] uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5" @@ -2182,7 +2217,6 @@ version = "1.4.1+1" # ╟─f7347c06-c1b7-11ed-3b8e-fbf167ce9cba # ╟─c7db928d-bdd1-4561-82e0-6081ed6ff08c # ╠═327399fe-a38e-4410-b928-a7f9410aba90 -# ╠═175b724b-add0-4484-a3a0-257f8e7494e0 # ╟─f9f1d2f0-9d3e-4b53-8938-b78bcfa7d8f2 # ╠═206d0420-9669-4fc6-8f5d-7b4c22363a1f # ╠═09d22808-8b14-4aac-a98f-28f9b09e3713 diff --git a/lectures/L7_Deep_Learning.jl b/lectures/L7_Deep_Learning.jl index 90c18ed..0a71c74 100644 --- a/lectures/L7_Deep_Learning.jl +++ b/lectures/L7_Deep_Learning.jl @@ -24,7 +24,8 @@ begin using ImageMagick using ImageShow using Plots - plotly() + using PlotlyBase, PlotlyKaleido + plotly(; warn=false) end; # ╔═╡ 5a94a1c6-c9eb-48a3-a13f-2a0222a3f5f8 @@ -601,6 +602,8 @@ ImageMagick = "6218d12a-5da1-5696-b52f-db25d2ecc6d1" ImageShow = "4e3cecfd-b093-5904-9786-8bbb286a6a31" MLDatasets = "eb30cadb-4394-5ae3-aed4-317e484a6458" Metalhead = "dbeba491-748d-5e0e-a39e-b530a07fa0cc" +PlotlyBase = "a03496cd-edff-5a9b-9e67-9cda94a718b5" +PlotlyKaleido = "f2990250-8cf9-495f-b13a-cce12b45703c" Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" PlutoTeachingTools = "661c6b06-c737-4d37-b85c-46df65de6f69" PlutoUI = "7f904dfe-b85e-4ff6-b463-dae2292396a8" @@ -612,9 +615,11 @@ ImageMagick = "~1.3.1" ImageShow = "~0.3.8" MLDatasets = "~0.7.14" Metalhead = "~0.9.3" -Plots = "~1.40.7" -PlutoTeachingTools = "~0.3.0" -PlutoUI = "~0.7.60" +PlotlyBase = "~0.8.19" +PlotlyKaleido = "~2.2.5" +Plots = "~1.40.2" +PlutoTeachingTools = "~0.2.14" +PlutoUI = "~0.7.58" """ # ╔═╡ 00000000-0000-0000-0000-000000000002 @@ -623,7 +628,7 @@ PLUTO_MANIFEST_TOML_CONTENTS = """ julia_version = "1.10.5" manifest_format = "2.0" -project_hash = "242e2005efcb33f92723e10fba0aec5b35fd076b" +project_hash = "1dffda280494c9a55ddf847f286b57e3d7b8e21b" [[deps.AbstractFFTs]] deps = ["LinearAlgebra"] @@ -771,9 +776,9 @@ version = "0.10.14" [[deps.Cairo_jll]] deps = ["Artifacts", "Bzip2_jll", "CompilerSupportLibraries_jll", "Fontconfig_jll", "FreeType2_jll", "Glib_jll", "JLLWrappers", "LZO_jll", "Libdl", "Pixman_jll", "Xorg_libXext_jll", "Xorg_libXrender_jll", "Zlib_jll", "libpng_jll"] -git-tree-sha1 = "a2f1c8c668c8e3cb4cca4e57a8efdb09067bb3fd" +git-tree-sha1 = "009060c9a6168704143100f36ab08f06c2af4642" uuid = "83423d85-b0ee-5818-9007-b63ccbeb887a" -version = "1.18.0+2" +version = "1.18.2+1" [[deps.ChainRules]] deps = ["Adapt", "ChainRulesCore", "Compat", "Distributed", "GPUArraysCore", "IrrationalConstants", "LinearAlgebra", "Random", "RealDot", "SparseArrays", "SparseInverseSubset", "Statistics", "StructArrays", "SuiteSparse"] @@ -1072,9 +1077,9 @@ version = "0.8.5" [[deps.Flux]] deps = ["Adapt", "ChainRulesCore", "Compat", "Functors", "LinearAlgebra", "MLUtils", "MacroTools", "NNlib", "OneHotArrays", "Optimisers", "Preferences", "ProgressLogging", "Random", "Reexport", "Setfield", "SparseArrays", "SpecialFunctions", "Statistics", "Zygote"] -git-tree-sha1 = "d7d0a182089d9d3ff0cd0b761d21020fea2b1035" +git-tree-sha1 = "f3b4e96288e8bee94cd1e230c1a9387d3e03f788" uuid = "587475ba-b771-5e3f-ad9e-33799f191a9c" -version = "0.14.20" +version = "0.14.21" [deps.Flux.extensions] FluxAMDGPUExt = "AMDGPU" @@ -1346,9 +1351,9 @@ version = "1.0.0" [[deps.JLD2]] deps = ["FileIO", "MacroTools", "Mmap", "OrderedCollections", "PrecompileTools", "Requires", "TranscodingStreams"] -git-tree-sha1 = "9b8b3233d4a611a68f6cbcba96049c8d6fd3de73" +git-tree-sha1 = "aeab5c68eb2cf326619bf71235d8f4561c62fe22" uuid = "033835bb-8acc-5ee8-8aae-3f567f8a3819" -version = "0.5.4" +version = "0.5.5" [[deps.JLFzf]] deps = ["Pipe", "REPL", "Random", "fzf_jll"] @@ -1398,11 +1403,17 @@ git-tree-sha1 = "49fb3cb53362ddadb4415e9b73926d6b40709e70" uuid = "b14d175d-62b4-44ba-8fb7-3064adc8c3ec" version = "0.2.4" +[[deps.Kaleido_jll]] +deps = ["Artifacts", "JLLWrappers", "Libdl", "Pkg"] +git-tree-sha1 = "43032da5832754f58d14a91ffbe86d5f176acda9" +uuid = "f7e6163d-2fa5-5f23-b69c-1db539e41963" +version = "0.2.1+0" + [[deps.KernelAbstractions]] deps = ["Adapt", "Atomix", "InteractiveUtils", "MacroTools", "PrecompileTools", "Requires", "StaticArrays", "UUIDs", "UnsafeAtomics", "UnsafeAtomicsLLVM"] -git-tree-sha1 = "5126765c5847f74758c411c994312052eb7117ef" +git-tree-sha1 = "04e52f596d0871fa3890170fa79cb15e481e4cd8" uuid = "63c18a36-062a-441e-b654-da1e3ab1ce7c" -version = "0.9.27" +version = "0.9.28" [deps.KernelAbstractions.extensions] EnzymeExt = "EnzymeCore" @@ -1841,6 +1852,12 @@ git-tree-sha1 = "e127b609fb9ecba6f201ba7ab753d5a605d53801" uuid = "36c8627f-9965-5494-a995-c6b170f724f3" version = "1.54.1+0" +[[deps.Parameters]] +deps = ["OrderedCollections", "UnPack"] +git-tree-sha1 = "34c0e9ad262e5f7fc75b10a9952ca7692cfc5fbe" +uuid = "d96e819e-fc66-5662-9728-84c9c7592b0a" +version = "0.12.3" + [[deps.Parsers]] deps = ["Dates", "PrecompileTools", "UUIDs"] git-tree-sha1 = "8489905bcdbcfac64d1daa51ca07c0d8f0283821" @@ -1893,6 +1910,18 @@ git-tree-sha1 = "7b1a9df27f072ac4c9c7cbe5efb198489258d1f5" uuid = "995b91a9-d308-5afd-9ec6-746e21dbc043" version = "1.4.1" +[[deps.PlotlyBase]] +deps = ["ColorSchemes", "Dates", "DelimitedFiles", "DocStringExtensions", "JSON", "LaTeXStrings", "Logging", "Parameters", "Pkg", "REPL", "Requires", "Statistics", "UUIDs"] +git-tree-sha1 = "56baf69781fc5e61607c3e46227ab17f7040ffa2" +uuid = "a03496cd-edff-5a9b-9e67-9cda94a718b5" +version = "0.8.19" + +[[deps.PlotlyKaleido]] +deps = ["Base64", "JSON", "Kaleido_jll"] +git-tree-sha1 = "3210de4d88af7ca5de9e26305758a59aabc48aac" +uuid = "f2990250-8cf9-495f-b13a-cce12b45703c" +version = "2.2.5" + [[deps.Plots]] deps = ["Base64", "Contour", "Dates", "Downloads", "FFMPEG", "FixedPointNumbers", "GR", "JLFzf", "JSON", "LaTeXStrings", "Latexify", "LinearAlgebra", "Measures", "NaNMath", "Pkg", "PlotThemes", "PlotUtils", "PrecompileTools", "Printf", "REPL", "Random", "RecipesBase", "RecipesPipeline", "Reexport", "RelocatableFolders", "Requires", "Scratch", "Showoff", "SparseArrays", "Statistics", "StatsBase", "TOML", "UUIDs", "UnicodeFun", "UnitfulLatexify", "Unzip"] git-tree-sha1 = "f202a1ca4f6e165238d8175df63a7e26a51e04dc" @@ -1926,10 +1955,10 @@ uuid = "0ff47ea0-7a50-410d-8455-4348d5de0420" version = "0.1.6" [[deps.PlutoTeachingTools]] -deps = ["Downloads", "HypertextLiteral", "Latexify", "Markdown", "PlutoLinks", "PlutoUI"] -git-tree-sha1 = "e2593782a6b53dc5176058d27e20387a0576a59e" +deps = ["Downloads", "HypertextLiteral", "LaTeXStrings", "Latexify", "Markdown", "PlutoLinks", "PlutoUI", "Random"] +git-tree-sha1 = "5d9ab1a4faf25a62bb9d07ef0003396ac258ef1c" uuid = "661c6b06-c737-4d37-b85c-46df65de6f69" -version = "0.3.0" +version = "0.2.15" [[deps.PlutoUI]] deps = ["AbstractPlutoDingetjes", "Base64", "ColorTypes", "Dates", "FixedPointNumbers", "Hyperscript", "HypertextLiteral", "IOCapture", "InteractiveUtils", "JSON", "Logging", "MIMEs", "Markdown", "Random", "Reexport", "URIs", "UUIDs"] @@ -2238,9 +2267,9 @@ deps = ["InteractiveUtils", "Logging", "Random", "Serialization"] uuid = "8dfed614-e22c-5e08-85e1-65c5234f0b40" [[deps.TranscodingStreams]] -git-tree-sha1 = "e84b3a11b9bece70d14cce63406bbc79ed3464d2" +git-tree-sha1 = "0c45878dcfdcfa8480052b6ab162cdd138781742" uuid = "3bb67fe8-82b1-5028-8e26-92a6c54297fa" -version = "0.11.2" +version = "0.11.3" [[deps.Transducers]] deps = ["Accessors", "Adapt", "ArgCheck", "BangBang", "Baselet", "CompositionsBase", "ConstructionBase", "DefineSingletons", "Distributed", "InitialValues", "Logging", "Markdown", "MicroCollections", "Requires", "SplittablesBase", "Tables"] @@ -2276,6 +2305,11 @@ version = "1.5.1" deps = ["Random", "SHA"] uuid = "cf7118a7-6976-5b1a-9a39-7adc72f591a4" +[[deps.UnPack]] +git-tree-sha1 = "387c1f73762231e86e0c9c5443ce3b4a0a9a0c2b" +uuid = "3a884ed6-31ef-47d7-9d2a-63182c4928ed" +version = "1.0.2" + [[deps.Unicode]] uuid = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"