* Bumping requires-python = ">=3.11" in pyproject.toml * Currently developing & testing on Python 3.11.5 * 0.10.7.X will be used on the GitHub pypy3 branch * Pypy3 (7.3.13) using Python (3.10.13) * tests pass but are 4X slower * LSP almost useless due to more primitive typing module
0.10.7.0
* Overhauled __repr__ & __str__ methods for all classes * tests that ds == eval(repr(ds)) for all data structures ds in package * CLArray API is in a state of flux * no longer stores None as a value * __add__ concatenates, no longer component adds * maybe allow zero length CLArrays? * would make it a monoid and not just a semigroup * make an immutable version too? * Updated markdown overview documentation
0.10.1.0
* Removed flatMap methods from stateful objects * FLArray, DQueue, SQueue, PStack * kept the map method for each * some restructuring so package will scale better in the future
0.9.1
* First Beta release of grscheller.datastructures on PyPI * Infrastructure stable * Existing datastructures only should need API additions * Type annotations working extremely well * Using Pdoc3 to generate documentation on GitHub * see https://grscheller.github.io/datastructures/ * All iterators conform to Python language "iterator protocol" * Improved docstrings * Future directions: * Develop some "typed" containers * Add sequence & transverse methods to functional subpackage classes * Monad transformers??? * Need to use this package in other projects to gain insight
0.8.6.0
* Finally got queue.py & stack.py inheritance sorted out * LSP with Pyright working quite well * Goals for next PyPI release: * combine methods * tail and tailOr * cons and consOr * head and headOr