Skip to content

Commit

Permalink
migrate (#198)
Browse files Browse the repository at this point in the history
move bonding graph dependency from `LightGraphs` to `Graphs`
  • Loading branch information
eahenle authored Nov 5, 2021
1 parent 5e6b54a commit a580ece
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
11 changes: 5 additions & 6 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
name = "PorousMaterials"
uuid = "68953c7c-a3c7-538e-83d3-73516288599e"
authors = ["SimonEnsemble <[email protected]>"]
version = "0.3.1"
version = "0.3.2"

[deps]
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Distributed = "8ba89e20-285c-5b6f-9357-94700520ee1b"
FIGlet = "3064a664-84fe-4d92-92c7-ed492f3d8fae"
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819"
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
Optim = "429524aa-4258-5aef-a3af-852621145aeb"
Expand All @@ -32,8 +32,8 @@ CSV = "^0.8.0"
DataFrames = "^0.22.1"
FIGlet = "^0.2.1"
FileIO = "1.2.0"
Graphs = "^1.4.1"
JLD2 = "^0.4.9"
LightGraphs = "1.3.0"
OffsetArrays = "0.11.4"
Optim = "0.19.7,1.3.0"
Polynomials = "0.6.0"
Expand All @@ -43,7 +43,7 @@ Reexport = "^1.1.0"
Roots = "0.8.4"
SpecialFunctions = "0.10.0"
StatsBase = "0.32.0,0.33.8"
Xtals = "0.3.1"
Xtals = "^0.3.8"
julia = "1.6"

[extras]
Expand All @@ -52,7 +52,6 @@ DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
FileIO = "5789e2e9-d7fb-5bc7-8068-2c6fae9b9549"
JLD2 = "033835bb-8acc-5ee8-8aae-3f567f8a3819"
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
Optim = "429524aa-4258-5aef-a3af-852621145aeb"
Expand All @@ -62,4 +61,4 @@ Statistics = "10745b16-79ce-11e8-11f9-7d13ad32a3b2"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

[targets]
test = ["Test", "Documenter", "CSV", "DataFrames", "FileIO", "JLD2", "LightGraphs", "LinearAlgebra", "OffsetArrays", "Optim", "Printf", "Random", "Statistics"]
test = ["Test", "Documenter", "CSV", "DataFrames", "FileIO", "JLD2", "LinearAlgebra", "OffsetArrays", "Optim", "Printf", "Random", "Statistics"]
2 changes: 1 addition & 1 deletion src/PorousMaterials.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
module PorousMaterials

using Roots, OffsetArrays, SpecialFunctions, StatsBase, ProgressMeter, Polynomials,
JLD2, Statistics, Distributed, Optim, Printf, DataFrames, LightGraphs, CSV, LinearAlgebra
JLD2, Statistics, Distributed, Optim, Printf, DataFrames, Graphs, CSV, LinearAlgebra

# extend Xtals
using Reexport
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ testfiles = [

using Test, FIGlet, Documenter

font_num = 57
font_num = 579
FIGlet.render("Porous", FIGlet.availablefonts()[font_num])
FIGlet.render("Materials", FIGlet.availablefonts()[font_num])

Expand Down

0 comments on commit a580ece

Please sign in to comment.