Skip to content

Releases: ForeverWintr/metafunctions

Test and Metadata updates through python 3.11

Choose a tag to compare

@ForeverWintr ForeverWintr released this 20 Apr 15:37
221d41a

This release updates metadata to indicate support for python 3.11

Support for 3.5+, Windows

Choose a tag to compare

@ForeverWintr ForeverWintr released this 28 Jan 03:04
e9c6e51

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

Choose a tag to compare

@ForeverWintr ForeverWintr released this 22 Oct 23:34

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

Nearing Feature Completion

Pre-release

Choose a tag to compare

@ForeverWintr ForeverWintr released this 31 Jul 03:39
ecf0804

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

Pretty Tracebacks and Concurrency

Pre-release

Choose a tag to compare

@ForeverWintr ForeverWintr released this 29 Jun 07:22
b13ecb2

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

First release Pre-release
Pre-release

Choose a tag to compare

@ForeverWintr ForeverWintr released this 11 Jun 19:00
8004120

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