Skip to content

Releases: ForeverWintr/metafunctions

Test and Metadata updates through python 3.11

20 Apr 15:37
221d41a
Compare
Choose a tag to compare

This release updates metadata to indicate support for python 3.11

Support for 3.5+, Windows

28 Jan 03:04
e9c6e51
Compare
Choose a tag to compare

MetaFunctions now supports python 3.5+ (it was previously 3.6+), and Windows. The concurrent functionality is unavailable on Windows, because it relies on os.fork.

First Stable Release

22 Oct 23:34
Compare
Choose a tag to compare

MetaFunctions is a python function composition and data pipelining library. See the readme for more information.

Nearing Feature Completion

31 Jul 03:39
ecf0804
Compare
Choose a tag to compare
Pre-release

This release adds many features. See #12 for a discussion.

Pretty Tracebacks and Concurrency

29 Jun 07:22
b13ecb2
Compare
Choose a tag to compare
Pre-release

This release adds the following features:

  • util.highlight_current_function: Called from within a bound MetaFunction, returns a string identifying where in the function pipeline the function is.
  • Pretty tracebacks: By default, function location is appended to exceptions in child functions, using the above method
  • util.concurrent and the concurrent module: Add a subclass of FunctionMerge that executes each of its functions in parallel.

First release

11 Jun 19:00
8004120
Compare
Choose a tag to compare
First release Pre-release
Pre-release

MetaFunctions support basic pipelining (with |), and +, -, /, * operations.