You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This seems like a revival of #1585 for package extensions. I've submitted JuliaDiff/ForwardDiff.jl#667 and want to prepare a PR for IntervalArithmetic adding the extension. Note that the master branch of ForwardDiff is currently 0.11-DEV but there is no release yet of the 0.11 branch.
I've also tried adding ForwardDiff = "0.11" to the [compat] but that didn't seem to help.
Then also:
tim@diva:~/.julia/dev/IntervalArithmetic$ rm Manifest.toml
rm: cannot remove 'Manifest.toml': No such file or directory
tim@diva:~/.julia/dev/IntervalArithmetic$ julia +1.10 --project=test -q
(test) pkg> st
Status `~/.julia/dev/IntervalArithmetic/test/Project.toml`
[f6369f11] ForwardDiff v0.11.0-DEV `~/.julia/dev/ForwardDiff`
[f27b6e38] Polynomials v4.0.4
[90137ffa] StaticArrays v1.6.4
[37e2e46d] LinearAlgebra
[9a3f8284] Random
[8dfed614] Test
This makes sure we start with a clean Manifest for the package and shows the test/Manifest has been set to the dev version of ForwardDiff.
Note this only seems to happen if the package uses a test/Project.toml. I've verified that if I copy the dependencies into an [extras] section of the main Project.toml then it works.
This seems like a revival of #1585 for package extensions. I've submitted JuliaDiff/ForwardDiff.jl#667 and want to prepare a PR for IntervalArithmetic adding the extension. Note that the
master
branch of ForwardDiff is currently0.11-DEV
but there is no release yet of the 0.11 branch.Here's what I have:
I've also tried adding
ForwardDiff = "0.11"
to the[compat]
but that didn't seem to help.Then also:
This makes sure we start with a clean Manifest for the package and shows the
test/Manifest
has been set to thedev
version ofForwardDiff
.Then:
The text was updated successfully, but these errors were encountered: