Skip to content
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

Fix histogram feature grouping on next-release-devel #646

Open
wants to merge 5 commits into
base: next-release-devel
Choose a base branch
from

Conversation

fotonick
Copy link

Same goal as before, but since it is an API-breaking change, it is now rebased to next-release-devel. Note that I also had to fix a Pie::new() doctest that failed to compile.

@fotonick
Copy link
Author

@AaronErhardt I fixed the CI build on this branch, in addition to my original patch. I hope it reduces chaos just a little for you.

If it's further helpful, I can commit a Cross.toml to aid multi-arch testing. From my Mac, I was able to cross test --target x86_64-unknown-linux-gnu to reproduce and debug the CI failures.

@fotonick fotonick force-pushed the fix_histogram_feature_grouping_2 branch from 9995160 to 298f718 Compare September 28, 2024 08:34
Comment on lines -96 to +97
fn ymd_opt(&self, year: i32, month: u32, date: u32) -> Option<Self::DateType> {
NaiveDate::from_ymd_opt(year, month, date)
fn ymd(&self, year: i32, month: u32, date: u32) -> Self::DateType {
NaiveDate::from_ymd(year, month, date)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think this change makes sense because that would introduce a deprecated method: https://docs.rs/chrono/latest/chrono/naive/struct.NaiveDate.html#method.from_ymd

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants