Releases: BrianPugh/lox
Releases · BrianPugh/lox
v0.13.0
What's Changed
- remove sphinx_rtd_theme from dependencies. by @BrianPugh in #304
Full Changelog: v0.12.0...v0.13.0
v0.12.0
What's Changed
- Add type hints to thread & process by @BrianPugh in #302
Full Changelog: v0.11.0...v0.12.0
v0.11.0
v0.10.0
tqdm support
Both thread
and process
decorators now support progress-bar support for the gather
call via the package tqdm
.
- Can be a bool:
my_func.gather(tqdm=True)
- Can be a
tqdm
object::
from tqdm import tqdm
pbar = tqdm(total=100)
for _ in range(100):
my_func.scatter()
my_func.gather(tqdm=pbar)
Worker Refactor
-
Complete rework of workers + Fix memory leaks
-
Drop support for python3.5
-
Drop support for chaining in favor of simpler codebase
v0.5.0
-
New Object:
lox.Announcement
. Allows a one-to-many thread queue with
backlog support so that late subscribers can still get all (or most recent)
announcements before they subscribed. -
New Feature:
lox.thread
scatter
calls can now be chained together.
scatter
now returns anint
subclass that contains metadata to allow
chaining. Each scatter call can have a maximum of 1 previousscatter
result. -
Documentation updates, theming, and logos