I have the registered CircularArrays
package dev
ed, but I can’t test it, and can’t make sense of the error message
(v1.3) pkg> status CircularArrays
Status `C:\Users\sternlab\.julia\environments\v1.3\Project.toml`
[dcaa3502] CircularArrays v0.1.0 [`C:\Users\sternlab\.julia\dev\CircularArrays`]
[6fe1bfb0] OffsetArrays v0.11.4
(v1.3) pkg> test CircularArrays
ERROR: The following package names could not be resolved:
* CircularArrays (7a955b69-7140-5f4e-a0ed-f168c5e2e749 or dcaa3502-af75-11e8-34c7-6b8fb8855653 in manifest but not in project)
Please specify by known `name=uuid`.
The Manifest.TOML
file for the default environment lists the package twice:
[[CircularArrays]]
deps = ["OffsetArrays"]
path = "C:\\Users\\sternlab\\.julia\\dev\\CircularArrays"
uuid = "dcaa3502-af75-11e8-34c7-6b8fb8855653"
version = "0.1.0"
[[CircularArrays]]
deps = ["Test"]
git-tree-sha1 = "310214c08082c8a408f8f7839da0418cef60c117"
uuid = "7a955b69-7140-5f4e-a0ed-f168c5e2e749"
version = "0.1.0"
This doesn’t change after ]remove CircularArrays; dev CircularArrays; resolve
Edit: using Pkg.test
instead of ]test
seems to work, but I still don’t understand what is going on.