Skip to content

Commit ce28100

Browse files
CompatHelper: bump compat for "ImageCore" to "0.9" (#954)
* CompatHelper: bump compat for "ImageCore" to "0.9" * require ImageCore 0.9 - remove direct dependency to CVS - remove useless compat codes for RGB1->XRGB deprecations Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Johnny Chen <[email protected]>
1 parent bff89d1 commit ce28100

File tree

2 files changed

+2
-8
lines changed

2 files changed

+2
-8
lines changed

Project.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@ version = "0.24.1"
55
[deps]
66
AxisArrays = "39de3d68-74b9-583c-8d2d-e117c070f3a9"
77
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
8-
ColorVectorSpace = "c3611d14-8923-5661-9e6a-0046d554d3a4"
98
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
109
Graphics = "a2bd30eb-e257-5431-a919-1863eab51364"
1110
ImageAxes = "2803e5a7-5153-5ecf-9a86-9b4c37f5f5ac"
@@ -32,12 +31,11 @@ TiledIteration = "06e1c1a7-607b-532d-9fad-de7d9aa2abac"
3231

3332
[compat]
3433
AxisArrays = "0.3, 0.4"
35-
ColorVectorSpace = "0.6, 0.7, 0.8, 0.9"
3634
FileIO = "1"
3735
Graphics = "0.4, 1.0"
3836
ImageAxes = "0.6"
3937
ImageContrastAdjustment = "0.3.3"
40-
ImageCore = "0.8.3"
38+
ImageCore = "0.9"
4139
ImageDistances = "0.2.5"
4240
ImageFiltering = "0.6.3"
4341
ImageIO = "0.3, 0.4, 0.5"

src/Images.jl

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,8 @@ using Reexport
3131
if isdefined(ImageCore, :permuteddimsview)
3232
export permuteddimsview
3333
end
34-
if isdefined(ColorTypes, :XRGB) && isdefined(ColorTypes, :RGB1)
35-
Base.@deprecate_binding RGB1 XRGB
36-
Base.@deprecate_binding RGB4 RGBX
37-
end
3834

39-
using ColorVectorSpace, FileIO
35+
using FileIO
4036
export load, save
4137
import .Colors: Fractional
4238
import Graphics

0 commit comments

Comments
 (0)