-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Clean-up specifing dependencies to unregistered packages with `[sourc…
…es]` (#52) * bump compat for julia 1.11 * usage `[sources]` to separate benchmark to subproject * use `[sources]` to specify dependency on GraphMLReader * specify tools deps to GraphMLReader with `[sources]` * remove GraphML submodule * update readme * remove initializing submodules in CI * remove ignoring deps * remove unused deps
- Loading branch information
Showing
13 changed files
with
45 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
style = "sciml" | ||
yas_style_nesting = true | ||
|
||
ignore = ["deps", "data", "results"] | ||
ignore = ["data", "results"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +0,0 @@ | ||
[submodule "deps/GraphMLReader.jl"] | ||
path = deps/GraphMLReader.jl | ||
url = https://github.com/SmalRat/GraphMLReader.jl | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[deps] | ||
BenchmarkTools = "6e4b80f9-dd63-53aa-95a3-0cdb28fa8baf" | ||
FrameworkDemo = "cfbf7e84-66d2-421e-b147-9edb7a8672d2" | ||
Plots = "91a5bcdd-55d7-5caf-9e0b-520d859cae80" | ||
Printf = "de0858da-6303-5e67-8744-51eddeeeb8d7" | ||
GraphMLReader = "8e6830a9-644c-4485-8539-40ee18e3ca8c" | ||
|
||
[compat] | ||
BenchmarkTools = "1.5" | ||
FrameworkDemo = "0.1" | ||
GraphMLReader = "0.1" | ||
Plots = "1.40" | ||
Printf = "1.11" | ||
julia = "1.11" | ||
|
||
[sources] | ||
FrameworkDemo = {path = ".."} | ||
GraphMLReader = {rev = "master", url = "https://github.com/SmalRat/GraphMLReader.jl"} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule GraphMLReader.jl
deleted from
3751cc
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/bash | ||
|
||
find . -name "*.graphml" -type f -not -path "./deps/*" -exec xmllint --output '{}' --format '{}' \; | ||
find . -name "*.graphml" -type f -exec xmllint --output '{}' --format '{}' \; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters