Skip to content

Commit

Permalink
Replace LG by Graphs.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
juliohm committed Nov 16, 2021
1 parent 2d9c047 commit 18bc2ce
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name = "ImageQuilting"
uuid = "e8712464-036d-575c-85ac-952ae31322ab"
author = "Júlio Hoffimann <[email protected]>"
version = "0.14.8"
version = "0.15.0"

[deps]
CpuId = "adafc99b-e345-5852-983c-f28acb93d879"
FFTW = "7a1cc6ca-52ef-59f5-83cd-3a7055c09341"
GeoStatsBase = "323cb8eb-fbf6-51c0-afd0-f8fba70507b2"
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
GraphsFlows = "06909019-6f44-4949-96fc-b9d9aaa02889"
ImageFiltering = "6a3955dd-da59-5b1f-98d4-e7296123deb5"
ImageMorphology = "787d08f9-d448-5407-9aad-5290dd7ab264"
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
LightGraphsFlows = "2f5eb75a-258c-59e0-affc-f41c55f75335"
Meshes = "eacbb407-ea5a-433e-ab97-5258b1ca43fa"
Primes = "27ebfcd6-29c5-5fa9-bf4b-fb8fc14df3ae"
ProgressMeter = "92933f4c-e287-5a05-a399-4b506db050ca"
Expand All @@ -23,12 +23,12 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
[compat]
CpuId = "0.2, 0.3"
FFTW = "1.0"
GeoStatsBase = "0.21, 0.22"
GeoStatsBase = "0.21, 0.22, 0.23"
Graphs = "1.4"
GraphsFlows = "0.1"
ImageFiltering = "0.6"
ImageMorphology = "0.2"
LightGraphs = "1.2"
LightGraphsFlows = "0.3, 0.4"
Meshes = "0.16, 0.17"
Meshes = "0.16, 0.17, 0.18"
Primes = "0.4, 0.5"
ProgressMeter = "1.1"
RecipesBase = "0.7, 0.8, 1.0"
Expand Down
4 changes: 2 additions & 2 deletions src/ImageQuilting.jl
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ module ImageQuilting
using Meshes
using GeoStatsBase

using Graphs
using GraphsFlows
using ImageFiltering
using ImageMorphology
using LightGraphs
using LightGraphsFlows
using Base: @nexprs, @nloops, @nref
using Primes: factor
using StatsBase: sample, weights
Expand Down

2 comments on commit 18bc2ce

@juliohm
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
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/48845

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 the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.15.0 -m "<description of version>" 18bc2ceae0c50020b6b4ea257c6cabea75939364
git push origin v0.15.0

Please sign in to comment.