Skip to content
This repository was archived by the owner on Apr 2, 2026. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
|:-----------|-----------------------------------------------------|
| 2022.11.15 | Bump `mplite` to avoid deadlock issues OS kill the process. |
| 2022.11.14 | Improve locking mechanism to allow retries when opening file as the previous solution could cause deadlocks when running multiple threads. |
| 2022.11.13 | Fix an issue with copying empty pages. |
| 2022.11.12 | Tablite now is now able to create it's own temporary directory. |
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ pyperclip==1.8.2
pyexcel-xlsx==0.6.0
pyexcel-xls==0.7.0
pyuca>=1.2
mplite==1.2.0
mplite==1.2.2

openpyxl==3.0.10 # newest version breaks pyexcel
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 = 2022, 11, 14
major, minor, patch = 2022, 11, 15
__version_info__ = (major, minor, patch)
__version__ = ".".join(str(i) for i in __version_info__)