Skip to content

Commit

Permalink
fix stale deps
Browse files Browse the repository at this point in the history
  • Loading branch information
t-bltg committed Mar 30, 2024
1 parent 6c8657d commit c15e4c5
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 28 deletions.
30 changes: 15 additions & 15 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,20 +41,6 @@ UnicodeFun = "1cfade01-22cf-5700-b092-accc4b62d6e1"
UnitfulLatexify = "45397f5d-5981-4c77-b2b3-fc36d6e9b728"
Unzip = "41fe7b60-77ed-43a1-b4f0-825fd5a5650d"

[weakdeps]
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
GeometryBasics = "5c1252a2-5f33-56bf-86c9-59e7332b4326"
IJulia = "7073ff75-c697-5162-941a-fcdaad2a7d2a"
ImageInTerminal = "d8c32880-2388-543b-8c61-d9f865259254"
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"

[extensions]
FileIOExt = "FileIO"
GeometryBasicsExt = "GeometryBasics"
IJuliaExt = "IJulia"
ImageInTerminalExt = "ImageInTerminal"
UnitfulExt = "Unitful"

[compat]
Aqua = "0.8"
Contour = "0.5 - 0.6"
Expand Down Expand Up @@ -94,7 +80,14 @@ UnicodeFun = "0.4"
UnicodePlots = "3.4"
UnitfulLatexify = "1"
Unzip = "0.1 - 0.2"
julia = "1.10"
julia = "1.6"

[extensions]
FileIOExt = "FileIO"
GeometryBasicsExt = "GeometryBasics"
IJuliaExt = "IJulia"
ImageInTerminalExt = "ImageInTerminal"
UnitfulExt = "Unitful"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
Expand Down Expand Up @@ -132,3 +125,10 @@ VisualRegressionTests = "34922c18-7c2a-561c-bac1-01e79b2c4c92"

[targets]
test = ["Aqua", "Colors", "Distributions", "FileIO", "FilePathsBase", "FreeType", "Gaston", "GeometryBasics", "Gtk", "ImageMagick", "Images", "LibGit2", "OffsetArrays", "PGFPlotsX", "PlotlyJS", "PlotlyBase", "PyPlot", "PythonPlot", "PlotlyKaleido", "HDF5", "RDatasets", "SentinelArrays", "StableRNGs", "StaticArrays", "StatsPlots", "Test", "TestImages", "UnicodePlots", "Unitful", "VisualRegressionTests"]

[weakdeps]
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
GeometryBasics = "5c1252a2-5f33-56bf-86c9-59e7332b4326"
IJulia = "7073ff75-c697-5162-941a-fcdaad2a7d2a"
ImageInTerminal = "d8c32880-2388-543b-8c61-d9f865259254"
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
14 changes: 1 addition & 13 deletions test/test_quality.jl
Original file line number Diff line number Diff line change
@@ -1,20 +1,8 @@
@testset "Auto QUality Assurance" begin
# JuliaTesting/Aqua.jl/issues/77
# TODO: fix :Contour, :Latexify and :LaTeXStrings stale imports in Plots 2.0
# :PyCall and :Conda stale deps show up when running CI
Aqua.test_all(
Plots;
stale_deps = (;
ignore = [
:GR,
:CondaPkg,
:Contour,
:Latexify,
:LaTeXStrings,
:Requires,
:UnitfulLatexify,
]
),
stale_deps = !isdefined(Base, :get_extension), # issue with `Requires` not used when weak deps are enabled
ambiguities = false,
deps_compat = false, # FIXME: fails `CondaPkg`
piracies = false,
Expand Down

0 comments on commit c15e4c5

Please sign in to comment.