~dricottone/filters

075c374d67b10fbfa736955627cf539b50c83b63 — Dominic Ricottone 2 years ago bf44d42 dev v1.0.3
Quick fix

I missed the version numbers in the **/internals.py files, and I noticed
a variable name misspell in the **/__main__.py files.
6 files changed, 7 insertions(+), 7 deletions(-)

M Makefile
M filter/__main__.py
M filter/internals.py
M pyproject.toml
M rng/__main__.py
M rng/internals.py
M Makefile => Makefile +2 -2
@@ 1,4 1,4 @@
VERSION=1.0.2
VERSION=1.0.3

PY_COMPILE_BIN=python -m py_compile



@@ 11,7 11,7 @@ UNITTEST_FILE_BIN=unittest --color
UNITTEST_DIR_BIN=unittest --color --working-directory .

#MYPY_BIN=python -m mypy
MYPY_BIN=MYPY_CACHE_DIR=gap/__mypycache__ mypy
MYPY_BIN=MYPY_CACHE_DIR=__mypycache__ mypy

#PIPX_BIN=python -m pipx
PIPX_BIN=pipx

M filter/__main__.py => filter/__main__.py +1 -1
@@ 15,7 15,7 @@ def main():
        internals._print_methodologies("ab", "kalman", "convolve")
        sys.exit(0)
    elif "methodology" in _config.keys():
        _method = config.get("methodology", "")
        _method = _config.get("methodology", "")
    elif len(_positionals) > 0:
        _method = _positionals.pop(0)
    elif "help" in _config.keys():

M filter/internals.py => filter/internals.py +1 -1
@@ 3,7 3,7 @@
import sys
from typing import *

VERSION = (1,0,1,)
VERSION = (1,0,3,)

def _try_get_float(
    mapping: Dict,

M pyproject.toml => pyproject.toml +1 -1
@@ 9,7 9,7 @@ packages = ["filter", "rng"]
name = "filters"
description = "Command line data filtering and generation"
readme = "README.md"
version = "1.0.2"
version = "1.0.3"
authors = [ { name = "Dominic Ricottone", email = "me@dominic-ricottone.com" } ]
urls = { source = "git.dominic-ricottone.com/~dricottone/filters" }
license = { file = "LICENSE.md" }

M rng/__main__.py => rng/__main__.py +1 -1
@@ 15,7 15,7 @@ def main():
        internals._print_distributions("normal", "uniform", "notrandom")
        sys.exit(0)
    elif "distribution" in _config.keys():
        _dist = config.get("distribution", "")
        _dist = _config.get("distribution", "")
    elif len(_positionals) > 0:
        _dist = _positionals.pop(0)
    elif "help" in _config.keys():

M rng/internals.py => rng/internals.py +1 -1
@@ 3,7 3,7 @@
import sys
from typing import *

VERSION = (1,0,1,)
VERSION = (1,0,3,)

def _try_get_float(
    mapping: Dict,