-
Notifications
You must be signed in to change notification settings - Fork 21
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
Update suggests #917
Update suggests #917
Conversation
|
Always 3 steps ahead of me... |
Since it's a |
But don't we get a EDIT: We do, at least the way I tried it (setting the Rmd chunk to evaluate depending on whether |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #917 +/- ##
==========================================
+ Coverage 98.96% 99.33% +0.36%
==========================================
Files 22 22
Lines 1647 1650 +3
==========================================
+ Hits 1630 1639 +9
+ Misses 17 11 -6
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
The alternative is we simply bump our minimum R version? That doesn't seem like the worst thing in the world? Happy to comment out for now if others don't think this is a good idea and none of the suggested alternatives pan out. |
Upside would be that we could also start using the native pipe everywhere. Downside is that people might find it hard to install the latest R version on systems where they aren't the admin. |
Yes, the proposal was to keep |
Ah right - then we would just remove R 4.0. from the CI and be done? |
We would bump the minimum version in the description and ci to match distributional |
I think that's not what @Bisaloo was suggesting and I don't think we actually need that |
We would skip the install of ggdist on R 4.0. This is not a problem if the vignette chunks are set up to run conditionally on ggdist presence. |
No I know it's not what they suggested it's the alternative if nothing else works and I think is better than commenting out. |
I think Hugo's suggestion worked - ready to merge as far as I'm concerned |
Just noting that this has been fixed in |
Nice, I referenced this in a new issue |
The R package
distributional
(https://github.com/mitchelloharawild/distributional) saw an update on September 17. Unfortunately, they are now using the native pipe|>
in one or two places.We have
ggdist
as a suggest which in turn importsdistributional
which in turn means thatscoringutils
isn't fully compatible with R version 4.0 anymore.This PR simply comments out the code that requires
ggdist
in an old vignette, which is a bit unfortunate. The alternative would be to open an issue withdistributional
and kindly ask them whether they could use%>%
instead.We should probably merge this PR regardless as it would take them some time to use
%>%
even if they were willing to do so.