Skip to content

Commit

Permalink
Merge pull request #72 from realratchet/master
Browse files Browse the repository at this point in the history
* bump mplite
  • Loading branch information
realratchet authored Aug 10, 2023
2 parents c402db7 + cca29e1 commit a1553a9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

| Version | Change |
|:-----------|-----------------------------------------------------|
|2023.6.2| Updated `mplite` dependency, changed to soft version requirement to prevent pipeline freezes due to small bugfixes in `mplite`. |
|2023.6.1| Major change of the backend processes. Speed up of ~6x. For more see the [release notes](https://github.com/root-11/tablite/releases/tag/2023.6.1) |
| 2022.11.19 | Fixed some memory leaks. |
| 2022.11.18 | `copy`, `filter`, `sort`, `any`, `all` methods now properly respects the table subclass.<br>Filter for tables with under `SINGLE_PROCESSING_LIMIT` rows will run on same process to reduce overhead.<br>Errors within child processes now properly propagate to parent.<br>`Table.reset_storage(include_imports=True)` now allows the user to reset the storage but exclude any imported files by setting `include_imports=False` during `Table.reset(...)`.<br>Bug: A column with `1,None,2` would be written to csv & tsv as `"1,None,2"`. Now it is written `"1,,2"` where None means absent.<br>Fix mp `join` producing mismatched columns lengths when different table lengths are used as an input or when join product is longer than the input table. |
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ pyexcel-ods==0.6.0
pyexcel-xlsx==0.6.0
pyexcel-xls==0.7.0
pyuca>=1.2
mplite==1.2.2
mplite>=1.2.3
PyYAML==6.0
openpyxl==3.0.10 # newest version breaks pyexcel
h5py>=3.6.0
2 changes: 1 addition & 1 deletion tablite/version.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
major, minor, patch = 2023, 6, 1
major, minor, patch = 2023, 6, 2
__version_info__ = (major, minor, patch)
__version__ = ".".join(str(i) for i in __version_info__)

0 comments on commit a1553a9

Please sign in to comment.