Skip to content

Commit d03fb6c

Browse files
authored
Update Colors.jl dependency (#15)
1 parent 2d796bc commit d03fb6c

File tree

5 files changed

+17
-16
lines changed

5 files changed

+17
-16
lines changed

.github/workflows/CI.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,24 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
version:
21-
- '1.6'
21+
- 'lts'
2222
- '1'
23-
- 'nightly'
23+
- 'pre'
2424
os:
2525
- ubuntu-latest
2626
arch:
2727
- x64
2828
steps:
29-
- uses: actions/checkout@v2
30-
- uses: julia-actions/setup-julia@v1
29+
- uses: actions/checkout@v4
30+
- uses: julia-actions/setup-julia@v2
3131
with:
3232
version: ${{ matrix.version }}
3333
arch: ${{ matrix.arch }}
34-
- uses: julia-actions/cache@v1
34+
- uses: julia-actions/cache@v2
3535
- uses: julia-actions/julia-buildpkg@v1
3636
- uses: julia-actions/julia-runtest@v1
3737
- uses: julia-actions/julia-processcoverage@v1
38-
- uses: codecov/codecov-action@v2
38+
- uses: codecov/codecov-action@v5
3939
with:
4040
files: lcov.info
4141
docs:
@@ -44,8 +44,8 @@ jobs:
4444
permissions:
4545
contents: write
4646
steps:
47-
- uses: actions/checkout@v2
48-
- uses: julia-actions/setup-julia@v1
47+
- uses: actions/checkout@v4
48+
- uses: julia-actions/setup-julia@v2
4949
with:
5050
version: '1'
5151
- uses: julia-actions/julia-buildpkg@v1

Project.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name = "ColorQuantization"
22
uuid = "652893fb-f6a0-4a00-a44a-7fb8fac69e01"
33
authors = ["Adrian Hill <[email protected]>"]
4-
version = "0.1.3"
4+
version = "0.1.4-DEV"
55

66
[deps]
77
Clustering = "aaaa29a8-35af-508c-8bc3-b662a17a0fe5"
@@ -11,6 +11,7 @@ Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c"
1111

1212
[compat]
1313
Clustering = "0.14.3, 0.15"
14-
Colors = "0.12"
14+
Colors = "0.12, 0.13"
1515
ImageBase = "0.1"
16+
Random = "1"
1617
julia = "1.6"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
████████
1+
████████
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
████████
1+
████████

test/runtests.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,6 @@ using Random, StableRNGs
55
using Colors: RGB, HSV
66
using FixedPointNumbers: N0f8
77

8-
# Run Aqua.jl quality assurance tests
9-
Aqua.test_all(ColorQuantization; ambiguities=false)
10-
Aqua.test_ambiguities([ColorQuantization, Core])
11-
128
# Run package tests
139
rng = StableRNG(123)
1410
Random.seed!(rng, 34568)
@@ -23,6 +19,10 @@ algs_deterministic = Dict(
2319
)
2420

2521
@testset "ColorQuantization.jl" begin
22+
@testset "Aqua.jl quality assurance tests" begin
23+
Aqua.test_all(ColorQuantization; ambiguities=false)
24+
Aqua.test_ambiguities([ColorQuantization, Core])
25+
end
2626
# Reference tests on deterministic methods
2727
@testset "Reference tests" begin
2828
for (name, alg) in algs_deterministic

0 commit comments

Comments
 (0)