-
Notifications
You must be signed in to change notification settings - Fork 1.3k
feat: Pandas v2 compatibility #3957
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
bd2d690
feat: Support pandas v2
sudohainguyen 9ec43d8
fix: Prune dependencies
sudohainguyen d8978f4
chore: Re-compile reqs py310
sudohainguyen ba7d048
fix: Mark test skip with conditions
sudohainguyen 30a535a
chore: Re-compile reqs py39
sudohainguyen f291b90
chore: Update skip reason
sudohainguyen 8cbbc6f
chore: Re-compile reqs py38
sudohainguyen 3324f39
chore: Bump snowflake connector
sudohainguyen a0e966b
chore: Remove test skip
sudohainguyen File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: Mark test skip with conditions
Signed-off-by: Hai Nguyen <quanghai.ng1512@gmail.com>
- Loading branch information
commit ba7d048c0d076ffb18788c90c699335d018fcd96
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Does 2.0.3 also contain this bug? If so, even after snowflake is released, 3.8 tests will still fail once we remove
skipifsas the latest pandas release in 3.8 is 2.0.3. Will we need to pin pandas version below 2.0.0 only for python 3.8 using environment markers?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.
well actually the bug appears running pandas testing only,
it does not affect to features though
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.
still, wdyt about adding something like this in our
ciextras:pandas < 2.0.0 : python_version == '3.8'. Would be better than skipping the tests entirely.