python-clu 0.12.23__tar.gz → 0.12.25__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.
Files changed (287) hide show
  1. {python_clu-0.12.23 → python_clu-0.12.25}/.bumpversion.toml +3 -3
  2. {python_clu-0.12.23 → python_clu-0.12.25}/CHANGELOG.md +45 -0
  3. {python_clu-0.12.23 → python_clu-0.12.25}/CITATION.cff +5 -4
  4. {python_clu-0.12.23 → python_clu-0.12.25}/MANIFEST.in +1 -0
  5. {python_clu-0.12.23 → python_clu-0.12.25}/PKG-INFO +1 -1
  6. python_clu-0.12.25/clu/__version__.py +1 -0
  7. {python_clu-0.12.23 → python_clu-0.12.25}/noxfile.py +2 -2
  8. {python_clu-0.12.23 → python_clu-0.12.25}/pyproject.toml +1 -1
  9. {python_clu-0.12.23 → python_clu-0.12.25}/python_clu.egg-info/PKG-INFO +1 -1
  10. {python_clu-0.12.23 → python_clu-0.12.25}/setup.py +1 -1
  11. python_clu-0.12.23/clu/__version__.py +0 -1
  12. {python_clu-0.12.23 → python_clu-0.12.25}/.coveragerc +0 -0
  13. {python_clu-0.12.23 → python_clu-0.12.25}/.editorconfig +0 -0
  14. {python_clu-0.12.23 → python_clu-0.12.25}/.gitchangelog.rc +0 -0
  15. {python_clu-0.12.23 → python_clu-0.12.25}/.gitignore +0 -0
  16. {python_clu-0.12.23 → python_clu-0.12.25}/.landscape.yml +0 -0
  17. {python_clu-0.12.23 → python_clu-0.12.25}/.travis.yml +0 -0
  18. {python_clu-0.12.23 → python_clu-0.12.25}/ABOUT.md +0 -0
  19. {python_clu-0.12.23 → python_clu-0.12.25}/CLASSIFIERS.txt +0 -0
  20. {python_clu-0.12.23 → python_clu-0.12.25}/CLU_Treatment.md +0 -0
  21. {python_clu-0.12.23 → python_clu-0.12.25}/CODE_OF_CONDUCT.md +0 -0
  22. {python_clu-0.12.23 → python_clu-0.12.25}/LICENSE.txt +0 -0
  23. {python_clu-0.12.23 → python_clu-0.12.25}/Makefile +0 -0
  24. {python_clu-0.12.23 → python_clu-0.12.25}/README.md +0 -0
  25. {python_clu-0.12.23 → python_clu-0.12.25}/appveyor.yml +0 -0
  26. {python_clu-0.12.23 → python_clu-0.12.25}/clu/__init__.py +0 -0
  27. {python_clu-0.12.23 → python_clu-0.12.25}/clu/__main__.py +0 -0
  28. {python_clu-0.12.23 → python_clu-0.12.25}/clu/abstract.py +0 -0
  29. {python_clu-0.12.23 → python_clu-0.12.25}/clu/all.py +0 -0
  30. {python_clu-0.12.23 → python_clu-0.12.25}/clu/api/__init__.py +0 -0
  31. {python_clu-0.12.23 → python_clu-0.12.25}/clu/api/__main__.py +0 -0
  32. {python_clu-0.12.23 → python_clu-0.12.25}/clu/application.py +0 -0
  33. {python_clu-0.12.23 → python_clu-0.12.25}/clu/compilation/__init__.py +0 -0
  34. {python_clu-0.12.23 → python_clu-0.12.25}/clu/compilation/compiledb.py +0 -0
  35. {python_clu-0.12.23 → python_clu-0.12.25}/clu/compilation/macros.py +0 -0
  36. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/__init__.py +0 -0
  37. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/abc.py +0 -0
  38. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/codecs.py +0 -0
  39. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/env.py +0 -0
  40. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/filebase.py +0 -0
  41. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/formats/__init__.py +0 -0
  42. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/formats/jsonfile.py +0 -0
  43. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/formats/picklefile.py +0 -0
  44. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/formats/tomlfile.py +0 -0
  45. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/formats/yamlfile.py +0 -0
  46. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/keymap.py +0 -0
  47. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/keymaputils.py +0 -0
  48. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/keymapview.py +0 -0
  49. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/legacy/__init__.py +0 -0
  50. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/legacy/base.py +0 -0
  51. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/legacy/fieldtypes.py +0 -0
  52. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/legacy/settings.py +0 -0
  53. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/ns.py +0 -0
  54. {python_clu-0.12.23 → python_clu-0.12.25}/clu/config/proxy.py +0 -0
  55. {python_clu-0.12.23 → python_clu-0.12.25}/clu/constants/__init__.py +0 -0
  56. {python_clu-0.12.23 → python_clu-0.12.25}/clu/constants/__main__.py +0 -0
  57. {python_clu-0.12.23 → python_clu-0.12.25}/clu/constants/consts.py +0 -0
  58. {python_clu-0.12.23 → python_clu-0.12.25}/clu/constants/data.py +0 -0
  59. {python_clu-0.12.23 → python_clu-0.12.25}/clu/constants/enums.py +0 -0
  60. {python_clu-0.12.23 → python_clu-0.12.25}/clu/constants/exceptions.py +0 -0
  61. {python_clu-0.12.23 → python_clu-0.12.25}/clu/constants/polyfills.py +0 -0
  62. {python_clu-0.12.23 → python_clu-0.12.25}/clu/csv.py +0 -0
  63. {python_clu-0.12.23 → python_clu-0.12.25}/clu/dicts.py +0 -0
  64. {python_clu-0.12.23 → python_clu-0.12.25}/clu/dispatch.py +0 -0
  65. {python_clu-0.12.23 → python_clu-0.12.25}/clu/enums.py +0 -0
  66. {python_clu-0.12.23 → python_clu-0.12.25}/clu/exporting.py +0 -0
  67. {python_clu-0.12.23 → python_clu-0.12.25}/clu/extending.py +0 -0
  68. {python_clu-0.12.23 → python_clu-0.12.25}/clu/fs/__init__.py +0 -0
  69. {python_clu-0.12.23 → python_clu-0.12.25}/clu/fs/abc.py +0 -0
  70. {python_clu-0.12.23 → python_clu-0.12.25}/clu/fs/appdirectories.py +0 -0
  71. {python_clu-0.12.23 → python_clu-0.12.25}/clu/fs/filesystem.py +0 -0
  72. {python_clu-0.12.23 → python_clu-0.12.25}/clu/fs/misc.py +0 -0
  73. {python_clu-0.12.23 → python_clu-0.12.25}/clu/fs/pypath.py +0 -0
  74. {python_clu-0.12.23 → python_clu-0.12.25}/clu/fs/sourcetree.py +0 -0
  75. {python_clu-0.12.23 → python_clu-0.12.25}/clu/importing/__init__.py +0 -0
  76. {python_clu-0.12.23 → python_clu-0.12.25}/clu/importing/__main__.py +0 -0
  77. {python_clu-0.12.23 → python_clu-0.12.25}/clu/importing/base.py +0 -0
  78. {python_clu-0.12.23 → python_clu-0.12.25}/clu/importing/proxy.py +0 -0
  79. {python_clu-0.12.23 → python_clu-0.12.25}/clu/keyvalue.py +0 -0
  80. {python_clu-0.12.23 → python_clu-0.12.25}/clu/mathematics.py +0 -0
  81. {python_clu-0.12.23 → python_clu-0.12.25}/clu/naming.py +0 -0
  82. {python_clu-0.12.23 → python_clu-0.12.25}/clu/predicates.py +0 -0
  83. {python_clu-0.12.23 → python_clu-0.12.25}/clu/repl/__init__.py +0 -0
  84. {python_clu-0.12.23 → python_clu-0.12.25}/clu/repl/ansi.py +0 -0
  85. {python_clu-0.12.23 → python_clu-0.12.25}/clu/repl/banners.py +0 -0
  86. {python_clu-0.12.23 → python_clu-0.12.25}/clu/repl/cli/__init__.py +0 -0
  87. {python_clu-0.12.23 → python_clu-0.12.25}/clu/repl/cli/ansidocs.py +0 -0
  88. {python_clu-0.12.23 → python_clu-0.12.25}/clu/repl/cli/boilerplate.py +0 -0
  89. {python_clu-0.12.23 → python_clu-0.12.25}/clu/repl/cli/boilerplate_copy.py +0 -0
  90. {python_clu-0.12.23 → python_clu-0.12.25}/clu/repl/cli/print_version.py +0 -0
  91. {python_clu-0.12.23 → python_clu-0.12.25}/clu/repl/columnize.py +0 -0
  92. {python_clu-0.12.23 → python_clu-0.12.25}/clu/repl/modules.py +0 -0
  93. {python_clu-0.12.23 → python_clu-0.12.25}/clu/repr.py +0 -0
  94. {python_clu-0.12.23 → python_clu-0.12.25}/clu/sanitizer.py +0 -0
  95. {python_clu-0.12.23 → python_clu-0.12.25}/clu/scripts/.gitignore +0 -0
  96. {python_clu-0.12.23 → python_clu-0.12.25}/clu/scripts/README.md +0 -0
  97. {python_clu-0.12.23 → python_clu-0.12.25}/clu/scripts/__init__.py +0 -0
  98. {python_clu-0.12.23 → python_clu-0.12.25}/clu/scripts/ansicolors.py +0 -0
  99. {python_clu-0.12.23 → python_clu-0.12.25}/clu/scripts/boilerplate.py +0 -0
  100. {python_clu-0.12.23 → python_clu-0.12.25}/clu/scripts/dictroast.py +0 -0
  101. {python_clu-0.12.23 → python_clu-0.12.25}/clu/scripts/legacy/forkumask.py +0 -0
  102. {python_clu-0.12.23 → python_clu-0.12.25}/clu/scripts/legacy/repl-bpython.py +0 -0
  103. {python_clu-0.12.23 → python_clu-0.12.25}/clu/scripts/legacy/repl-ipython.py +0 -0
  104. {python_clu-0.12.23 → python_clu-0.12.25}/clu/scripts/legacy/repl-ptpython.py +0 -0
  105. {python_clu-0.12.23 → python_clu-0.12.25}/clu/scripts/legacy/repl-pyzo.py +0 -0
  106. {python_clu-0.12.23 → python_clu-0.12.25}/clu/scripts/legacy/xdg-runtime.py +0 -0
  107. {python_clu-0.12.23 → python_clu-0.12.25}/clu/scripts/prediversus.py +0 -0
  108. {python_clu-0.12.23 → python_clu-0.12.25}/clu/scripts/repl.py +0 -0
  109. {python_clu-0.12.23 → python_clu-0.12.25}/clu/scripts/treeline.py +0 -0
  110. {python_clu-0.12.23 → python_clu-0.12.25}/clu/shelving/__init__.py +0 -0
  111. {python_clu-0.12.23 → python_clu-0.12.25}/clu/shelving/redat.py +0 -0
  112. {python_clu-0.12.23 → python_clu-0.12.25}/clu/shelving/redis.conf +0 -0
  113. {python_clu-0.12.23 → python_clu-0.12.25}/clu/stdio.py +0 -0
  114. {python_clu-0.12.23 → python_clu-0.12.25}/clu/testing/__init__.py +0 -0
  115. {python_clu-0.12.23 → python_clu-0.12.25}/clu/testing/hook.py +0 -0
  116. {python_clu-0.12.23 → python_clu-0.12.25}/clu/testing/obsolete.py +0 -0
  117. {python_clu-0.12.23 → python_clu-0.12.25}/clu/testing/pytest.py +0 -0
  118. {python_clu-0.12.23 → python_clu-0.12.25}/clu/testing/utils.py +0 -0
  119. {python_clu-0.12.23 → python_clu-0.12.25}/clu/trie.py +0 -0
  120. {python_clu-0.12.23 → python_clu-0.12.25}/clu/typespace/__init__.py +0 -0
  121. {python_clu-0.12.23 → python_clu-0.12.25}/clu/typespace/__main__.py +0 -0
  122. {python_clu-0.12.23 → python_clu-0.12.25}/clu/typespace/namespace.py +0 -0
  123. {python_clu-0.12.23 → python_clu-0.12.25}/clu/typology.py +0 -0
  124. {python_clu-0.12.23 → python_clu-0.12.25}/clu/version/__init__.py +0 -0
  125. {python_clu-0.12.23 → python_clu-0.12.25}/clu/version/__main__.py +0 -0
  126. {python_clu-0.12.23 → python_clu-0.12.25}/clu/version/git_version.py +0 -0
  127. {python_clu-0.12.23 → python_clu-0.12.25}/clu/version/read_version.py +0 -0
  128. {python_clu-0.12.23 → python_clu-0.12.25}/codecov.yml +0 -0
  129. {python_clu-0.12.23 → python_clu-0.12.25}/conftest.py +0 -0
  130. {python_clu-0.12.23 → python_clu-0.12.25}/docs/.DS_Store +0 -0
  131. {python_clu-0.12.23 → python_clu-0.12.25}/docs/Makefile +0 -0
  132. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/doctrees/api.doctree +0 -0
  133. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/doctrees/environment.pickle +0 -0
  134. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/doctrees/generated/clu.doctree +0 -0
  135. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/doctrees/index.doctree +0 -0
  136. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/.buildinfo +0 -0
  137. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_sources/api.rst.txt +0 -0
  138. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_sources/generated/clu.rst.txt +0 -0
  139. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_sources/index.rst.txt +0 -0
  140. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/_sphinx_javascript_frameworks_compat.js +0 -0
  141. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/alabaster.css +0 -0
  142. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/basic.css +0 -0
  143. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/badge_only.css +0 -0
  144. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff +0 -0
  145. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/Roboto-Slab-Bold.woff2 +0 -0
  146. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff +0 -0
  147. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/Roboto-Slab-Regular.woff2 +0 -0
  148. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/fontawesome-webfont.eot +0 -0
  149. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/fontawesome-webfont.svg +0 -0
  150. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/fontawesome-webfont.ttf +0 -0
  151. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/fontawesome-webfont.woff +0 -0
  152. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/fontawesome-webfont.woff2 +0 -0
  153. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/lato-bold-italic.woff +0 -0
  154. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/lato-bold-italic.woff2 +0 -0
  155. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/lato-bold.woff +0 -0
  156. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/lato-bold.woff2 +0 -0
  157. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/lato-normal-italic.woff +0 -0
  158. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/lato-normal-italic.woff2 +0 -0
  159. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/lato-normal.woff +0 -0
  160. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/fonts/lato-normal.woff2 +0 -0
  161. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/css/theme.css +0 -0
  162. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/custom.css +0 -0
  163. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/doctools.js +0 -0
  164. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/documentation_options.js +0 -0
  165. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/file.png +0 -0
  166. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/jquery-3.6.0.js +0 -0
  167. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/jquery.js +0 -0
  168. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/js/badge_only.js +0 -0
  169. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/js/html5shiv-printshiv.min.js +0 -0
  170. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/js/html5shiv.min.js +0 -0
  171. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/js/theme.js +0 -0
  172. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/language_data.js +0 -0
  173. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/minus.png +0 -0
  174. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/plus.png +0 -0
  175. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/pygments.css +0 -0
  176. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/searchtools.js +0 -0
  177. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/underscore-1.13.1.js +0 -0
  178. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/_static/underscore.js +0 -0
  179. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/api.html +0 -0
  180. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/generated/clu.html +0 -0
  181. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/genindex.html +0 -0
  182. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/index.html +0 -0
  183. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/objects.inv +0 -0
  184. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/py-modindex.html +0 -0
  185. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/search.html +0 -0
  186. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/html/searchindex.js +0 -0
  187. {python_clu-0.12.23 → python_clu-0.12.25}/docs/build/man/clu.1 +0 -0
  188. {python_clu-0.12.23 → python_clu-0.12.25}/docs/make.bat +0 -0
  189. {python_clu-0.12.23 → python_clu-0.12.25}/docs/source/api.rst +0 -0
  190. {python_clu-0.12.23 → python_clu-0.12.25}/docs/source/conf.py +0 -0
  191. {python_clu-0.12.23 → python_clu-0.12.25}/docs/source/generated/clu.rst +0 -0
  192. {python_clu-0.12.23 → python_clu-0.12.25}/docs/source/index.rst +0 -0
  193. {python_clu-0.12.23 → python_clu-0.12.25}/hooks/autohook.sh +0 -0
  194. {python_clu-0.12.23 → python_clu-0.12.25}/hooks/post-push/00-coverage.sh +0 -0
  195. {python_clu-0.12.23 → python_clu-0.12.25}/hooks/pre-push/00-noop.sh +0 -0
  196. {python_clu-0.12.23 → python_clu-0.12.25}/hooks/pre-push/01-direnv-stdlib.sh +0 -0
  197. {python_clu-0.12.23 → python_clu-0.12.25}/hooks/scripts/coverage.sh +0 -0
  198. {python_clu-0.12.23 → python_clu-0.12.25}/hooks/scripts/display-issues.sh +0 -0
  199. {python_clu-0.12.23 → python_clu-0.12.25}/hooks/scripts/git-pushex +0 -0
  200. {python_clu-0.12.23 → python_clu-0.12.25}/hooks/scripts/noop.sh +0 -0
  201. {python_clu-0.12.23 → python_clu-0.12.25}/mypy.ini +0 -0
  202. {python_clu-0.12.23 → python_clu-0.12.25}/python_clu.egg-info/SOURCES.txt +0 -0
  203. {python_clu-0.12.23 → python_clu-0.12.25}/python_clu.egg-info/dependency_links.txt +0 -0
  204. {python_clu-0.12.23 → python_clu-0.12.25}/python_clu.egg-info/entry_points.txt +0 -0
  205. {python_clu-0.12.23 → python_clu-0.12.25}/python_clu.egg-info/requires.txt +0 -0
  206. {python_clu-0.12.23 → python_clu-0.12.25}/python_clu.egg-info/top_level.txt +0 -0
  207. {python_clu-0.12.23 → python_clu-0.12.25}/python_clu.egg-info/zip-safe +0 -0
  208. {python_clu-0.12.23 → python_clu-0.12.25}/pytype.cfg +0 -0
  209. {python_clu-0.12.23 → python_clu-0.12.25}/requirements/changelog.txt +0 -0
  210. {python_clu-0.12.23 → python_clu-0.12.25}/requirements/dev.txt +0 -0
  211. {python_clu-0.12.23 → python_clu-0.12.25}/requirements/docs.txt +0 -0
  212. {python_clu-0.12.23 → python_clu-0.12.25}/requirements/install.txt +0 -0
  213. {python_clu-0.12.23 → python_clu-0.12.25}/requirements/nox/codecov.txt +0 -0
  214. {python_clu-0.12.23 → python_clu-0.12.25}/requirements/nox/docs.txt +0 -0
  215. {python_clu-0.12.23 → python_clu-0.12.25}/requirements/nox/manifest.txt +0 -0
  216. {python_clu-0.12.23 → python_clu-0.12.25}/requirements/nox/pyproject.txt +0 -0
  217. {python_clu-0.12.23 → python_clu-0.12.25}/requirements/nox/repl.txt +0 -0
  218. {python_clu-0.12.23 → python_clu-0.12.25}/requirements/nox/tests.txt +0 -0
  219. {python_clu-0.12.23 → python_clu-0.12.25}/requirements/tox.txt +0 -0
  220. {python_clu-0.12.23 → python_clu-0.12.25}/requirements/typecheck.txt +0 -0
  221. {python_clu-0.12.23 → python_clu-0.12.25}/scratch/direnv_transformed_env.py +0 -0
  222. {python_clu-0.12.23 → python_clu-0.12.25}/scratch/images/clu-module-list-example-small.jpg +0 -0
  223. {python_clu-0.12.23 → python_clu-0.12.25}/scratch/images/clu-module-list-example.jpg +0 -0
  224. {python_clu-0.12.23 → python_clu-0.12.25}/scratch/images/clu-module-list-example.pxd +0 -0
  225. {python_clu-0.12.23 → python_clu-0.12.25}/scratch/images/clu-testing-time-totals-example-small.jpg +0 -0
  226. {python_clu-0.12.23 → python_clu-0.12.25}/scratch/images/clu-testing-time-totals-example.jpg +0 -0
  227. {python_clu-0.12.23 → python_clu-0.12.25}/scratch/images/clu-testing-time-totals-example.pxd +0 -0
  228. {python_clu-0.12.23 → python_clu-0.12.25}/scratch/images/construx-and-capsela-small.jpg +0 -0
  229. {python_clu-0.12.23 → python_clu-0.12.25}/scratch/images/construx-and-capsela.jpg +0 -0
  230. {python_clu-0.12.23 → python_clu-0.12.25}/scratch/images/construx-and-capsela.pxd +0 -0
  231. {python_clu-0.12.23 → python_clu-0.12.25}/scratch/images/moira.png +0 -0
  232. {python_clu-0.12.23 → python_clu-0.12.25}/scratch/images/toml-module-rant.jpg +0 -0
  233. {python_clu-0.12.23 → python_clu-0.12.25}/scratch/inline-tests-ImportError-uggggh.ipynb +0 -0
  234. {python_clu-0.12.23 → python_clu-0.12.25}/scratch/nteract.ipynb +0 -0
  235. {python_clu-0.12.23 → python_clu-0.12.25}/setup.cfg +0 -0
  236. {python_clu-0.12.23 → python_clu-0.12.25}/tests/__init__.py +0 -0
  237. {python_clu-0.12.23 → python_clu-0.12.25}/tests/data/1-58.jpg +0 -0
  238. {python_clu-0.12.23 → python_clu-0.12.25}/tests/data/3471426989_aa8e83cac5_o.jpg +0 -0
  239. {python_clu-0.12.23 → python_clu-0.12.25}/tests/data/3472236406_1fbf1a567d_o.jpg +0 -0
  240. {python_clu-0.12.23 → python_clu-0.12.25}/tests/data/8600JC.jpg +0 -0
  241. {python_clu-0.12.23 → python_clu-0.12.25}/tests/data/8ba.png +0 -0
  242. {python_clu-0.12.23 → python_clu-0.12.25}/tests/data/IMG_20180505_205153567.jpg +0 -0
  243. {python_clu-0.12.23 → python_clu-0.12.25}/tests/data/cheetah-003.jpg +0 -0
  244. {python_clu-0.12.23 → python_clu-0.12.25}/tests/data/config/clu-config.toml +0 -0
  245. {python_clu-0.12.23 → python_clu-0.12.25}/tests/data/config/yodogg.toml +0 -0
  246. {python_clu-0.12.23 → python_clu-0.12.25}/tests/data/shutterstock_90194617.jpg +0 -0
  247. {python_clu-0.12.23 → python_clu-0.12.25}/tests/data/yodata/09163d51421853.5608b3c2a1be0.jpg +0 -0
  248. {python_clu-0.12.23 → python_clu-0.12.25}/tests/data/yodata/5d0227342500004e12e3506d.jpg +0 -0
  249. {python_clu-0.12.23 → python_clu-0.12.25}/tests/data/yodata/BlackCat2_large-22.jpg +0 -0
  250. {python_clu-0.12.23 → python_clu-0.12.25}/tests/data/yodogg/Serval_Cat_Kitten-706.jpg +0 -0
  251. {python_clu-0.12.23 → python_clu-0.12.25}/tests/data/yodogg/Servals_Thoiry_19801.jpg +0 -0
  252. {python_clu-0.12.23 → python_clu-0.12.25}/tests/data/yodogg/video-pride-serval.jpg +0 -0
  253. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_abstract.py +0 -0
  254. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_all.py +0 -0
  255. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_boilerplate.py +0 -0
  256. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_config.py +0 -0
  257. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_config_abc.py +0 -0
  258. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_config_ns_matching.py +0 -0
  259. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_csv.py +0 -0
  260. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_dicts.py +0 -0
  261. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_dispatch.py +0 -0
  262. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_enum_aliases.py +0 -0
  263. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_exporting.py +0 -0
  264. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_extending.py +0 -0
  265. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_fs_abc.py +0 -0
  266. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_fs_appdirectories.py +0 -0
  267. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_fs_filesystem.py +0 -0
  268. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_fs_misc.py +0 -0
  269. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_importing.py +0 -0
  270. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_keyvalue.py +0 -0
  271. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_mathematics.py +0 -0
  272. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_naming.py +0 -0
  273. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_predicates.py +0 -0
  274. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_repl_columnize.py +0 -0
  275. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_repl_modules.py +0 -0
  276. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_repr.py +0 -0
  277. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_scripts_repl.py +0 -0
  278. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_typespace_namespace.py +0 -0
  279. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_typology.py +0 -0
  280. {python_clu-0.12.23 → python_clu-0.12.25}/tests/test_version.py +0 -0
  281. {python_clu-0.12.23 → python_clu-0.12.25}/tests/yodogg/.tm_properties +0 -0
  282. {python_clu-0.12.23 → python_clu-0.12.25}/tests/yodogg/__init__.py +0 -0
  283. {python_clu-0.12.23 → python_clu-0.12.25}/tests/yodogg/yodogg/__init__.py +0 -0
  284. {python_clu-0.12.23 → python_clu-0.12.25}/tests/yodogg/yodogg/config.py +0 -0
  285. {python_clu-0.12.23 → python_clu-0.12.25}/tests/yodogg/yodogg/exporting.py +0 -0
  286. {python_clu-0.12.23 → python_clu-0.12.25}/tests/yodogg/yodogg/iheard.py +0 -0
  287. {python_clu-0.12.23 → python_clu-0.12.25}/tox.ini +0 -0
@@ -1,6 +1,6 @@
1
1
 
2
2
  [tool.bumpversion]
3
- current_version = "0.12.23"
3
+ current_version = "0.12.25"
4
4
  parse = "(?P<major>\\d+)\\.(?P<minor>\\d+)\\.(?P<patch>\\d+)"
5
5
  serialize = ["{major}.{minor}.{patch}"]
6
6
  search = "{current_version}"
@@ -38,6 +38,6 @@ replace = """version: {new_version}"""
38
38
 
39
39
  [[tool.bumpversion.files]]
40
40
  filename = "CITATION.cff"
41
- search = """date-released: \\d{{4}}"""
42
- replace = """date-released: {now:%Y}"""
41
+ search = """date-released: "\\d{{4}}-\\d{{2}}-\\d{{2}}""""
42
+ replace = """date-released: "{now:%Y-%m-%d}""""
43
43
  regex = true
@@ -1,6 +1,51 @@
1
1
  # Changelog
2
2
 
3
3
 
4
+ ## 0.12.24:pre2+g0e186a1 [SNAPSHOT]
5
+
6
+ ### Other
7
+
8
+ * Re-enabling temp-file cleanup after running pytest. [Alexander Böhn]
9
+
10
+ * Noxfile label update … a trifiling matter but it assuages my OCD, and so. [Alexander Böhn]
11
+
12
+
13
+ ## v0.12.24 (2026-08-18)
14
+
15
+ ### Bump
16
+
17
+ * Bumped version: 0.12.23 → 0.12.24. [Alexander Böhn]
18
+
19
+ ### Add
20
+
21
+ * Adding `pip` as an explict `pyproject.toml` requirement. [Alexander Böhn]
22
+
23
+ * Added `uv.lock` file … OK, let’s see how this goes. [Alexander Böhn]
24
+
25
+ ### Other
26
+
27
+ * [make] Changelog updated @ 583bcc6. [Alexander Böhn]
28
+
29
+ * [make] Changelog updated @ 1d52c39. [Alexander Böhn]
30
+
31
+ * Got the date format backwards in `CITATION.cff` [Alexander Böhn]
32
+
33
+ * Keeping `uv.lock` out of packages and wheels. [Alexander Böhn]
34
+
35
+ * Further expanded `CITATION.cff` and related `.bumpversion.toml` settings … dates are now proper precise dates, and additional settings have been added. Yes! [Alexander Böhn]
36
+
37
+
38
+ ## v0.12.23 (2026-08-18)
39
+
40
+ ### Bump
41
+
42
+ * Bumped version: 0.12.22 → 0.12.23. [Alexander Böhn]
43
+
44
+ ### Other
45
+
46
+ * [make] Changelog updated @ 49698e8. [Alexander Böhn]
47
+
48
+
4
49
  ## v0.12.22 (2026-08-18)
5
50
 
6
51
  ### Bump
@@ -4,7 +4,8 @@ authors:
4
4
  - family-names: "Böhn"
5
5
  given-names: "Alexander"
6
6
  orcid: "https://orcid.org/0009-0007-9645-1744"
7
- title: "CLU"
8
- version: 0.12.23
9
- date-released: 2026
10
- url: "https://github.com/fish2000/CLU"
7
+ title: "Python-CLU"
8
+ version: 0.12.25
9
+ date-released: "2026-09-24"
10
+ url: "https://github.com/fish2000/CLU"
11
+ repository-code: "https://github.com/fish2000/CLU"
@@ -40,6 +40,7 @@ exclude .coverage
40
40
  exclude .envrc
41
41
  exclude .noxresults.json
42
42
  exclude coverage.xml
43
+ exclude uv.lock
43
44
 
44
45
  recursive-exclude clu *.pyc *~ *.so .DS_Store
45
46
  recursive-exclude docs *.pyc *~ *.so .DS_Store
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-clu
3
- Version: 0.12.23
3
+ Version: 0.12.25
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
@@ -0,0 +1 @@
1
+ __version__ = '0.12.25'
@@ -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 pyproject.toml """
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', '--no-delete-temps')
52
+ session.run('pytest', '--delete-temps')
53
53
 
54
54
  def parametrized_inline_tests():
55
55
  import clu.all
@@ -1,5 +1,5 @@
1
1
  [build-system]
2
- requires = ["setuptools", "wheel", "build"]
2
+ requires = ["setuptools", "pip", "wheel", "build"]
3
3
  build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-clu
3
- Version: 0.12.23
3
+ Version: 0.12.25
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
@@ -84,7 +84,7 @@ try:
84
84
  '__version__.py')).read(),
85
85
  '__version__.py', 'exec'))
86
86
  except:
87
- __version__ = '0.12.23'
87
+ __version__ = '0.12.25'
88
88
 
89
89
  # PROJECT DESCRIPTION
90
90
  LONG_DESCRIPTION = project_content('ABOUT.md')
@@ -1 +0,0 @@
1
- __version__ = '0.12.23'
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