-
Notifications
You must be signed in to change notification settings - Fork 4
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
feat: enable copy-on-write for pandas dataframes #494
Conversation
🦙 MegaLinter status: ✅ SUCCESS
See detailed report in MegaLinter reports |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #494 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 49 49
Lines 2713 2702 -11
=========================================
- Hits 2713 2702 -11 ☔ View full report in Codecov by Sentry. |
bdff1aa
to
830860b
Compare
### Summary of Changes #494 enabled Pandas's copy-on-write feature. This PR removes the explicit deep copies that were created in table transformers. --------- Co-authored-by: megalinter-bot <[email protected]>
## [0.16.0](v0.15.0...v0.16.0) (2023-11-22) ### Features * drop Python 3.10 and add Python 3.12 ([#478](#478)) ([5bf0e75](5bf0e75)) * enable copy-on-write for pandas dataframes ([#494](#494)) ([9a19389](9a19389)), closes [#428](#428) ### Bug Fixes * **deps-dev:** Bump urllib3 from 1.26.17 to 1.26.18 ([#480](#480)) ([a592d2c](a592d2c)), closes [#3159](https://github.com/Safe-DS/Library/issues/3159) ### Performance Improvements * remove unneeded copy operations in table transformers ([#496](#496)) ([6443beb](6443beb)), closes [#494](#494)
🎉 This PR is included in version 0.16.0 🎉 The release is available on:
Your semantic-release bot 📦🚀 |
Closes #428
Summary of Changes