Skip to content

Commit

Permalink
Merge pull request #13 from johnnychen94/jc/compat
Browse files Browse the repository at this point in the history
add upper version bounds for depedencies
  • Loading branch information
johnnychen94 authored Jan 20, 2020
2 parents 3e48669 + d2d05c6 commit 6caa3fe
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
14 changes: 6 additions & 8 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,24 +1,22 @@
name = "ImageQualityIndexes"
uuid = "2996bd0c-7a13-11e9-2da2-2f5ce47296a9"
authors = ["Johnny Chen <[email protected]>"]
version = "0.1.2"
version = "0.1.3"

[deps]
ColorVectorSpace = "c3611d14-8923-5661-9e6a-0046d554d3a4"
ImageCore = "a09fc81d-aa75-5fe9-8630-4744c3626534"
ImageDistances = "51556ac3-7006-55f5-8cb3-34580c88182d"
ImageFiltering = "6a3955dd-da59-5b1f-98d4-e7296123deb5"
MappedArrays = "dbb5928d-eab1-5f90-85c2-b9b0edb7c900"
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"

[compat]
ColorVectorSpace = ">= 0.6"
ImageCore = ">= 0.8.3"
ImageDistances = ">= 0.2.4"
ImageFiltering = ">= 0.6.3"
MappedArrays = ">= 0.2"
OffsetArrays = ">= 0.10"
ColorVectorSpace = "0.6, 0.7, 0.8"
ImageCore = "0.8.3"
ImageDistances = "0.2.4"
ImageFiltering = "0.6.3"
MappedArrays = "0.2"
julia = "1"

[extras]
Expand Down
2 changes: 1 addition & 1 deletion src/ImageQualityIndexes.jl
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module ImageQualityIndexes

using MappedArrays, OffsetArrays
using MappedArrays
using ImageCore, ColorVectorSpace
using ImageCore: NumberLike, Pixel, GenericImage, GenericGrayImage
using ImageDistances, ImageFiltering
Expand Down

2 comments on commit 6caa3fe

@johnnychen94
Copy link
Member 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/8209

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

This will be done automatically if Julia TagBot is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.3 -m "<description of version>" 6caa3fe4df6d1892d83e71ab4d8e2ee60e32e637
git push origin v0.1.3

Please sign in to comment.