Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@latest
with:
version: '1.10'
version: '1'
- uses: julia-actions/julia-buildpkg@latest
- name: install dependencies
run: julia -e 'using Pkg; pkg"add PkgBenchmark BenchmarkCI@0.1"'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/downgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
version: ['1.9']
version: ['1.11']
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## v1.0.1 - 2025-02-20

- Minor testing improvements and cleanup.

## v1.0.0 - 2025-02-17

- Initial version with the databases from arxiv:1011.5464 and arxiv:1910.03969.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "LCOrbits"
uuid = "d9401462-0832-4dc7-b246-e799faa72617"
authors = ["Stefan Krastanov", "QuantumSavory contributors"]
version = "1.0.0"
version = "1.0.1"

[deps]
Artifacts = "56f22d72-fd6d-98f1-02f0-08ddc0907c33"
Expand Down
3 changes: 2 additions & 1 deletion src/LCOrbits.jl
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ function parsegraphcol(str,vertices;indexoffset=1)
for (color, group) in enumerate(groups)
edges = strip.(split(group,','))
for edge in edges
e1, e2 = minmax(parse.(Int, split(edge,'-'))...)
e1, e2 = parse.(Int, split(edge,'-'))
e1, e2 = minmax(e1, e2)
p = Edge(e1+indexoffset,e2+indexoffset) # switch to Julia indexing
add_edge!(graph, p)
colors_dict[p] = color
Expand Down
2 changes: 2 additions & 0 deletions test/Project.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[deps]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
CSV = "336ed68f-0bac-5ca0-87d4-7b16caf5d00b"
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
DocStringExtensions = "ffbed154-4ef7-542d-bbb7-c09d3a79fcae"
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"
JET = "c3a54625-cd67-489e-a8e7-0a5a0ff4e31b"
Expand Down
9 changes: 0 additions & 9 deletions test/test_doctests.jl

This file was deleted.

6 changes: 5 additions & 1 deletion test/test_jet.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,17 @@
using JET
using Test
using LCOrbits
using CSV, DataFrames

rep = report_package("LCOrbits";
ignored_modules=(
LastFrameModule(Base),
AnyFrameModule(CSV),
LastFrameModule(DataFrames),
)
)
@show rep
@test length(JET.get_reports(rep)) == 0
@test_broken length(JET.get_reports(rep)) == 0
@test length(JET.get_reports(rep)) <= 1

end
Loading