* Requires Python >= 3.12 * preparing to support PEP 695 generics * will require Python 3.12 * will not have to import typing for Python 3.12 and beyond * BUT... mypy does not support PEP 695 generics yet (Pyright does) * bumped minimum Python version to >= 3.12 in pyproject.toml * map methods mutating objects don't play nice with typing * map methods now return copies * THEREFORE: tests need to be completely overhauled
0.14.1.1
* tests working with grscheller.circular-array >= 3.0.0, <3.2 * lots of mypy complaints * first version using TypeVars will be 0.15.0.0
0.14.0
* updated dependency on CircularArray class * dependencies = ["grscheller.circular-array >= 0.2.0, < 2.1"] * minor README.md woodsmithing * keeping project an Alpha release for now
0.13.3.1
* overhauled docstrings with Markdown markup * updated pyproject.py to drop project back to an Alpha release * allows more renaming flexibility * intending to develop more graph based data structures * renamed class core.nodes.Tree_Node to core.node.BT_Node * BT for Binary Tree (data in each node of tree) * created class core.nodes.LT_Node * LT for Leaf Tree (data are the leaves of the tree) * removed deprecated reduce method from various classes * use foldL instead
* FTuple now supports both slicing and indexing * more tests for FTuple * slicing and indexing * map, foldL, accumulate methods * flatMap, mergeMap, exhaustMap methods * forgot to update CHANGELOG for v0.13.0 release