Skip to content

Commit

Permalink
Merge pull request #8 from johnnychen94/new-registrator
Browse files Browse the repository at this point in the history
switch to new registrator and drop CI support for julia 0.7
  • Loading branch information
RalphAS authored Apr 28, 2019
2 parents f8db749 + 48a800d commit d9843bc
Show file tree
Hide file tree
Showing 6 changed files with 34 additions and 18 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
*~
Manifest.toml
12 changes: 7 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,20 @@ os:
- linux
- osx
julia:
- 0.7
- 1.0
- 1.1
- nightly
matrix:
allow_failures:
- julia: nightly
notifications:
email: false
script:
- if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
- julia --color=yes -e 'using InteractiveUtils; versioninfo(); import Pkg; Pkg.clone(pwd()); Pkg.build("ImageShow")'
- julia --color=yes -e 'import Pkg; Pkg.test("ImageShow"; coverage=VERSION < v"1.0-alpha")'

# use default travis script to test
# script:
# - if [[ -a .git/shallow ]]; then git fetch --unshallow; fi
# - julia --color=yes -e 'using InteractiveUtils; versioninfo(); import Pkg; Pkg.clone(pwd()); Pkg.build("ImageShow")'
# - julia --color=yes -e 'import Pkg; Pkg.test("ImageShow"; coverage=VERSION < v"1.0-alpha")'
after_success:
# push coverage results to Codecov
- julia -e 'cd(Pkg.dir("ImageShow")); Pkg.add("Coverage"); using Coverage; Codecov.submit(Codecov.process_folder())'
25 changes: 25 additions & 0 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name = "ImageShow"
uuid = "4e3cecfd-b093-5904-9786-8bbb286a6a31"
version = "0.2.0"

[deps]
Base64 = "2a0f44e3-6c83-55bd-87e4-b1978d98bd5f"
ColorTypes = "3da002f7-5984-5a60-b8a6-cbb66c0b333f"
Colors = "5ae59095-9a9b-59fe-a467-6f913c188581"
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
FixedPointNumbers = "53c48c17-4a7d-5ca2-90c5-79b7896eea93"
ImageCore = "a09fc81d-aa75-5fe9-8630-4744c3626534"
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
Requires = "ae029012-a4dd-5104-9daa-d747884805df"

[compat]
ColorTypes = ">= 0.7.4"
julia = ">= 1.0"

[extras]
ImageMagick = "6218d12a-5da1-5696-b52f-db25d2ecc6d1"
PaddedViews = "5432bcbf-9aad-5242-b902-cca2824c8663"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["ImageMagick", "PaddedViews", "Test"]
8 changes: 0 additions & 8 deletions REQUIRE

This file was deleted.

2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
environment:
matrix:
- julia_version: 0.7
- julia_version: 1.0
- julia_version: 1 # latest stable 1.x release
- julia_version: latest

platform:
Expand Down
4 changes: 0 additions & 4 deletions test/REQUIRE

This file was deleted.

2 comments on commit d9843bc

@RalphAS
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register()

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/385

After the above pull request is merged, it is recommended that you create
a tag on this repository for the registered package version:

git tag -a v0.2.0 -m "<description of version>" d9843bce9d7a7d3aa51dd02862d9dee3a2407626
git push origin v0.2.0

Please sign in to comment.