Skip to content

Commit 78f3243

Browse files
authored
Merge pull request #20 from johnnychen94/new-registrator
switch to new registrator and drop CI support for julia 0.7
2 parents 582a549 + bb4ad36 commit 78f3243

File tree

5 files changed

+32
-16
lines changed

5 files changed

+32
-16
lines changed

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,14 @@ os:
44
- linux
55
- osx
66
julia:
7-
- 0.7
87
- 1.0
8+
- 1.1
99
- nightly
1010
matrix:
1111
allow_failures:
1212
- julia: nightly
13-
script:
14-
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
15-
- julia --check-bounds=yes --color=yes -e 'import Pkg; Pkg.clone(pwd()); Pkg.build("ImageInTerminal"); Pkg.test("ImageInTerminal"; coverage=true)';
13+
14+
# use default travis script to test
1615

1716
# control of actual deployment is in the Documenter make script
1817
#jobs:

Project.toml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name = "ImageInTerminal"
2+
uuid = "d8c32880-2388-543b-8c61-d9f865259254"
3+
version = "0.4.0"
4+
5+
[deps]
6+
ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f"
7+
Crayons = "a8cc5b0e-0ffa-5ad4-8c14-923d3ee1735f"
8+
ImageCore = "a09fc81d-aa75-5fe9-8630-4744c3626534"
9+
ImageTransformations = "02fcd773-0e25-5acc-982a-7f6622650795"
10+
11+
[compat]
12+
ColorTypes = ">= 0.3.2"
13+
Crayons = ">= 0.1.0"
14+
ImageCore = ">= 0.7"
15+
ImageTransformations = ">= 0.3.0"
16+
julia = ">= 1.0"
17+
18+
[extras]
19+
CoordinateTransformations = "150eb455-5306-5404-9cee-2592286d6298"
20+
FixedPointNumbers = "53c48c17-4a7d-5ca2-90c5-79b7896eea93"
21+
ImageMagick = "6218d12a-5da1-5696-b52f-db25d2ecc6d1"
22+
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
23+
Rotations = "6038ab10-8711-5258-84ad-4b1120ba62dc"
24+
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
25+
TestImages = "5e47fb64-e119-507b-a336-dd2b206d9990"
26+
27+
[targets]
28+
test = ["Test", "FixedPointNumbers", "TestImages", "OffsetArrays", "CoordinateTransformations", "Rotations", "ImageMagick"]

REQUIRE

Lines changed: 0 additions & 5 deletions
This file was deleted.

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
environment:
22
matrix:
3-
- julia_version: 0.7
43
- julia_version: 1.0
4+
- julia_version: 1.1
55
- julia_version: latest
66

77
platform:

test/REQUIRE

Lines changed: 0 additions & 6 deletions
This file was deleted.

0 commit comments

Comments
 (0)