dzhigimont opened a new pull request, #40665: URL: https://github.com/apache/spark/pull/40665
### What changes were proposed in this pull request? Add inclusive parameter for pd.date_range to support the pandas 2.0.0 ### Why are the changes needed? When pandas 2.0.0 is released, we should match the behavior in pandas API on Spark. ### Does this PR introduce any user-facing change? yes, the API changes Before: ps.date_range(start='2017-01-01', end='2017-01-04', closed=None) After: ps.date_range(start='2017-01-01', end='2017-01-04', inclusive="both") ### How was this patch tested? Unit tests were updated -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
