-
Notifications
You must be signed in to change notification settings - Fork 15
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
Add CI for julia-nightly #114
Conversation
cc @lassepe do you have a reproducible example of the failure? I'm reticent to make any changes without one. |
@lassepe can you try this PR? |
I do not have a compact reproducer for this issue. The setting in which this came up is that I noticed that the toy example from the readme of https://github.com/forrestlaine/QuadraticProgramNetworks.jl fails on 1.11-beta1: julia> qpn = setup(:robust_avoid_simple);
julia> ret = solve(qpn); Hence, I started looking into what may cause these problems. @vchuravy pointed out on slack that the use of Unfortunately, the changes in your PR (and those made in my original PR) did not fix the problems observed in https://github.com/forrestlaine/QuadraticProgramNetworks.jl. I will keep digging to see what is the problem there. Nonetheless, I think this PR is a step in the right direction since the current use of |
Can you open an issue with the full error logs? What happens?
So this PR is, in fact, unrelated? |
I get julia> using QuadraticProgramNetworks
julia> qpn = setup(:robust_avoid_simple);
julia> ret = solve(qpn);
Infiltrating project(p::QuadraticProgramNetworks.BasicPoly, keep_dims::Vector{Int64}; tol::Float64)
at /Users/oscar/.julia/packages/QuadraticProgramNetworks/Iq7xw/src/sets.jl:520ime: 0:00:03
Depth 2: 100%|███████████████████████████████████████████████████████████████| Time: 0:00:03
WARNING: both CairoMakie and Base export "Text"; uses of it in module QuadraticProgramNetworks must be qualified
WARNING: both CairoMakie and LinearAlgebra export "rotate!"; uses of it in module QuadraticProgramNetworks must be qualified
WARNING: both CairoMakie and Polyhedra export "lines"; uses of it in module QuadraticProgramNetworks must be qualified
WARNING: both CaioMakie and Polyhedra export "surface"; uses of it in module QuadraticProgramNetworks must be qualified
WARNING: both CairoMakie and Polyhedra export "volume"; uses of it in module QuadraticProgramNetworks must be qualified
WARNING: both FilePathsBase and Base export "isexecutable"; uses of it in module FilePaths must be qualified
WARNING: both CairoMakie and Polyhedra export "lift"; uses of it in module QuadraticProgramNetworks must be qualified
infil> Can you open an issue with a reproducible example and explain what PATHSolver has to do with it? |
First, thank you for merging this PR! :)
Yes, mostly unrelated. The issue fixed in this PR may be part of the solution but there must be more issues that we haven't found yet.
I will open an issue with a clearer description once I have a smaller reproducer. |
x-ref #113