diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d8299fbaf7..71ceefb819 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,6 +53,8 @@ jobs: - uses: julia-actions/cache@v1 - uses: julia-actions/julia-buildpkg@v1 - uses: julia-actions/julia-runtest@v1 + with: + depwarn: error env: MOI_TEST_MODULES: ${{ matrix.moi_test_modules }} - uses: julia-actions/julia-processcoverage@v1 diff --git a/Project.toml b/Project.toml index f3b9c9e884..32571c94dc 100644 --- a/Project.toml +++ b/Project.toml @@ -23,7 +23,7 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40" BenchmarkTools = "1" CodecBzip2 = "0.6, 0.7, 0.8" CodecZlib = "0.6, 0.7" -DataStructures = "0.18, 0.19" +DataStructures = "0.19" ForwardDiff = "0.10, 1" JSON3 = "1" JSONSchema = "1" diff --git a/src/Nonlinear/ReverseAD/Coloring/Coloring.jl b/src/Nonlinear/ReverseAD/Coloring/Coloring.jl index 818b6e428b..d6b77e17e6 100644 --- a/src/Nonlinear/ReverseAD/Coloring/Coloring.jl +++ b/src/Nonlinear/ReverseAD/Coloring/Coloring.jl @@ -206,7 +206,7 @@ function acyclic_coloring(g::UndirectedGraph) firstVisitToTree = fill(_Edge(0, 0, 0), _num_edges(g)) color = fill(0, _num_vertices(g)) # disjoint set forest of edges in the graph - S = DataStructures.IntDisjointSets(_num_edges(g)) + S = DataStructures.IntDisjointSet(_num_edges(g)) @inbounds for v in 1:_num_vertices(g) n_neighbor = _num_neighbors(v, g) start_neighbor = _start_neighbors(v, g)