Skip to content

Commit

Permalink
rlst branch
Browse files Browse the repository at this point in the history
  • Loading branch information
mscroggs committed Oct 24, 2023
1 parent 5281b1e commit df7fd7f
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
8 changes: 4 additions & 4 deletions element/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ bempp-quadrature = { path = "../quadrature" }
paste = "1.*"
libc = "0.2"
approx = "0.5"
rlst = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-blis-src = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-dense = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-algorithms = { git = "https://github.com/linalg-rs/rlst.git" }
rlst = { git = "https://github.com/linalg-rs/rlst.git", branch="mscroggs/rsmpi-0.7.0" }
rlst-blis-src = { git = "https://github.com/linalg-rs/rlst.git", branch="mscroggs/rsmpi-0.7.0" }
rlst-dense = { git = "https://github.com/linalg-rs/rlst.git", branch="mscroggs/rsmpi-0.7.0" }
rlst-algorithms = { git = "https://github.com/linalg-rs/rlst.git", branch="mscroggs/rsmpi-0.7.0" }

4 changes: 2 additions & 2 deletions kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ approx = "0.5"
rayon = "1.7"
num = "0.4"
num_cpus = "1"
rlst = { git = "https://github.com/linalg-rs/rlst.git" }
rlst-dense = { git = "https://github.com/linalg-rs/rlst.git" }
rlst = { git = "https://github.com/linalg-rs/rlst.git", branch="mscroggs/rsmpi-0.7.0" }
rlst-dense = { git = "https://github.com/linalg-rs/rlst.git", branch="mscroggs/rsmpi-0.7.0" }

[dev-dependencies]
11 changes: 8 additions & 3 deletions python/test/test_dependencies.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,15 @@ def test_dependencies():
if "dependencies" in data:
for d, info in data["dependencies"].items():
if isinstance(info, dict):
if "version" not in info:
info = None
else:
if "version" in info:
info = info["version"]
elif "git" in info:
if "branch" in info:
info = f"{info['git']}@{info['branch']}"
else:
info = info["git"]
else:
info = None
if d not in deps:
deps[d] = (info, c)
elif deps[d][0] != info:
Expand Down

0 comments on commit df7fd7f

Please sign in to comment.