howso-engine 60.3.2__tar.gz → 61.0.0__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 (113) hide show
  1. {howso_engine-60.3.2 → howso_engine-61.0.0}/.github/workflows/build.yml +13 -13
  2. {howso_engine-60.3.2 → howso_engine-61.0.0}/LICENSE-3RD-PARTY.txt +33 -33
  3. {howso_engine-60.3.2/howso_engine.egg-info → howso_engine-61.0.0}/PKG-INFO +6 -6
  4. {howso_engine-60.3.2 → howso_engine-61.0.0}/README.md +1 -1
  5. {howso_engine-60.3.2 → howso_engine-61.0.0}/bin/build.sh +1 -1
  6. {howso_engine-60.3.2 → howso_engine-61.0.0}/hatch.toml +1 -1
  7. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/__init__.py +21 -19
  8. howso_engine-61.0.0/howso/utilities/fanout_features.py +799 -0
  9. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/feature_attributes/base.py +14 -5
  10. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/feature_attributes/infer_feature_attributes.py +6 -0
  11. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/feature_attributes/suggestions.py +150 -18
  12. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/feature_attributes/time_series.py +17 -2
  13. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/utilities.py +1 -0
  14. {howso_engine-60.3.2 → howso_engine-61.0.0/howso_engine.egg-info}/PKG-INFO +6 -6
  15. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso_engine.egg-info/SOURCES.txt +5 -2
  16. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso_engine.egg-info/requires.txt +2 -2
  17. howso_engine-61.0.0/pyproject.toml +114 -0
  18. howso_engine-61.0.0/pyrightconfig.json +10 -0
  19. {howso_engine-60.3.2 → howso_engine-61.0.0}/requirements-3.11-dev.txt +4 -4
  20. {howso_engine-60.3.2 → howso_engine-61.0.0}/requirements-3.11.txt +3 -3
  21. {howso_engine-60.3.2 → howso_engine-61.0.0}/requirements-3.12-dev.txt +4 -4
  22. {howso_engine-60.3.2 → howso_engine-61.0.0}/requirements-3.12.txt +3 -3
  23. {howso_engine-60.3.2 → howso_engine-61.0.0}/requirements-3.13-dev.txt +4 -4
  24. {howso_engine-60.3.2 → howso_engine-61.0.0}/requirements-3.13.txt +3 -3
  25. howso_engine-60.3.2/requirements-3.10-dev.txt → howso_engine-61.0.0/requirements-3.14-dev.txt +12 -23
  26. howso_engine-60.3.2/requirements-3.10.txt → howso_engine-61.0.0/requirements-3.14.txt +6 -6
  27. howso_engine-61.0.0/ruff.toml +136 -0
  28. howso_engine-60.3.2/pyproject.toml +0 -114
  29. {howso_engine-60.3.2 → howso_engine-61.0.0}/.coveragerc +0 -0
  30. {howso_engine-60.3.2 → howso_engine-61.0.0}/.flake8 +0 -0
  31. {howso_engine-60.3.2 → howso_engine-61.0.0}/.github/CODEOWNERS +0 -0
  32. {howso_engine-60.3.2 → howso_engine-61.0.0}/.github/templates/version_summary.md +0 -0
  33. {howso_engine-60.3.2 → howso_engine-61.0.0}/.github/workflows/build-pr.yml +0 -0
  34. {howso_engine-60.3.2 → howso_engine-61.0.0}/.github/workflows/build-release.yml +0 -0
  35. {howso_engine-60.3.2 → howso_engine-61.0.0}/.github/workflows/rebuild-requirements.yml +0 -0
  36. {howso_engine-60.3.2 → howso_engine-61.0.0}/.github/workflows/version-update.yml +0 -0
  37. {howso_engine-60.3.2 → howso_engine-61.0.0}/.gitignore +0 -0
  38. {howso_engine-60.3.2 → howso_engine-61.0.0}/.gitmodules +0 -0
  39. {howso_engine-60.3.2 → howso_engine-61.0.0}/.pylintrc +0 -0
  40. {howso_engine-60.3.2 → howso_engine-61.0.0}/CONTRIBUTING.md +0 -0
  41. {howso_engine-60.3.2 → howso_engine-61.0.0}/LICENSE.txt +0 -0
  42. {howso_engine-60.3.2 → howso_engine-61.0.0}/MANIFEST.in +0 -0
  43. {howso_engine-60.3.2 → howso_engine-61.0.0}/Makefile +0 -0
  44. {howso_engine-60.3.2 → howso_engine-61.0.0}/config/latest-mt-debug-howso.yml +0 -0
  45. {howso_engine-60.3.2 → howso_engine-61.0.0}/config/latest-mt-howso.yml +0 -0
  46. {howso_engine-60.3.2 → howso_engine-61.0.0}/config/latest-mt-noavx-traces-howso.yml +0 -0
  47. {howso_engine-60.3.2 → howso_engine-61.0.0}/config/latest-mt-traces-howso.yml +0 -0
  48. {howso_engine-60.3.2 → howso_engine-61.0.0}/config/latest-st-debug-howso.yml +0 -0
  49. {howso_engine-60.3.2 → howso_engine-61.0.0}/config/latest-st-howso.yml +0 -0
  50. {howso_engine-60.3.2 → howso_engine-61.0.0}/config/latest-st-traces-howso.yml +0 -0
  51. {howso_engine-60.3.2 → howso_engine-61.0.0}/config/powershell/Download-Tzdata.ps1 +0 -0
  52. {howso_engine-60.3.2 → howso_engine-61.0.0}/config/powershell/Helper-Functions.ps1 +0 -0
  53. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/__main__.py +0 -0
  54. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/__init__.py +0 -0
  55. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/api.py +0 -0
  56. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/base.py +0 -0
  57. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/cache.py +0 -0
  58. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/client.py +0 -0
  59. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/configuration.py +0 -0
  60. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/exceptions.py +0 -0
  61. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/feature_flags.py +0 -0
  62. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/pandas/__init__.py +0 -0
  63. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/pandas/client.py +0 -0
  64. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/protocols.py +0 -0
  65. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/schemas/__init__.py +0 -0
  66. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/schemas/aggregate_reaction.py +0 -0
  67. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/schemas/base.py +0 -0
  68. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/schemas/group_reaction.py +0 -0
  69. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/schemas/project.py +0 -0
  70. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/schemas/reaction.py +0 -0
  71. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/schemas/session.py +0 -0
  72. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/schemas/trainee.py +0 -0
  73. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/schemas/version.py +0 -0
  74. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/client/typing.py +0 -0
  75. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/direct/__init__.py +0 -0
  76. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/direct/_utilities.py +0 -0
  77. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/direct/client.py +0 -0
  78. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/direct/schemas/__init__.py +0 -0
  79. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/direct/schemas/trainee.py +0 -0
  80. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/engine/__init__.py +0 -0
  81. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/engine/client.py +0 -0
  82. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/engine/project.py +0 -0
  83. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/engine/session.py +0 -0
  84. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/engine/trainee.py +0 -0
  85. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/howso-engine/howso.caml +0 -0
  86. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/howso-engine/migrations/migrations.caml +0 -0
  87. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/howso-engine/version.json +0 -0
  88. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/scikit/__init__.py +0 -0
  89. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/scikit/scikit.py +0 -0
  90. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/decorators.py +0 -0
  91. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/feature_attributes/__init__.py +0 -0
  92. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/feature_attributes/abstract_data.py +0 -0
  93. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/feature_attributes/pandas.py +0 -0
  94. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/feature_attributes/protocols.py +0 -0
  95. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/feature_attributes/relational.py +0 -0
  96. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/feature_attributes/serializers.py +0 -0
  97. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/feature_attributes/warnings.py +0 -0
  98. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/features.py +0 -0
  99. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/installation_verification.py +0 -0
  100. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/internals.py +0 -0
  101. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/json_wrapper.py +0 -0
  102. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/locale.py +0 -0
  103. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/monitors.py +0 -0
  104. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/posix.py +0 -0
  105. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/random.py +0 -0
  106. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/reaction.py +0 -0
  107. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/testing.py +0 -0
  108. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso/utilities/tokenizing.py +0 -0
  109. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso_engine.egg-info/dependency_links.txt +0 -0
  110. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso_engine.egg-info/entry_points.txt +0 -0
  111. {howso_engine-60.3.2 → howso_engine-61.0.0}/howso_engine.egg-info/top_level.txt +0 -0
  112. {howso_engine-60.3.2 → howso_engine-61.0.0}/setup.cfg +0 -0
  113. {howso_engine-60.3.2 → howso_engine-61.0.0}/version.json +0 -0
@@ -105,7 +105,7 @@ jobs:
105
105
  - name: Set up Python
106
106
  uses: actions/setup-python@v5
107
107
  with:
108
- python-version: "3.11"
108
+ python-version: "3.13"
109
109
 
110
110
  - name: Install pypa/build
111
111
  run: >-
@@ -147,7 +147,7 @@ jobs:
147
147
  upstream-details: ${{ needs.metadata.outputs.upstream-details }}
148
148
  validate-amlg-versions: true
149
149
 
150
- pytest-linux-3-10-st:
150
+ pytest-linux-3-11-st:
151
151
  needs: ['metadata', 'build']
152
152
  uses: howsoai/.github/.github/workflows/pytest.yml@main
153
153
  secrets: inherit
@@ -155,14 +155,14 @@ jobs:
155
155
  platform: 'ubuntu-latest'
156
156
  platform-pretty: 'Linux'
157
157
  amalgam-plat-arch: 'linux-amd64'
158
- python-version: '3.10'
158
+ python-version: '3.11'
159
159
  config-fp: './config/latest-st-traces-howso.yml'
160
160
  config-pretty: 'ST'
161
161
  workers: 'off' # Amalgam ST > 78.0 is not thread safe at all
162
162
  upstream-details: ${{ needs.metadata.outputs.upstream-details }}
163
163
  debug: ${{ inputs.debug-mode }}
164
164
 
165
- pytest-linux-3-12-mt:
165
+ pytest-linux-3-14-mt:
166
166
  needs: ['metadata', 'build']
167
167
  uses: howsoai/.github/.github/workflows/pytest.yml@main
168
168
  secrets: inherit
@@ -170,13 +170,13 @@ jobs:
170
170
  platform: 'ubuntu-latest'
171
171
  platform-pretty: 'Linux'
172
172
  amalgam-plat-arch: 'linux-amd64'
173
- python-version: '3.12'
173
+ python-version: '3.14'
174
174
  config-fp: './config/latest-mt-traces-howso.yml'
175
175
  config-pretty: 'MT'
176
176
  upstream-details: ${{ needs.metadata.outputs.upstream-details }}
177
177
  debug: ${{ inputs.debug-mode }}
178
178
 
179
- pytest-windows-3-11-mt:
179
+ pytest-windows-3-13-mt:
180
180
  needs: ['metadata', 'build']
181
181
  uses: howsoai/.github/.github/workflows/pytest.yml@main
182
182
  secrets: inherit
@@ -184,13 +184,13 @@ jobs:
184
184
  platform: 'windows-latest'
185
185
  platform-pretty: 'Windows'
186
186
  amalgam-plat-arch: 'windows-amd64'
187
- python-version: '3.11'
187
+ python-version: '3.13'
188
188
  config-fp: './config/latest-mt-traces-howso.yml'
189
189
  config-pretty: 'MT'
190
190
  upstream-details: ${{ needs.metadata.outputs.upstream-details }}
191
191
  debug: ${{ inputs.debug-mode }}
192
192
 
193
- pytest-macos-3-13-mt-arm64:
193
+ pytest-macos-3-12-mt-arm64:
194
194
  needs: ['metadata', 'build']
195
195
  uses: howsoai/.github/.github/workflows/pytest.yml@main
196
196
  secrets: inherit
@@ -198,7 +198,7 @@ jobs:
198
198
  platform: 'macos-latest'
199
199
  platform-pretty: 'MacOS'
200
200
  amalgam-plat-arch: 'darwin-arm64'
201
- python-version: '3.13'
201
+ python-version: '3.12'
202
202
  config-fp: './config/latest-mt-traces-howso.yml'
203
203
  config-pretty: 'MT'
204
204
  upstream-details: ${{ needs.metadata.outputs.upstream-details }}
@@ -638,10 +638,10 @@ jobs:
638
638
  - metadata
639
639
  - generate-changelog
640
640
  - workflow-summary
641
- - pytest-linux-3-10-st
642
- - pytest-linux-3-12-mt
643
- - pytest-windows-3-11-mt
644
- - pytest-macos-3-13-mt-arm64
641
+ - pytest-linux-3-11-st
642
+ - pytest-linux-3-14-mt
643
+ - pytest-windows-3-13-mt
644
+ - pytest-macos-3-12-mt-arm64
645
645
  - install-verification-linux-amd64
646
646
  - install-verification-linux-arm64
647
647
  - install-verification-linux-arm64_8a
@@ -4,7 +4,7 @@ MIT License
4
4
  joke2k
5
5
  https://github.com/joke2k/faker
6
6
  Faker is a Python package that generates fake data for you.
7
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/faker-40.23.0.dist-info/licenses/LICENSE.txt
7
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/faker-40.23.0.dist-info/licenses/LICENSE.txt
8
8
  Copyright (c) 2012 Daniele Faraglia
9
9
 
10
10
  Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -32,7 +32,7 @@ MIT License
32
32
  Kirill Simonov
33
33
  https://pyyaml.org/
34
34
  YAML parser and emitter for Python
35
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/pyyaml-6.0.3.dist-info/licenses/LICENSE
35
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/pyyaml-6.0.3.dist-info/licenses/LICENSE
36
36
  Copyright (c) 2017-2021 Ingy döt Net
37
37
  Copyright (c) 2006-2016 Kirill Simonov
38
38
 
@@ -61,7 +61,7 @@ BSD-2-Clause
61
61
  Georg Brandl <georg@python.org>
62
62
  https://pygments.org
63
63
  Pygments is a syntax highlighting package written in Python.
64
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/pygments-2.20.0.dist-info/licenses/LICENSE
64
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/pygments-2.20.0.dist-info/licenses/LICENSE
65
65
  Copyright (c) 2006-2022 by the respective authors (see AUTHORS file).
66
66
  All rights reserved.
67
67
 
@@ -95,7 +95,7 @@ MIT
95
95
  Filipe Laíns <lains@riseup.net>, Bernát Gábor <gaborjbernat@gmail.com>, layday <layday@protonmail.com>, Henry Schreiner <henryschreineriii@gmail.com>
96
96
  https://build.pypa.io
97
97
  A simple, correct Python build frontend
98
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/build-1.5.0.dist-info/licenses/LICENSE
98
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/build-1.5.0.dist-info/licenses/LICENSE
99
99
  Copyright © 2019 Filipe Laíns <filipe.lains@gmail.com>
100
100
 
101
101
  Permission is hereby granted, free of charge, to any person obtaining a
@@ -119,12 +119,12 @@ DEALINGS IN THE SOFTWARE.
119
119
 
120
120
 
121
121
  certifi
122
- 2026.5.20
122
+ 2026.6.17
123
123
  Mozilla Public License 2.0 (MPL 2.0)
124
124
  Kenneth Reitz
125
125
  https://github.com/certifi/python-certifi
126
126
  Python package for providing Mozilla's CA Bundle.
127
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/certifi-2026.5.20.dist-info/licenses/LICENSE
127
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/certifi-2026.6.17.dist-info/licenses/LICENSE
128
128
  This package contains a modified version of ca-bundle.crt:
129
129
 
130
130
  ca-bundle.crt -- Bundle of CA Root Certificates
@@ -153,7 +153,7 @@ MIT
153
153
  "Ahmed R. TAHRI" <tahri.ahmed@proton.me>
154
154
  https://github.com/jawah/charset_normalizer/blob/master/CHANGELOG.md
155
155
  The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet.
156
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/charset_normalizer-3.4.7.dist-info/licenses/LICENSE
156
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/charset_normalizer-3.4.7.dist-info/licenses/LICENSE
157
157
  MIT License
158
158
 
159
159
  Copyright (c) 2025 TAHRI Ahmed R.
@@ -183,7 +183,7 @@ BSD-3-Clause
183
183
  UNKNOWN
184
184
  https://github.com/pallets/click/
185
185
  Composable command line interface toolkit
186
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/click-8.4.1.dist-info/licenses/LICENSE.txt
186
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/click-8.4.1.dist-info/licenses/LICENSE.txt
187
187
  Copyright 2014 Pallets
188
188
 
189
189
  Redistribution and use in source and binary forms, with or without
@@ -220,7 +220,7 @@ MIT
220
220
  Jason Moiron <jmoiron@jmoiron.net>
221
221
  https://github.com/python-humanize/humanize
222
222
  Python humanize utilities
223
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/humanize-4.15.0.dist-info/licenses/LICENCE
223
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/humanize-4.15.0.dist-info/licenses/LICENCE
224
224
  Copyright (c) 2010-2020 Jason Moiron and Contributors
225
225
 
226
226
  Permission is hereby granted, free of charge, to any person obtaining
@@ -249,7 +249,7 @@ BSD-3-Clause
249
249
  Kim Davies <kim+pypi@gumleaf.org>
250
250
  https://github.com/kjd/idna
251
251
  Internationalized Domain Names in Applications (IDNA)
252
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/idna-3.18.dist-info/licenses/LICENSE.md
252
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/idna-3.18.dist-info/licenses/LICENSE.md
253
253
  BSD 3-Clause License
254
254
 
255
255
  Copyright (c) 2013-2026, Kim Davies and contributors.
@@ -289,7 +289,7 @@ BSD-3-Clause
289
289
  Gael Varoquaux <gael.varoquaux@normalesup.org>
290
290
  https://joblib.readthedocs.io
291
291
  Lightweight pipelining with Python functions
292
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/joblib-1.5.3.dist-info/licenses/LICENSE.txt
292
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/joblib-1.5.3.dist-info/licenses/LICENSE.txt
293
293
  BSD 3-Clause License
294
294
 
295
295
  Copyright (c) 2008-2021, The joblib developers.
@@ -327,7 +327,7 @@ MIT License
327
327
  Chris Sewell <chrisj_sewell@hotmail.com>
328
328
  https://github.com/executablebooks/markdown-it-py
329
329
  Python port of markdown-it. Markdown parsing, done right!
330
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/markdown_it_py-4.2.0.dist-info/licenses/LICENSE
330
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/markdown_it_py-4.2.0.dist-info/licenses/LICENSE
331
331
  MIT License
332
332
 
333
333
  Copyright (c) 2020 ExecutableBookProject
@@ -357,7 +357,7 @@ MIT License
357
357
  Taneli Hukkinen <hukkin@users.noreply.github.com>
358
358
  https://github.com/executablebooks/mdurl
359
359
  Markdown URL utilities
360
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/mdurl-0.1.2.dist-info/LICENSE
360
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/mdurl-0.1.2.dist-info/LICENSE
361
361
  Copyright (c) 2015 Vitaly Puzrin, Alex Kocharin.
362
362
  Copyright (c) 2021 Taneli Hukkinen
363
363
 
@@ -412,7 +412,7 @@ MIT License
412
412
  Hajime Senuma <hajime.senuma@gmail.com>
413
413
  https://pypi.org/project/mmh3/
414
414
  Python extension for MurmurHash (MurmurHash3), a set of fast and robust hash functions.
415
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/mmh3-5.2.1.dist-info/licenses/LICENSE
415
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/mmh3-5.2.1.dist-info/licenses/LICENSE
416
416
  MIT License
417
417
 
418
418
  Copyright (c) 2011-2026 Hajime Senuma
@@ -441,7 +441,7 @@ BSD-3-Clause AND 0BSD AND MIT AND Zlib AND CC0-1.0
441
441
  Travis E. Oliphant et al.
442
442
  https://numpy.org
443
443
  Fundamental package for array computing in Python
444
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/numpy-2.4.6.dist-info/licenses/LICENSE.txt
444
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/numpy-2.4.6.dist-info/licenses/LICENSE.txt
445
445
  Copyright (c) 2005-2025, NumPy Developers.
446
446
  All rights reserved.
447
447
 
@@ -1385,7 +1385,7 @@ Apache-2.0 OR BSD-2-Clause
1385
1385
  Donald Stufft <donald@stufft.io>
1386
1386
  https://github.com/pypa/packaging
1387
1387
  Core utilities for Python packages
1388
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/packaging-26.2.dist-info/licenses/LICENSE
1388
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/packaging-26.2.dist-info/licenses/LICENSE
1389
1389
  This software is made available under the terms of *either* of the licenses
1390
1390
  found in LICENSE.APACHE or LICENSE.BSD. Contributions to this software is made
1391
1391
  under the terms of *both* these licenses.
@@ -1397,7 +1397,7 @@ BSD License
1397
1397
  The Pandas Development Team <pandas-dev@python.org>
1398
1398
  https://pandas.pydata.org
1399
1399
  Powerful data structures for data analysis, time series, and statistics
1400
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/pandas-2.3.3.dist-info/LICENSE
1400
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/pandas-2.3.3.dist-info/LICENSE
1401
1401
  BSD 3-Clause License
1402
1402
 
1403
1403
  Copyright (c) 2008-2011, AQR Capital Management, LLC, Lambda Foundry, Inc. and PyData Development Team
@@ -2655,7 +2655,7 @@ BSD License
2655
2655
  Vincent Driessen <me@nvie.com>
2656
2656
  https://github.com/jazzband/pip-tools/
2657
2657
  pip-tools keeps your pinned dependencies fresh.
2658
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/pip_tools-7.5.0.dist-info/licenses/LICENSE
2658
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/pip_tools-7.5.0.dist-info/licenses/LICENSE
2659
2659
  BSD 3-Clause License
2660
2660
 
2661
2661
  Copyright (c). All rights reserved.
@@ -2692,7 +2692,7 @@ BSD-3-Clause
2692
2692
  Giampaolo Rodola
2693
2693
  https://github.com/giampaolo/psutil
2694
2694
  Cross-platform lib for process and system monitoring.
2695
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/psutil-7.2.2.dist-info/LICENSE
2695
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/psutil-7.2.2.dist-info/LICENSE
2696
2696
  BSD 3-Clause License
2697
2697
 
2698
2698
  Copyright (c) 2009, Jay Loden, Dave Daeschler, Giampaolo Rodola
@@ -2730,7 +2730,7 @@ MIT License
2730
2730
  Thomas Kluyver <thomas@kluyver.me.uk>
2731
2731
  https://github.com/pypa/pyproject-hooks
2732
2732
  Wrappers to call pyproject.toml-based build backend hooks.
2733
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/pyproject_hooks-1.2.0.dist-info/LICENSE
2733
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/pyproject_hooks-1.2.0.dist-info/LICENSE
2734
2734
  The MIT License (MIT)
2735
2735
 
2736
2736
  Copyright (c) 2017 Thomas Kluyver
@@ -2760,7 +2760,7 @@ Apache Software License; BSD License
2760
2760
  Gustavo Niemeyer
2761
2761
  https://github.com/dateutil/dateutil
2762
2762
  Extensions to the standard Python datetime module
2763
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/python_dateutil-2.9.0.post0.dist-info/LICENSE
2763
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/python_dateutil-2.9.0.post0.dist-info/LICENSE
2764
2764
  Copyright 2017- Paul Ganssle <paul@ganssle.io>
2765
2765
  Copyright 2017- dateutil contributors (see AUTHORS file)
2766
2766
 
@@ -2822,7 +2822,7 @@ MIT License
2822
2822
  Stuart Bishop
2823
2823
  http://pythonhosted.org/pytz
2824
2824
  World timezone definitions, modern and historical
2825
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/pytz-2026.2.dist-info/LICENSE.txt
2825
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/pytz-2026.2.dist-info/LICENSE.txt
2826
2826
  Copyright (c) 2003-2019 Stuart Bishop <stuart@stuartbishop.net>
2827
2827
 
2828
2828
  Permission is hereby granted, free of charge, to any person obtaining a
@@ -2850,7 +2850,7 @@ Apache-2.0 AND CNRI-Python
2850
2850
  Matthew Barnett <regex@mrabarnett.plus.com>
2851
2851
  https://github.com/mrabarnett/mrab-regex
2852
2852
  Alternative regular expression module, to replace re.
2853
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/regex-2026.5.9.dist-info/licenses/LICENSE.txt
2853
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/regex-2026.5.9.dist-info/licenses/LICENSE.txt
2854
2854
  This work was derived from the 're' module of CPython 2.6 and CPython 3.1,
2855
2855
  copyright (c) 1998-2001 by Secret Labs AB and licensed under CNRI's Python 1.6
2856
2856
  license.
@@ -3067,7 +3067,7 @@ Apache Software License
3067
3067
  Kenneth Reitz <me@kennethreitz.org>
3068
3068
  https://github.com/psf/requests
3069
3069
  Python HTTP for Humans.
3070
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/requests-2.34.2.dist-info/licenses/LICENSE
3070
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/requests-2.34.2.dist-info/licenses/LICENSE
3071
3071
 
3072
3072
  Apache License
3073
3073
  Version 2.0, January 2004
@@ -3251,7 +3251,7 @@ MIT License
3251
3251
  Will McGugan
3252
3252
  https://github.com/Textualize/rich
3253
3253
  Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal
3254
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/rich-15.0.0.dist-info/licenses/LICENSE
3254
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/rich-15.0.0.dist-info/licenses/LICENSE
3255
3255
  Copyright (c) 2020 Will McGugan
3256
3256
 
3257
3257
  Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -3279,7 +3279,7 @@ MIT License
3279
3279
  UNKNOWN
3280
3280
  https://github.com/hplt-project/sacremoses
3281
3281
  SacreMoses
3282
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/sacremoses-0.1.1.dist-info/LICENSE
3282
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/sacremoses-0.1.1.dist-info/LICENSE
3283
3283
  MIT License
3284
3284
 
3285
3285
  Copyright (c) 2020 alvations
@@ -3309,7 +3309,7 @@ BSD License
3309
3309
  Raphaël Barrois
3310
3310
  https://github.com/rbarrois/python-semanticversion
3311
3311
  A library implementing the 'SemVer' scheme.
3312
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/semantic_version-2.10.0.dist-info/LICENSE
3312
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/semantic_version-2.10.0.dist-info/LICENSE
3313
3313
  Copyright (c) The python-semanticversion project
3314
3314
  All rights reserved.
3315
3315
 
@@ -3340,7 +3340,7 @@ MIT License
3340
3340
  Benjamin Peterson
3341
3341
  https://github.com/benjaminp/six
3342
3342
  Python 2 and 3 compatibility utilities
3343
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/six-1.17.0.dist-info/LICENSE
3343
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/six-1.17.0.dist-info/LICENSE
3344
3344
  Copyright (c) 2010-2024 Benjamin Peterson
3345
3345
 
3346
3346
  Permission is hereby granted, free of charge, to any person obtaining a copy of
@@ -3362,12 +3362,12 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
3362
3362
 
3363
3363
 
3364
3364
  tqdm
3365
- 4.68.2
3365
+ 4.68.3
3366
3366
  MPL-2.0 AND MIT
3367
3367
  UNKNOWN
3368
3368
  https://tqdm.github.io
3369
3369
  Fast, Extensible Progress Meter
3370
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/tqdm-4.68.2.dist-info/licenses/LICENCE
3370
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/tqdm-4.68.3.dist-info/licenses/LICENCE
3371
3371
  `tqdm` is a product of collaborative work.
3372
3372
  Unless otherwise stated, all authors (see commit logs) retain copyright
3373
3373
  for their respective work, and release the work under the MIT licence
@@ -3425,7 +3425,7 @@ PSF-2.0
3425
3425
  "Guido van Rossum, Jukka Lehtosalo, Łukasz Langa, Michael Lee" <levkivskyi@gmail.com>
3426
3426
  https://github.com/python/typing_extensions
3427
3427
  Backported and Experimental Type Hints for Python 3.9+
3428
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/typing_extensions-4.15.0.dist-info/licenses/LICENSE
3428
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/typing_extensions-4.15.0.dist-info/licenses/LICENSE
3429
3429
  A. HISTORY OF THE SOFTWARE
3430
3430
  ==========================
3431
3431
 
@@ -3713,7 +3713,7 @@ Apache-2.0
3713
3713
  Python Software Foundation
3714
3714
  https://github.com/python/tzdata
3715
3715
  Provider of IANA time zone data
3716
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/tzdata-2026.2.dist-info/licenses/LICENSE
3716
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/tzdata-2026.2.dist-info/licenses/LICENSE
3717
3717
  Apache Software License 2.0
3718
3718
 
3719
3719
  Copyright (c) 2020, Paul Ganssle (Google)
@@ -3737,7 +3737,7 @@ MIT
3737
3737
  Andrey Petrov <andrey.petrov@shazow.net>
3738
3738
  https://github.com/urllib3/urllib3/blob/main/CHANGES.rst
3739
3739
  HTTP library with thread-safe connection pooling, file post, and more.
3740
- /home/runner/.pyenv/versions/3.13.14/lib/python3.13/site-packages/urllib3-2.7.0.dist-info/licenses/LICENSE.txt
3740
+ /home/runner/.pyenv/versions/3.14.6/lib/python3.14/site-packages/urllib3-2.7.0.dist-info/licenses/LICENSE.txt
3741
3741
  MIT License
3742
3742
 
3743
3743
  Copyright (c) 2008-2020 Andrey Petrov and contributors.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: howso-engine
3
- Version: 60.3.2
3
+ Version: 61.0.0
4
4
  Summary: The Howso Engine™ is a natively and fully explainable ML engine, serving as an alternative to black box AI neural networks.
5
5
  Author: Howso Incorporated
6
6
  Author-email: support@howso.com
@@ -675,17 +675,17 @@ Classifier: Intended Audience :: Science/Research
675
675
  Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
676
676
  Classifier: License :: OSI Approved :: GNU Affero General Public License v3
677
677
  Classifier: Programming Language :: Python :: 3
678
- Classifier: Programming Language :: Python :: 3.10
679
678
  Classifier: Programming Language :: Python :: 3.11
680
679
  Classifier: Programming Language :: Python :: 3.12
681
680
  Classifier: Programming Language :: Python :: 3.13
681
+ Classifier: Programming Language :: Python :: 3.14
682
682
  Classifier: Operating System :: MacOS
683
683
  Classifier: Operating System :: MacOS :: MacOS X
684
684
  Classifier: Operating System :: Microsoft :: Windows
685
685
  Classifier: Operating System :: Microsoft :: Windows :: Windows 10
686
686
  Classifier: Operating System :: Microsoft :: Windows :: Windows 11
687
687
  Classifier: Operating System :: POSIX :: Linux
688
- Requires-Python: >=3.10
688
+ Requires-Python: >=3.11
689
689
  Description-Content-Type: text/markdown
690
690
  License-File: LICENSE-3RD-PARTY.txt
691
691
  License-File: LICENSE.txt
@@ -693,7 +693,7 @@ Requires-Dist: certifi
693
693
  Requires-Dist: Faker>=4.1.1
694
694
  Requires-Dist: humanize>=4.0.0
695
695
  Requires-Dist: mmh3
696
- Requires-Dist: numpy
696
+ Requires-Dist: numpy<2.5,>=2.3
697
697
  Requires-Dist: packaging
698
698
  Requires-Dist: pandas<3.0
699
699
  Requires-Dist: psutil
@@ -705,7 +705,7 @@ Requires-Dist: sacremoses
705
705
  Requires-Dist: semantic-version~=2.0
706
706
  Requires-Dist: typing-extensions~=4.9
707
707
  Requires-Dist: urllib3>=2.6.3
708
- Requires-Dist: amalgam-lang==32.0.1
708
+ Requires-Dist: amalgam-lang==33.0.0
709
709
  Provides-Extra: dev
710
710
  Requires-Dist: dill~=0.0; extra == "dev"
711
711
  Requires-Dist: flake8-docstrings; extra == "dev"
@@ -774,7 +774,7 @@ predicting, while a client may manage the API interface for multiple Trainees.
774
774
 
775
775
  ## Supported Platforms
776
776
 
777
- Compatible with Python versions: 3.10, 3.11, 3.12, and 3.13.
777
+ Compatible with Python versions: 3.11, 3.12, 3.13, and 3.14.
778
778
 
779
779
  **Operating Systems**
780
780
 
@@ -46,7 +46,7 @@ predicting, while a client may manage the API interface for multiple Trainees.
46
46
 
47
47
  ## Supported Platforms
48
48
 
49
- Compatible with Python versions: 3.10, 3.11, 3.12, and 3.13.
49
+ Compatible with Python versions: 3.11, 3.12, 3.13, and 3.14.
50
50
 
51
51
  **Operating Systems**
52
52
 
@@ -5,7 +5,7 @@ set -eux
5
5
  install_deps() {
6
6
  python --version
7
7
  # Connectors needed for some unit tests
8
- python -m pip install "howso-engine-connectors[dev]~=3.1" --user
8
+ python -m pip install "howso-engine-connectors[dev]~=4.0" --user
9
9
  python -m pip install --no-deps -e .
10
10
  python -m pip install -r requirements-${1}-dev.txt --no-deps --user
11
11
  }
@@ -10,4 +10,4 @@ features = ["dev"]
10
10
  # To run the verification script
11
11
  # hatch run test:verify_howso_install
12
12
  [[envs.test.matrix]]
13
- python = ["3.10", "3.11", "3.12", "3.13"]
13
+ python = ["3.11", "3.12", "3.13", "3.14"]
@@ -1,5 +1,6 @@
1
1
  """This module contains various utilities for the Howso clients."""
2
2
  from .decorators import ConsoleFeedback
3
+ from .fanout_features import infer_fanout_feature_config
3
4
  from .feature_attributes import infer_feature_attributes # noqa: F401
4
5
  from .feature_attributes.base import (
5
6
  FeatureAttributesBase,
@@ -63,39 +64,45 @@ from .utilities import ( # noqa: F401
63
64
  )
64
65
 
65
66
  __all__ = [
67
+ "ISO_8601_DATE_FORMAT",
68
+ "ISO_8601_FORMAT",
69
+ "ConsoleFeedback",
70
+ "FeatureAttributesBase",
71
+ "FeatureType",
72
+ "FrozenTimer",
73
+ "HowsoTokenizer",
74
+ "LocaleOverride",
75
+ "MultiTableFeatureAttributes",
76
+ "ProgressTimer",
77
+ "SingleTableFeatureAttributes",
78
+ "StopExecution",
79
+ "Timer",
80
+ "TokenizerProtocol",
81
+ "UserFriendlyExit",
66
82
  "align_data",
67
83
  "build_react_series_df",
68
84
  "check_feature_names",
69
- "ConsoleFeedback",
70
- "format_confusion_matrix",
71
85
  "date_format_is_iso",
72
86
  "date_to_epoch",
73
87
  "deep_update",
74
- "determine_iso_format",
75
88
  "deserialize_cases",
76
89
  "destringify_json",
90
+ "determine_iso_format",
77
91
  "dprint",
78
92
  "epoch_to_date",
79
- "FeatureAttributesBase",
80
- "FeatureType",
81
- "format_dataframe",
82
93
  "format_column",
83
- "FrozenTimer",
94
+ "format_confusion_matrix",
95
+ "format_dataframe",
84
96
  "get_hash",
85
97
  "get_kwargs",
86
98
  "get_optimized_max_chunk_size",
87
- "HowsoTokenizer",
99
+ "infer_fanout_feature_config",
88
100
  "infer_feature_attributes",
89
101
  "is_valid_datetime_format",
90
102
  "is_valid_uuid",
91
- "ISO_8601_DATE_FORMAT",
92
- "ISO_8601_FORMAT",
93
103
  "lazy_map",
94
- "LocaleOverride",
95
104
  "matrix_processing",
96
- "MultiTableFeatureAttributes",
97
105
  "num_list_dimensions",
98
- "ProgressTimer",
99
106
  "replace_doublemax_with_infinity",
100
107
  "replace_nan_with_none",
101
108
  "replace_none_with_nan",
@@ -103,16 +110,11 @@ __all__ = [
103
110
  "seconds_to_time",
104
111
  "serialize_cases",
105
112
  "serialize_datetimes",
106
- "SingleTableFeatureAttributes",
107
- "yield_dataframe_as_chunks",
108
- "StopExecution",
109
113
  "stringify_json",
110
114
  "time_to_seconds",
111
- "Timer",
112
- "TokenizerProtocol",
113
- "UserFriendlyExit",
114
115
  "validate_case_indices",
115
116
  "validate_datetime_iso8061",
116
117
  "validate_features",
117
118
  "validate_list_shape",
119
+ "yield_dataframe_as_chunks",
118
120
  ]