-
Notifications
You must be signed in to change notification settings - Fork 61
ENH Support more array-like data types for tabular data and list-like data types for text data #179
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
adrinjalali
merged 20 commits into
skops-dev:main
from
anferico:support-more-data-types
Jan 20, 2023
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
782b9e0
add support for more data types
anferico fe798d8
Add docstrings
anferico a8f5e4d
Update unit tests
anferico 5d7e75d
Revert some erroneous changes
anferico ef89103
Update changelog
anferico def297b
Add myself as contributor
anferico 100169e
Address PR review comments
anferico f0cd56c
Merge remote-tracking branch 'upstream/main' into support-more-data-t…
anferico b0944e5
Merge changes from main
anferico 6e89d06
Merge remote-tracking branch 'upstream/main' into support-more-data-t…
anferico 2208b61
Merge remote-tracking branch 'upstream/main' into support-more-data-t…
anferico eab3c29
Update changes.rst
anferico e6f5d2e
Address PR comments
anferico 09ffc00
Merge remote-tracking branch 'upstream/main' into support-more-data-t…
anferico ecbdf38
Remove support for generators in text tasks + small fixes
anferico c0cf3c5
Merge branch 'main' into support-more-data-types
anferico c659e99
Merge branch 'main' into support-more-data-types
anferico fa42fe4
Remove inner function + parametrize test
anferico 6b41b69
Add new section to changelog (v0.5)
anferico 6c5763e
Merge branch 'main' into support-more-data-types
adrinjalali 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
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
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.
There isn't really a need to assign the error message here. It is better to move it into the
exceptpart below.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.
The reason I assigned the error message there is because otherwise I would have to duplicate the same string in the
elseandexceptbranches, like so:Another way to avoid this would be to raise a
TypeErrorinside theelsebranch, although that would feel pretty hacky.Do you think it's fine to duplicate the error message?
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.
Sorry, I have missed that it's used at two places.