-
Notifications
You must be signed in to change notification settings - Fork 14
Upgrading Julia LTS version to 1.10 in CI job
#164
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
base: dev
Are you sure you want to change the base?
Conversation
Co-authored-by: Dilum Aluthge <dilum@aluthge.com>
Co-authored-by: Dilum Aluthge <dilum@aluthge.com>
|
You might also need to upgrade to a newer Documenter.jl version (https://github.com/pebeto/MLJLinearModels.jl/blob/6b282650d3eb1504de51f43a44725ebea86c15be/docs/Project.toml#L5 might be too old for Julia 1.10). |
| ŷ = MLJBase.mode.(ŷ) | ||
|
|
||
| mcr = MLJBase.misclassification_rate(ŷ, yc) | ||
| mcr = MLJ.misclassification_rate(ŷ, yc) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I doubt you really need MLJ here. The metrics used to be defined in MLJBase, but now they are provided by StatisticalMeasures.jl
test/Project.toml
Outdated
| RCall = "6f49c342-dc21-5d91-9882-a32aef131414" | ||
| RDatasets = "ce6b1742-4840-55fa-b093-852dadbb1d8b" | ||
| Random = "9a3f8284-a2c9-5f02-9a11-845980a1fd5c" | ||
| StableRNGs = "860ef19b-820b-49d6-a774-d7a799459cd3" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In my experience, having a separate test/Project.toml is problematic when deving several packages locally, and I moved away from this. Can we get rid of it altogether? Maybe this even fixes your LTS fail.
|
Thanks for jumping in with some maintanence here @pebeto. |
Upgrading the LTS version is something already mentioned in JuliaAI/MLJ.jl#1143.