Skip to content

Commit ead17f0

Browse files
committed
rebase: fix import - fix tests
1 parent 72b71ab commit ead17f0

25 files changed

+28
-83
lines changed

AsciiPixel/Project.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,11 @@ julia = "1.6"
1313

1414
[extras]
1515
ImageIO = "82e4d734-157c-48bb-816b-45c225c6df19"
16-
ImageMagick = "6218d12a-5da1-5696-b52f-db25d2ecc6d1"
1716
ImageTransformations = "02fcd773-0e25-5acc-982a-7f6622650795"
1817
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
1918
ReferenceTests = "324d217c-45ce-50fc-942e-d289b448e8cf"
2019
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
2120
TestImages = "5e47fb64-e119-507b-a336-dd2b206d9990"
2221

2322
[targets]
24-
test = ["ImageIO", "ImageMagick", "ImageTransformations", "OffsetArrays", "ReferenceTests", "Test", "TestImages"]
23+
test = ["ImageIO", "ImageTransformations", "OffsetArrays", "ReferenceTests", "Test", "TestImages"]

AsciiPixel/src/ascii.jl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -104,11 +104,7 @@ function ascii_encode(
104104
else
105105
# if reached it means that the last character row
106106
# has only the upper pixel defined.
107-
<<<<<<< HEAD
108107
nothing
109-
=======
110-
:nothing
111-
>>>>>>> fcd1f5f (rename ascii_encode -> ascii_display when using io, rework downscale)
112108
end
113109
_printc(io, Crayon(foreground=fgcol, background=bgcol), "")
114110
end

Project.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,7 @@ julia = "1.6"
2323

2424
[extras]
2525
CoordinateTransformations = "150eb455-5306-5404-9cee-2592286d6298"
26-
ImageBase = "c817782e-172a-44cc-b673-b171935fbb9e"
2726
ImageIO = "82e4d734-157c-48bb-816b-45c225c6df19"
28-
ImageMagick = "6218d12a-5da1-5696-b52f-db25d2ecc6d1"
2927
ImageQualityIndexes = "2996bd0c-7a13-11e9-2da2-2f5ce47296a9"
3028
ImageTransformations = "02fcd773-0e25-5acc-982a-7f6622650795"
3129
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
@@ -37,4 +35,4 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
3735
TestImages = "5e47fb64-e119-507b-a336-dd2b206d9990"
3836

3937
[targets]
40-
test = ["CoordinateTransformations", "ImageBase", "ImageIO", "ImageMagick", "ImageQualityIndexes", "ImageTransformations", "OffsetArrays", "Pkg", "ReferenceTests", "Rotations", "SparseArrays", "Test", "TestImages"]
38+
test = ["CoordinateTransformations", "ImageIO", "ImageQualityIndexes", "ImageTransformations", "OffsetArrays", "Pkg", "ReferenceTests", "Rotations", "SparseArrays", "Test", "TestImages"]

src/ImageInTerminal.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ using ImageBase: restrict
66
using ColorTypes
77
using Requires
88
using Crayons
9+
using FileIO
910

1011
# -------------------------------------------------------------------
1112
# overload default show in the REPL for colorant (arrays)
@@ -123,8 +124,6 @@ imshow(img, args...) = throw(
123124
ArgumentError("imshow only supports colorant arrays with 1 or 2 dimensions")
124125
)
125126

126-
include("deprecated.jl")
127-
128127
function __init__()
129128
enable_encoding()
130129

src/deprecated.jl

Lines changed: 0 additions & 21 deletions
This file was deleted.
File renamed without changes.

test/reference/mandril_big_imshow256.txt

Lines changed: 0 additions & 10 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)