Skip to content

Commit 73f28da

Browse files
committed
Implemented package extensions
1 parent a69ed65 commit 73f28da

File tree

15 files changed

+820
-86
lines changed

15 files changed

+820
-86
lines changed

.github/workflows/documentation.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v2
1717
- uses: julia-actions/setup-julia@v1
1818
with:
19-
version: '1.8.1'
19+
version: '1.9'
2020
- name: Install dependencies
2121
run: julia --project=docs/ -e 'using Pkg; Pkg.develop(PackageSpec(path=pwd())); Pkg.instantiate()'
2222
- name: Build and deploy

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Setup julia
1717
uses: julia-actions/setup-julia@v1
1818
with:
19-
version: '1.8.1'
19+
version: '1.9'
2020
- run: julia -e 'using Pkg; pkg"add [email protected]"'
2121
- run: julia -e 'using Run; Run.prepare_test()'
2222
- run: julia -e 'using Run; Run.test()'
@@ -25,4 +25,4 @@ jobs:
2525
with:
2626
file: ./lcov.info
2727
flags: unittests
28-
name: codecov-umbrella
28+
name: codecov-umbrella

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
mynotes.norg
22
docs/build/
33
*.cov
4-
Manifest.toml
4+
/Manifest.toml
55
test/livetest.jl

Project.toml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,22 @@
11
name = "NestedGraphs"
22
uuid = "03c36417-ddab-428a-818d-5359aee292ef"
33
authors = ["fchrstou <[email protected]> and contributors"]
4-
version = "0.1.2"
4+
version = "0.2"
55

66
[deps]
77
AbstractTrees = "1520ce14-60c1-5f80-bbc7-55ef81b5835c"
8-
AttributeGraphs = "d091dd56-f8c5-469d-b7f7-ff847498145f"
98
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
109
Graphs = "86223c79-3864-5bf0-83f7-82e725a168b6"
11-
MetaGraphs = "626554b9-1ddb-594c-aa3c-2596fe9399a5"
1210
SimpleTraits = "699a6c99-e7fa-54fc-8d76-47d257e15c1d"
1311

12+
[weakdeps]
13+
MetaGraphs = "626554b9-1ddb-594c-aa3c-2596fe9399a5"
14+
AttributeGraphs = "d091dd56-f8c5-469d-b7f7-ff847498145f"
15+
16+
[extensions]
17+
NestedGraphsMetaGraphsExt = "MetaGraphs"
18+
NestedGraphsAttributeGraphsExt = "AttributeGraphs"
19+
1420
[compat]
1521
AbstractTrees = "0.4"
1622
DocStringExtensions = "0.9"
@@ -19,7 +25,7 @@ MetaGraphs = "0.7"
1925
AttributeGraphs = "0.2"
2026
SimpleTraits = "0.9"
2127

22-
julia = "1.7"
28+
julia = "1.9"
2329

2430
[extras]
2531
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@
1111

1212
*A package to handle nested graphs.*
1313

14+
> `NestedGraphs.jl` requires Julia v1.9+
15+
1416
`NestedGraphs.jl` is a young project that aims at easy and type-stable graph analysis for nested graphs.
1517
This package is in an early development stage and might break often.
1618

0 commit comments

Comments
 (0)