pybear 0.2.3__tar.gz → 0.2.4__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 (1164) hide show
  1. {pybear-0.2.3 → pybear-0.2.4}/CHANGELOG.md +20 -0
  2. pybear-0.2.3/README.rst → pybear-0.2.4/PKG-INFO +220 -39
  3. pybear-0.2.3/PKG-INFO → pybear-0.2.4/README.rst +151 -71
  4. pybear-0.2.4/pyproject.toml +139 -0
  5. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_AutoTextCleaner/AutoTextCleaner.py +38 -4
  6. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_NGramMerger/NGramMerger.py +34 -0
  7. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_StopRemover/StopRemover.py +34 -0
  8. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJoiner/TextJoiner.py +34 -0
  9. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJustifier/TextJustifier.py +34 -0
  10. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/TextLookup.py +36 -4
  11. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/TextLookupRealTime.py +36 -4
  12. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextNormalizer/TextNormalizer.py +34 -2
  13. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextNormalizer → pybear-0.2.4/src/pybear/feature_extraction/text/_TextNormalizer/_transform}/_transform.py +1 -1
  14. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextNormalizer → pybear-0.2.4/src/pybear/feature_extraction/text/_TextNormalizer/_validation}/_validation.py +3 -3
  15. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextPadder/TextPadder.py +33 -1
  16. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextPadder → pybear-0.2.4/src/pybear/feature_extraction/text/_TextPadder/_validation}/_validation.py +4 -4
  17. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextRemover/TextRemover.py +41 -8
  18. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextRemover → pybear-0.2.4/src/pybear/feature_extraction/text/_TextRemover/_transform}/_regexp_1D_core.py +1 -1
  19. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextRemover → pybear-0.2.4/src/pybear/feature_extraction/text/_TextRemover/_validation}/_validation.py +7 -7
  20. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextReplacer/TextReplacer.py +32 -0
  21. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextSplitter/TextSplitter.py +34 -2
  22. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextSplitter → pybear-0.2.4/src/pybear/feature_extraction/text/_TextSplitter/_transform}/_regexp_core.py +1 -1
  23. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextSplitter → pybear-0.2.4/src/pybear/feature_extraction/text/_TextSplitter/_validation}/_validation.py +6 -6
  24. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/TextStatistics.py +33 -1
  25. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStripper/TextStripper.py +33 -1
  26. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextStripper → pybear-0.2.4/src/pybear/feature_extraction/text/_TextStripper/_transform}/_transform.py +1 -1
  27. pybear-0.2.4/src/pybear/feature_extraction/text/_TextStripper/_validation/_validation +1 -0
  28. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_ColumnDeduplicator/ColumnDeduplicator.py +32 -0
  29. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_InterceptManager/InterceptManager.py +32 -0
  30. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/MinCountTransformer.py +32 -0
  31. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_NanStandardizer/NanStandardizer.py +35 -0
  32. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/SlimPolyFeatures.py +32 -0
  33. pybear-0.2.4/tests/Transformer_tests_2026_06.ods +0 -0
  34. {pybear-0.2.3 → pybear-0.2.4}/tests/base/mixins/GetParamsMixin_test.py +16 -17
  35. {pybear-0.2.3/tests/feature_extraction/text/TextNormalizer → pybear-0.2.4/tests/feature_extraction/text/TextNormalizer/transform}/transform_test.py +2 -1
  36. {pybear-0.2.3/tests/feature_extraction/text/TextNormalizer → pybear-0.2.4/tests/feature_extraction/text/TextNormalizer/validation}/validation_test.py +2 -1
  37. {pybear-0.2.3/tests/feature_extraction/text/TextRemover → pybear-0.2.4/tests/feature_extraction/text/TextRemover/transform}/regexp_1D_core_test.py +1 -1
  38. {pybear-0.2.3/tests/feature_extraction/text/TextRemover → pybear-0.2.4/tests/feature_extraction/text/TextRemover/validation}/validation_16sec_test.py +1 -1
  39. {pybear-0.2.3/tests/feature_extraction/text/TextSplitter → pybear-0.2.4/tests/feature_extraction/text/TextSplitter/transform}/regexp_core_test.py +2 -1
  40. {pybear-0.2.3/tests/feature_extraction/text/TextSplitter → pybear-0.2.4/tests/feature_extraction/text/TextSplitter/validation}/validation_23sec_test.py +2 -1
  41. {pybear-0.2.3/tests/feature_extraction/text/TextStripper → pybear-0.2.4/tests/feature_extraction/text/TextStripper/transform}/transform_test.py +2 -1
  42. pybear-0.2.4/tests/feature_extraction/text/TextStripper/validation/_validation +1 -0
  43. pybear-0.2.4/tests/feature_extraction/text/do_not_test_check_transformer +1 -0
  44. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/conftest.py +35 -1
  45. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/verification_AutoGridSearchCV_4sec_test.py +1 -1
  46. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/check_transformer_3sec_test.py +2 -4
  47. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/check_transformer_8sec_test.py +0 -2
  48. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/check_transformer_3sec_test.py +4 -4
  49. pybear-0.2.4/tests/preprocessing/MinCountTransformer/set_params/__init__.py +5 -0
  50. pybear-0.2.4/tests/preprocessing/MinCountTransformer/transform/__init__.py +5 -0
  51. pybear-0.2.4/tests/preprocessing/MinCountTransformer/validation/__init__.py +5 -0
  52. pybear-0.2.3/tests/preprocessing/NanStandardizer/accuracy_test.py → pybear-0.2.4/tests/preprocessing/NanStandardizer/NS_4sec_test.py +1 -1
  53. pybear-0.2.4/tests/preprocessing/NanStandardizer/__init__.py +5 -0
  54. pybear-0.2.4/tests/preprocessing/NanStandardizer/check_transformer_5sec_test.py +123 -0
  55. pybear-0.2.4/tests/preprocessing/NanStandardizer/get_feature_names_out +5 -0
  56. pybear-0.2.4/tests/preprocessing/NanStandardizer/pipeline_4sec_test.py +89 -0
  57. pybear-0.2.4/tests/preprocessing/NanStandardizer/transform/__init__.py +5 -0
  58. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/NanStandardizer/transform/transform_test.py +1 -1
  59. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/NanStandardizer/validation/X_test.py +0 -1
  60. pybear-0.2.4/tests/preprocessing/NanStandardizer/validation/__init__.py +5 -0
  61. pybear-0.2.4/tests/preprocessing/SlimPolyFeatures/__init__.py +5 -0
  62. pybear-0.2.4/tests/preprocessing/SlimPolyFeatures/attributes/__init__.py +5 -0
  63. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/check_transformer_6sec_test.py +4 -3
  64. pybear-0.2.4/tests/preprocessing/SlimPolyFeatures/get_feature_names_out/__init__.py +5 -0
  65. pybear-0.2.4/tests/preprocessing/SlimPolyFeatures/partial_fit/__init__.py +5 -0
  66. pybear-0.2.4/tests/preprocessing/SlimPolyFeatures/set_params/__init__.py +5 -0
  67. pybear-0.2.4/tests/preprocessing/SlimPolyFeatures/shared/__init__.py +5 -0
  68. pybear-0.2.4/tests/preprocessing/SlimPolyFeatures/transform/__init__.py +5 -0
  69. pybear-0.2.4/tests/preprocessing/SlimPolyFeatures/validation/__init__.py +5 -0
  70. pybear-0.2.4/tests/preprocessing/__init__.py +5 -0
  71. pybear-0.2.4/tests/preprocessing/_shared/__init__.py +5 -0
  72. pybear-0.2.4/tests/preprocessing/_shared/_validation/__init__.py +5 -0
  73. pybear-0.2.4/tests/pybear_dep_whls_2026_06.ods +0 -0
  74. pybear-0.2.4/tests/utilities/__init__.py +5 -0
  75. pybear-0.2.3/pyproject.toml +0 -83
  76. pybear-0.2.3/tests/preprocessing/MinCountTransformer/print_instructions/_repr_instructions_sandbox.py +0 -68
  77. pybear-0.2.3/tests/preprocessing/NanStandardizer/check_transformer_Xsec_test.py +0 -114
  78. {pybear-0.2.3 → pybear-0.2.4}/LICENSE +0 -0
  79. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/__init__.py +0 -0
  80. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/_version.py +0 -0
  81. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_DictMenuPrint.py +0 -0
  82. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/__init__.py +0 -0
  83. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/__type_aliases.py +0 -0
  84. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_cast_to_ndarray.py +0 -0
  85. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_check_1D_num_sequence.py +0 -0
  86. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_check_1D_str_sequence.py +0 -0
  87. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_check_2D_num_array.py +0 -0
  88. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_check_2D_str_array.py +0 -0
  89. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_check_dtype.py +0 -0
  90. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_check_feature_names.py +0 -0
  91. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_check_is_finite.py +0 -0
  92. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_check_is_fitted.py +0 -0
  93. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_check_n_features.py +0 -0
  94. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_check_scipy_sparse.py +0 -0
  95. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_check_shape.py +0 -0
  96. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_copy_X.py +0 -0
  97. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_ensure_2D.py +0 -0
  98. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_get_feature_names.py +0 -0
  99. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_get_feature_names_out.py +0 -0
  100. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_is_fitted.py +0 -0
  101. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_num_features.py +0 -0
  102. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_num_samples.py +0 -0
  103. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_set_order.py +0 -0
  104. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_validate_data.py +0 -0
  105. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/_validate_user_input.py +0 -0
  106. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/exceptions/__init__.py +0 -0
  107. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/exceptions/_exceptions.py +0 -0
  108. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/mixins/_FeatureMixin.py +0 -0
  109. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/mixins/_FileDumpMixin.py +0 -0
  110. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/mixins/_FitTransformMixin.py +0 -0
  111. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/mixins/_GetParamsMixin.py +0 -0
  112. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/mixins/_ReprMixin.py +0 -0
  113. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/mixins/_SetOutputMixin.py +0 -0
  114. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/mixins/_SetParamsMixin.py +0 -0
  115. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/base/mixins/__init__.py +0 -0
  116. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/__init__.py +0 -0
  117. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/WORDS_TO_DISPOSITION +0 -0
  118. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_AutoTextCleaner/__init__.py +0 -0
  119. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_AutoTextCleaner/_type_aliases.py +0 -0
  120. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_AutoTextCleaner/_validation/__init__.py +0 -0
  121. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_AutoTextCleaner/_validation/_get_statistics.py +0 -0
  122. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_AutoTextCleaner/_validation/_lexicon_lookup.py +0 -0
  123. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_AutoTextCleaner/_validation/_ngram_merge.py +0 -0
  124. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_AutoTextCleaner/_validation/_remove.py +0 -0
  125. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_AutoTextCleaner/_validation/_replace.py +0 -0
  126. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_AutoTextCleaner/_validation/_return_dim.py +0 -0
  127. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_AutoTextCleaner/_validation/_validation.py +0 -0
  128. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/Lexicon.py +0 -0
  129. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/__init__.py +0 -0
  130. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/__init__.py +0 -0
  131. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_A.txt +0 -0
  132. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_B.txt +0 -0
  133. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_C.txt +0 -0
  134. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_D.txt +0 -0
  135. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_E.txt +0 -0
  136. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_F.txt +0 -0
  137. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_G.txt +0 -0
  138. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_H.txt +0 -0
  139. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_I.txt +0 -0
  140. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_J.txt +0 -0
  141. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_K.txt +0 -0
  142. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_L.txt +0 -0
  143. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_M.txt +0 -0
  144. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_N.txt +0 -0
  145. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_O.txt +0 -0
  146. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_P.txt +0 -0
  147. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_Q.txt +0 -0
  148. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_R.txt +0 -0
  149. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_S.txt +0 -0
  150. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_T.txt +0 -0
  151. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_U.txt +0 -0
  152. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_V.txt +0 -0
  153. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_W.txt +0 -0
  154. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_X.txt +0 -0
  155. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_Y.txt +0 -0
  156. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_lexicon/lexicon_Z.txt +0 -0
  157. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_methods/__init__.py +0 -0
  158. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_methods/_add_words.py +0 -0
  159. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_methods/_check_order.py +0 -0
  160. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_methods/_delete_words.py +0 -0
  161. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_methods/_find_duplicates.py +0 -0
  162. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_methods/_identify_sublexicon.py +0 -0
  163. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_methods/_validate_word_input.py +0 -0
  164. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_stop_words/__init__.py +0 -0
  165. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_Lexicon/_stop_words/_stop_words.txt +0 -0
  166. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_NGramMerger/__init__.py +0 -0
  167. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_NGramMerger/_transform/__init__.py +0 -0
  168. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_NGramMerger/_transform/_get_wrap_match_idxs.py +0 -0
  169. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_NGramMerger/_transform/_manage_wrap_idxs.py +0 -0
  170. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_NGramMerger/_transform/_match_finder.py +0 -0
  171. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_NGramMerger/_transform/_replacer.py +0 -0
  172. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_NGramMerger/_transform/_special_param_conditioner.py +0 -0
  173. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_NGramMerger/_transform/_transform.py +0 -0
  174. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_NGramMerger/_transform/_wrap_manager.py +0 -0
  175. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_NGramMerger/_type_aliases.py +0 -0
  176. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_NGramMerger/_validation/__init__.py +0 -0
  177. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_NGramMerger/_validation/_ngcallable.py +0 -0
  178. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_NGramMerger/_validation/_ngrams.py +0 -0
  179. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_NGramMerger/_validation/_validation.py +0 -0
  180. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_StopRemover/__init__.py +0 -0
  181. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_StopRemover/_transform/__init__.py +0 -0
  182. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_StopRemover/_transform/_transform.py +0 -0
  183. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_StopRemover/_type_aliases.py +0 -0
  184. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_StopRemover/_validation/__init__.py +0 -0
  185. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_StopRemover/_validation/_exempt.py +0 -0
  186. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_StopRemover/_validation/_match_callable.py +0 -0
  187. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_StopRemover/_validation/_supplemental.py +0 -0
  188. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_StopRemover/_validation/_validation.py +0 -0
  189. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJoiner/__init__.py +0 -0
  190. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJoiner/_transform/__init__.py +0 -0
  191. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJoiner/_transform/_condition_sep.py +0 -0
  192. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJoiner/_transform/_transform.py +0 -0
  193. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJoiner/_type_aliases.py +0 -0
  194. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJoiner/_validation/__init__.py +0 -0
  195. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJoiner/_validation/_sep.py +0 -0
  196. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJoiner/_validation/_validation.py +0 -0
  197. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJustifier/__init__.py +0 -0
  198. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJustifier/_transform/__init__.py +0 -0
  199. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJustifier/_transform/_sep_lb_finder.py +0 -0
  200. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJustifier/_transform/_splitter.py +0 -0
  201. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJustifier/_transform/_stacker.py +0 -0
  202. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJustifier/_transform/_transform.py +0 -0
  203. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJustifier/_type_aliases.py +0 -0
  204. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJustifier/_validation/__init__.py +0 -0
  205. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJustifier/_validation/_sep_or_line_break.py +0 -0
  206. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextJustifier/_validation/_validation.py +0 -0
  207. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/_TextLookupMixin.py +0 -0
  208. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/__init__.py +0 -0
  209. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/_shared/__init__.py +0 -0
  210. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/_shared/_search_always_list.py +0 -0
  211. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/_shared/_transform/__init__.py +0 -0
  212. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/_shared/_transform/_auto_word_splitter.py +0 -0
  213. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/_shared/_transform/_manual_word_splitter.py +0 -0
  214. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/_shared/_transform/_quasi_auto_word_splitter.py +0 -0
  215. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/_shared/_transform/_word_editor.py +0 -0
  216. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/_shared/_type_aliases.py +0 -0
  217. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/_shared/_validation/__init__.py +0 -0
  218. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/_shared/_validation/_delete_always.py +0 -0
  219. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/_shared/_validation/_replace_always.py +0 -0
  220. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/_shared/_validation/_skip_always.py +0 -0
  221. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/_shared/_validation/_split_always.py +0 -0
  222. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextLookup/_shared/_validation/_validation.py +0 -0
  223. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextNormalizer/__init__.py +0 -0
  224. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextPadder → pybear-0.2.4/src/pybear/feature_extraction/text/_TextNormalizer/_transform}/__init__.py +0 -0
  225. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextNormalizer/_type_aliases.py +0 -0
  226. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextPadder/_partial_fit → pybear-0.2.4/src/pybear/feature_extraction/text/_TextNormalizer/_validation}/__init__.py +0 -0
  227. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextPadder/_transform → pybear-0.2.4/src/pybear/feature_extraction/text/_TextPadder}/__init__.py +0 -0
  228. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextRemover → pybear-0.2.4/src/pybear/feature_extraction/text/_TextPadder/_partial_fit}/__init__.py +0 -0
  229. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextPadder/_partial_fit/_partial_fit.py +0 -0
  230. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextReplacer → pybear-0.2.4/src/pybear/feature_extraction/text/_TextPadder/_transform}/__init__.py +0 -0
  231. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextPadder/_transform/_transform.py +0 -0
  232. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextPadder/_type_aliases.py +0 -0
  233. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextReplacer/_transform → pybear-0.2.4/src/pybear/feature_extraction/text/_TextPadder/_validation}/__init__.py +0 -0
  234. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextReplacer/_validation → pybear-0.2.4/src/pybear/feature_extraction/text/_TextRemover}/__init__.py +0 -0
  235. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextSplitter → pybear-0.2.4/src/pybear/feature_extraction/text/_TextRemover/_transform}/__init__.py +0 -0
  236. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextRemover/_type_aliases.py +0 -0
  237. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextStatistics → pybear-0.2.4/src/pybear/feature_extraction/text/_TextRemover/_validation}/__init__.py +0 -0
  238. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextStatistics/_get → pybear-0.2.4/src/pybear/feature_extraction/text/_TextReplacer}/__init__.py +0 -0
  239. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextStatistics/_lookup → pybear-0.2.4/src/pybear/feature_extraction/text/_TextReplacer/_transform}/__init__.py +0 -0
  240. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextReplacer/_transform/_regexp_1D_core.py +0 -0
  241. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextReplacer/_transform/_special_param_conditioner.py +0 -0
  242. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextReplacer/_type_aliases.py +0 -0
  243. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextStatistics/_partial_fit → pybear-0.2.4/src/pybear/feature_extraction/text/_TextReplacer/_validation}/__init__.py +0 -0
  244. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextReplacer/_validation/_replace.py +0 -0
  245. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextReplacer/_validation/_validation.py +0 -0
  246. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextStatistics/_print → pybear-0.2.4/src/pybear/feature_extraction/text/_TextSplitter}/__init__.py +0 -0
  247. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextStatistics/_validation → pybear-0.2.4/src/pybear/feature_extraction/text/_TextSplitter/_transform}/__init__.py +0 -0
  248. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextSplitter/_type_aliases.py +0 -0
  249. {pybear-0.2.3/src/pybear/feature_extraction/text/_TextStripper → pybear-0.2.4/src/pybear/feature_extraction/text/_TextSplitter/_validation}/__init__.py +0 -0
  250. {pybear-0.2.3/src/pybear/feature_extraction/text/__shared → pybear-0.2.4/src/pybear/feature_extraction/text/_TextStatistics}/__init__.py +0 -0
  251. {pybear-0.2.3/src/pybear/feature_extraction/text/__shared/_param_conditioner → pybear-0.2.4/src/pybear/feature_extraction/text/_TextStatistics/_get}/__init__.py +0 -0
  252. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_get/_get_longest_strings.py +0 -0
  253. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_get/_get_shortest_strings.py +0 -0
  254. {pybear-0.2.3/src/pybear/feature_extraction/text/__shared/_transform → pybear-0.2.4/src/pybear/feature_extraction/text/_TextStatistics/_lookup}/__init__.py +0 -0
  255. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_lookup/_lookup_string.py +0 -0
  256. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_lookup/_lookup_substring.py +0 -0
  257. {pybear-0.2.3/src/pybear/feature_extraction/text/__shared/_utilities → pybear-0.2.4/src/pybear/feature_extraction/text/_TextStatistics/_partial_fit}/__init__.py +0 -0
  258. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_partial_fit/_build_character_frequency.py +0 -0
  259. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_partial_fit/_build_overall_statistics.py +0 -0
  260. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_partial_fit/_build_overall_statistics_OLD.py +0 -0
  261. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_partial_fit/_build_startswith_frequency.py +0 -0
  262. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_partial_fit/_build_string_frequency.py +0 -0
  263. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_partial_fit/_merge_character_frequency.py +0 -0
  264. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_partial_fit/_merge_overall_statistics.py +0 -0
  265. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_partial_fit/_merge_startswith_frequency.py +0 -0
  266. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_partial_fit/_merge_string_frequency.py +0 -0
  267. {pybear-0.2.3/src/pybear/feature_extraction/text/__shared/_validation → pybear-0.2.4/src/pybear/feature_extraction/text/_TextStatistics/_print}/__init__.py +0 -0
  268. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_print/_character_frequency.py +0 -0
  269. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_print/_longest_strings.py +0 -0
  270. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_print/_overall_statistics.py +0 -0
  271. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_print/_shortest_strings.py +0 -0
  272. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_print/_startswith_frequency.py +0 -0
  273. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_print/_string_frequency.py +0 -0
  274. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_type_aliases.py +0 -0
  275. {pybear-0.2.3/src/pybear/model_selection/GSTCV/_GSTCV → pybear-0.2.4/src/pybear/feature_extraction/text/_TextStatistics/_validation}/__init__.py +0 -0
  276. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_validation/_character_frequency.py +0 -0
  277. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_validation/_n.py +0 -0
  278. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_validation/_overall_statistics.py +0 -0
  279. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_validation/_startswith_frequency.py +0 -0
  280. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_validation/_string_frequency.py +0 -0
  281. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_validation/_uniques.py +0 -0
  282. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStatistics/_validation/_validation.py +0 -0
  283. {pybear-0.2.3/src/pybear/model_selection/GSTCV/_GSTCV/_fit → pybear-0.2.4/src/pybear/feature_extraction/text/_TextStripper}/__init__.py +0 -0
  284. {pybear-0.2.3/src/pybear/model_selection/GSTCV/_GSTCV/_validation → pybear-0.2.4/src/pybear/feature_extraction/text/_TextStripper/_transform}/__init__.py +0 -0
  285. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/_TextStripper/_type_aliases.py +0 -0
  286. {pybear-0.2.3/src/pybear/model_selection/GSTCV/_GSTCVMixin → pybear-0.2.4/src/pybear/feature_extraction/text/_TextStripper/_validation}/__init__.py +0 -0
  287. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/__init__.py +0 -0
  288. {pybear-0.2.3/src/pybear/model_selection/GSTCV/_GSTCVMixin/_fit → pybear-0.2.4/src/pybear/feature_extraction/text/__shared}/__init__.py +0 -0
  289. {pybear-0.2.3/src/pybear/model_selection/GSTCV/_GSTCVMixin/_fit/_cv_results → pybear-0.2.4/src/pybear/feature_extraction/text/__shared/_param_conditioner}/__init__.py +0 -0
  290. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/__shared/_param_conditioner/_compile_maker.py +0 -0
  291. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/__shared/_param_conditioner/_flag_maker.py +0 -0
  292. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/__shared/_param_conditioner/_param_conditioner.py +0 -0
  293. {pybear-0.2.3/src/pybear/model_selection/GSTCV/_GSTCVMixin/_param_conditioning → pybear-0.2.4/src/pybear/feature_extraction/text/__shared/_transform}/__init__.py +0 -0
  294. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/__shared/_transform/_map_X_to_list.py +0 -0
  295. {pybear-0.2.3/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation → pybear-0.2.4/src/pybear/feature_extraction/text/__shared/_utilities}/__init__.py +0 -0
  296. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/__shared/_utilities/_view_text_snippet.py +0 -0
  297. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/__shared/_validation/_1D_2D_X.py +0 -0
  298. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/__shared/_validation/_1D_X.py +0 -0
  299. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/__shared/_validation/_2D_X.py +0 -0
  300. {pybear-0.2.3/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_holders → pybear-0.2.4/src/pybear/feature_extraction/text/__shared/_validation}/__init__.py +0 -0
  301. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/__shared/_validation/_any_bool.py +0 -0
  302. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/__shared/_validation/_any_integer.py +0 -0
  303. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/__shared/_validation/_any_string.py +0 -0
  304. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/__shared/_validation/_case_sensitive.py +0 -0
  305. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/__shared/_validation/_compile_holder.py +0 -0
  306. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/__shared/_validation/_flags.py +0 -0
  307. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/__shared/_validation/_pattern_holder.py +0 -0
  308. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/lexicon_appender.py +0 -0
  309. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/feature_extraction/text/variable_finder.py +0 -0
  310. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCV/GSTCV.py +0 -0
  311. {pybear-0.2.3/src/pybear/model_selection/GSTCV → pybear-0.2.4/src/pybear/model_selection/GSTCV/_GSTCV}/__init__.py +0 -0
  312. {pybear-0.2.3/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper → pybear-0.2.4/src/pybear/model_selection/GSTCV/_GSTCV/_fit}/__init__.py +0 -0
  313. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCV/_fit/_estimator_fit_params_helper.py +0 -0
  314. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCV/_fit/_fold_splitter.py +0 -0
  315. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCV/_fit/_get_kfold.py +0 -0
  316. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCV/_fit/_parallelized_fit.py +0 -0
  317. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCV/_fit/_parallelized_scorer.py +0 -0
  318. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCV/_fit/_parallelized_train_scorer.py +0 -0
  319. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCV/_type_aliases.py +0 -0
  320. {pybear-0.2.3/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_demo → pybear-0.2.4/src/pybear/model_selection/GSTCV/_GSTCV/_validation}/__init__.py +0 -0
  321. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCV/_validation/_pre_dispatch.py +0 -0
  322. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCV/_validation/_sk_estimator.py +0 -0
  323. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCV/_validation/_validation.py +0 -0
  324. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCV/_validation/_y.py +0 -0
  325. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_GSTCVMixin.py +0 -0
  326. {pybear-0.2.3/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid → pybear-0.2.4/src/pybear/model_selection/GSTCV/_GSTCVMixin}/__init__.py +0 -0
  327. {pybear-0.2.3/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_bool → pybear-0.2.4/src/pybear/model_selection/GSTCV/_GSTCVMixin/_fit}/__init__.py +0 -0
  328. {pybear-0.2.3/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_drill → pybear-0.2.4/src/pybear/model_selection/GSTCV/_GSTCVMixin/_fit/_cv_results}/__init__.py +0 -0
  329. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_fit/_cv_results/_cv_results_builder.py +0 -0
  330. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_fit/_cv_results/_cv_results_rank_update.py +0 -0
  331. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_fit/_cv_results/_cv_results_score_updater.py +0 -0
  332. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_fit/_cv_results/_cv_results_update.py +0 -0
  333. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_fit/_get_best_thresholds.py +0 -0
  334. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_fit/_verify_refit_callable.py +0 -0
  335. {pybear-0.2.3/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_float → pybear-0.2.4/src/pybear/model_selection/GSTCV/_GSTCVMixin/_param_conditioning}/__init__.py +0 -0
  336. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_param_conditioning/_cv.py +0 -0
  337. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_param_conditioning/_param_grid.py +0 -0
  338. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_param_conditioning/_refit.py +0 -0
  339. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_param_conditioning/_scoring.py +0 -0
  340. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_param_conditioning/_thresholds.py +0 -0
  341. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_param_conditioning/_verbose.py +0 -0
  342. {pybear-0.2.3/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_int → pybear-0.2.4/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation}/__init__.py +0 -0
  343. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_cv.py +0 -0
  344. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_error_score.py +0 -0
  345. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_estimator.py +0 -0
  346. {pybear-0.2.3/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_shift → pybear-0.2.4/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_holders}/__init__.py +0 -0
  347. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_holders/_f_s.py +0 -0
  348. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_holders/_f_t_s.py +0 -0
  349. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_n_jobs.py +0 -0
  350. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_param_grid.py +0 -0
  351. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_param_grid_helper.py +0 -0
  352. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_predict_proba.py +0 -0
  353. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_refit.py +0 -0
  354. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_return_train_score.py +0 -0
  355. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_scoring.py +0 -0
  356. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_thresholds.py +0 -0
  357. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_validation.py +0 -0
  358. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_GSTCVMixin/_validation/_verbose.py +0 -0
  359. {pybear-0.2.3/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_string → pybear-0.2.4/src/pybear/model_selection/GSTCV}/__init__.py +0 -0
  360. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/GSTCV/_type_aliases.py +0 -0
  361. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/__init__.py +0 -0
  362. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/AutoGSTCV.py +0 -0
  363. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/AutoGridSearchCV.py +0 -0
  364. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/__init__.py +0 -0
  365. {pybear-0.2.3/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_validation → pybear-0.2.4/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper}/__init__.py +0 -0
  366. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_build_first_grid_from_params.py +0 -0
  367. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_build_is_logspace.py +0 -0
  368. {pybear-0.2.3/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_param_conditioning → pybear-0.2.4/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_demo}/__init__.py +0 -0
  369. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_demo/_demo.py +0 -0
  370. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_demo/_display_true_best.py +0 -0
  371. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_demo/_make_true_best.py +0 -0
  372. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_demo/_mock_gscv.py +0 -0
  373. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_demo/_validate_true_best.py +0 -0
  374. {pybear-0.2.3/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_validation → pybear-0.2.4/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid}/__init__.py +0 -0
  375. {pybear-0.2.3/src/pybear/preprocessing/_ColumnDeduplicator → pybear-0.2.4/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_bool}/__init__.py +0 -0
  376. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_bool/_bool.py +0 -0
  377. {pybear-0.2.3/src/pybear/preprocessing/_ColumnDeduplicator/_inverse_transform → pybear-0.2.4/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_drill}/__init__.py +0 -0
  378. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_drill/_drill.py +0 -0
  379. {pybear-0.2.3/src/pybear/preprocessing/_ColumnDeduplicator/_partial_fit → pybear-0.2.4/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_float}/__init__.py +0 -0
  380. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_float/_float.py +0 -0
  381. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_float/_float_linspace.py +0 -0
  382. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_float/_float_logspace.py +0 -0
  383. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_get_next_param_grid.py +0 -0
  384. {pybear-0.2.3/src/pybear/preprocessing/_ColumnDeduplicator/_transform → pybear-0.2.4/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_int}/__init__.py +0 -0
  385. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_int/_int.py +0 -0
  386. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_int/_int_grid_mapper.py +0 -0
  387. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_int/_int_linspace_gap_gt_1.py +0 -0
  388. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_int/_int_linspace_gap_gt_1_hard.py +0 -0
  389. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_int/_int_linspace_gap_gt_1_soft.py +0 -0
  390. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_int/_int_linspace_unit_gap.py +0 -0
  391. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_int/_int_logspace_core.py +0 -0
  392. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_int/_int_logspace_gap_gt_1.py +0 -0
  393. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_int/_int_logspace_gap_gt_1_hard.py +0 -0
  394. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_int/_int_logspace_gap_gt_1_soft.py +0 -0
  395. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_int/_int_logspace_unit_gap.py +0 -0
  396. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_regap_logspace.py +0 -0
  397. {pybear-0.2.3/src/pybear/preprocessing/_ColumnDeduplicator/_validation → pybear-0.2.4/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_shift}/__init__.py +0 -0
  398. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_shift/_shift.py +0 -0
  399. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_shift/_shift_grid.py +0 -0
  400. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_shift/_shift_points_and_passes.py +0 -0
  401. {pybear-0.2.3/src/pybear/preprocessing/_InterceptManager → pybear-0.2.4/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_string}/__init__.py +0 -0
  402. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_string/_string.py +0 -0
  403. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_update_phlite.py +0 -0
  404. {pybear-0.2.3/src/pybear/preprocessing/_InterceptManager/_inverse_transform → pybear-0.2.4/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_validation}/__init__.py +0 -0
  405. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_validation/_validate_best_params.py +0 -0
  406. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_validation/_validate_grids.py +0 -0
  407. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_validation/_validate_int_float_linlogspace.py +0 -0
  408. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_validation/_validate_is_logspace.py +0 -0
  409. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_get_next_param_grid/_validation/_validate_phlite.py +0 -0
  410. {pybear-0.2.3/src/pybear/preprocessing/_InterceptManager/_partial_fit → pybear-0.2.4/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_param_conditioning}/__init__.py +0 -0
  411. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_param_conditioning/_conditioning.py +0 -0
  412. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_param_conditioning/_max_shifts.py +0 -0
  413. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_param_conditioning/_params.py +0 -0
  414. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_param_conditioning/_total_passes.py +0 -0
  415. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_print_results.py +0 -0
  416. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_refit_can_be_skipped.py +0 -0
  417. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_type_aliases.py +0 -0
  418. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_type_aliases_bool.py +0 -0
  419. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_type_aliases_float.py +0 -0
  420. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_type_aliases_int.py +0 -0
  421. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_type_aliases_num.py +0 -0
  422. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_type_aliases_str.py +0 -0
  423. {pybear-0.2.3/src/pybear/preprocessing/_InterceptManager/_shared → pybear-0.2.4/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_validation}/__init__.py +0 -0
  424. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_validation/_agscv_verbose.py +0 -0
  425. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_validation/_max_shifts.py +0 -0
  426. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_validation/_params.py +0 -0
  427. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_validation/_params_bool.py +0 -0
  428. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_validation/_params_numerical.py +0 -0
  429. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_validation/_params_string.py +0 -0
  430. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_validation/_total_passes.py +0 -0
  431. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_validation/_total_passes_is_hard.py +0 -0
  432. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/_autogridsearch_wrapper/_validation/_validation.py +0 -0
  433. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/autogridsearch_docs.py +0 -0
  434. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/model_selection/autogridsearch/autogridsearch_wrapper.py +0 -0
  435. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/new_numpy/__init__.py +0 -0
  436. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/new_numpy/random/__init__.py +0 -0
  437. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/new_numpy/random/_random_.py +0 -0
  438. {pybear-0.2.3/src/pybear/preprocessing/_InterceptManager/_transform → pybear-0.2.4/src/pybear/preprocessing/_ColumnDeduplicator}/__init__.py +0 -0
  439. {pybear-0.2.3/src/pybear/preprocessing/_InterceptManager/_validation → pybear-0.2.4/src/pybear/preprocessing/_ColumnDeduplicator/_inverse_transform}/__init__.py +0 -0
  440. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_ColumnDeduplicator/_inverse_transform/_inverse_transform.py +0 -0
  441. {pybear-0.2.3/src/pybear/preprocessing/_MinCountTransformer → pybear-0.2.4/src/pybear/preprocessing/_ColumnDeduplicator/_partial_fit}/__init__.py +0 -0
  442. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_ColumnDeduplicator/_partial_fit/_columns_getter.py +0 -0
  443. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_ColumnDeduplicator/_partial_fit/_find_duplicates.py +0 -0
  444. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_ColumnDeduplicator/_partial_fit/_identify_idxs_to_delete.py +0 -0
  445. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_ColumnDeduplicator/_partial_fit/_lock_in_random_idxs.py +0 -0
  446. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_ColumnDeduplicator/_partial_fit/_merge_dupls.py +0 -0
  447. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_ColumnDeduplicator/_partial_fit/_parallel_chunk_comparer.py +0 -0
  448. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_ColumnDeduplicator/_partial_fit/_parallel_column_comparer.py +0 -0
  449. {pybear-0.2.3/src/pybear/preprocessing/_MinCountTransformer/_make_instructions → pybear-0.2.4/src/pybear/preprocessing/_ColumnDeduplicator/_transform}/__init__.py +0 -0
  450. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_ColumnDeduplicator/_transform/_transform.py +0 -0
  451. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_ColumnDeduplicator/_type_aliases.py +0 -0
  452. {pybear-0.2.3/src/pybear/preprocessing/_MinCountTransformer/_make_instructions → pybear-0.2.4/src/pybear/preprocessing/_ColumnDeduplicator}/_validation/__init__.py +0 -0
  453. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_ColumnDeduplicator/_validation/_conflict.py +0 -0
  454. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_ColumnDeduplicator/_validation/_do_not_drop.py +0 -0
  455. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_ColumnDeduplicator/_validation/_keep.py +0 -0
  456. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_ColumnDeduplicator/_validation/_validation.py +0 -0
  457. {pybear-0.2.3/src/pybear/preprocessing/_MinCountTransformer/_partial_fit → pybear-0.2.4/src/pybear/preprocessing/_InterceptManager}/__init__.py +0 -0
  458. {pybear-0.2.3/src/pybear/preprocessing/_MinCountTransformer/_print_instructions → pybear-0.2.4/src/pybear/preprocessing/_InterceptManager/_inverse_transform}/__init__.py +0 -0
  459. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_InterceptManager/_inverse_transform/_inverse_transform.py +0 -0
  460. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_InterceptManager/_inverse_transform/_remove_intercept.py +0 -0
  461. {pybear-0.2.3/src/pybear/preprocessing/_MinCountTransformer/_transform → pybear-0.2.4/src/pybear/preprocessing/_InterceptManager/_partial_fit}/__init__.py +0 -0
  462. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_InterceptManager/_partial_fit/_columns_getter.py +0 -0
  463. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_InterceptManager/_partial_fit/_find_constants.py +0 -0
  464. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_InterceptManager/_partial_fit/_merge_constants.py +0 -0
  465. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_InterceptManager/_partial_fit/_parallel_constant_finder.py +0 -0
  466. {pybear-0.2.3/src/pybear/preprocessing/_MinCountTransformer/_validation → pybear-0.2.4/src/pybear/preprocessing/_InterceptManager/_shared}/__init__.py +0 -0
  467. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_InterceptManager/_shared/_make_instructions.py +0 -0
  468. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_InterceptManager/_shared/_manage_keep.py +0 -0
  469. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_InterceptManager/_shared/_set_attributes.py +0 -0
  470. {pybear-0.2.3/src/pybear/preprocessing/_NanStandardizer → pybear-0.2.4/src/pybear/preprocessing/_InterceptManager/_transform}/__init__.py +0 -0
  471. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_InterceptManager/_transform/_transform.py +0 -0
  472. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_InterceptManager/_type_aliases.py +0 -0
  473. {pybear-0.2.3/src/pybear/preprocessing/_NanStandardizer/_transform → pybear-0.2.4/src/pybear/preprocessing/_InterceptManager/_validation}/__init__.py +0 -0
  474. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_InterceptManager/_validation/_instructions.py +0 -0
  475. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_InterceptManager/_validation/_keep_and_columns.py +0 -0
  476. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_InterceptManager/_validation/_validation.py +0 -0
  477. {pybear-0.2.3/src/pybear/preprocessing/_NanStandardizer/_validation → pybear-0.2.4/src/pybear/preprocessing/_MinCountTransformer}/__init__.py +0 -0
  478. {pybear-0.2.3/src/pybear/preprocessing/_SlimPolyFeatures → pybear-0.2.4/src/pybear/preprocessing/_MinCountTransformer/_make_instructions}/__init__.py +0 -0
  479. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_make_instructions/_make_instructions.py +0 -0
  480. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_make_instructions/_one_unique.py +0 -0
  481. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_make_instructions/_three_or_more_uniques_hab.py +0 -0
  482. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_make_instructions/_three_or_more_uniques_not_hab.py +0 -0
  483. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_make_instructions/_threshold_listifier.py +0 -0
  484. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_make_instructions/_two_uniques_hab.py +0 -0
  485. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_make_instructions/_two_uniques_not_hab.py +0 -0
  486. {pybear-0.2.3/src/pybear/preprocessing/_SlimPolyFeatures/_attributes → pybear-0.2.4/src/pybear/preprocessing/_MinCountTransformer/_make_instructions/_validation}/__init__.py +0 -0
  487. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_make_instructions/_validation/_delete_instr.py +0 -0
  488. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_make_instructions/_validation/_make_instructions_validation.py +0 -0
  489. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_make_instructions/_validation/_total_counts_by_column.py +0 -0
  490. {pybear-0.2.3/src/pybear/preprocessing/_SlimPolyFeatures/_get_feature_names_out → pybear-0.2.4/src/pybear/preprocessing/_MinCountTransformer/_partial_fit}/__init__.py +0 -0
  491. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_partial_fit/_columns_getter.py +0 -0
  492. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_partial_fit/_get_dtypes_unqs_cts.py +0 -0
  493. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_partial_fit/_original_dtypes_merger.py +0 -0
  494. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_partial_fit/_parallel_dtypes_unqs_cts.py +0 -0
  495. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_partial_fit/_tcbc_merger.py +0 -0
  496. {pybear-0.2.3/src/pybear/preprocessing/_SlimPolyFeatures/_partial_fit → pybear-0.2.4/src/pybear/preprocessing/_MinCountTransformer/_print_instructions}/__init__.py +0 -0
  497. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_print_instructions/_repr_instructions.py +0 -0
  498. {pybear-0.2.3/src/pybear/preprocessing/_SlimPolyFeatures/_shared → pybear-0.2.4/src/pybear/preprocessing/_MinCountTransformer/_transform}/__init__.py +0 -0
  499. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_transform/_ic_hab_condition.py +0 -0
  500. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_transform/_make_row_and_column_masks.py +0 -0
  501. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_transform/_parallelized_row_masks.py +0 -0
  502. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_transform/_tcbc_update.py +0 -0
  503. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_type_aliases.py +0 -0
  504. {pybear-0.2.3/src/pybear/preprocessing/_SlimPolyFeatures/_transform → pybear-0.2.4/src/pybear/preprocessing/_MinCountTransformer/_validation}/__init__.py +0 -0
  505. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_validation/_count_threshold.py +0 -0
  506. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_validation/_feature_names_in.py +0 -0
  507. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_validation/_ign_cols_hab_callable.py +0 -0
  508. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_validation/_ignore_columns_handle_as_bool.py +0 -0
  509. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_validation/_original_dtypes.py +0 -0
  510. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_validation/_validation.py +0 -0
  511. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_MinCountTransformer/_validation/_y.py +0 -0
  512. {pybear-0.2.3/src/pybear/preprocessing/_SlimPolyFeatures/_validation → pybear-0.2.4/src/pybear/preprocessing/_NanStandardizer}/__init__.py +0 -0
  513. {pybear-0.2.3/src/pybear/preprocessing/__shared → pybear-0.2.4/src/pybear/preprocessing/_NanStandardizer/_transform}/__init__.py +0 -0
  514. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_NanStandardizer/_transform/_transform.py +0 -0
  515. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_NanStandardizer/_type_aliases.py +0 -0
  516. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_NanStandardizer/_validation/_X.py +0 -0
  517. {pybear-0.2.3/src/pybear/preprocessing/__shared → pybear-0.2.4/src/pybear/preprocessing/_NanStandardizer}/_validation/__init__.py +0 -0
  518. {pybear-0.2.3/tests → pybear-0.2.4/src/pybear/preprocessing/_SlimPolyFeatures}/__init__.py +0 -0
  519. {pybear-0.2.3/tests/base → pybear-0.2.4/src/pybear/preprocessing/_SlimPolyFeatures/_attributes}/__init__.py +0 -0
  520. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_attributes/_build_dropped_poly_duplicates.py +0 -0
  521. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_attributes/_build_kept_poly_duplicates.py +0 -0
  522. {pybear-0.2.3/tests/base/mixins → pybear-0.2.4/src/pybear/preprocessing/_SlimPolyFeatures/_get_feature_names_out}/__init__.py +0 -0
  523. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_get_feature_names_out/_gfno_poly.py +0 -0
  524. {pybear-0.2.3/tests/feature_extraction/text/AutoTextCleaner → pybear-0.2.4/src/pybear/preprocessing/_SlimPolyFeatures/_partial_fit}/__init__.py +0 -0
  525. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_partial_fit/_columns_getter.py +0 -0
  526. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_partial_fit/_combination_builder.py +0 -0
  527. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_partial_fit/_deconstant_poly_dupls.py +0 -0
  528. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_partial_fit/_get_dupls_for_combo_in_X_and_poly.py +0 -0
  529. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_partial_fit/_is_constant.py +0 -0
  530. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_partial_fit/_lock_in_random_combos.py +0 -0
  531. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_partial_fit/_merge_constants.py +0 -0
  532. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_partial_fit/_merge_partialfit_dupls.py +0 -0
  533. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_partial_fit/_num_combinations.py +0 -0
  534. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_partial_fit/_parallel_chunk_comparer.py +0 -0
  535. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_partial_fit/_parallel_column_comparer.py +0 -0
  536. {pybear-0.2.3/tests/feature_extraction/text/AutoTextCleaner/validation → pybear-0.2.4/src/pybear/preprocessing/_SlimPolyFeatures/_shared}/__init__.py +0 -0
  537. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_shared/_check_X_constants_dupls.py +0 -0
  538. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_shared/_get_active_combos.py +0 -0
  539. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_shared/_identify_combos_to_keep.py +0 -0
  540. {pybear-0.2.3/tests/feature_extraction/text/Lexicon → pybear-0.2.4/src/pybear/preprocessing/_SlimPolyFeatures/_transform}/__init__.py +0 -0
  541. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_transform/_build_poly.py +0 -0
  542. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_type_aliases.py +0 -0
  543. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_validation/_X_supplemental.py +0 -0
  544. {pybear-0.2.3/tests/feature_extraction/text/Lexicon/methods → pybear-0.2.4/src/pybear/preprocessing/_SlimPolyFeatures/_validation}/__init__.py +0 -0
  545. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_validation/_degree__min_degree.py +0 -0
  546. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_validation/_feature_name_combiner.py +0 -0
  547. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_validation/_keep.py +0 -0
  548. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/_SlimPolyFeatures/_validation/_validation.py +0 -0
  549. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/__init__.py +0 -0
  550. {pybear-0.2.3/tests/feature_extraction/text/NGramMerger → pybear-0.2.4/src/pybear/preprocessing/__shared}/__init__.py +0 -0
  551. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/__shared/_type_aliases.py +0 -0
  552. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/__shared/_validation/_X.py +0 -0
  553. {pybear-0.2.3/tests/feature_extraction/text/NGramMerger/transform → pybear-0.2.4/src/pybear/preprocessing/__shared/_validation}/__init__.py +0 -0
  554. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/__shared/_validation/_any_bool.py +0 -0
  555. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/__shared/_validation/_any_integer.py +0 -0
  556. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/__shared/_validation/_atol.py +0 -0
  557. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/__shared/_validation/_equal_nan.py +0 -0
  558. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/__shared/_validation/_n_jobs.py +0 -0
  559. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/preprocessing/__shared/_validation/_rtol.py +0 -0
  560. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/utilities/__init__.py +0 -0
  561. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/utilities/__type_aliases.py +0 -0
  562. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/utilities/_array_sparsity.py +0 -0
  563. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/utilities/_benchmarking.py +0 -0
  564. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/utilities/_check_pipeline.py +0 -0
  565. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/utilities/_feature_name_mapper.py +0 -0
  566. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/utilities/_get_methods_out_of_class.py +0 -0
  567. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/utilities/_get_module_name.py +0 -0
  568. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/utilities/_inf_masking.py +0 -0
  569. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/utilities/_logger.py +0 -0
  570. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/utilities/_nan_masking.py +0 -0
  571. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/utilities/_permuter.py +0 -0
  572. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/utilities/_print_inspect_stack.py +0 -0
  573. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/utilities/_remove_characters.py +0 -0
  574. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/utilities/_serial_index_mapper.py +0 -0
  575. {pybear-0.2.3 → pybear-0.2.4}/src/pybear/utilities/_union_find.py +0 -0
  576. {pybear-0.2.3 → pybear-0.2.4}/tests/23min35sec +0 -0
  577. {pybear-0.2.3/tests/feature_extraction/text/NGramMerger/validation → pybear-0.2.4/tests}/__init__.py +0 -0
  578. {pybear-0.2.3 → pybear-0.2.4}/tests/base/2min40sec +0 -0
  579. {pybear-0.2.3 → pybear-0.2.4}/tests/base/DictMenuPrint_sandbox.py +0 -0
  580. {pybear-0.2.3 → pybear-0.2.4}/tests/base/DictMenuPrint_test.py +0 -0
  581. {pybear-0.2.3/tests/feature_extraction/text/StopRemover → pybear-0.2.4/tests/base}/__init__.py +0 -0
  582. {pybear-0.2.3 → pybear-0.2.4}/tests/base/cast_to_ndarray_12sec_test.py +0 -0
  583. {pybear-0.2.3 → pybear-0.2.4}/tests/base/check_1D_num_sequence_test.py +0 -0
  584. {pybear-0.2.3 → pybear-0.2.4}/tests/base/check_1D_str_sequence_test.py +0 -0
  585. {pybear-0.2.3 → pybear-0.2.4}/tests/base/check_2D_num_array_test.py +0 -0
  586. {pybear-0.2.3 → pybear-0.2.4}/tests/base/check_2D_str_array_test.py +0 -0
  587. {pybear-0.2.3 → pybear-0.2.4}/tests/base/check_dtype_12sec_test.py +0 -0
  588. {pybear-0.2.3 → pybear-0.2.4}/tests/base/check_feature_names_test.py +0 -0
  589. {pybear-0.2.3 → pybear-0.2.4}/tests/base/check_is_finite_6sec_test.py +0 -0
  590. {pybear-0.2.3 → pybear-0.2.4}/tests/base/check_is_fitted_test.py +0 -0
  591. {pybear-0.2.3 → pybear-0.2.4}/tests/base/check_n_features_in_test.py +0 -0
  592. {pybear-0.2.3 → pybear-0.2.4}/tests/base/check_scipy_sparse_test.py +0 -0
  593. {pybear-0.2.3 → pybear-0.2.4}/tests/base/check_shape_test.py +0 -0
  594. {pybear-0.2.3 → pybear-0.2.4}/tests/base/conftest.py +0 -0
  595. {pybear-0.2.3 → pybear-0.2.4}/tests/base/copy_X_11sec_test.py +0 -0
  596. {pybear-0.2.3 → pybear-0.2.4}/tests/base/ensure_2D_test.py +0 -0
  597. {pybear-0.2.3 → pybear-0.2.4}/tests/base/get_feature_names_out_test.py +0 -0
  598. {pybear-0.2.3 → pybear-0.2.4}/tests/base/get_feature_names_test.py +0 -0
  599. {pybear-0.2.3 → pybear-0.2.4}/tests/base/is_fitted_test.py +0 -0
  600. {pybear-0.2.3 → pybear-0.2.4}/tests/base/mixins/7sec +0 -0
  601. {pybear-0.2.3 → pybear-0.2.4}/tests/base/mixins/FeatureMixin_test.py +0 -0
  602. {pybear-0.2.3 → pybear-0.2.4}/tests/base/mixins/FileDumpMixin_test.py +0 -0
  603. {pybear-0.2.3 → pybear-0.2.4}/tests/base/mixins/FitTransformMixin_test.py +0 -0
  604. {pybear-0.2.3 → pybear-0.2.4}/tests/base/mixins/ReprMixin_test.py +0 -0
  605. {pybear-0.2.3 → pybear-0.2.4}/tests/base/mixins/SetOutputMixin_test.py +0 -0
  606. {pybear-0.2.3 → pybear-0.2.4}/tests/base/mixins/SetParamsMixin_test.py +0 -0
  607. {pybear-0.2.3/tests/feature_extraction/text/StopRemover/transform → pybear-0.2.4/tests/base/mixins}/__init__.py +0 -0
  608. {pybear-0.2.3 → pybear-0.2.4}/tests/base/mixins/conftest.py +0 -0
  609. {pybear-0.2.3 → pybear-0.2.4}/tests/base/num_features_test.py +0 -0
  610. {pybear-0.2.3 → pybear-0.2.4}/tests/base/num_samples_test.py +0 -0
  611. {pybear-0.2.3 → pybear-0.2.4}/tests/base/set_order_test.py +0 -0
  612. {pybear-0.2.3 → pybear-0.2.4}/tests/base/validate_data_28sec_test.py +0 -0
  613. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/__init__.py +0 -0
  614. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/5min20sec +0 -0
  615. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/AutoTextCleaner/47sec +0 -0
  616. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/AutoTextCleaner/AutoTextCleaner_5sec_test.py +0 -0
  617. {pybear-0.2.3/tests/feature_extraction/text/StopRemover/validation → pybear-0.2.4/tests/feature_extraction/text/AutoTextCleaner}/__init__.py +0 -0
  618. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/AutoTextCleaner/attr_method_access_8sec_test.py +0 -0
  619. {pybear-0.2.3/tests/feature_extraction/text/TextJoiner → pybear-0.2.4/tests/feature_extraction/text/AutoTextCleaner/validation}/__init__.py +0 -0
  620. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/AutoTextCleaner/validation/get_statistics_test.py +0 -0
  621. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/AutoTextCleaner/validation/lexicon_lookup_test.py +0 -0
  622. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/AutoTextCleaner/validation/ngram_merge_test.py +0 -0
  623. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/AutoTextCleaner/validation/return_dim_test.py +0 -0
  624. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/AutoTextCleaner/validation/validation_28sec_test.py +0 -0
  625. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/Lexicon/20sec +0 -0
  626. {pybear-0.2.3/tests/feature_extraction/text/TextJoiner/transform → pybear-0.2.4/tests/feature_extraction/text/Lexicon}/__init__.py +0 -0
  627. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/Lexicon/attr_method_access_19sec_test.py +8 -8
  628. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/Lexicon/methods/6sec +0 -0
  629. {pybear-0.2.3/tests/feature_extraction/text/TextJoiner/validation → pybear-0.2.4/tests/feature_extraction/text/Lexicon/methods}/__init__.py +0 -0
  630. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/Lexicon/methods/add_words_test.py +0 -0
  631. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/Lexicon/methods/check_order_test.py +0 -0
  632. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/Lexicon/methods/delete_words_test.py +0 -0
  633. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/Lexicon/methods/find_duplicates_test.py +0 -0
  634. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/Lexicon/methods/identify_sublexicon_test.py +0 -0
  635. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/Lexicon/methods/validate_word_input_test.py +0 -0
  636. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/NGramMerger/10sec +0 -0
  637. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/NGramMerger/NGM_attr_method_access_5sec_test.py +0 -0
  638. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/NGramMerger/NGramMerger_5sec_test.py +0 -0
  639. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/NGramMerger/NGramMerger_upstream_17sec_test.py +0 -0
  640. {pybear-0.2.3/tests/feature_extraction/text/TextJustifier → pybear-0.2.4/tests/feature_extraction/text/NGramMerger}/__init__.py +0 -0
  641. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/NGramMerger/transform/5sec +0 -0
  642. {pybear-0.2.3/tests/feature_extraction/text/TextJustifier/_validation → pybear-0.2.4/tests/feature_extraction/text/NGramMerger/transform}/__init__.py +0 -0
  643. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/NGramMerger/transform/get_wrap_match_idxs_test.py +0 -0
  644. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/NGramMerger/transform/manage_wrap_idxs_test.py +0 -0
  645. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/NGramMerger/transform/match_finder_test.py +0 -0
  646. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/NGramMerger/transform/replacer_test.py +0 -0
  647. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/NGramMerger/transform/special_param_conditioner_test.py +0 -0
  648. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/NGramMerger/transform/transform_test.py +0 -0
  649. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/NGramMerger/transform/wrap_manager_test.py +0 -0
  650. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/NGramMerger/validation/7sec +0 -0
  651. {pybear-0.2.3/tests/feature_extraction/text/TextJustifier/transform → pybear-0.2.4/tests/feature_extraction/text/NGramMerger/validation}/__init__.py +0 -0
  652. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/NGramMerger/validation/ngcallable_test.py +0 -0
  653. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/NGramMerger/validation/ngrams_test.py +0 -0
  654. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/NGramMerger/validation/validation_test.py +0 -0
  655. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/StopRemover/55sec +0 -0
  656. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/StopRemover/StopRemover_34sec_test.py +0 -0
  657. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/StopRemover/StopRemover_upstream_52sec_test.py +0 -0
  658. {pybear-0.2.3/tests/feature_extraction/text/TextLookup → pybear-0.2.4/tests/feature_extraction/text/StopRemover}/__init__.py +0 -0
  659. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/StopRemover/attr_method_access_15_sec_test.py +0 -0
  660. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/StopRemover/default_callable_test.py +0 -0
  661. {pybear-0.2.3/tests/feature_extraction/text/TextLookup/shared → pybear-0.2.4/tests/feature_extraction/text/StopRemover/transform}/__init__.py +0 -0
  662. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/StopRemover/transform/transform_test.py +0 -0
  663. {pybear-0.2.3/tests/feature_extraction/text/TextLookup/shared/transform → pybear-0.2.4/tests/feature_extraction/text/StopRemover/validation}/__init__.py +0 -0
  664. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/StopRemover/validation/exempt_test.py +0 -0
  665. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/StopRemover/validation/match_callable_test.py +0 -0
  666. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/StopRemover/validation/supplemental_test.py +0 -0
  667. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/StopRemover/validation/validation_test.py +0 -0
  668. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJoiner/7sec +0 -0
  669. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJoiner/TextJoiner_test.py +0 -0
  670. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJoiner/TextJoiner_upstream_5sec_test.py +0 -0
  671. {pybear-0.2.3/tests/feature_extraction/text/TextLookup/shared/validation → pybear-0.2.4/tests/feature_extraction/text/TextJoiner}/__init__.py +0 -0
  672. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJoiner/attr_method_access_test.py +0 -0
  673. {pybear-0.2.3/tests/feature_extraction/text/TextNormalizer → pybear-0.2.4/tests/feature_extraction/text/TextJoiner/transform}/__init__.py +0 -0
  674. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJoiner/transform/condition_sep_test.py +0 -0
  675. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJoiner/transform/transform_test.py +0 -0
  676. {pybear-0.2.3/tests/feature_extraction/text/TextPadder → pybear-0.2.4/tests/feature_extraction/text/TextJoiner/validation}/__init__.py +0 -0
  677. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJoiner/validation/sep_test.py +0 -0
  678. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJoiner/validation/validation_test.py +0 -0
  679. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJustifier/32sec +0 -0
  680. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJustifier/TextJustifer_upstream_20sec_test.py +0 -0
  681. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJustifier/TextJustifier_regex_attr_method_access_test.py +0 -0
  682. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJustifier/TextJustifier_regex_test.py +0 -0
  683. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJustifier/TextJustifier_str_attr_method_access_test.py +0 -0
  684. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJustifier/TextJustifier_str_test.py +0 -0
  685. {pybear-0.2.3/tests/feature_extraction/text/TextPadder/partial_fit → pybear-0.2.4/tests/feature_extraction/text/TextJustifier}/__init__.py +0 -0
  686. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJustifier/transform/6sec +0 -0
  687. {pybear-0.2.3/tests/feature_extraction/text/TextPadder → pybear-0.2.4/tests/feature_extraction/text/TextJustifier}/transform/__init__.py +0 -0
  688. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJustifier/transform/sep_lb_finder_test.py +0 -0
  689. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJustifier/transform/splitter_test.py +0 -0
  690. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJustifier/transform/stacker_test.py +0 -0
  691. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJustifier/transform/transform_sandbox.py +0 -0
  692. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextJustifier/transform/transform_test.py +0 -0
  693. {pybear-0.2.3/tests/feature_extraction/text/TextJustifier/_validation → pybear-0.2.4/tests/feature_extraction/text/TextJustifier/validation}/32sec +0 -0
  694. {pybear-0.2.3/tests/feature_extraction/text/TextRemover → pybear-0.2.4/tests/feature_extraction/text/TextJustifier/validation}/__init__.py +0 -0
  695. {pybear-0.2.3/tests/feature_extraction/text/TextJustifier/_validation → pybear-0.2.4/tests/feature_extraction/text/TextJustifier/validation}/line_break_regex_test.py +0 -0
  696. {pybear-0.2.3/tests/feature_extraction/text/TextJustifier/_validation → pybear-0.2.4/tests/feature_extraction/text/TextJustifier/validation}/line_break_str_test.py +0 -0
  697. {pybear-0.2.3/tests/feature_extraction/text/TextJustifier/_validation → pybear-0.2.4/tests/feature_extraction/text/TextJustifier/validation}/sep_regex_test.py +0 -0
  698. {pybear-0.2.3/tests/feature_extraction/text/TextJustifier/_validation → pybear-0.2.4/tests/feature_extraction/text/TextJustifier/validation}/sep_str_test.py +0 -0
  699. {pybear-0.2.3/tests/feature_extraction/text/TextJustifier/_validation → pybear-0.2.4/tests/feature_extraction/text/TextJustifier/validation}/validation_30sec_test.py +0 -0
  700. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/40sec +0 -0
  701. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/TLRT_10sec_test.py +0 -0
  702. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/TLRT_attr_method_access_10sec_test.py +0 -0
  703. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/TLRT_upstream_19sec_test.py +0 -0
  704. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/TL_14_sec_test.py +0 -0
  705. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/TL_attr_method_access_10sec_test.py +0 -0
  706. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/TL_upstream_19sec_test.py +0 -0
  707. {pybear-0.2.3/tests/feature_extraction/text/TextReplacer → pybear-0.2.4/tests/feature_extraction/text/TextLookup}/__init__.py +0 -0
  708. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/shared/13sec +0 -0
  709. {pybear-0.2.3/tests/feature_extraction/text/TextReplacer/transform → pybear-0.2.4/tests/feature_extraction/text/TextLookup/shared}/__init__.py +0 -0
  710. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/shared/search_always_list_test.py +0 -0
  711. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/shared/transform/4sec +0 -0
  712. {pybear-0.2.3/tests/feature_extraction/text/TextReplacer/validation → pybear-0.2.4/tests/feature_extraction/text/TextLookup/shared/transform}/__init__.py +0 -0
  713. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/shared/transform/auto_word_splitter_test.py +0 -0
  714. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/shared/transform/manual_word_splitter_test.py +0 -0
  715. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/shared/transform/quasi_auto_word_splitter_test.py +0 -0
  716. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/shared/transform/word_editor_test.py +0 -0
  717. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/shared/validation/8sec +0 -0
  718. {pybear-0.2.3/tests/feature_extraction/text/TextSplitter → pybear-0.2.4/tests/feature_extraction/text/TextLookup/shared/validation}/__init__.py +0 -0
  719. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/shared/validation/delete_always_test.py +0 -0
  720. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/shared/validation/replace_always_test.py +0 -0
  721. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/shared/validation/skip_always_test.py +0 -0
  722. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/shared/validation/split_always_test.py +0 -0
  723. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextLookup/shared/validation/validation_test.py +0 -0
  724. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextNormalizer/5sec +0 -0
  725. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextNormalizer/TextNormalizer_test.py +0 -0
  726. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextNormalizer/TextNormalizer_upstream_17sec_test.py +0 -0
  727. {pybear-0.2.3/tests/feature_extraction/text/TextStatistics → pybear-0.2.4/tests/feature_extraction/text/TextNormalizer}/__init__.py +0 -0
  728. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextNormalizer/attr_method_access_test.py +0 -0
  729. {pybear-0.2.3/tests/feature_extraction/text/TextStatistics/get → pybear-0.2.4/tests/feature_extraction/text/TextNormalizer/transform}/__init__.py +0 -0
  730. {pybear-0.2.3/tests/feature_extraction/text/TextStatistics/lookup → pybear-0.2.4/tests/feature_extraction/text/TextNormalizer/validation}/__init__.py +0 -0
  731. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextPadder/5sec +0 -0
  732. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextPadder/TextPadder_test.py +0 -0
  733. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextPadder/TextPadder_upstream_17sec_test.py +0 -0
  734. {pybear-0.2.3/tests/feature_extraction/text/TextStatistics/partial_fit → pybear-0.2.4/tests/feature_extraction/text/TextPadder}/__init__.py +0 -0
  735. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextPadder/attr_method_access_test.py +0 -0
  736. {pybear-0.2.3/tests/feature_extraction/text/TextStatistics/print → pybear-0.2.4/tests/feature_extraction/text/TextPadder/partial_fit}/__init__.py +0 -0
  737. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextPadder/partial_fit/partial_fit_test.py +0 -0
  738. {pybear-0.2.3/tests/feature_extraction/text/TextStatistics/validation → pybear-0.2.4/tests/feature_extraction/text/TextPadder/transform}/__init__.py +0 -0
  739. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextPadder/transform/transform_test.py +0 -0
  740. {pybear-0.2.3/tests/feature_extraction/text/TextStripper → pybear-0.2.4/tests/feature_extraction/text/TextPadder/validation}/__init__.py +0 -0
  741. {pybear-0.2.3/tests/feature_extraction/text/TextPadder → pybear-0.2.4/tests/feature_extraction/text/TextPadder/validation}/validation_test.py +0 -0
  742. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextRemover/16sec +0 -0
  743. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextRemover/TextRemover_test.py +0 -0
  744. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextRemover/TextRemover_upstream_18sec_test.py +0 -0
  745. {pybear-0.2.3/tests/feature_extraction/text → pybear-0.2.4/tests/feature_extraction/text/TextRemover}/__init__.py +0 -0
  746. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextRemover/attr_method_access_test.py +0 -0
  747. {pybear-0.2.3/tests/feature_extraction/text/_shared → pybear-0.2.4/tests/feature_extraction/text/TextRemover/transform}/__init__.py +0 -0
  748. {pybear-0.2.3/tests/feature_extraction/text/_shared/param_conditioner → pybear-0.2.4/tests/feature_extraction/text/TextRemover/validation}/__init__.py +0 -0
  749. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextReplacer/8sec +0 -0
  750. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextReplacer/TextReplacer_test.py +0 -0
  751. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextReplacer/TextReplacer_upstream_19sec_test.py +0 -0
  752. {pybear-0.2.3/tests/feature_extraction/text/_shared/transform → pybear-0.2.4/tests/feature_extraction/text/TextReplacer}/__init__.py +0 -0
  753. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextReplacer/attr_method_access_test.py +0 -0
  754. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextReplacer/transform/5sec +0 -0
  755. {pybear-0.2.3/tests/feature_extraction/text/_shared/utilities → pybear-0.2.4/tests/feature_extraction/text/TextReplacer/transform}/__init__.py +0 -0
  756. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextReplacer/transform/regexp_1D_core_test.py +0 -0
  757. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextReplacer/transform/special_param_conditioner_test.py +0 -0
  758. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextReplacer/validation/8sec +0 -0
  759. {pybear-0.2.3/tests/feature_extraction/text/_shared → pybear-0.2.4/tests/feature_extraction/text/TextReplacer}/validation/__init__.py +0 -0
  760. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextReplacer/validation/replace_test.py +0 -0
  761. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextReplacer/validation/validation_8sec_test.py +0 -0
  762. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextSplitter/23sec +0 -0
  763. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextSplitter/TextSplitter_test.py +0 -0
  764. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextSplitter/TextSplitter_upstream_18sec_test.py +0 -0
  765. {pybear-0.2.3/tests/model_selection/GSTCV/GSTCV → pybear-0.2.4/tests/feature_extraction/text/TextSplitter}/__init__.py +0 -0
  766. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextSplitter/attr_method_access_test.py +0 -0
  767. {pybear-0.2.3/tests/model_selection/GSTCV/GSTCV/fit → pybear-0.2.4/tests/feature_extraction/text/TextSplitter/transform}/__init__.py +0 -0
  768. {pybear-0.2.3/tests/model_selection/GSTCV/GSTCV → pybear-0.2.4/tests/feature_extraction/text/TextSplitter}/validation/__init__.py +0 -0
  769. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/7sec +0 -0
  770. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/TextStatistics_test.py +0 -0
  771. {pybear-0.2.3/tests/model_selection/GSTCV/GSTCVMixin → pybear-0.2.4/tests/feature_extraction/text/TextStatistics}/__init__.py +0 -0
  772. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/_green_eggs_and_ham +0 -0
  773. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/_read_green_eggs_and_ham.py +0 -0
  774. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/attr_method_access_test.py +0 -0
  775. {pybear-0.2.3/tests/model_selection/GSTCV/GSTCVMixin/fit → pybear-0.2.4/tests/feature_extraction/text/TextStatistics/get}/__init__.py +0 -0
  776. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/get/get_longest_strings_test.py +0 -0
  777. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/get/get_shortest_strings_test.py +0 -0
  778. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/input_test.py +0 -0
  779. {pybear-0.2.3/tests/model_selection/GSTCV/GSTCVMixin/fit/_cv_results → pybear-0.2.4/tests/feature_extraction/text/TextStatistics/lookup}/__init__.py +0 -0
  780. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/lookup/lookup_string_test.py +0 -0
  781. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/lookup/lookup_substring_test.py +0 -0
  782. {pybear-0.2.3/tests/model_selection/GSTCV/GSTCVMixin/param_conditioning → pybear-0.2.4/tests/feature_extraction/text/TextStatistics/partial_fit}/__init__.py +0 -0
  783. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/partial_fit/build_character_frequency_test.py +0 -0
  784. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/partial_fit/build_overall_statistics_OLD_test.py +0 -0
  785. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/partial_fit/build_overall_statistics_test.py +0 -0
  786. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/partial_fit/build_startswith_frequency_test.py +0 -0
  787. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/partial_fit/build_string_frequency_test.py +0 -0
  788. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/partial_fit/merge_character_frequency_test.py +0 -0
  789. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/partial_fit/merge_overall_statistics_test.py +0 -0
  790. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/partial_fit/merge_startwith_frequency_test.py +0 -0
  791. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/partial_fit/merge_string_frequency_test.py +0 -0
  792. {pybear-0.2.3/tests/model_selection/GSTCV/GSTCVMixin/validation → pybear-0.2.4/tests/feature_extraction/text/TextStatistics/print}/__init__.py +0 -0
  793. {pybear-0.2.3/tests/model_selection/GSTCV/GSTCVMixin/validation/holders → pybear-0.2.4/tests/feature_extraction/text/TextStatistics/validation}/__init__.py +0 -0
  794. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/validation/character_frequency_test.py +0 -0
  795. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/validation/n_test.py +0 -0
  796. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/validation/overall_statistics_test.py +0 -0
  797. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/validation/startswith_frequency_test.py +0 -0
  798. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/validation/string_frequency_test.py +0 -0
  799. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/validation/uniques_test.py +0 -0
  800. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStatistics/validation/validation_test.py +0 -0
  801. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStripper/5sec +0 -0
  802. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStripper/TextStripper_test.py +0 -0
  803. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStripper/TextStripper_upstream_19sec_test.py +0 -0
  804. {pybear-0.2.3/tests/model_selection/GSTCV → pybear-0.2.4/tests/feature_extraction/text/TextStripper}/__init__.py +0 -0
  805. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/TextStripper/attr_method_access_test.py +0 -0
  806. {pybear-0.2.3/tests/model_selection → pybear-0.2.4/tests/feature_extraction/text/TextStripper/transform}/__init__.py +0 -0
  807. {pybear-0.2.3/tests/model_selection/autogridsearch → pybear-0.2.4/tests/feature_extraction/text/TextStripper/validation}/__init__.py +0 -0
  808. {pybear-0.2.3/tests/model_selection/autogridsearch/autogridsearch_wrapper → pybear-0.2.4/tests/feature_extraction/text}/__init__.py +0 -0
  809. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/13sec +0 -0
  810. {pybear-0.2.3/tests/model_selection/autogridsearch/autogridsearch_wrapper/demo → pybear-0.2.4/tests/feature_extraction/text/_shared}/__init__.py +0 -0
  811. {pybear-0.2.3/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid → pybear-0.2.4/tests/feature_extraction/text/_shared/param_conditioner}/__init__.py +0 -0
  812. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/param_conditioner/compile_maker_test.py +0 -0
  813. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/param_conditioner/flag_maker_test.py +0 -0
  814. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/param_conditioner/param_conditioner_test.py +0 -0
  815. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/param_conditioner/remove_contractor_test.py +0 -0
  816. {pybear-0.2.3/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/bool → pybear-0.2.4/tests/feature_extraction/text/_shared/transform}/__init__.py +0 -0
  817. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/transform/map_X_to_list_test.py +0 -0
  818. {pybear-0.2.3/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/drill → pybear-0.2.4/tests/feature_extraction/text/_shared/utilities}/__init__.py +0 -0
  819. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/utilities/view_text_snippet_5sec_test.py +0 -0
  820. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/validation/1D_2D_X_test.py +0 -0
  821. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/validation/1D_X_test.py +0 -0
  822. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/validation/2D_X_test.py +0 -0
  823. {pybear-0.2.3/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/float → pybear-0.2.4/tests/feature_extraction/text/_shared/validation}/__init__.py +0 -0
  824. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/validation/any_bool_test.py +0 -0
  825. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/validation/any_integer_9sec_test.py +0 -0
  826. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/validation/any_string_test.py +0 -0
  827. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/validation/case_sensitive_test.py +0 -0
  828. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/validation/compile_holder_test.py +0 -0
  829. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/validation/flags_test.py +0 -0
  830. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/_shared/validation/pattern_holder_test.py +0 -0
  831. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/conftest.py +0 -0
  832. {pybear-0.2.3 → pybear-0.2.4}/tests/feature_extraction/text/variable_finder_test.py +0 -0
  833. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/3min57sec +0 -0
  834. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/1min55sec +0 -0
  835. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/1min19sec +0 -0
  836. {pybear-0.2.3/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/int → pybear-0.2.4/tests/model_selection/GSTCV/GSTCV}/__init__.py +0 -0
  837. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/fit/34sec +0 -0
  838. {pybear-0.2.3/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/shift → pybear-0.2.4/tests/model_selection/GSTCV/GSTCV/fit}/__init__.py +0 -0
  839. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/fit/accuracy_22sec_test.py +0 -0
  840. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/fit/cv_14sec_test.py +0 -0
  841. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/fit/estimator_fit_params_helper_test.py +0 -0
  842. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/fit/fit__fit_params_test.py +0 -0
  843. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/fit/fold_splitter_test.py +0 -0
  844. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/fit/get_kfold_test.py +0 -0
  845. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/fit/parallelized_fit_test.py +0 -0
  846. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/fit/parellelized_scorer_test.py +0 -0
  847. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/fit/parellelized_train_scorer_test.py +0 -0
  848. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/validation/56sec +0 -0
  849. {pybear-0.2.3/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/string → pybear-0.2.4/tests/model_selection/GSTCV/GSTCV/validation}/__init__.py +0 -0
  850. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/validation/estimator_test.py +0 -0
  851. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/validation/estimator_wrapped_test.py +0 -0
  852. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/validation/pre_dispatch_test.py +0 -0
  853. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/validation/validation_init_56sec_test.py +0 -0
  854. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/validation/validation_test.py +0 -0
  855. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/validation/validation_y_fit_sk_test.py +0 -0
  856. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/validation/validation_y_score_sk_test.py +0 -0
  857. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCV/validation/y_test.py +0 -0
  858. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/42sec +0 -0
  859. {pybear-0.2.3/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/validation → pybear-0.2.4/tests/model_selection/GSTCV/GSTCVMixin}/__init__.py +0 -0
  860. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/fit/5sec +0 -0
  861. {pybear-0.2.3/tests/model_selection/autogridsearch/autogridsearch_wrapper/param_conditioning → pybear-0.2.4/tests/model_selection/GSTCV/GSTCVMixin/fit}/__init__.py +0 -0
  862. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/fit/_cv_results/5sec +0 -0
  863. {pybear-0.2.3/tests/model_selection/autogridsearch/autogridsearch_wrapper/validation → pybear-0.2.4/tests/model_selection/GSTCV/GSTCVMixin/fit/_cv_results}/__init__.py +0 -0
  864. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/fit/_cv_results/cv_results_builder_test.py +0 -0
  865. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/fit/_cv_results/cv_results_rank_update_test.py +0 -0
  866. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/fit/_cv_results/cv_results_score_updater_test.py +0 -0
  867. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/fit/_cv_results/cv_results_update_test.py +0 -0
  868. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/fit/get_best_thresholds_test.py +0 -0
  869. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/fit/verify_refit_callable_test.py +0 -0
  870. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/param_conditioning/5sec +0 -0
  871. {pybear-0.2.3/tests/new_numpy/_random_ → pybear-0.2.4/tests/model_selection/GSTCV/GSTCVMixin/param_conditioning}/__init__.py +0 -0
  872. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/param_conditioning/cv_test.py +0 -0
  873. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/param_conditioning/param_grid_test.py +0 -0
  874. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/param_conditioning/refit_test.py +0 -0
  875. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/param_conditioning/scoring_test.py +0 -0
  876. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/param_conditioning/thresholds_test.py +0 -0
  877. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/param_conditioning/verbose_test.py +0 -0
  878. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/35sec +0 -0
  879. {pybear-0.2.3/tests/preprocessing/ColumnDeduplicateTransformer → pybear-0.2.4/tests/model_selection/GSTCV/GSTCVMixin/validation}/__init__.py +0 -0
  880. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/cv_val_test.py +0 -0
  881. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/error_score_test.py +0 -0
  882. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/estimator_test.py +0 -0
  883. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/estimator_wrapped_test.py +0 -0
  884. {pybear-0.2.3/tests/preprocessing/ColumnDeduplicateTransformer/inverse_transform → pybear-0.2.4/tests/model_selection/GSTCV/GSTCVMixin/validation/holders}/__init__.py +0 -0
  885. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/holders/f_s_test.py +0 -0
  886. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/holders/f_t_s_test.py +0 -0
  887. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/n_jobs_test.py +0 -0
  888. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/param_grid_helper_test.py +0 -0
  889. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/param_grid_test.py +0 -0
  890. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/predict_proba_test.py +0 -0
  891. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/refit_test.py +0 -0
  892. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/return_train_score_test.py +0 -0
  893. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/scoring_test.py +0 -0
  894. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/thresholds_test.py +0 -0
  895. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/validation_33sec_test.py +0 -0
  896. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/GSTCVMixin/validation/verbose_test.py +0 -0
  897. {pybear-0.2.3/tests/preprocessing/ColumnDeduplicateTransformer/partial_fit → pybear-0.2.4/tests/model_selection/GSTCV}/__init__.py +0 -0
  898. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/attr_method_access_10sec_test.py +0 -0
  899. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/conftest.py +0 -0
  900. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/conftest_cv_results_template_test.py +0 -0
  901. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/conftest_gstcv_sk_fixture_6sec_test.py +0 -0
  902. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/conftest_list_of_fixtures +0 -0
  903. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/get_params_sk_pre_post_5sec_test.py +0 -0
  904. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/GSTCV/set_params_sk_pre_post_5sec_test.py +0 -0
  905. {pybear-0.2.3/tests/preprocessing/ColumnDeduplicateTransformer/set_params → pybear-0.2.4/tests/model_selection}/__init__.py +0 -0
  906. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/2min5sec +0 -0
  907. {pybear-0.2.3/tests/preprocessing/ColumnDeduplicateTransformer/transform → pybear-0.2.4/tests/model_selection/autogridsearch}/__init__.py +0 -0
  908. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/agscv_attr_method_access_9sec_test.py +0 -0
  909. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/agscv_param_validation_8sec_test.py +0 -0
  910. {pybear-0.2.3/tests/preprocessing/ColumnDeduplicateTransformer/validation → pybear-0.2.4/tests/model_selection/autogridsearch/autogridsearch_wrapper}/__init__.py +0 -0
  911. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/best_params_not_expossed_test.py +0 -0
  912. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/build_first_grid_from_params_test.py +0 -0
  913. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/build_is_logspace_test.py +0 -0
  914. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/demo/40sec +0 -0
  915. {pybear-0.2.3/tests/preprocessing/InterceptManager → pybear-0.2.4/tests/model_selection/autogridsearch/autogridsearch_wrapper/demo}/__init__.py +0 -0
  916. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/demo/demo_40sec_test.py +0 -0
  917. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/demo/make_true_best_test.py +0 -0
  918. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/demo/mock_gscv_test.py +0 -0
  919. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/demo/validate_true_best_params_test.py +0 -0
  920. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/40_seconds +0 -0
  921. {pybear-0.2.3/tests/preprocessing/InterceptManager/inverse_transform → pybear-0.2.4/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid}/__init__.py +0 -0
  922. {pybear-0.2.3/tests/preprocessing/InterceptManager/partial_fit → pybear-0.2.4/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/bool}/__init__.py +0 -0
  923. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/bool/bool_test.py +0 -0
  924. {pybear-0.2.3/tests/preprocessing/InterceptManager/set_params → pybear-0.2.4/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/drill}/__init__.py +0 -0
  925. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/drill/drill_test.py +0 -0
  926. {pybear-0.2.3/tests/preprocessing/InterceptManager/shared → pybear-0.2.4/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/float}/__init__.py +0 -0
  927. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/float/float_linspace_test.py +0 -0
  928. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/float/float_logspace_test.py +0 -0
  929. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/float/float_test.py +0 -0
  930. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/get_next_param_grid_40sec_test.py +0 -0
  931. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/int/Int_test.py +0 -0
  932. {pybear-0.2.3/tests/preprocessing/InterceptManager/transform → pybear-0.2.4/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/int}/__init__.py +0 -0
  933. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/int/int_grid_mapper_test.py +0 -0
  934. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/int/int_linspace_gap_gt_1_hard_test.py +0 -0
  935. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/int/int_linspace_gap_gt_1_soft_test.py +0 -0
  936. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/int/int_linspace_gap_gt_1_test.py +0 -0
  937. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/int/int_linspace_unit_gap_test.py +0 -0
  938. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/int/int_logspace_gap_gt_1_hard_test.py +0 -0
  939. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/int/int_logspace_gap_gt_1_soft_test.py +0 -0
  940. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/int/int_logspace_gap_gt_1_test.py +0 -0
  941. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/int/int_logspace_unit_gap_test.py +0 -0
  942. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/regap_logspace_test.py +0 -0
  943. {pybear-0.2.3/tests/preprocessing/InterceptManager/validation → pybear-0.2.4/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/shift}/__init__.py +0 -0
  944. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/shift/shift_grid_test.py +0 -0
  945. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/shift/shift_points_and_passes_test.py +0 -0
  946. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/shift/shift_test.py +0 -0
  947. {pybear-0.2.3/tests/preprocessing/MinCountTransformer → pybear-0.2.4/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/string}/__init__.py +0 -0
  948. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/string/string_test.py +0 -0
  949. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/update_phlite_test.py +0 -0
  950. {pybear-0.2.3/tests/preprocessing/MinCountTransformer/make_instructions → pybear-0.2.4/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/validation}/__init__.py +0 -0
  951. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/validation/validate_best_params_test.py +0 -0
  952. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/validation/validate_grids_test.py +0 -0
  953. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/validation/validate_int_float_linlogspace_test.py +0 -0
  954. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/validation/validate_is_logspace.py +0 -0
  955. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/get_next_param_grid/validation/validate_phlite_test.py +0 -0
  956. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/param_conditioning/17sec +0 -0
  957. {pybear-0.2.3/tests/preprocessing/MinCountTransformer/make_instructions/validation → pybear-0.2.4/tests/model_selection/autogridsearch/autogridsearch_wrapper/param_conditioning}/__init__.py +0 -0
  958. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/param_conditioning/conditioning_test.py +0 -0
  959. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/param_conditioning/max_shifts_test.py +0 -0
  960. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/param_conditioning/params_10sec_test.py +0 -0
  961. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/param_conditioning/total_passes_test.py +0 -0
  962. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/refit_can_be_skipped_6sec_test.py +0 -0
  963. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/validation/13sec +0 -0
  964. {pybear-0.2.3/tests/preprocessing/MinCountTransformer/partial_fit → pybear-0.2.4/tests/model_selection/autogridsearch/autogridsearch_wrapper/validation}/__init__.py +0 -0
  965. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/validation/agscv_verbose_test.py +0 -0
  966. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/validation/max_shifts_test.py +0 -0
  967. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/validation/params_bool_test.py +0 -0
  968. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/validation/params_numerical_test.py +0 -0
  969. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/validation/params_string_test.py +0 -0
  970. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/validation/params_test.py +0 -0
  971. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/validation/total_passes_is_hard_test.py +0 -0
  972. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/validation/total_passes_test.py +0 -0
  973. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/autogridsearch_wrapper/validation/validation_test.py +0 -0
  974. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/floating_point_error_4sec_test.py +0 -0
  975. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/verification_AutoGSTCV_15sec_test.py +0 -0
  976. {pybear-0.2.3 → pybear-0.2.4}/tests/model_selection/autogridsearch/verification_sklearn_gscvs_27sec_test.py +0 -0
  977. {pybear-0.2.3 → pybear-0.2.4}/tests/new_numpy/20_seconds +0 -0
  978. {pybear-0.2.3 → pybear-0.2.4}/tests/new_numpy/__init__.py +0 -0
  979. {pybear-0.2.3 → pybear-0.2.4}/tests/new_numpy/_random_/20_seconds +0 -0
  980. {pybear-0.2.3/tests/preprocessing/MinCountTransformer/print_instructions → pybear-0.2.4/tests/new_numpy/_random_}/__init__.py +0 -0
  981. {pybear-0.2.3 → pybear-0.2.4}/tests/new_numpy/_random_/random_choice_test.py +0 -0
  982. {pybear-0.2.3 → pybear-0.2.4}/tests/new_numpy/_random_/random_sparse_class_test.py +0 -0
  983. {pybear-0.2.3 → pybear-0.2.4}/tests/new_numpy/_random_/random_sparse_test.py +0 -0
  984. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/17min11sec +0 -0
  985. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/4min27sec +0 -0
  986. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/CDT_32sec_test.py +0 -0
  987. {pybear-0.2.3/tests/preprocessing/MinCountTransformer/set_params → pybear-0.2.4/tests/preprocessing/ColumnDeduplicateTransformer}/__init__.py +0 -0
  988. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/attr_accuracy_119sec_test.py +0 -0
  989. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/attr_method_access_4sec_test.py +0 -0
  990. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/conftest.py +0 -0
  991. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/get_feature_names_out_15sec_test.py +0 -0
  992. {pybear-0.2.3/tests/preprocessing/MinCountTransformer/transform → pybear-0.2.4/tests/preprocessing/ColumnDeduplicateTransformer/inverse_transform}/__init__.py +0 -0
  993. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/inverse_transform/inverse_transform_13sec_test.py +0 -0
  994. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/partial_fit/43_sec +0 -0
  995. {pybear-0.2.3/tests/preprocessing/MinCountTransformer/validation → pybear-0.2.4/tests/preprocessing/ColumnDeduplicateTransformer/partial_fit}/__init__.py +0 -0
  996. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/partial_fit/_lock_in_random_idxs_5sec_test.py +0 -0
  997. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/partial_fit/columns_getter_8sec_test.py +0 -0
  998. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/partial_fit/find_duplicates_21sec_test.py +0 -0
  999. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/partial_fit/find_duplicates_joblib_9sec_test.py +0 -0
  1000. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/partial_fit/identify_idxs_to_delete_7sec_test.py +0 -0
  1001. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/partial_fit/merge_dupls_7sec_test.py +0 -0
  1002. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/partial_fit/parallel_chunk_comparer_6sec_test.py +0 -0
  1003. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/partial_fit/parallel_column_comparer_6sec_test.py +0 -0
  1004. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/pipeline_13sec_test.py +0 -0
  1005. {pybear-0.2.3/tests/preprocessing/NanStandardizer → pybear-0.2.4/tests/preprocessing/ColumnDeduplicateTransformer/set_params}/__init__.py +0 -0
  1006. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/set_params/set_params_6sec_test.py +0 -0
  1007. {pybear-0.2.3/tests/preprocessing/NanStandardizer → pybear-0.2.4/tests/preprocessing/ColumnDeduplicateTransformer}/transform/__init__.py +0 -0
  1008. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/transform/transform_7sec_test.py +0 -0
  1009. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/validation/6sec +0 -0
  1010. {pybear-0.2.3/tests/preprocessing/NanStandardizer → pybear-0.2.4/tests/preprocessing/ColumnDeduplicateTransformer}/validation/__init__.py +0 -0
  1011. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/validation/conflict_test.py +0 -0
  1012. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/validation/do_not_drop_test.py +0 -0
  1013. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/validation/keep_test.py +0 -0
  1014. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/ColumnDeduplicateTransformer/validation/validation_test.py +0 -0
  1015. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/1min7sec +0 -0
  1016. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/IM_18sec_test.py +0 -0
  1017. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/VarianceThreshold_7sec_test.py +0 -0
  1018. {pybear-0.2.3/tests/preprocessing/SlimPolyFeatures → pybear-0.2.4/tests/preprocessing/InterceptManager}/__init__.py +0 -0
  1019. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/attr_accuracy_21sec_test.py +0 -0
  1020. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/attr_method_access_3sec_test.py +0 -0
  1021. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/conftest.py +0 -0
  1022. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/get_feature_names_out_9sec_test.py +0 -0
  1023. {pybear-0.2.3/tests/preprocessing/SlimPolyFeatures/attributes → pybear-0.2.4/tests/preprocessing/InterceptManager/inverse_transform}/__init__.py +0 -0
  1024. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/inverse_transform/inverse_transform_8sec_test.py +0 -0
  1025. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/inverse_transform/remove_intercept_test.py +0 -0
  1026. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/partial_fit/25_sec +0 -0
  1027. {pybear-0.2.3/tests/preprocessing/SlimPolyFeatures/get_feature_names_out → pybear-0.2.4/tests/preprocessing/InterceptManager/partial_fit}/__init__.py +0 -0
  1028. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/partial_fit/columns_getter_6sec_test.py +0 -0
  1029. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/partial_fit/find_constants_10sec_test.py +0 -0
  1030. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/partial_fit/merge_constants_6sec_test.py +0 -0
  1031. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/partial_fit/parallel_constant_finder_5sec_test.py +0 -0
  1032. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/pipeline_5sec_test.py +0 -0
  1033. {pybear-0.2.3/tests/preprocessing/SlimPolyFeatures/partial_fit → pybear-0.2.4/tests/preprocessing/InterceptManager/set_params}/__init__.py +0 -0
  1034. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/set_params/set_params_test.py +0 -0
  1035. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/shared/9_sec +0 -0
  1036. {pybear-0.2.3/tests/preprocessing/SlimPolyFeatures/set_params → pybear-0.2.4/tests/preprocessing/InterceptManager/shared}/__init__.py +0 -0
  1037. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/shared/make_instructions_test.py +0 -0
  1038. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/shared/manage_keep_test.py +0 -0
  1039. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/shared/set_attributes_test.py +0 -0
  1040. {pybear-0.2.3/tests/preprocessing/SlimPolyFeatures/shared → pybear-0.2.4/tests/preprocessing/InterceptManager/transform}/__init__.py +0 -0
  1041. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/transform/transform_10sec_test.py +0 -0
  1042. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/validation/9sec +0 -0
  1043. {pybear-0.2.3/tests/preprocessing/SlimPolyFeatures/transform → pybear-0.2.4/tests/preprocessing/InterceptManager/validation}/__init__.py +0 -0
  1044. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/validation/instructions_test.py +0 -0
  1045. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/validation/keep_and_columns_test.py +0 -0
  1046. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/InterceptManager/validation/validation_test.py +0 -0
  1047. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/2min52sec +0 -0
  1048. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/MCT_2min32sec_test.py +0 -0
  1049. {pybear-0.2.3/tests/preprocessing/SlimPolyFeatures/validation → pybear-0.2.4/tests/preprocessing/MinCountTransformer}/__init__.py +0 -0
  1050. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/attr_accuracy_3sec_test.py +0 -0
  1051. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/attr_method_access_4sec_test.py +0 -0
  1052. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/conftest.py +0 -0
  1053. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/conftest__mmct__12sec_test.py +0 -0
  1054. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/get_feature_names_out_6sec_test.py +0 -0
  1055. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/get_row_support_4sec_test.py +0 -0
  1056. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/get_support_4sec_test.py +0 -0
  1057. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/make_instructions/21sec +0 -0
  1058. {pybear-0.2.3/tests/preprocessing → pybear-0.2.4/tests/preprocessing/MinCountTransformer/make_instructions}/__init__.py +0 -0
  1059. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/make_instructions/make_instructions_2sec_test.py +0 -0
  1060. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/make_instructions/one_unique_4sec_test.py +0 -0
  1061. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/make_instructions/three_or_more_uniques_hab_5sec_test.py +0 -0
  1062. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/make_instructions/three_or_more_uniques_not_hab_4sec_test.py +0 -0
  1063. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/make_instructions/threshold_listifier_test.py +0 -0
  1064. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/make_instructions/two_uniques_hab_5sec_test.py +0 -0
  1065. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/make_instructions/two_uniques_not_hab_4sec_test.py +0 -0
  1066. {pybear-0.2.3/tests/preprocessing/_shared → pybear-0.2.4/tests/preprocessing/MinCountTransformer/make_instructions/validation}/__init__.py +0 -0
  1067. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/make_instructions/validation/delete_instr_test.py +0 -0
  1068. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/make_instructions/validation/make_instructions_validation_1sec_test.py +0 -0
  1069. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/make_instructions/validation/total_counts_by_column_2sec_test.py +0 -0
  1070. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/partial_fit/10sec +0 -0
  1071. {pybear-0.2.3/tests/preprocessing/_shared/_validation → pybear-0.2.4/tests/preprocessing/MinCountTransformer/partial_fit}/__init__.py +0 -0
  1072. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/partial_fit/columns_getter_test.py +0 -0
  1073. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/partial_fit/get_dtypes_unqs_cts_6sec_test.py +0 -0
  1074. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/partial_fit/original_dtypes_merger_test.py +0 -0
  1075. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/partial_fit/parallel_dtype_unqs_cts_6sec_test.py +0 -0
  1076. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/partial_fit/tcbc_merger_test.py +0 -0
  1077. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/pipeline_6sec_test.py +0 -0
  1078. {pybear-0.2.3/tests/utilities → pybear-0.2.4/tests/preprocessing/MinCountTransformer/print_instructions}/__init__.py +0 -0
  1079. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/print_instructions/print_instructions_4sec_test.py +0 -0
  1080. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/print_instructions/repr_instructions_3sec_test.py +0 -0
  1081. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/set_params/13sec +0 -0
  1082. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/set_params/set_params_13sec_test.py +0 -0
  1083. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/transform/9sec +0 -0
  1084. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/transform/_ic_hab_condition_8sec_test.py +0 -0
  1085. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/transform/make_row_and_column_masks_6sec_test.py +0 -0
  1086. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/transform/parallelized_row_masks_3sec_test.py +0 -0
  1087. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/transform/tcbc_update_3sec_test.py +0 -0
  1088. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/validation/9sec +0 -0
  1089. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/validation/count_threshold_3sec_test.py +0 -0
  1090. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/validation/feature_names_in_test.py +0 -0
  1091. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/validation/ign_cols_hab_callable_4sec_test.py +0 -0
  1092. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/validation/ignore_columns_handle_as_bool_5sec_test.py +0 -0
  1093. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/validation/original_dtypes_1sec_test.py +0 -0
  1094. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/validation/validation_5sec_test.py +0 -0
  1095. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/MinCountTransformer/validation/y_test.py +0 -0
  1096. /pybear-0.2.3/tests/preprocessing/NanStandardizer/4sec → /pybear-0.2.4/tests/preprocessing/NanStandardizer/6sec +0 -0
  1097. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/NanStandardizer/attr_method_access_test.py +0 -0
  1098. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/NanStandardizer/conftest.py +0 -0
  1099. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/2min45sec +0 -0
  1100. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/SlimPoly_42sec_test.py +0 -0
  1101. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/attr_accuracy_5sec_test.py +0 -0
  1102. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/attr_method_access_21sec_test.py +0 -0
  1103. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/attributes/3sec +0 -0
  1104. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/attributes/build_dropped_poly_duplicates_2sec_test.py +0 -0
  1105. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/attributes/build_kept_poly_duplicates_3sec_test.py +0 -0
  1106. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/conftest.py +0 -0
  1107. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/dupls_consts_no_op_37sec_test.py +0 -0
  1108. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/get_feature_names_out/3sec +0 -0
  1109. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/get_feature_names_out/gfno_poly_3sec_test.py +0 -0
  1110. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/get_feature_names_out_18sec_test.py +0 -0
  1111. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/numerical_accuracy_3sec_test.py +0 -0
  1112. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/partial_fit/18sec +0 -0
  1113. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/partial_fit/columns_getter_4sec_test.py +0 -0
  1114. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/partial_fit/combination_builder_5sec_test.py +0 -0
  1115. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/partial_fit/deconstant_poly_dupls_3sec_test.py +0 -0
  1116. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/partial_fit/get_dupls_for_combo_in_X_and_poly_10sec_test.py +0 -0
  1117. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/partial_fit/get_dupls_for_combo_in_X_and_poly_joblib_68sec_test.py +0 -0
  1118. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/partial_fit/lock_in_random_combos_3sec_test.py +0 -0
  1119. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/partial_fit/merge_constants_3sec_test.py +0 -0
  1120. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/partial_fit/merge_partialfit_dupls_2sec_test.py +0 -0
  1121. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/partial_fit/num_combinations_2sec_test.py +0 -0
  1122. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/partial_fit/parallel_chunk_comparer_6sec_test.py +0 -0
  1123. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/partial_fit/parallel_column_comparer_4sec_test.py +0 -0
  1124. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/partial_fit/parallel_constant_finder_2sec_test.py +0 -0
  1125. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/pipeline_9sec_test.py +0 -0
  1126. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/set_params/set_params_8sec_test.py +0 -0
  1127. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/shared/3sec +0 -0
  1128. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/shared/check_X_constants_dupls_3sec_test.py +0 -0
  1129. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/shared/identify_combos_to_keep_3sec_test.py +0 -0
  1130. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/transform/build_poly_4sec_test.py +0 -0
  1131. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/validation/9sec +0 -0
  1132. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/validation/X_supplemental_test.py +0 -0
  1133. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/validation/degree__min_degree__test.py +0 -0
  1134. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/validation/feature_name_combiner_test.py +0 -0
  1135. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/validation/keep_test.py +0 -0
  1136. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/SlimPolyFeatures/validation/validation_test.py +0 -0
  1137. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/_shared/_validation/X_test.py +0 -0
  1138. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/_shared/_validation/any_bool_test.py +0 -0
  1139. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/_shared/_validation/any_integer_9sec_test.py +0 -0
  1140. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/_shared/_validation/atol_test.py +0 -0
  1141. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/_shared/_validation/equal_nan_test.py +0 -0
  1142. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/_shared/_validation/n_jobs_test.py +0 -0
  1143. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/_shared/_validation/rtol_test.py +0 -0
  1144. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/conftest.py +0 -0
  1145. {pybear-0.2.3 → pybear-0.2.4}/tests/preprocessing/conftest_X_factory_18sec_test.py +0 -0
  1146. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/37sec +0 -0
  1147. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/array_sparsity_2sec_test.py +0 -0
  1148. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/check_pipeline_3sec_test.py +0 -0
  1149. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/conftest.py +0 -0
  1150. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/feature_name_mapper_test.py +0 -0
  1151. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/get_methods_out_of_class_2sec_test.py +0 -0
  1152. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/get_module_name_test.py +0 -0
  1153. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/inf_masking_13sec_test.py +0 -0
  1154. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/logger_test.py +0 -0
  1155. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/nan_masking2_11sec_test.py +0 -0
  1156. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/nan_masking_7sec_test.py +0 -0
  1157. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/permuter_2sec_test.py +0 -0
  1158. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/print_inspect_stack_test.py +0 -0
  1159. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/remove_characters_test.py +0 -0
  1160. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/serial_index_mapper_3sec_test.py +0 -0
  1161. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/time_memory_benchmark_16sec_test.py +0 -0
  1162. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/timer_2sec_test.py +0 -0
  1163. {pybear-0.2.3 → pybear-0.2.4}/tests/utilities/union_find_test.py +0 -0
  1164. {pybear-0.2.3 → pybear-0.2.4}/tests/version_test.py +0 -0
@@ -6,6 +6,26 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
8
 
9
+ ## [0.2.4] - 2026-06-10
10
+
11
+ ### Added
12
+ - Support for py3.14; sklearn_tags for sklearn 1.8 compatibility
13
+
14
+ ### Changed
15
+ - Update dependency floors for py3.14 support
16
+
17
+ ### Deprecated
18
+ - None
19
+
20
+ ### Removed
21
+ - Support for py3.9
22
+
23
+ ### Fixed
24
+ - None
25
+
26
+ ### Security
27
+ - None
28
+
9
29
  ## [0.2.3] - 2025-09-30
10
30
 
11
31
  ### Added
@@ -1,8 +1,77 @@
1
+ Metadata-Version: 2.4
2
+ Name: pybear
3
+ Version: 0.2.4
4
+ Summary: Python modules for miscellaneous data analytics applications
5
+ License: BSD-3-Clause
6
+ License-File: LICENSE
7
+ Keywords: python data analytics scikit-API text
8
+ Author: Bill Sousa
9
+ Author-email: WKSJR99@msn.com
10
+ Maintainer: Bill Sousa
11
+ Requires-Python: >=3.10
12
+ Classifier: License :: OSI Approved :: BSD License
13
+ Classifier: Programming Language :: Python :: 3
14
+ Classifier: Programming Language :: Python :: 3.10
15
+ Classifier: Programming Language :: Python :: 3.11
16
+ Classifier: Programming Language :: Python :: 3.12
17
+ Classifier: Programming Language :: Python :: 3.13
18
+ Classifier: Programming Language :: Python :: 3.14
19
+ Requires-Dist: joblib (>=1.3.0) ; python_version == "3.10"
20
+ Requires-Dist: joblib (>=1.3.0) ; python_version == "3.11"
21
+ Requires-Dist: joblib (>=1.3.0) ; python_version == "3.12"
22
+ Requires-Dist: joblib (>=1.3.0) ; python_version == "3.13"
23
+ Requires-Dist: joblib (>=1.5.2) ; python_version == "3.14"
24
+ Requires-Dist: numpy (>=1.23.3) ; python_version == "3.11"
25
+ Requires-Dist: numpy (>=1.23.3,<2.3) ; python_version == "3.10"
26
+ Requires-Dist: numpy (>=1.26.0) ; python_version == "3.12"
27
+ Requires-Dist: numpy (>=2.1.0) ; python_version == "3.13"
28
+ Requires-Dist: numpy (>=2.3.2) ; python_version == "3.14"
29
+ Requires-Dist: pandas (>=1.3.4,<3.0) ; python_version == "3.10"
30
+ Requires-Dist: pandas (>=1.5.1) ; python_version == "3.11"
31
+ Requires-Dist: pandas (>=2.1.1) ; python_version == "3.12"
32
+ Requires-Dist: pandas (>=2.2.3) ; python_version == "3.13"
33
+ Requires-Dist: pandas (>=2.3.3) ; python_version == "3.14"
34
+ Requires-Dist: polars (>=1.19.0) ; python_version == "3.10"
35
+ Requires-Dist: polars (>=1.19.0) ; python_version == "3.11"
36
+ Requires-Dist: polars (>=1.19.0) ; python_version == "3.12"
37
+ Requires-Dist: polars (>=1.19.0) ; python_version == "3.13"
38
+ Requires-Dist: polars (>=1.19.0) ; python_version == "3.14"
39
+ Requires-Dist: psutil (>=5.9.0) ; python_version == "3.10"
40
+ Requires-Dist: psutil (>=5.9.4) ; python_version == "3.11"
41
+ Requires-Dist: psutil (>=5.9.4) ; python_version == "3.12"
42
+ Requires-Dist: psutil (>=5.9.4) ; python_version == "3.13"
43
+ Requires-Dist: psutil (>=7.1.2) ; python_version == "3.14"
44
+ Requires-Dist: pyarrow (>=10.0.1) ; python_version == "3.11"
45
+ Requires-Dist: pyarrow (>=14.0.0) ; python_version == "3.12"
46
+ Requires-Dist: pyarrow (>=18.0.0) ; python_version == "3.13"
47
+ Requires-Dist: pyarrow (>=22.0.0) ; python_version == "3.14"
48
+ Requires-Dist: pyarrow (>=6.0.0) ; python_version == "3.10"
49
+ Requires-Dist: scikit-learn (>=1.3.0) ; python_version == "3.11"
50
+ Requires-Dist: scikit-learn (>=1.3.0,<1.8) ; python_version == "3.10"
51
+ Requires-Dist: scikit-learn (>=1.3.1) ; python_version == "3.12"
52
+ Requires-Dist: scikit-learn (>=1.5.2) ; python_version == "3.13"
53
+ Requires-Dist: scikit-learn (>=1.7.2) ; python_version == "3.14"
54
+ Requires-Dist: scipy (>=1.12.0) ; python_version == "3.11"
55
+ Requires-Dist: scipy (>=1.12.0) ; python_version == "3.12"
56
+ Requires-Dist: scipy (>=1.12.0,<1.16.0) ; python_version == "3.10"
57
+ Requires-Dist: scipy (>=1.14.1) ; python_version == "3.13"
58
+ Requires-Dist: scipy (>=1.16.1) ; python_version == "3.14"
59
+ Requires-Dist: typing_extensions (>=4.6.0) ; python_version == "3.10"
60
+ Requires-Dist: typing_extensions (>=4.6.0) ; python_version == "3.11"
61
+ Requires-Dist: typing_extensions (>=4.6.0) ; python_version == "3.12"
62
+ Requires-Dist: typing_extensions (>=4.6.0) ; python_version == "3.13"
63
+ Requires-Dist: typing_extensions (>=4.6.0) ; python_version == "3.14"
64
+ Project-URL: Documentation, https://pybear.readthedocs.io/en/stable/
65
+ Project-URL: Homepage, https://github.com/PylarBear/pybear
66
+ Project-URL: Repository, https://github.com/PylarBear/pybear
67
+ Description-Content-Type: text/x-rst
68
+
1
69
  pybear
2
70
  ======
3
71
 
4
72
  |Tests|
5
73
  |Coverage|
74
+ |Test Status 314|
6
75
  |Test Status 313|
7
76
  |Test Status 312|
8
77
  |Test Status 311|
@@ -14,6 +83,9 @@ pybear
14
83
  .. |Coverage| image:: https://raw.githubusercontent.com/PylarBear/pybear/main/.github/badges/coverage-badge.svg
15
84
  :target: https://github.com/PylarBear/pybear/actions
16
85
 
86
+ .. |Test Status 314| image:: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py314.yml/badge.svg
87
+ :target: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py314.yml
88
+
17
89
  .. |Test Status 313| image:: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py313.yml/badge.svg
18
90
  :target: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py313.yml
19
91
 
@@ -44,7 +116,7 @@ pybear
44
116
  .. |PyPI Build Status| image:: https://github.com/PylarBear/pybear/actions/workflows/pypi-publish.yml/badge.svg
45
117
  :target: https://github.com/PylarBear/pybear/actions/workflows/pypi-publish.yml
46
118
 
47
- .. |Version| image:: https://img.shields.io/pypi/v/pybear
119
+ .. |Version| image:: https://img.shields.io/pypi/v/pybear?style=flat&color=blue
48
120
  :target: https://pypi.org/project/pybear
49
121
  :alt: PyPI Version
50
122
 
@@ -66,24 +138,74 @@ pybear
66
138
 
67
139
  .. _documentation: https://pybear.readthedocs.io/
68
140
 
69
- .. |PythonVersion| replace:: >=3.10
70
- .. |JoblibVersion| replace:: >=1.3.0
71
- .. |NumpyVersion| replace:: >=2.1.0
72
- .. |PandasVersion| replace:: >=2.2.3
73
- .. |PolarsVersion| replace:: >=1.19.0
74
- .. |PsutilVersion| replace:: >=5.7.0
75
- .. |PytestVersion| replace:: >=7.0.0
76
- .. |ScipyVersion| replace:: >=1.15.0
77
- .. |ScikitLearnVersion| replace:: >=1.5.2
78
- .. |TypingExtensionsVersion| replace:: >=4.12.0
79
-
80
-
81
141
 
82
- Cool, but not frozen, packages to augment your Python data analytics experience.
83
-
84
- pybear is a scikit-learn-style Python computing library that augments data
142
+ .. |PythonVersion314| replace:: ==3.14
143
+ .. |JoblibVersion314| replace:: >=1.5.2
144
+ .. |NumpyVersion314| replace:: >=2.3.2
145
+ .. |PandasVersion314| replace:: >=2.3.3
146
+ .. |PolarsVersion314| replace:: >=1.19.0
147
+ .. |PsutilVersion314| replace:: >=7.1.2
148
+ .. |PyarrowVersion314| replace:: >=22.0.0
149
+ .. |PytestVersion314| replace:: >=8.0.0
150
+ .. |ScikitLearnVersion314| replace:: >=1.7.2
151
+ .. |ScipyVersion314| replace:: >=1.16.1
152
+ .. |TypingExtensionsVersion314| replace:: >=4.6.0
153
+
154
+ .. |PythonVersion313| replace:: ==3.13
155
+ .. |JoblibVersion313| replace:: >=1.3.0
156
+ .. |NumpyVersion313| replace:: >=2.1.0
157
+ .. |PandasVersion313| replace:: >=2.2.3
158
+ .. |PolarsVersion313| replace:: >=1.19.0
159
+ .. |PsutilVersion313| replace:: >=5.9.4
160
+ .. |PyarrowVersion313| replace:: >=18.0.0
161
+ .. |PytestVersion313| replace:: >=7.0.0
162
+ .. |ScikitLearnVersion313| replace:: >=1.5.2
163
+ .. |ScipyVersion313| replace:: >=1.14.1
164
+ .. |TypingExtensionsVersion313| replace:: >=4.6.0
165
+
166
+ .. |PythonVersion312| replace:: ==3.12
167
+ .. |JoblibVersion312| replace:: >=1.3.0
168
+ .. |NumpyVersion312| replace:: >=1.26.0
169
+ .. |PandasVersion312| replace:: >=2.1.1
170
+ .. |PolarsVersion312| replace:: >=1.19.0
171
+ .. |PsutilVersion312| replace:: >=5.9.4
172
+ .. |PyarrowVersion312| replace:: >=14.0.0
173
+ .. |PytestVersion312| replace:: >=7.0.0
174
+ .. |ScikitLearnVersion312| replace:: >=1.3.1
175
+ .. |ScipyVersion312| replace:: >=1.12.0
176
+ .. |TypingExtensionsVersion312| replace:: >=4.6.0
177
+
178
+ .. |PythonVersion311| replace:: ==3.11
179
+ .. |JoblibVersion311| replace:: >=1.3.0
180
+ .. |NumpyVersion311| replace:: >=1.23.3
181
+ .. |PandasVersion311| replace:: >=1.5.1
182
+ .. |PolarsVersion311| replace:: >=1.19.0
183
+ .. |PsutilVersion311| replace:: >=5.9.4
184
+ .. |PyarrowVersion311| replace:: >=10.0.1
185
+ .. |PytestVersion311| replace:: >=7.0.0
186
+ .. |ScikitLearnVersion311| replace:: >=1.3.0
187
+ .. |ScipyVersion311| replace:: >=1.12.0
188
+ .. |TypingExtensionsVersion311| replace:: >=4.6.0
189
+
190
+ .. |PythonVersion310| replace:: ==3.10
191
+ .. |JoblibVersion310| replace:: >=1.3.0
192
+ .. |NumpyVersion310| replace:: >=1.23.3, <2.3
193
+ .. |PandasVersion310| replace:: >=1.3.4, <3.0
194
+ .. |PolarsVersion310| replace:: >=1.19.0
195
+ .. |PsutilVersion310| replace:: >=5.9.0
196
+ .. |PyarrowVersion310| replace:: >=6.0.0
197
+ .. |PytestVersion310| replace:: >=7.0.0
198
+ .. |ScikitLearnVersion310| replace:: >=1.3.0,<1.8
199
+ .. |ScipyVersion310| replace:: >=1.12.0,<1.16
200
+ .. |TypingExtensionsVersion310| replace:: >=4.6.0
201
+
202
+ Python packages that augment your data analytics experience.
203
+
204
+ pybear is a scikit-style Python computing library that augments data
85
205
  analytics functionality found in popular packages like scikit-learn and xgboost.
86
206
 
207
+ Python versions 3.10, 3.11, 3.12, 3.13, and 3.14 are supported.
208
+
87
209
  See documentation_ for more information.
88
210
 
89
211
  Website: https://pybear.readthedocs.io/en/stable/index.html
@@ -91,7 +213,7 @@ Website: https://pybear.readthedocs.io/en/stable/index.html
91
213
  License
92
214
  -------
93
215
 
94
- BSD 3-Clause License. See `License File <https://github.com/PylarBear/pybear/blob/main/LICENSE>`__.
216
+ BSD 3-Clause License. See `License file <https://github.com/PylarBear/pybear/blob/main/LICENSE>`__.
95
217
 
96
218
  =======
97
219
 
@@ -101,17 +223,70 @@ Installation
101
223
  Dependencies
102
224
  ~~~~~~~~~~~~
103
225
 
104
- pybear requires:
105
-
106
- - Python (|PythonVersion|)
107
- - joblib (|JoblibVersion|)
108
- - numpy (|NumPyVersion|)
109
- - pandas (|PandasVersion|)
110
- - polars (|PolarsVersion|)
111
- - psutil (|PsutilVersion|)
112
- - scikit-learn (|ScikitLearnVersion|)
113
- - scipy (|ScipyVersion|)
114
- - typing_extensions (|TypingExtensionsVersion|)
226
+ pybear operating on Python 3.14 requires:
227
+
228
+ - Python (|PythonVersion314|)
229
+ - joblib (|JoblibVersion314|)
230
+ - numpy (|NumPyVersion314|)
231
+ - pandas (|PandasVersion314|)
232
+ - polars (|PolarsVersion314|)
233
+ - psutil (|PsutilVersion314|)
234
+ - pyarrow (|PyarrowVersion314|)
235
+ - scikit-learn (|ScikitLearnVersion314|)
236
+ - scipy (|ScipyVersion314|)
237
+ - typing_extensions (|TypingExtensionsVersion314|)
238
+
239
+ pybear operating on Python 3.13 requires:
240
+
241
+ - Python (|PythonVersion313|)
242
+ - joblib (|JoblibVersion313|)
243
+ - numpy (|NumPyVersion313|)
244
+ - pandas (|PandasVersion313|)
245
+ - polars (|PolarsVersion313|)
246
+ - psutil (|PsutilVersion313|)
247
+ - pyarrow (|PyarrowVersion313|)
248
+ - scikit-learn (|ScikitLearnVersion313|)
249
+ - scipy (|ScipyVersion313|)
250
+ - typing_extensions (|TypingExtensionsVersion313|)
251
+
252
+ pybear operating on Python 3.12 requires:
253
+
254
+ - Python (|PythonVersion312|)
255
+ - joblib (|JoblibVersion312|)
256
+ - numpy (|NumPyVersion312|)
257
+ - pandas (|PandasVersion312|)
258
+ - polars (|PolarsVersion312|)
259
+ - psutil (|PsutilVersion312|)
260
+ - pyarrow (|PyarrowVersion312|)
261
+ - scikit-learn (|ScikitLearnVersion312|)
262
+ - scipy (|ScipyVersion312|)
263
+ - typing_extensions (|TypingExtensionsVersion312|)
264
+
265
+ pybear operating on Python 3.11 requires:
266
+
267
+ - Python (|PythonVersion311|)
268
+ - joblib (|JoblibVersion311|)
269
+ - numpy (|NumPyVersion311|)
270
+ - pandas (|PandasVersion311|)
271
+ - polars (|PolarsVersion311|)
272
+ - psutil (|PsutilVersion311|)
273
+ - pyarrow (|PyarrowVersion311|)
274
+ - scikit-learn (|ScikitLearnVersion311|)
275
+ - scipy (|ScipyVersion311|)
276
+ - typing_extensions (|TypingExtensionsVersion311|)
277
+
278
+ pybear operating on Python 3.10 requires:
279
+
280
+ - Python (|PythonVersion310|)
281
+ - joblib (|JoblibVersion310|)
282
+ - numpy (|NumPyVersion310|)
283
+ - pandas (|PandasVersion310|)
284
+ - polars (|PolarsVersion310|)
285
+ - psutil (|PsutilVersion310|)
286
+ - pyarrow (|PyarrowVersion310|)
287
+ - scikit-learn (|ScikitLearnVersion310|)
288
+ - scipy (|ScipyVersion310|)
289
+ - typing_extensions (|TypingExtensionsVersion310|)
115
290
 
116
291
  User installation
117
292
  ~~~~~~~~~~~~~~~~~
@@ -120,8 +295,7 @@ Install pybear from the online PyPI package repository using ``pip``::
120
295
 
121
296
  (your-env) $ pip install pybear
122
297
 
123
- Conda distributions are expected to be made available sometime after release to
124
- PyPI.
298
+ A Conda distribution is not expected to be made available anytime soon.
125
299
 
126
300
  =======
127
301
 
@@ -260,9 +434,9 @@ The modules include:
260
434
  Related Resources
261
435
  -----------------
262
436
  pybear has a sister package called pybear-dask. A few of the pybear modules
263
- have a corresponding twin in pybear-dask. You can pip install pybear-dask
264
- from PyPI in the same way as pybear. There is no Read The Docs website for
265
- pybear-dask, but it does have a GitHub repo.
437
+ have corresponding twins that use dask and they can be found in that package.
438
+ You can pip install pybear-dask from PyPI in the same way as pybear. There is
439
+ no documentation website for pybear-dask, but it does have a GitHub repo.
266
440
 
267
441
  https://github.com/PylarBear/pybear-dask/
268
442
 
@@ -286,7 +460,7 @@ Important links
286
460
  ~~~~~~~~~~~~~~~
287
461
 
288
462
  - Official source code repo: https://github.com/PylarBear/pybear
289
- - Download releases: https://test.pypi.org/project/pybear/ (pypi coming soon!)
463
+ - Download releases: https://pypi.org/project/pybear/
290
464
  - Issue tracker: https://github.com/PylarBear/pybear/issues
291
465
 
292
466
  Source code
@@ -299,18 +473,24 @@ You can clone the latest source code with the command::
299
473
  Contributing
300
474
  ~~~~~~~~~~~~
301
475
 
302
- pybear is not ready for contributions at this time!
476
+ For guidelines on how to contribute to pybear, see the
477
+ `CONTRIBUTING.rst file <https://github.com/PylarBear/pybear/blob/main/CONTRIBUTING.rst>`__
478
+ in the source code repository.
479
+ You can also access the contributing guidelines on the
480
+ `contributing webpage <https://pybear.readthedocs.io/en/stable/CONTRIBUTING.html>`__
481
+ of the pybear documentation website.
303
482
 
304
483
  Testing
305
484
  ~~~~~~~
306
485
 
307
486
  pybear 0.2 is tested via GitHub Actions to run on Linux, Windows, and MacOS,
308
- with Python versions 3.10, 3.11, 3.12, and 3.13. pybear is not tested on earlier
309
- versions, but some features may work.
487
+ with Python versions 3.10, 3.11, 3.12, 3.13, and 3.14. pybear is not supported
488
+ nor test tested on earlier versions.
310
489
 
311
490
  If you want to test pybear yourself, you will need:
312
491
 
313
- - pytest (|PytestVersion|)
492
+ - pytest (|PytestVersion314|) for Python version 3.14
493
+ - pytest (|PytestVersion313|) for Python versions 3.13, 3.12, 3.11, and 3.10
314
494
 
315
495
  The tests are not available in the PyPI pip installation. You can get
316
496
  the tests by downloading the tarball from the pybear project page on
@@ -336,7 +516,7 @@ Help and Support
336
516
  Documentation
337
517
  ~~~~~~~~~~~~~
338
518
 
339
- - HTML documentation: https://pybear.readthedocs.io/en/stable/api.html
519
+ - HTML documentation: https://pybear.readthedocs.io/en/stable/index.html
340
520
 
341
521
  Communication
342
522
  ~~~~~~~~~~~~~
@@ -347,3 +527,4 @@ Communication
347
527
 
348
528
 
349
529
 
530
+
@@ -1,39 +1,9 @@
1
- Metadata-Version: 2.4
2
- Name: pybear
3
- Version: 0.2.3
4
- Summary: Python modules for miscellaneous data analytics applications
5
- License: BSD-3-Clause
6
- License-File: LICENSE
7
- Keywords: python data analytics scikit-API text
8
- Author: Bill Sousa
9
- Author-email: WKSJR99@msn.com
10
- Maintainer: Bill Sousa
11
- Requires-Python: >=3.10
12
- Classifier: License :: OSI Approved :: BSD License
13
- Classifier: Programming Language :: Python :: 3
14
- Classifier: Programming Language :: Python :: 3.10
15
- Classifier: Programming Language :: Python :: 3.11
16
- Classifier: Programming Language :: Python :: 3.12
17
- Classifier: Programming Language :: Python :: 3.13
18
- Classifier: Programming Language :: Python :: 3.14
19
- Requires-Dist: joblib (>=1.3.0)
20
- Requires-Dist: numpy (>=2.1.0)
21
- Requires-Dist: pandas (>=2.2.3)
22
- Requires-Dist: polars (>=1.19.0)
23
- Requires-Dist: psutil (>=5.7.0)
24
- Requires-Dist: scikit-learn (>=1.5.2)
25
- Requires-Dist: scipy (>=1.15.0)
26
- Requires-Dist: typing_extensions (>=4.12.0)
27
- Project-URL: Documentation, https://pybear.readthedocs.io/en/stable/
28
- Project-URL: Homepage, https://github.com/PylarBear/pybear
29
- Project-URL: Repository, https://github.com/PylarBear/pybear
30
- Description-Content-Type: text/x-rst
31
-
32
1
  pybear
33
2
  ======
34
3
 
35
4
  |Tests|
36
5
  |Coverage|
6
+ |Test Status 314|
37
7
  |Test Status 313|
38
8
  |Test Status 312|
39
9
  |Test Status 311|
@@ -45,6 +15,9 @@ pybear
45
15
  .. |Coverage| image:: https://raw.githubusercontent.com/PylarBear/pybear/main/.github/badges/coverage-badge.svg
46
16
  :target: https://github.com/PylarBear/pybear/actions
47
17
 
18
+ .. |Test Status 314| image:: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py314.yml/badge.svg
19
+ :target: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py314.yml
20
+
48
21
  .. |Test Status 313| image:: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py313.yml/badge.svg
49
22
  :target: https://github.com/PylarBear/pybear/actions/workflows/matrix-tests-py313.yml
50
23
 
@@ -75,7 +48,7 @@ pybear
75
48
  .. |PyPI Build Status| image:: https://github.com/PylarBear/pybear/actions/workflows/pypi-publish.yml/badge.svg
76
49
  :target: https://github.com/PylarBear/pybear/actions/workflows/pypi-publish.yml
77
50
 
78
- .. |Version| image:: https://img.shields.io/pypi/v/pybear
51
+ .. |Version| image:: https://img.shields.io/pypi/v/pybear?style=flat&color=blue
79
52
  :target: https://pypi.org/project/pybear
80
53
  :alt: PyPI Version
81
54
 
@@ -97,24 +70,74 @@ pybear
97
70
 
98
71
  .. _documentation: https://pybear.readthedocs.io/
99
72
 
100
- .. |PythonVersion| replace:: >=3.10
101
- .. |JoblibVersion| replace:: >=1.3.0
102
- .. |NumpyVersion| replace:: >=2.1.0
103
- .. |PandasVersion| replace:: >=2.2.3
104
- .. |PolarsVersion| replace:: >=1.19.0
105
- .. |PsutilVersion| replace:: >=5.7.0
106
- .. |PytestVersion| replace:: >=7.0.0
107
- .. |ScipyVersion| replace:: >=1.15.0
108
- .. |ScikitLearnVersion| replace:: >=1.5.2
109
- .. |TypingExtensionsVersion| replace:: >=4.12.0
110
-
111
-
112
73
 
113
- Cool, but not frozen, packages to augment your Python data analytics experience.
114
-
115
- pybear is a scikit-learn-style Python computing library that augments data
74
+ .. |PythonVersion314| replace:: ==3.14
75
+ .. |JoblibVersion314| replace:: >=1.5.2
76
+ .. |NumpyVersion314| replace:: >=2.3.2
77
+ .. |PandasVersion314| replace:: >=2.3.3
78
+ .. |PolarsVersion314| replace:: >=1.19.0
79
+ .. |PsutilVersion314| replace:: >=7.1.2
80
+ .. |PyarrowVersion314| replace:: >=22.0.0
81
+ .. |PytestVersion314| replace:: >=8.0.0
82
+ .. |ScikitLearnVersion314| replace:: >=1.7.2
83
+ .. |ScipyVersion314| replace:: >=1.16.1
84
+ .. |TypingExtensionsVersion314| replace:: >=4.6.0
85
+
86
+ .. |PythonVersion313| replace:: ==3.13
87
+ .. |JoblibVersion313| replace:: >=1.3.0
88
+ .. |NumpyVersion313| replace:: >=2.1.0
89
+ .. |PandasVersion313| replace:: >=2.2.3
90
+ .. |PolarsVersion313| replace:: >=1.19.0
91
+ .. |PsutilVersion313| replace:: >=5.9.4
92
+ .. |PyarrowVersion313| replace:: >=18.0.0
93
+ .. |PytestVersion313| replace:: >=7.0.0
94
+ .. |ScikitLearnVersion313| replace:: >=1.5.2
95
+ .. |ScipyVersion313| replace:: >=1.14.1
96
+ .. |TypingExtensionsVersion313| replace:: >=4.6.0
97
+
98
+ .. |PythonVersion312| replace:: ==3.12
99
+ .. |JoblibVersion312| replace:: >=1.3.0
100
+ .. |NumpyVersion312| replace:: >=1.26.0
101
+ .. |PandasVersion312| replace:: >=2.1.1
102
+ .. |PolarsVersion312| replace:: >=1.19.0
103
+ .. |PsutilVersion312| replace:: >=5.9.4
104
+ .. |PyarrowVersion312| replace:: >=14.0.0
105
+ .. |PytestVersion312| replace:: >=7.0.0
106
+ .. |ScikitLearnVersion312| replace:: >=1.3.1
107
+ .. |ScipyVersion312| replace:: >=1.12.0
108
+ .. |TypingExtensionsVersion312| replace:: >=4.6.0
109
+
110
+ .. |PythonVersion311| replace:: ==3.11
111
+ .. |JoblibVersion311| replace:: >=1.3.0
112
+ .. |NumpyVersion311| replace:: >=1.23.3
113
+ .. |PandasVersion311| replace:: >=1.5.1
114
+ .. |PolarsVersion311| replace:: >=1.19.0
115
+ .. |PsutilVersion311| replace:: >=5.9.4
116
+ .. |PyarrowVersion311| replace:: >=10.0.1
117
+ .. |PytestVersion311| replace:: >=7.0.0
118
+ .. |ScikitLearnVersion311| replace:: >=1.3.0
119
+ .. |ScipyVersion311| replace:: >=1.12.0
120
+ .. |TypingExtensionsVersion311| replace:: >=4.6.0
121
+
122
+ .. |PythonVersion310| replace:: ==3.10
123
+ .. |JoblibVersion310| replace:: >=1.3.0
124
+ .. |NumpyVersion310| replace:: >=1.23.3, <2.3
125
+ .. |PandasVersion310| replace:: >=1.3.4, <3.0
126
+ .. |PolarsVersion310| replace:: >=1.19.0
127
+ .. |PsutilVersion310| replace:: >=5.9.0
128
+ .. |PyarrowVersion310| replace:: >=6.0.0
129
+ .. |PytestVersion310| replace:: >=7.0.0
130
+ .. |ScikitLearnVersion310| replace:: >=1.3.0,<1.8
131
+ .. |ScipyVersion310| replace:: >=1.12.0,<1.16
132
+ .. |TypingExtensionsVersion310| replace:: >=4.6.0
133
+
134
+ Python packages that augment your data analytics experience.
135
+
136
+ pybear is a scikit-style Python computing library that augments data
116
137
  analytics functionality found in popular packages like scikit-learn and xgboost.
117
138
 
139
+ Python versions 3.10, 3.11, 3.12, 3.13, and 3.14 are supported.
140
+
118
141
  See documentation_ for more information.
119
142
 
120
143
  Website: https://pybear.readthedocs.io/en/stable/index.html
@@ -122,7 +145,7 @@ Website: https://pybear.readthedocs.io/en/stable/index.html
122
145
  License
123
146
  -------
124
147
 
125
- BSD 3-Clause License. See `License File <https://github.com/PylarBear/pybear/blob/main/LICENSE>`__.
148
+ BSD 3-Clause License. See `License file <https://github.com/PylarBear/pybear/blob/main/LICENSE>`__.
126
149
 
127
150
  =======
128
151
 
@@ -132,17 +155,70 @@ Installation
132
155
  Dependencies
133
156
  ~~~~~~~~~~~~
134
157
 
135
- pybear requires:
136
-
137
- - Python (|PythonVersion|)
138
- - joblib (|JoblibVersion|)
139
- - numpy (|NumPyVersion|)
140
- - pandas (|PandasVersion|)
141
- - polars (|PolarsVersion|)
142
- - psutil (|PsutilVersion|)
143
- - scikit-learn (|ScikitLearnVersion|)
144
- - scipy (|ScipyVersion|)
145
- - typing_extensions (|TypingExtensionsVersion|)
158
+ pybear operating on Python 3.14 requires:
159
+
160
+ - Python (|PythonVersion314|)
161
+ - joblib (|JoblibVersion314|)
162
+ - numpy (|NumPyVersion314|)
163
+ - pandas (|PandasVersion314|)
164
+ - polars (|PolarsVersion314|)
165
+ - psutil (|PsutilVersion314|)
166
+ - pyarrow (|PyarrowVersion314|)
167
+ - scikit-learn (|ScikitLearnVersion314|)
168
+ - scipy (|ScipyVersion314|)
169
+ - typing_extensions (|TypingExtensionsVersion314|)
170
+
171
+ pybear operating on Python 3.13 requires:
172
+
173
+ - Python (|PythonVersion313|)
174
+ - joblib (|JoblibVersion313|)
175
+ - numpy (|NumPyVersion313|)
176
+ - pandas (|PandasVersion313|)
177
+ - polars (|PolarsVersion313|)
178
+ - psutil (|PsutilVersion313|)
179
+ - pyarrow (|PyarrowVersion313|)
180
+ - scikit-learn (|ScikitLearnVersion313|)
181
+ - scipy (|ScipyVersion313|)
182
+ - typing_extensions (|TypingExtensionsVersion313|)
183
+
184
+ pybear operating on Python 3.12 requires:
185
+
186
+ - Python (|PythonVersion312|)
187
+ - joblib (|JoblibVersion312|)
188
+ - numpy (|NumPyVersion312|)
189
+ - pandas (|PandasVersion312|)
190
+ - polars (|PolarsVersion312|)
191
+ - psutil (|PsutilVersion312|)
192
+ - pyarrow (|PyarrowVersion312|)
193
+ - scikit-learn (|ScikitLearnVersion312|)
194
+ - scipy (|ScipyVersion312|)
195
+ - typing_extensions (|TypingExtensionsVersion312|)
196
+
197
+ pybear operating on Python 3.11 requires:
198
+
199
+ - Python (|PythonVersion311|)
200
+ - joblib (|JoblibVersion311|)
201
+ - numpy (|NumPyVersion311|)
202
+ - pandas (|PandasVersion311|)
203
+ - polars (|PolarsVersion311|)
204
+ - psutil (|PsutilVersion311|)
205
+ - pyarrow (|PyarrowVersion311|)
206
+ - scikit-learn (|ScikitLearnVersion311|)
207
+ - scipy (|ScipyVersion311|)
208
+ - typing_extensions (|TypingExtensionsVersion311|)
209
+
210
+ pybear operating on Python 3.10 requires:
211
+
212
+ - Python (|PythonVersion310|)
213
+ - joblib (|JoblibVersion310|)
214
+ - numpy (|NumPyVersion310|)
215
+ - pandas (|PandasVersion310|)
216
+ - polars (|PolarsVersion310|)
217
+ - psutil (|PsutilVersion310|)
218
+ - pyarrow (|PyarrowVersion310|)
219
+ - scikit-learn (|ScikitLearnVersion310|)
220
+ - scipy (|ScipyVersion310|)
221
+ - typing_extensions (|TypingExtensionsVersion310|)
146
222
 
147
223
  User installation
148
224
  ~~~~~~~~~~~~~~~~~
@@ -151,8 +227,7 @@ Install pybear from the online PyPI package repository using ``pip``::
151
227
 
152
228
  (your-env) $ pip install pybear
153
229
 
154
- Conda distributions are expected to be made available sometime after release to
155
- PyPI.
230
+ A Conda distribution is not expected to be made available anytime soon.
156
231
 
157
232
  =======
158
233
 
@@ -291,9 +366,9 @@ The modules include:
291
366
  Related Resources
292
367
  -----------------
293
368
  pybear has a sister package called pybear-dask. A few of the pybear modules
294
- have a corresponding twin in pybear-dask. You can pip install pybear-dask
295
- from PyPI in the same way as pybear. There is no Read The Docs website for
296
- pybear-dask, but it does have a GitHub repo.
369
+ have corresponding twins that use dask and they can be found in that package.
370
+ You can pip install pybear-dask from PyPI in the same way as pybear. There is
371
+ no documentation website for pybear-dask, but it does have a GitHub repo.
297
372
 
298
373
  https://github.com/PylarBear/pybear-dask/
299
374
 
@@ -317,7 +392,7 @@ Important links
317
392
  ~~~~~~~~~~~~~~~
318
393
 
319
394
  - Official source code repo: https://github.com/PylarBear/pybear
320
- - Download releases: https://test.pypi.org/project/pybear/ (pypi coming soon!)
395
+ - Download releases: https://pypi.org/project/pybear/
321
396
  - Issue tracker: https://github.com/PylarBear/pybear/issues
322
397
 
323
398
  Source code
@@ -330,18 +405,24 @@ You can clone the latest source code with the command::
330
405
  Contributing
331
406
  ~~~~~~~~~~~~
332
407
 
333
- pybear is not ready for contributions at this time!
408
+ For guidelines on how to contribute to pybear, see the
409
+ `CONTRIBUTING.rst file <https://github.com/PylarBear/pybear/blob/main/CONTRIBUTING.rst>`__
410
+ in the source code repository.
411
+ You can also access the contributing guidelines on the
412
+ `contributing webpage <https://pybear.readthedocs.io/en/stable/CONTRIBUTING.html>`__
413
+ of the pybear documentation website.
334
414
 
335
415
  Testing
336
416
  ~~~~~~~
337
417
 
338
418
  pybear 0.2 is tested via GitHub Actions to run on Linux, Windows, and MacOS,
339
- with Python versions 3.10, 3.11, 3.12, and 3.13. pybear is not tested on earlier
340
- versions, but some features may work.
419
+ with Python versions 3.10, 3.11, 3.12, 3.13, and 3.14. pybear is not supported
420
+ nor test tested on earlier versions.
341
421
 
342
422
  If you want to test pybear yourself, you will need:
343
423
 
344
- - pytest (|PytestVersion|)
424
+ - pytest (|PytestVersion314|) for Python version 3.14
425
+ - pytest (|PytestVersion313|) for Python versions 3.13, 3.12, 3.11, and 3.10
345
426
 
346
427
  The tests are not available in the PyPI pip installation. You can get
347
428
  the tests by downloading the tarball from the pybear project page on
@@ -367,7 +448,7 @@ Help and Support
367
448
  Documentation
368
449
  ~~~~~~~~~~~~~
369
450
 
370
- - HTML documentation: https://pybear.readthedocs.io/en/stable/api.html
451
+ - HTML documentation: https://pybear.readthedocs.io/en/stable/index.html
371
452
 
372
453
  Communication
373
454
  ~~~~~~~~~~~~~
@@ -378,4 +459,3 @@ Communication
378
459
 
379
460
 
380
461
 
381
-