2024-11-11 08:29:31 by Thomas Klausner | Files touched by this commit (862) |
Log message: py-*: remove unused tool dependency py-setuptools includes the py-wheel functionality nowadays |
2024-11-04 18:25:06 by Thomas Klausner | Files touched by this commit (2) | ![]() |
Log message: py-aiostream: update to 0.6.4. Drop support for python 3.8, add support for python 3.13 by @fpgmaas in #123 |
2024-10-09 22:12:24 by Adam Ciarcinski | Files touched by this commit (2) | ![]() |
Log message: py-aiostream: updated to 0.6.3 0.6.3 Add MANIFEST.in to include tests/conftests.py in source dist |
2024-07-22 06:51:06 by Adam Ciarcinski | Files touched by this commit (2) | ![]() |
Log message: py-aiostream: updated to 0.6.2 0.6.2 Fixing the issue of the lack of installation sections Configure pytest test paths so test_utils.py is not mistaken for a test file Add strict parameter to stream.zip |
2024-05-28 18:16:15 by Adam Ciarcinski | Files touched by this commit (2) | ![]() |
Log message: py-aiostream: updated to 0.6.1 v0.6.1 Changes: Fix documentation build Expose Stream and sources_operator in the aiostream package v0.6.0 Changes: Support python 3.12 Support pyright and improve typing in general Move from setup.* to pyproject.toml Add typing to aiostream.test_utils Make operators a singleton object instead of a class Add sources operator to fix a breaking change in v0.5.x |
2023-11-23 17:16:36 by Jonathan Perkin | Files touched by this commit (1) |
Log message: py-aiostream: Unbreak impossible DEPENDS. |
2023-11-23 10:01:33 by Adam Ciarcinski | Files touched by this commit (3) | ![]() |
Log message: py-aiostream: updated to 0.5.2 v0.5.2 Properly expose pipe methods in aiostream.pipe v0.5.1 Expose pipable_operator at package level Modernize examples v0.5.0 Drop python 3.7 support Add type annotations Add task_limit argument to action operator |
2022-12-06 20:48:40 by Thomas Klausner | Files touched by this commit (4) |
Log message: devel/py-aiostream: import py310-aiostream-0.4.5 aiostream provides a collection of stream operators that can be combined to create asynchronous pipelines of operations. It can be seen as an asynchronous version of itertools, although some aspects are slightly different. Essentially, all the provided operators return a unified interface called a stream. A stream is an enhanced asynchronous iterable providing the following features: * Operator pipe-lining - using pipe symbol | * Repeatability - every iteration creates a different iterator * Safe iteration context - using async with and the stream method * Simplified execution - get the last element from a stream using await * Slicing and indexing - using square brackets [] * Concatenation - using addition symbol + |