-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failing to compile on 1.12 nightly #396
Comments
Which version of |
I am not imposing any constraints directly. BasisFunctions is imposing [compat] 0.16, which is getting solved to [8e7c35d0] BlockArrays v0.16.25 with the nightly version of Julia in the unit tests. I see we are on v0.16.43 now, so maybe that is the problem? Is it maybe an issue that the Pkg manager is not imposing a tighter constraint on the BlockArrays version conditional on the Julia version? |
That's quite likely. I think this was resolved on v1.16.36. I wonder why the resolver chooses such an old version of |
It seems like the problem would be solved more globally if BlockArrays had tighter upper bounds on its Julia compat, so that the Pkg manager would be able to automatically choose the correct version? Not sure if there is a procedure for editing the [compat] julia entry for older versions (everything prior to v0.16.36)? |
The lack of automatic resolution seems to really be coming from the limited compat (0.12-0.13) with FillArrays in BasisFunctions which then conflicts with the modern compat of 1 for FillArrays in the newer BlockArrays Project.toml. This prevents even the weakdeps solution you suggested from working, but I opened an issue to see if the tight upper compat in BasisFunctions on FillArrays could be lifted. |
Yeah that might be a good idea. The registry can be modified to ensure that broken versions aren't fetched. |
Ok, the update pushed this afternoon relaxing the compat on FIllArrays in BasisFunctions fixed all of my personal problems, so happy to have this closed. Also happy to have it left open as a reminder to impose a slightly tighter compat on the julia version in older releases to prevent fetching broken versions as you mentioned. Thanks! |
I have been finding that some of my unit tests have been consistently failing on the 1.12 nightlys for several months, I think due to BlockArrays.jl. I am not sure if this is a known issue? I am having trouble parsing the error to understand if there is something I should be modifying on my side in the package that depends on BlockArrays via BasisFunctions. The unit test run is here, with the relevant error posted below.
The text was updated successfully, but these errors were encountered: