python-clu 0.12.18__tar.gz → 0.12.20__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.18 → python_clu-0.12.20}/.bumpversion.toml +1 -1
- {python_clu-0.12.18 → python_clu-0.12.20}/CHANGELOG.md +42 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/PKG-INFO +1 -1
- python_clu-0.12.20/clu/__version__.py +1 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/repl/cli/boilerplate.py +8 -1
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/repl/cli/boilerplate_copy.py +10 -2
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/repl/modules.py +1 -1
- {python_clu-0.12.18 → python_clu-0.12.20}/noxfile.py +1 -4
- {python_clu-0.12.18 → python_clu-0.12.20}/pyproject.toml +1 -1
- {python_clu-0.12.18 → python_clu-0.12.20}/python_clu.egg-info/PKG-INFO +1 -1
- {python_clu-0.12.18 → python_clu-0.12.20}/python_clu.egg-info/entry_points.txt +1 -1
- {python_clu-0.12.18 → python_clu-0.12.20}/setup.py +2 -2
- python_clu-0.12.18/clu/__version__.py +0 -1
- {python_clu-0.12.18 → python_clu-0.12.20}/.coveragerc +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/.editorconfig +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/.gitchangelog.rc +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/.gitignore +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/.landscape.yml +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/.travis.yml +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/ABOUT.md +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/CLASSIFIERS.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/CLU_Treatment.md +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/CODE_OF_CONDUCT.md +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/LICENSE.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/MANIFEST.in +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/Makefile +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/README.md +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/appveyor.yml +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/__main__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/abstract.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/all.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/api/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/api/__main__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/application.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/compilation/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/compilation/compiledb.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/compilation/macros.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/abc.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/codecs.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/env.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/filebase.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/formats/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/formats/jsonfile.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/formats/picklefile.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/formats/tomlfile.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/formats/yamlfile.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/keymap.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/keymaputils.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/keymapview.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/legacy/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/legacy/base.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/legacy/fieldtypes.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/legacy/settings.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/ns.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/config/proxy.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/constants/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/constants/__main__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/constants/consts.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/constants/data.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/constants/enums.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/constants/exceptions.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/constants/polyfills.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/csv.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/dicts.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/dispatch.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/enums.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/exporting.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/extending.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/fs/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/fs/abc.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/fs/appdirectories.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/fs/filesystem.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/fs/misc.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/fs/pypath.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/fs/sourcetree.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/importing/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/importing/__main__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/importing/base.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/importing/proxy.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/keyvalue.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/mathematics.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/naming.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/predicates.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/repl/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/repl/ansi.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/repl/banners.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/repl/cli/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/repl/cli/ansidocs.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/repl/cli/print_version.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/repl/columnize.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/repr.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/sanitizer.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/scripts/.gitignore +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/scripts/README.md +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/scripts/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/scripts/ansicolors.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/scripts/boilerplate.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/scripts/dictroast.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/scripts/legacy/forkumask.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/scripts/legacy/repl-bpython.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/scripts/legacy/repl-ipython.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/scripts/legacy/repl-ptpython.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/scripts/legacy/repl-pyzo.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/scripts/legacy/xdg-runtime.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/scripts/prediversus.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/scripts/repl.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/scripts/treeline.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/shelving/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/shelving/redat.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/shelving/redis.conf +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/stdio.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/testing/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/testing/hook.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/testing/obsolete.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/testing/pytest.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/testing/utils.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/trie.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/typespace/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/typespace/__main__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/typespace/namespace.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/typology.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/version/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/version/__main__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/version/git_version.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/clu/version/read_version.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/codecov.yml +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/conftest.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/.DS_Store +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/Makefile +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/doctrees/api.doctree +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/doctrees/environment.pickle +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/doctrees/generated/clu.doctree +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/doctrees/index.doctree +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/.buildinfo +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_sources/api.rst.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_sources/generated/clu.rst.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_sources/index.rst.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/_sphinx_javascript_frameworks_compat.js +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/alabaster.css +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/basic.css +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/badge_only.css +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff2 +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff2 +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/fontawesome-webfont.eot +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/fontawesome-webfont.svg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/fontawesome-webfont.ttf +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/fontawesome-webfont.woff +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/fontawesome-webfont.woff2 +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/lato-bold-italic.woff +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/lato-bold-italic.woff2 +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/lato-bold.woff +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/lato-bold.woff2 +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/lato-normal-italic.woff +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/lato-normal-italic.woff2 +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/lato-normal.woff +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/lato-normal.woff2 +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/theme.css +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/custom.css +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/doctools.js +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/documentation_options.js +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/file.png +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/jquery-3.6.0.js +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/jquery.js +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/js/badge_only.js +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/js/html5shiv-printshiv.min.js +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/js/html5shiv.min.js +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/js/theme.js +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/language_data.js +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/minus.png +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/plus.png +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/pygments.css +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/searchtools.js +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/underscore-1.13.1.js +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/underscore.js +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/api.html +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/generated/clu.html +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/genindex.html +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/index.html +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/objects.inv +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/py-modindex.html +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/search.html +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/searchindex.js +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/build/man/clu.1 +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/make.bat +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/source/api.rst +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/source/conf.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/source/generated/clu.rst +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/docs/source/index.rst +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/hooks/autohook.sh +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/hooks/post-push/00-coverage.sh +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/hooks/pre-push/00-noop.sh +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/hooks/pre-push/01-direnv-stdlib.sh +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/hooks/scripts/coverage.sh +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/hooks/scripts/display-issues.sh +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/hooks/scripts/git-pushex +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/hooks/scripts/noop.sh +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/mypy.ini +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/pytest.ini +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/python_clu.egg-info/SOURCES.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/python_clu.egg-info/dependency_links.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/python_clu.egg-info/requires.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/python_clu.egg-info/top_level.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/python_clu.egg-info/zip-safe +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/pytype.cfg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/requirements/changelog.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/requirements/dev.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/requirements/docs.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/requirements/install.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/requirements/nox/codecov.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/requirements/nox/docs.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/requirements/nox/manifest.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/requirements/nox/pyproject.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/requirements/nox/repl.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/requirements/nox/tests.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/requirements/tox.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/requirements/typecheck.txt +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/scratch/direnv_transformed_env.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/scratch/images/clu-module-list-example-small.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/scratch/images/clu-module-list-example.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/scratch/images/clu-module-list-example.pxd +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/scratch/images/clu-testing-time-totals-example-small.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/scratch/images/clu-testing-time-totals-example.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/scratch/images/clu-testing-time-totals-example.pxd +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/scratch/images/construx-and-capsela-small.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/scratch/images/construx-and-capsela.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/scratch/images/construx-and-capsela.pxd +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/scratch/images/moira.png +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/scratch/images/toml-module-rant.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/scratch/inline-tests-ImportError-uggggh.ipynb +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/scratch/nteract.ipynb +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/setup.cfg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/data/1-58.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/data/3471426989_aa8e83cac5_o.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/data/3472236406_1fbf1a567d_o.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/data/8600JC.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/data/8ba.png +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/data/IMG_20180505_205153567.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/data/cheetah-003.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/data/config/clu-config.toml +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/data/config/yodogg.toml +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/data/shutterstock_90194617.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/data/yodata/09163d51421853.5608b3c2a1be0.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/data/yodata/5d0227342500004e12e3506d.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/data/yodata/BlackCat2_large-22.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/data/yodogg/Serval_Cat_Kitten-706.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/data/yodogg/Servals_Thoiry_19801.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/data/yodogg/video-pride-serval.jpg +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_abstract.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_all.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_boilerplate.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_config.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_config_abc.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_csv.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_dicts.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_dispatch.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_enum_aliases.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_exporting.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_extending.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_fs_abc.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_fs_appdirectories.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_fs_filesystem.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_fs_misc.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_importing.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_keyvalue.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_mathematics.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_naming.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_predicates.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_repl_columnize.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_repl_modules.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_repr.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_scripts_repl.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_typespace_namespace.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_typology.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/test_version.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/yodogg/.tm_properties +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/yodogg/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/yodogg/yodogg/__init__.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/yodogg/yodogg/config.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/yodogg/yodogg/exporting.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tests/yodogg/yodogg/iheard.py +0 -0
- {python_clu-0.12.18 → python_clu-0.12.20}/tox.ini +0 -0
|
@@ -1,6 +1,48 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
3
|
|
|
4
|
+
## 0.12.19:pre3+ge5c369b [SNAPSHOT]
|
|
5
|
+
|
|
6
|
+
### Other
|
|
7
|
+
|
|
8
|
+
* The “boilerplate_copy” CLI command errors gratefully without `xerox` [Alexander Böhn]
|
|
9
|
+
|
|
10
|
+
… to wit: it was importing “xerox” (which it uses to do the actual
|
|
11
|
+
copying of the boilerplate to the system clipboard) recklessly,
|
|
12
|
+
without checking for installation – since “xerox” is an optional
|
|
13
|
+
depenedency, this was stupid. It is now less stupid. Ta-daaaaa!
|
|
14
|
+
|
|
15
|
+
* Getting `clu-boilerplate` to prettyprint code in ANSI when apropos. [Alexander Böhn]
|
|
16
|
+
|
|
17
|
+
… there needs to be a better way to unit-test these fucking endpoint
|
|
18
|
+
commands and whatnot
|
|
19
|
+
|
|
20
|
+
* Not modifying the `nox` keywords list anymore. [Alexander Böhn]
|
|
21
|
+
|
|
22
|
+
… instead we can toggle Nox sessions’ default runability (so to
|
|
23
|
+
speak) directly as boolean values, indeed!
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
## v0.12.19 (2025-09-23)
|
|
27
|
+
|
|
28
|
+
### Other
|
|
29
|
+
|
|
30
|
+
* Bumped version: 0.12.18 → 0.12.19. [Alexander Böhn]
|
|
31
|
+
|
|
32
|
+
* [make] Changelog updated @ 88cee62. [Alexander Böhn]
|
|
33
|
+
|
|
34
|
+
* I have had the wrong path in that endpoint this whole time. [Alexander Böhn]
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
## v0.12.18 (2025-09-23)
|
|
38
|
+
|
|
39
|
+
### Other
|
|
40
|
+
|
|
41
|
+
* Bumped version: 0.12.17 → 0.12.18. [Alexander Böhn]
|
|
42
|
+
|
|
43
|
+
* [make] Changelog updated @ caf4d82. [Alexander Böhn]
|
|
44
|
+
|
|
45
|
+
|
|
4
46
|
## v0.12.17 (2025-09-23)
|
|
5
47
|
|
|
6
48
|
### Fix
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = '0.12.20'
|
|
@@ -3,6 +3,10 @@
|
|
|
3
3
|
from __future__ import print_function
|
|
4
4
|
import sys, os
|
|
5
5
|
|
|
6
|
+
from clu.repl.ansi import DocFormat, PygmentsHighlighter
|
|
7
|
+
ansidocs = DocFormat()
|
|
8
|
+
pygmentizer = PygmentsHighlighter()
|
|
9
|
+
|
|
6
10
|
boilerplate = '''
|
|
7
11
|
# -*- coding: utf-8 -*-
|
|
8
12
|
from __future__ import print_function
|
|
@@ -40,7 +44,10 @@ if __name__ == '__main__':
|
|
|
40
44
|
sys.exit(test())
|
|
41
45
|
'''.lstrip()
|
|
42
46
|
|
|
43
|
-
|
|
47
|
+
pygment_printer = lambda text: print(pygmentizer.render(text))
|
|
48
|
+
default_function = ansidocs.isatty and pygment_printer or print
|
|
49
|
+
|
|
50
|
+
def boilerplate_command(function=default_function):
|
|
44
51
|
""" Write out the boilerplate code for a CLU python module file """
|
|
45
52
|
function(boilerplate)
|
|
46
53
|
return os.EX_OK
|
|
@@ -1,8 +1,16 @@
|
|
|
1
1
|
# -*- coding: utf-8 -*-
|
|
2
2
|
from __future__ import print_function
|
|
3
|
-
import sys, os
|
|
3
|
+
import sys, os
|
|
4
4
|
|
|
5
5
|
def boilerplate_copy_command(): # pragma: no cover
|
|
6
|
+
""" Actually execute the copy-to-clipboard operation """
|
|
7
|
+
try:
|
|
8
|
+
import xerox
|
|
9
|
+
except (ImportError, ModuleNotFoundError) as exc:
|
|
10
|
+
print("ERROR: This module requires the “xerox” module.")
|
|
11
|
+
print("ERROR: Install “xerox” into your Python enviroment to use it!")
|
|
12
|
+
sys.exit(os.EX_CONFIG)
|
|
13
|
+
|
|
6
14
|
from clu.repl.cli import boilerplate
|
|
7
15
|
return boilerplate.boilerplate_command(function=xerox.copy)
|
|
8
16
|
|
|
@@ -13,4 +21,4 @@ if __name__ == '__main__':
|
|
|
13
21
|
print("Boilerplate copied successfully")
|
|
14
22
|
else:
|
|
15
23
|
raise OSError(f"bad return value: {out}")
|
|
16
|
-
sys.exit(out)
|
|
24
|
+
sys.exit(out)
|
|
@@ -11,12 +11,9 @@ nox.options.stop_on_first_error = True
|
|
|
11
11
|
nox.options.keywords = tuple()
|
|
12
12
|
|
|
13
13
|
# Skip manifest check if we’re not running in a Git repo:
|
|
14
|
-
from clu.predicates import tuplize
|
|
15
14
|
from clu.version.git_version import are_we_gitted
|
|
16
|
-
if not are_we_gitted():
|
|
17
|
-
nox.options.keywords += tuplize("not checkmanifest")
|
|
18
15
|
|
|
19
|
-
@nox.session
|
|
16
|
+
@nox.session(default=are_we_gitted())
|
|
20
17
|
def checkmanifest(session):
|
|
21
18
|
""" Check CLU’s MANIFEST.in against the Git HEAD """
|
|
22
19
|
session.install("-r", "requirements/nox/manifest.txt")
|
|
@@ -24,7 +24,7 @@ email = "fish2000@gmail.com"
|
|
|
24
24
|
clu-version = 'clu.repl.cli.print_version:print_version_command'
|
|
25
25
|
clu-ansidocs = 'clu.repl.cli.ansidocs:ansidocs_command'
|
|
26
26
|
clu-boilerplate = 'clu.repl.cli.boilerplate:boilerplate_command'
|
|
27
|
-
clu-boilercopy = 'clu.repl.cli.
|
|
27
|
+
clu-boilercopy = 'clu.repl.cli.boilerplate_copy:boilerplate_copy_command'
|
|
28
28
|
|
|
29
29
|
[project.entry-points.pytest11]
|
|
30
30
|
clu-testing = 'clu.testing.pytest'
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[console_scripts]
|
|
2
2
|
clu-ansidocs = clu.repl.cli.ansidocs:ansidocs_command
|
|
3
|
-
clu-boilercopy = clu.repl.cli.
|
|
3
|
+
clu-boilercopy = clu.repl.cli.boilerplate_copy:boilerplate_copy_command
|
|
4
4
|
clu-boilerplate = clu.repl.cli.boilerplate:boilerplate_command
|
|
5
5
|
clu-version = clu.repl.cli.print_version:print_version_command
|
|
6
6
|
|
|
@@ -61,7 +61,7 @@ ENTRY_POINTS = {
|
|
|
61
61
|
'console_scripts' : [ 'clu-version = clu.repl.cli.print_version:print_version_command',
|
|
62
62
|
'clu-ansidocs = clu.repl.cli.ansidocs:ansidocs_command',
|
|
63
63
|
'clu-boilerplate = clu.repl.cli.boilerplate:boilerplate_command',
|
|
64
|
-
'clu-boilercopy = clu.repl.cli.
|
|
64
|
+
'clu-boilercopy = clu.repl.cli.boilerplate_copy:boilerplate_copy_command'],
|
|
65
65
|
'pytest11' : [ 'clu-testing = clu.testing.pytest']
|
|
66
66
|
}
|
|
67
67
|
|
|
@@ -84,7 +84,7 @@ try:
|
|
|
84
84
|
'__version__.py')).read(),
|
|
85
85
|
'__version__.py', 'exec'))
|
|
86
86
|
except:
|
|
87
|
-
__version__ = '0.12.
|
|
87
|
+
__version__ = '0.12.20'
|
|
88
88
|
|
|
89
89
|
# PROJECT DESCRIPTION
|
|
90
90
|
LONG_DESCRIPTION = project_content('ABOUT.md')
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = '0.12.18'
|
|
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.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff
RENAMED
|
File without changes
|
{python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff2
RENAMED
|
File without changes
|
{python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff
RENAMED
|
File without changes
|
|
File without changes
|
{python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/fontawesome-webfont.eot
RENAMED
|
File without changes
|
{python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/fontawesome-webfont.svg
RENAMED
|
File without changes
|
{python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/fontawesome-webfont.ttf
RENAMED
|
File without changes
|
{python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/fontawesome-webfont.woff
RENAMED
|
File without changes
|
|
File without changes
|
{python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/lato-bold-italic.woff
RENAMED
|
File without changes
|
{python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/lato-bold-italic.woff2
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/lato-normal-italic.woff
RENAMED
|
File without changes
|
{python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/lato-normal-italic.woff2
RENAMED
|
File without changes
|
{python_clu-0.12.18 → python_clu-0.12.20}/docs/build/html/_static/css/fonts/lato-normal.woff
RENAMED
|
File without changes
|
{python_clu-0.12.18 → python_clu-0.12.20}/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.18 → python_clu-0.12.20}/docs/build/html/_static/js/html5shiv-printshiv.min.js
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|