python-clu 0.12.24__tar.gz → 0.12.27__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_clu-0.12.24 → python_clu-0.12.27}/.bumpversion.toml +1 -1
- {python_clu-0.12.24 → python_clu-0.12.27}/CHANGELOG.md +37 -1
- {python_clu-0.12.24 → python_clu-0.12.27}/CITATION.cff +2 -2
- {python_clu-0.12.24 → python_clu-0.12.27}/PKG-INFO +2 -2
- python_clu-0.12.27/clu/__version__.py +1 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/noxfile.py +2 -2
- {python_clu-0.12.24 → python_clu-0.12.27}/python_clu.egg-info/PKG-INFO +2 -2
- {python_clu-0.12.24 → python_clu-0.12.27}/requirements/dev.txt +1 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/requirements/install.txt +0 -1
- {python_clu-0.12.24 → python_clu-0.12.27}/requirements/nox/tests.txt +1 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/setup.py +1 -1
- python_clu-0.12.24/clu/__version__.py +0 -1
- {python_clu-0.12.24 → python_clu-0.12.27}/.coveragerc +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/.editorconfig +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/.gitchangelog.rc +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/.gitignore +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/.landscape.yml +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/.travis.yml +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/ABOUT.md +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/CLASSIFIERS.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/CLU_Treatment.md +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/CODE_OF_CONDUCT.md +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/LICENSE.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/MANIFEST.in +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/Makefile +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/README.md +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/appveyor.yml +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/__main__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/abstract.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/all.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/api/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/api/__main__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/application.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/compilation/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/compilation/compiledb.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/compilation/macros.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/abc.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/codecs.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/env.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/filebase.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/formats/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/formats/jsonfile.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/formats/picklefile.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/formats/tomlfile.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/formats/yamlfile.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/keymap.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/keymaputils.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/keymapview.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/legacy/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/legacy/base.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/legacy/fieldtypes.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/legacy/settings.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/ns.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/config/proxy.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/constants/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/constants/__main__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/constants/consts.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/constants/data.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/constants/enums.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/constants/exceptions.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/constants/polyfills.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/csv.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/dicts.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/dispatch.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/enums.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/exporting.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/extending.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/fs/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/fs/abc.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/fs/appdirectories.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/fs/filesystem.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/fs/misc.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/fs/pypath.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/fs/sourcetree.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/importing/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/importing/__main__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/importing/base.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/importing/proxy.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/keyvalue.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/mathematics.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/naming.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/predicates.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/repl/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/repl/ansi.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/repl/banners.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/repl/cli/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/repl/cli/ansidocs.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/repl/cli/boilerplate.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/repl/cli/boilerplate_copy.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/repl/cli/print_version.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/repl/columnize.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/repl/modules.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/repr.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/sanitizer.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/scripts/.gitignore +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/scripts/README.md +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/scripts/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/scripts/ansicolors.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/scripts/boilerplate.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/scripts/dictroast.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/scripts/legacy/forkumask.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/scripts/legacy/repl-bpython.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/scripts/legacy/repl-ipython.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/scripts/legacy/repl-ptpython.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/scripts/legacy/repl-pyzo.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/scripts/legacy/xdg-runtime.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/scripts/prediversus.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/scripts/repl.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/scripts/treeline.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/shelving/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/shelving/redat.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/shelving/redis.conf +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/stdio.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/testing/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/testing/hook.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/testing/obsolete.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/testing/pytest.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/testing/utils.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/trie.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/typespace/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/typespace/__main__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/typespace/namespace.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/typology.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/version/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/version/__main__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/version/git_version.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/clu/version/read_version.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/codecov.yml +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/conftest.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/.DS_Store +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/Makefile +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/doctrees/api.doctree +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/doctrees/environment.pickle +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/doctrees/generated/clu.doctree +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/doctrees/index.doctree +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/.buildinfo +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_sources/api.rst.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_sources/generated/clu.rst.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_sources/index.rst.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/_sphinx_javascript_frameworks_compat.js +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/alabaster.css +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/basic.css +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/badge_only.css +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff2 +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff2 +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/fontawesome-webfont.eot +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/fontawesome-webfont.svg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/fontawesome-webfont.ttf +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/fontawesome-webfont.woff +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/fontawesome-webfont.woff2 +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/lato-bold-italic.woff +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/lato-bold-italic.woff2 +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/lato-bold.woff +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/lato-bold.woff2 +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/lato-normal-italic.woff +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/lato-normal-italic.woff2 +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/lato-normal.woff +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/lato-normal.woff2 +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/theme.css +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/custom.css +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/doctools.js +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/documentation_options.js +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/file.png +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/jquery-3.6.0.js +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/jquery.js +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/js/badge_only.js +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/js/html5shiv-printshiv.min.js +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/js/html5shiv.min.js +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/js/theme.js +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/language_data.js +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/minus.png +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/plus.png +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/pygments.css +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/searchtools.js +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/underscore-1.13.1.js +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/underscore.js +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/api.html +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/generated/clu.html +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/genindex.html +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/index.html +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/objects.inv +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/py-modindex.html +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/search.html +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/searchindex.js +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/build/man/clu.1 +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/make.bat +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/source/api.rst +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/source/conf.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/source/generated/clu.rst +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/docs/source/index.rst +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/hooks/autohook.sh +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/hooks/post-push/00-coverage.sh +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/hooks/pre-push/00-noop.sh +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/hooks/pre-push/01-direnv-stdlib.sh +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/hooks/scripts/coverage.sh +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/hooks/scripts/display-issues.sh +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/hooks/scripts/git-pushex +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/hooks/scripts/noop.sh +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/mypy.ini +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/pyproject.toml +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/python_clu.egg-info/SOURCES.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/python_clu.egg-info/dependency_links.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/python_clu.egg-info/entry_points.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/python_clu.egg-info/requires.txt +1 -1
- {python_clu-0.12.24 → python_clu-0.12.27}/python_clu.egg-info/top_level.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/python_clu.egg-info/zip-safe +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/pytype.cfg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/requirements/changelog.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/requirements/docs.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/requirements/nox/codecov.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/requirements/nox/docs.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/requirements/nox/manifest.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/requirements/nox/pyproject.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/requirements/nox/repl.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/requirements/tox.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/requirements/typecheck.txt +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/scratch/direnv_transformed_env.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/scratch/images/clu-module-list-example-small.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/scratch/images/clu-module-list-example.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/scratch/images/clu-module-list-example.pxd +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/scratch/images/clu-testing-time-totals-example-small.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/scratch/images/clu-testing-time-totals-example.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/scratch/images/clu-testing-time-totals-example.pxd +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/scratch/images/construx-and-capsela-small.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/scratch/images/construx-and-capsela.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/scratch/images/construx-and-capsela.pxd +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/scratch/images/moira.png +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/scratch/images/toml-module-rant.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/scratch/inline-tests-ImportError-uggggh.ipynb +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/scratch/nteract.ipynb +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/setup.cfg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/data/1-58.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/data/3471426989_aa8e83cac5_o.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/data/3472236406_1fbf1a567d_o.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/data/8600JC.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/data/8ba.png +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/data/IMG_20180505_205153567.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/data/cheetah-003.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/data/config/clu-config.toml +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/data/config/yodogg.toml +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/data/shutterstock_90194617.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/data/yodata/09163d51421853.5608b3c2a1be0.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/data/yodata/5d0227342500004e12e3506d.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/data/yodata/BlackCat2_large-22.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/data/yodogg/Serval_Cat_Kitten-706.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/data/yodogg/Servals_Thoiry_19801.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/data/yodogg/video-pride-serval.jpg +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_abstract.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_all.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_boilerplate.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_config.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_config_abc.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_config_ns_matching.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_csv.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_dicts.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_dispatch.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_enum_aliases.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_exporting.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_extending.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_fs_abc.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_fs_appdirectories.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_fs_filesystem.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_fs_misc.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_importing.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_keyvalue.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_mathematics.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_naming.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_predicates.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_repl_columnize.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_repl_modules.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_repr.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_scripts_repl.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_typespace_namespace.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_typology.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/test_version.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/yodogg/.tm_properties +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/yodogg/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/yodogg/yodogg/__init__.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/yodogg/yodogg/config.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/yodogg/yodogg/exporting.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tests/yodogg/yodogg/iheard.py +0 -0
- {python_clu-0.12.24 → python_clu-0.12.27}/tox.ini +0 -0
|
@@ -1,7 +1,41 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
-
##
|
|
4
|
+
## v0.12.26 (2026-09-24)
|
|
5
|
+
|
|
6
|
+
### Bump
|
|
7
|
+
|
|
8
|
+
* Bumped version: 0.12.25 → 0.12.26. [Alexander Böhn]
|
|
9
|
+
|
|
10
|
+
* Bumped version: 0.12.24 → 0.12.25. [Alexander Böhn]
|
|
11
|
+
|
|
12
|
+
### Other
|
|
13
|
+
|
|
14
|
+
* [make] Changelog updated @ c18e3a2. [Alexander Böhn]
|
|
15
|
+
|
|
16
|
+
* Loosening Redis requirement. [Alexander Böhn]
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
## v0.12.25 (2026-09-24)
|
|
20
|
+
|
|
21
|
+
### Bump
|
|
22
|
+
|
|
23
|
+
* Bumped version: 0.12.24 → 0.12.25. [Alexander Böhn]
|
|
24
|
+
|
|
25
|
+
### Other
|
|
26
|
+
|
|
27
|
+
* [make] Changelog updated @ 0e186a1. [Alexander Böhn]
|
|
28
|
+
|
|
29
|
+
* Re-enabling temp-file cleanup after running pytest. [Alexander Böhn]
|
|
30
|
+
|
|
31
|
+
* Noxfile label update … a trifiling matter but it assuages my OCD, and so. [Alexander Böhn]
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
## v0.12.24 (2026-08-18)
|
|
35
|
+
|
|
36
|
+
### Bump
|
|
37
|
+
|
|
38
|
+
* Bumped version: 0.12.23 → 0.12.24. [Alexander Böhn]
|
|
5
39
|
|
|
6
40
|
### Add
|
|
7
41
|
|
|
@@ -11,6 +45,8 @@
|
|
|
11
45
|
|
|
12
46
|
### Other
|
|
13
47
|
|
|
48
|
+
* [make] Changelog updated @ 583bcc6. [Alexander Böhn]
|
|
49
|
+
|
|
14
50
|
* [make] Changelog updated @ 1d52c39. [Alexander Böhn]
|
|
15
51
|
|
|
16
52
|
* Got the date format backwards in `CITATION.cff` [Alexander Böhn]
|
|
@@ -5,7 +5,7 @@ authors:
|
|
|
5
5
|
given-names: "Alexander"
|
|
6
6
|
orcid: "https://orcid.org/0009-0007-9645-1744"
|
|
7
7
|
title: "Python-CLU"
|
|
8
|
-
version: 0.12.
|
|
9
|
-
date-released: "2026-
|
|
8
|
+
version: 0.12.27
|
|
9
|
+
date-released: "2026-09-24"
|
|
10
10
|
url: "https://github.com/fish2000/CLU"
|
|
11
11
|
repository-code: "https://github.com/fish2000/CLU"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-clu
|
|
3
|
-
Version: 0.12.
|
|
3
|
+
Version: 0.12.27
|
|
4
4
|
Summary: Python-CLU: Common Lightweight Utilities
|
|
5
5
|
Home-page: https://github.com/fish2000/clu
|
|
6
6
|
Download-URL: https://github.com/fish2000/clu/zipball/master
|
|
@@ -48,7 +48,6 @@ Requires-Dist: packaging
|
|
|
48
48
|
Requires-Dist: pout>=0.8.13
|
|
49
49
|
Requires-Dist: pygments>=2.0.0
|
|
50
50
|
Requires-Dist: PyYAML>=5.3.0
|
|
51
|
-
Requires-Dist: redis>=3.4.0
|
|
52
51
|
Requires-Dist: setuptools>=30.0.0
|
|
53
52
|
Requires-Dist: toml>=0.10.0
|
|
54
53
|
Requires-Dist: tomli>=2.2.0
|
|
@@ -59,6 +58,7 @@ Provides-Extra: all
|
|
|
59
58
|
Requires-Dist: numpy>=1.17.0; extra == "all"
|
|
60
59
|
Requires-Dist: Pillow>=7.1.0; extra == "all"
|
|
61
60
|
Requires-Dist: pytest>=5.4.0; extra == "all"
|
|
61
|
+
Requires-Dist: redis>=3.4.0; extra == "all"
|
|
62
62
|
Requires-Dist: xerox>=0.4.0; extra == "all"
|
|
63
63
|
Requires-Dist: zipp>=2.0.0; extra == "all"
|
|
64
64
|
Dynamic: author
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.12.27'
|
|
@@ -23,7 +23,7 @@ def checkmanifest(session):
|
|
|
23
23
|
nox.param('.bumpversion.toml', id='bumpversion'),
|
|
24
24
|
nox.param('pyproject.toml', id='pyproject')))
|
|
25
25
|
def checkpyproject(session, tomls):
|
|
26
|
-
""" Validate CLU’s
|
|
26
|
+
""" Validate CLU’s attendant toml files """
|
|
27
27
|
session.install("-r", "requirements/nox/pyproject.txt")
|
|
28
28
|
session.run('validate-pyproject', '--verbose', tomls)
|
|
29
29
|
|
|
@@ -49,7 +49,7 @@ def pytest(session):
|
|
|
49
49
|
# session.env['PYTEST_DISABLE_PLUGIN_AUTOLOAD'] = '1'
|
|
50
50
|
session.install("-r", "requirements/install.txt")
|
|
51
51
|
session.install("-r", "requirements/nox/repl.txt")
|
|
52
|
-
session.run('pytest', '--
|
|
52
|
+
session.run('pytest', '--delete-temps')
|
|
53
53
|
|
|
54
54
|
def parametrized_inline_tests():
|
|
55
55
|
import clu.all
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: python-clu
|
|
3
|
-
Version: 0.12.
|
|
3
|
+
Version: 0.12.27
|
|
4
4
|
Summary: Python-CLU: Common Lightweight Utilities
|
|
5
5
|
Home-page: https://github.com/fish2000/clu
|
|
6
6
|
Download-URL: https://github.com/fish2000/clu/zipball/master
|
|
@@ -48,7 +48,6 @@ Requires-Dist: packaging
|
|
|
48
48
|
Requires-Dist: pout>=0.8.13
|
|
49
49
|
Requires-Dist: pygments>=2.0.0
|
|
50
50
|
Requires-Dist: PyYAML>=5.3.0
|
|
51
|
-
Requires-Dist: redis>=3.4.0
|
|
52
51
|
Requires-Dist: setuptools>=30.0.0
|
|
53
52
|
Requires-Dist: toml>=0.10.0
|
|
54
53
|
Requires-Dist: tomli>=2.2.0
|
|
@@ -59,6 +58,7 @@ Provides-Extra: all
|
|
|
59
58
|
Requires-Dist: numpy>=1.17.0; extra == "all"
|
|
60
59
|
Requires-Dist: Pillow>=7.1.0; extra == "all"
|
|
61
60
|
Requires-Dist: pytest>=5.4.0; extra == "all"
|
|
61
|
+
Requires-Dist: redis>=3.4.0; extra == "all"
|
|
62
62
|
Requires-Dist: xerox>=0.4.0; extra == "all"
|
|
63
63
|
Requires-Dist: zipp>=2.0.0; extra == "all"
|
|
64
64
|
Dynamic: author
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '0.12.24'
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff
RENAMED
|
File without changes
|
{python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff2
RENAMED
|
File without changes
|
{python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff
RENAMED
|
File without changes
|
|
File without changes
|
{python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/fontawesome-webfont.eot
RENAMED
|
File without changes
|
{python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/fontawesome-webfont.svg
RENAMED
|
File without changes
|
{python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/fontawesome-webfont.ttf
RENAMED
|
File without changes
|
{python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/fontawesome-webfont.woff
RENAMED
|
File without changes
|
|
File without changes
|
{python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/lato-bold-italic.woff
RENAMED
|
File without changes
|
{python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/lato-bold-italic.woff2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/lato-normal-italic.woff
RENAMED
|
File without changes
|
{python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/lato-normal-italic.woff2
RENAMED
|
File without changes
|
{python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/lato-normal.woff
RENAMED
|
File without changes
|
{python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/css/fonts/lato-normal.woff2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_clu-0.12.24 → python_clu-0.12.27}/docs/build/html/_static/js/html5shiv-printshiv.min.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|