Skip to content

Commit a291874

Browse files
authored
Merge pull request #108 from gridap/graphs
Swap LightGraphs for Graphs
2 parents 6adb1c4 + ed64edb commit a291874

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.github/workflows/ci_x86.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
version:
17-
- '1.8'
17+
- '1.10'
1818
os:
1919
- ubuntu-latest
2020
arch:

NEWS.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1111
- Added support for distributed level-set geometries. Since PR[#99](https://github.com/gridap/GridapEmbedded.jl/pull/99).
1212
- Refactored the distributed code to allow for ghosted/unghosted geometries and triangulations. Since PR[#100](https://github.com/gridap/GridapEmbedded.jl/pull/100).
1313

14+
### Changed
15+
16+
- Swapped `LightGraphs.jl` dependency to `Graphs.jl`, due to the former being deprecated. Since PR[#108](https://github.com/gridap/GridapEmbedded.jl/pull/108).
17+
1418
## [0.9.5] - 2024-10-18
1519

1620
### Added

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ Algoim = "0eb9048c-21de-4c7a-bfac-056de1940b74"
99
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"
1010
CxxWrap = "1f15a43c-97ca-5a2a-ae31-89f07a497df4"
1111
FillArrays = "1a297f60-69ca-5386-bcde-b61e274b549b"
12+
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
1213
Gridap = "56d4f2e9-7ea1-5844-9cf6-b9c51ca7ce8e"
1314
GridapDistributed = "f9701e48-63b3-45aa-9a63-9bc6c271f355"
14-
LightGraphs = "093fc24a-ae57-5d10-9952-331d41423f4d"
1515
LinearAlgebra = "37e2e46d-f89d-539d-b4ee-838fcccc9c8e"
1616
MPI = "da04e1cc-30fd-572f-bb4f-1f8673147195"
1717
MiniQhull = "978d7f02-9e05-4691-894f-ae31a51d76ca"
@@ -26,9 +26,9 @@ Algoim = "0.2.2"
2626
Combinatorics = "1"
2727
CxxWrap = "0.16"
2828
FillArrays = "0.10, 0.11, 0.12, 0.13, 1"
29+
Graphs = "1.12.0"
2930
Gridap = "0.17, 0.18"
3031
GridapDistributed = "0.3, 0.4"
31-
LightGraphs = "1.3.3"
3232
MPI = "0.20"
3333
MiniQhull = "0.1.0, 0.2, 0.3, 0.4"
3434
PartitionedArrays = "0.3.4"

src/AgFEM/AgFEM.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module AgFEM
22

3-
using LightGraphs
3+
using Graphs
44
using LinearAlgebra
55

66
using Gridap

0 commit comments

Comments
 (0)