classifyre-cli 0.4.37__tar.gz → 0.4.38__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 (230) hide show
  1. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/.turbo/turbo-build.log +1 -1
  2. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/PKG-INFO +1 -1
  3. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/package.json +1 -1
  4. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/pyproject.toml +12 -1
  5. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/uv.lock +156 -73
  6. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/.gitignore +0 -0
  7. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/.python-version +0 -0
  8. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/README.md +0 -0
  9. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/main.py +0 -0
  10. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/scripts/generate_models.py +0 -0
  11. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/__init__.py +0 -0
  12. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/config.py +0 -0
  13. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/__init__.py +0 -0
  14. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/base.py +0 -0
  15. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/broken_links/__init__.py +0 -0
  16. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/broken_links/detector.py +0 -0
  17. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/config.py +0 -0
  18. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/content/__init__.py +0 -0
  19. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/__init__.py +0 -0
  20. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/detector.py +0 -0
  21. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/extractor.py +0 -0
  22. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/__init__.py +0 -0
  23. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_base.py +0 -0
  24. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_factory.py +0 -0
  25. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_feature_extraction.py +0 -0
  26. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_gliner2.py +0 -0
  27. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_image_classification.py +0 -0
  28. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_llm.py +0 -0
  29. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_object_detection.py +0 -0
  30. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_regex.py +0 -0
  31. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_text_classification.py +0 -0
  32. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/trainer.py +0 -0
  33. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/dependencies.py +0 -0
  34. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/pii/__init__.py +0 -0
  35. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/pii/detector.py +0 -0
  36. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/secrets/__init__.py +0 -0
  37. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/secrets/detector.py +0 -0
  38. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/threat/__init__.py +0 -0
  39. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/threat/code_security_detector.py +0 -0
  40. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/threat/yara_detector.py +0 -0
  41. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/main.py +0 -0
  42. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/models/generated_detectors.py +0 -0
  43. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/models/generated_input.py +0 -0
  44. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/models/generated_single_asset_scan_results.py +0 -0
  45. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/outputs/__init__.py +0 -0
  46. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/outputs/base.py +0 -0
  47. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/outputs/console.py +0 -0
  48. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/outputs/factory.py +0 -0
  49. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/outputs/file.py +0 -0
  50. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/outputs/rest.py +0 -0
  51. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/pipeline/__init__.py +0 -0
  52. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/pipeline/content_provider.py +0 -0
  53. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/pipeline/detector_pipeline.py +0 -0
  54. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/pipeline/parsed_content_provider.py +0 -0
  55. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/pipeline/worker_pool.py +0 -0
  56. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sandbox/__init__.py +0 -0
  57. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sandbox/runner.py +0 -0
  58. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/__init__.py +0 -0
  59. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/asset_metadata.py +0 -0
  60. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/atlassian_common.py +0 -0
  61. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/azure_blob_storage/__init__.py +0 -0
  62. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/azure_blob_storage/source.py +0 -0
  63. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/base.py +0 -0
  64. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/confluence/__init__.py +0 -0
  65. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/confluence/source.py +0 -0
  66. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/databricks/__init__.py +0 -0
  67. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/databricks/source.py +0 -0
  68. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/delta_lake/__init__.py +0 -0
  69. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/delta_lake/source.py +0 -0
  70. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/dependencies.py +0 -0
  71. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/elasticsearch/__init__.py +0 -0
  72. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/elasticsearch/source.py +0 -0
  73. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/email/__init__.py +0 -0
  74. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/email/source.py +0 -0
  75. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/google_cloud_storage/__init__.py +0 -0
  76. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/google_cloud_storage/source.py +0 -0
  77. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/hive/__init__.py +0 -0
  78. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/hive/source.py +0 -0
  79. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/iceberg/__init__.py +0 -0
  80. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/iceberg/source.py +0 -0
  81. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/jira/__init__.py +0 -0
  82. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/jira/source.py +0 -0
  83. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/kafka/__init__.py +0 -0
  84. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/kafka/source.py +0 -0
  85. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/lakehouse_base.py +0 -0
  86. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/meilisearch/__init__.py +0 -0
  87. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/meilisearch/source.py +0 -0
  88. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/mongodb/__init__.py +0 -0
  89. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/mongodb/source.py +0 -0
  90. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/mssql/__init__.py +0 -0
  91. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/mssql/source.py +0 -0
  92. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/mysql/__init__.py +0 -0
  93. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/mysql/source.py +0 -0
  94. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/neo4j/__init__.py +0 -0
  95. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/neo4j/source.py +0 -0
  96. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/notion/__init__.py +0 -0
  97. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/notion/client.py +0 -0
  98. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/notion/source.py +0 -0
  99. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/object_storage/base.py +0 -0
  100. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/opensearch/__init__.py +0 -0
  101. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/opensearch/source.py +0 -0
  102. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/oracle/__init__.py +0 -0
  103. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/oracle/source.py +0 -0
  104. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/postgresql/__init__.py +0 -0
  105. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/postgresql/source.py +0 -0
  106. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/powerbi/__init__.py +0 -0
  107. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/powerbi/source.py +0 -0
  108. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/recipe_normalizer.py +0 -0
  109. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/s3_client.py +0 -0
  110. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/s3_compatible_storage/README.md +0 -0
  111. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/s3_compatible_storage/__init__.py +0 -0
  112. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/s3_compatible_storage/source.py +0 -0
  113. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/search_engine_base.py +0 -0
  114. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/servicedesk/__init__.py +0 -0
  115. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/servicedesk/source.py +0 -0
  116. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/slack/__init__.py +0 -0
  117. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/slack/source.py +0 -0
  118. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/snowflake/__init__.py +0 -0
  119. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/snowflake/source.py +0 -0
  120. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/sqlite/__init__.py +0 -0
  121. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/sqlite/source.py +0 -0
  122. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/tableau/__init__.py +0 -0
  123. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/tableau/source.py +0 -0
  124. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/tabular_base.py +0 -0
  125. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/tabular_utils.py +0 -0
  126. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/wordpress/__init__.py +0 -0
  127. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/wordpress/source.py +0 -0
  128. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/youtube/__init__.py +0 -0
  129. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/youtube/source.py +0 -0
  130. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/telemetry.py +0 -0
  131. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/__init__.py +0 -0
  132. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/content_extraction.py +0 -0
  133. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/dependency_groups.py +0 -0
  134. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/embedded_images.py +0 -0
  135. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/file_metadata.py +0 -0
  136. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/file_parser.py +0 -0
  137. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/file_to_images.py +0 -0
  138. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/hashing.py +0 -0
  139. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/resources.py +0 -0
  140. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/transcription.py +0 -0
  141. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/uv_sync.py +0 -0
  142. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/validation.py +0 -0
  143. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/__init__.py +0 -0
  144. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/_lakehouse_fakes.py +0 -0
  145. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/conftest.py +0 -0
  146. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/__init__.py +0 -0
  147. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/broken_links/test_broken_links_detector.py +0 -0
  148. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/conftest.py +0 -0
  149. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/content/__init__.py +0 -0
  150. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/custom/__init__.py +0 -0
  151. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/custom/conftest.py +0 -0
  152. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/custom/test_invoice_extraction.py +0 -0
  153. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/custom/test_llm_runner.py +0 -0
  154. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/custom/test_pipeline_integration.py +0 -0
  155. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/custom/test_regex_runner.py +0 -0
  156. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/custom/test_transformer_runners.py +0 -0
  157. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/pii/__init__.py +0 -0
  158. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/pii/conftest.py +0 -0
  159. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/pii/sample_invoice.pdf +0 -0
  160. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/pii/test_pii_detector.py +0 -0
  161. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/pii/test_pii_detector_extended.py +0 -0
  162. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/secrets/__init__.py +0 -0
  163. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/secrets/test_secrets_detector.py +0 -0
  164. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/secrets/test_secrets_detector_extended.py +0 -0
  165. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/test_base_detector.py +0 -0
  166. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/test_custom_detector_examples_runtime.py +0 -0
  167. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/test_detector_catalog_commercial.py +0 -0
  168. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/test_detector_pipeline_types.py +0 -0
  169. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/test_detector_schema_examples.py +0 -0
  170. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/test_detector_types.py +0 -0
  171. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/test_phase2_detectors.py +0 -0
  172. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/test_registry.py +0 -0
  173. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/threat/__init__.py +0 -0
  174. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/threat/test_code_security_detector.py +0 -0
  175. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/threat/test_yara_detector.py +0 -0
  176. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/integration/test_wordpress_broken_links_detector.py +0 -0
  177. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/integration/test_wordpress_links_assets.py +0 -0
  178. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/pipeline/test_detector_pipeline.py +0 -0
  179. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/pipeline/test_worker_pool.py +0 -0
  180. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_assets_metadata_catalog.py +0 -0
  181. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_azure_blob_storage_source.py +0 -0
  182. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_base_source_attachment.py +0 -0
  183. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_base_source_sampling.py +0 -0
  184. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_config.py +0 -0
  185. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_confluence_source.py +0 -0
  186. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_custom_extractor.py +0 -0
  187. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_databricks_source.py +0 -0
  188. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_delta_lake_source.py +0 -0
  189. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_dependency_groups.py +0 -0
  190. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_elasticsearch_source.py +0 -0
  191. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_email_source.py +0 -0
  192. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_google_cloud_storage_source.py +0 -0
  193. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_hashing.py +0 -0
  194. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_hive_source.py +0 -0
  195. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_iceberg_source.py +0 -0
  196. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_jira_source.py +0 -0
  197. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_kafka_source.py +0 -0
  198. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_meilisearch_source.py +0 -0
  199. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_mongodb_source.py +0 -0
  200. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_mssql_source.py +0 -0
  201. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_mysql_source.py +0 -0
  202. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_neo4j_source.py +0 -0
  203. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_notion_source.py +0 -0
  204. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_opensearch_source.py +0 -0
  205. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_oracle_source.py +0 -0
  206. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_outputs.py +0 -0
  207. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_postgresql_source.py +0 -0
  208. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_powerbi_source.py +0 -0
  209. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_recipe_normalizer.py +0 -0
  210. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_s3_compatible_storage_source.py +0 -0
  211. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_sampling_automatic.py +0 -0
  212. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_sandbox_runner.py +0 -0
  213. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_servicedesk_source.py +0 -0
  214. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_slack_source.py +0 -0
  215. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_snowflake_source.py +0 -0
  216. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_source_dependency_groups.py +0 -0
  217. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_sqlite_source.py +0 -0
  218. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_tableau_source.py +0 -0
  219. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_tabular_automatic_sampling.py +0 -0
  220. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_tabular_utils.py +0 -0
  221. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_uv_sync.py +0 -0
  222. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_wordpress_source.py +0 -0
  223. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_youtube_source.py +0 -0
  224. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_youtube_source_integration.py +0 -0
  225. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/utils/test_content_extraction.py +0 -0
  226. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/utils/test_embedded_images.py +0 -0
  227. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/utils/test_file_metadata.py +0 -0
  228. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/utils/test_file_parser.py +0 -0
  229. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/utils/test_file_to_images.py +0 -0
  230. {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/utils/test_transcription.py +0 -0
@@ -1,3 +1,3 @@
1
1
  $ uv sync
2
- Resolved 276 packages in 336ms
2
+ Resolved 277 packages in 146ms
3
3
  Checked 51 packages in 1ms
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: classifyre-cli
3
- Version: 0.4.37
3
+ Version: 0.4.38
4
4
  Summary: Classifyre CLI — scan and classify unstructured data sources
5
5
  License: MIT
6
6
  Keywords: data,ingestion,metadata,pii,secrets,unstructured
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@classifyre/cli",
3
- "version": "0.4.37",
3
+ "version": "0.4.38",
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "build": "uv sync",
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "classifyre-cli"
3
- version = "0.4.37"
3
+ version = "0.4.38"
4
4
  description = "Classifyre CLI — scan and classify unstructured data sources"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -399,3 +399,14 @@ markers = [
399
399
 
400
400
  [tool.uv]
401
401
  package = true
402
+ # Every platform we ship (desktop bundles + CI) must resolve to versions with
403
+ # usable wheels. Without this, uv happily locks versions that are missing a
404
+ # platform — e.g. deltalake 1.6.1 published no win_amd64 wheel, which broke the
405
+ # Windows desktop venv bake ("can't be installed because it doesn't have a
406
+ # source distribution or wheel for the current platform").
407
+ required-environments = [
408
+ "sys_platform == 'win32' and platform_machine == 'AMD64'",
409
+ "sys_platform == 'darwin' and platform_machine == 'arm64'",
410
+ "sys_platform == 'linux' and platform_machine == 'x86_64'",
411
+ "sys_platform == 'linux' and platform_machine == 'aarch64'",
412
+ ]
@@ -6,22 +6,32 @@ resolution-markers = [
6
6
  "python_full_version == '3.14.*' and sys_platform == 'linux'",
7
7
  "python_full_version == '3.13.*' and sys_platform == 'linux'",
8
8
  "python_full_version < '3.13' and sys_platform == 'linux'",
9
- "python_full_version >= '3.15' and sys_platform == 'win32'",
9
+ "python_full_version >= '3.15' and platform_machine != 'AMD64' and sys_platform == 'win32'",
10
10
  "python_full_version >= '3.15' and sys_platform == 'emscripten'",
11
11
  "python_full_version >= '3.15' and sys_platform == 'darwin'",
12
12
  "python_full_version >= '3.15' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
13
- "python_full_version == '3.14.*' and sys_platform == 'win32'",
13
+ "python_full_version == '3.14.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
14
14
  "python_full_version == '3.14.*' and sys_platform == 'emscripten'",
15
15
  "python_full_version == '3.14.*' and sys_platform == 'darwin'",
16
16
  "python_full_version == '3.14.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
17
- "python_full_version == '3.13.*' and sys_platform == 'win32'",
17
+ "python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32'",
18
+ "python_full_version == '3.14.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
19
+ "python_full_version == '3.13.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
18
20
  "python_full_version == '3.13.*' and sys_platform == 'emscripten'",
19
21
  "python_full_version == '3.13.*' and sys_platform == 'darwin'",
20
22
  "python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
21
- "python_full_version < '3.13' and sys_platform == 'win32'",
23
+ "python_full_version == '3.13.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
24
+ "python_full_version < '3.13' and platform_machine != 'AMD64' and sys_platform == 'win32'",
22
25
  "python_full_version < '3.13' and sys_platform == 'emscripten'",
23
26
  "python_full_version < '3.13' and sys_platform == 'darwin'",
24
27
  "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
28
+ "python_full_version < '3.13' and platform_machine == 'AMD64' and sys_platform == 'win32'",
29
+ ]
30
+ required-markers = [
31
+ "platform_machine == 'AMD64' and sys_platform == 'win32'",
32
+ "platform_machine == 'arm64' and sys_platform == 'darwin'",
33
+ "platform_machine == 'x86_64' and sys_platform == 'linux'",
34
+ "platform_machine == 'aarch64' and sys_platform == 'linux'",
25
35
  ]
26
36
 
27
37
  [[package]]
@@ -699,7 +709,7 @@ wheels = [
699
709
 
700
710
  [[package]]
701
711
  name = "classifyre-cli"
702
- version = "0.4.37"
712
+ version = "0.4.38"
703
713
  source = { editable = "." }
704
714
  dependencies = [
705
715
  { name = "beautifulsoup4" },
@@ -750,7 +760,8 @@ databricks = [
750
760
  delta-lake = [
751
761
  { name = "boto3" },
752
762
  { name = "chardet" },
753
- { name = "deltalake" },
763
+ { name = "deltalake", version = "1.6.0", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine == 'AMD64' and sys_platform == 'win32'" },
764
+ { name = "deltalake", version = "1.6.1", source = { registry = "https://pypi.org/simple" }, marker = "platform_machine != 'AMD64' or sys_platform != 'win32'" },
754
765
  { name = "duckdb" },
755
766
  { name = "filetype" },
756
767
  { name = "openpyxl" },
@@ -861,7 +872,7 @@ neo4j = [
861
872
  ocr = [
862
873
  { name = "chardet" },
863
874
  { name = "docling", version = "2.99.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'darwin'" },
864
- { name = "docling", version = "2.108.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin'" },
875
+ { name = "docling", version = "2.109.0", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin'" },
865
876
  { name = "duckdb" },
866
877
  { name = "filetype" },
867
878
  { name = "openpyxl" },
@@ -1129,7 +1140,7 @@ youtube = [
1129
1140
 
1130
1141
  [[package]]
1131
1142
  name = "classifyre-schemas"
1132
- version = "0.4.37"
1143
+ version = "0.4.38"
1133
1144
  source = { editable = "../../packages/schemas" }
1134
1145
  dependencies = [
1135
1146
  { name = "fastjsonschema" },
@@ -1429,10 +1440,50 @@ wheels = [
1429
1440
  { url = "https://files.pythonhosted.org/packages/07/6c/aa3f2f849e01cb6a001cd8554a88d4c77c5c1a31c95bdf1cf9301e6d9ef4/defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61", size = 25604, upload-time = "2021-03-08T10:59:24.45Z" },
1430
1441
  ]
1431
1442
 
1443
+ [[package]]
1444
+ name = "deltalake"
1445
+ version = "1.6.0"
1446
+ source = { registry = "https://pypi.org/simple" }
1447
+ resolution-markers = [
1448
+ "python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1449
+ "python_full_version == '3.14.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1450
+ "python_full_version == '3.13.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1451
+ "python_full_version < '3.13' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1452
+ ]
1453
+ dependencies = [
1454
+ { name = "arro3-core" },
1455
+ { name = "deprecated" },
1456
+ ]
1457
+ wheels = [
1458
+ { url = "https://files.pythonhosted.org/packages/0a/5b/a1e6d8d35e5b2f8460e45e9171af50c461283c7390c3977f4b7f623193b1/deltalake-1.6.0-cp310-abi3-win_amd64.whl", hash = "sha256:cdc15e2ad80376363ad4d13f475b00c23e4192b5e65e8e421b8aa7cf9df533fa", size = 44143517, upload-time = "2026-05-18T14:23:12.694Z" },
1459
+ ]
1460
+
1432
1461
  [[package]]
1433
1462
  name = "deltalake"
1434
1463
  version = "1.6.1"
1435
1464
  source = { registry = "https://pypi.org/simple" }
1465
+ resolution-markers = [
1466
+ "python_full_version >= '3.15' and sys_platform == 'linux'",
1467
+ "python_full_version == '3.14.*' and sys_platform == 'linux'",
1468
+ "python_full_version == '3.13.*' and sys_platform == 'linux'",
1469
+ "python_full_version < '3.13' and sys_platform == 'linux'",
1470
+ "python_full_version >= '3.15' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1471
+ "python_full_version >= '3.15' and sys_platform == 'emscripten'",
1472
+ "python_full_version >= '3.15' and sys_platform == 'darwin'",
1473
+ "python_full_version >= '3.15' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1474
+ "python_full_version == '3.14.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1475
+ "python_full_version == '3.14.*' and sys_platform == 'emscripten'",
1476
+ "python_full_version == '3.14.*' and sys_platform == 'darwin'",
1477
+ "python_full_version == '3.14.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1478
+ "python_full_version == '3.13.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1479
+ "python_full_version == '3.13.*' and sys_platform == 'emscripten'",
1480
+ "python_full_version == '3.13.*' and sys_platform == 'darwin'",
1481
+ "python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1482
+ "python_full_version < '3.13' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1483
+ "python_full_version < '3.13' and sys_platform == 'emscripten'",
1484
+ "python_full_version < '3.13' and sys_platform == 'darwin'",
1485
+ "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1486
+ ]
1436
1487
  dependencies = [
1437
1488
  { name = "arro3-core" },
1438
1489
  { name = "deprecated" },
@@ -1500,15 +1551,15 @@ wheels = [
1500
1551
 
1501
1552
  [[package]]
1502
1553
  name = "doclang"
1503
- version = "0.7.1"
1554
+ version = "0.7.2"
1504
1555
  source = { registry = "https://pypi.org/simple" }
1505
1556
  dependencies = [
1506
1557
  { name = "lxml" },
1507
1558
  { name = "typer", version = "0.24.2", source = { registry = "https://pypi.org/simple" } },
1508
1559
  ]
1509
- sdist = { url = "https://files.pythonhosted.org/packages/d2/54/91dc2b332799f743e89fb72610236e8fc876eef2c8a2a4602582e0367019/doclang-0.7.1.tar.gz", hash = "sha256:aa2391b08751e311033b614b11dbeb3cd236f71772fe3db5722f4871361bd11d", size = 30560, upload-time = "2026-07-02T12:01:52.516Z" }
1560
+ sdist = { url = "https://files.pythonhosted.org/packages/16/91/64ada5d5699e63e6c2c803a85d35a2fb2ee0ceea8e100e513047d56741f4/doclang-0.7.2.tar.gz", hash = "sha256:89c17a168ef9443c2f814284bae3ea3dbf2f1910e79d4fd6cbdde04aa7c06d40", size = 30593, upload-time = "2026-07-03T13:39:17.461Z" }
1510
1561
  wheels = [
1511
- { url = "https://files.pythonhosted.org/packages/48/51/e0e77c183123c4447d9f853397a960692de1c813eb36e1b1ace211b58a25/doclang-0.7.1-py3-none-any.whl", hash = "sha256:79e7179a1cc6a837347ee496469ac9e0882ee917d2c45533d501d4025f787bce", size = 31318, upload-time = "2026-07-02T12:01:51.535Z" },
1562
+ { url = "https://files.pythonhosted.org/packages/ed/81/0bcdae48110bd5cc3ce078a53b351ec31af1e9f2db1a01574708a51a7983/doclang-0.7.2-py3-none-any.whl", hash = "sha256:fa4414931122c6b9d18a8b1fd6cec3d0dd22dad4efec495ab4461240a8cdf7ed", size = 31317, upload-time = "2026-07-03T13:39:16.48Z" },
1512
1563
  ]
1513
1564
 
1514
1565
  [[package]]
@@ -1531,32 +1582,36 @@ wheels = [
1531
1582
 
1532
1583
  [[package]]
1533
1584
  name = "docling"
1534
- version = "2.108.0"
1585
+ version = "2.109.0"
1535
1586
  source = { registry = "https://pypi.org/simple" }
1536
1587
  resolution-markers = [
1537
1588
  "python_full_version >= '3.15' and sys_platform == 'linux'",
1538
1589
  "python_full_version == '3.14.*' and sys_platform == 'linux'",
1539
1590
  "python_full_version == '3.13.*' and sys_platform == 'linux'",
1540
1591
  "python_full_version < '3.13' and sys_platform == 'linux'",
1541
- "python_full_version >= '3.15' and sys_platform == 'win32'",
1592
+ "python_full_version >= '3.15' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1542
1593
  "python_full_version >= '3.15' and sys_platform == 'emscripten'",
1543
1594
  "python_full_version >= '3.15' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1544
- "python_full_version == '3.14.*' and sys_platform == 'win32'",
1595
+ "python_full_version == '3.14.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1545
1596
  "python_full_version == '3.14.*' and sys_platform == 'emscripten'",
1546
1597
  "python_full_version == '3.14.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1547
- "python_full_version == '3.13.*' and sys_platform == 'win32'",
1598
+ "python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1599
+ "python_full_version == '3.14.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1600
+ "python_full_version == '3.13.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1548
1601
  "python_full_version == '3.13.*' and sys_platform == 'emscripten'",
1549
1602
  "python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1550
- "python_full_version < '3.13' and sys_platform == 'win32'",
1603
+ "python_full_version == '3.13.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1604
+ "python_full_version < '3.13' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1551
1605
  "python_full_version < '3.13' and sys_platform == 'emscripten'",
1552
1606
  "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1607
+ "python_full_version < '3.13' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1553
1608
  ]
1554
1609
  dependencies = [
1555
- { name = "docling-slim", version = "2.108.0", source = { registry = "https://pypi.org/simple" }, extra = ["standard"] },
1610
+ { name = "docling-slim", version = "2.109.0", source = { registry = "https://pypi.org/simple" }, extra = ["standard"] },
1556
1611
  ]
1557
- sdist = { url = "https://files.pythonhosted.org/packages/3f/5f/261151b79eedf12023b636c7185cfd016b989167da1058fd9b9bf3211ef9/docling-2.108.0.tar.gz", hash = "sha256:a47253a4a04104c1ad509da92c55f62738737ca71706816a9df252e3c3f0d39e", size = 8946, upload-time = "2026-07-01T10:31:23.237Z" }
1612
+ sdist = { url = "https://files.pythonhosted.org/packages/c5/16/50f5fefb14c1c7ae320126d0a903bb757b063a022eaec516738c036e837f/docling-2.109.0.tar.gz", hash = "sha256:a5482bd74ef11a12c02811e4bb90a3d52ff078873c189297ef34bf16ffc4df6a", size = 8947, upload-time = "2026-07-03T14:05:12.933Z" }
1558
1613
  wheels = [
1559
- { url = "https://files.pythonhosted.org/packages/4e/19/3fcd9f1981e5b623e2c9fc4b44b886f5a2bdbdf7d8968ce65d05c7d5b40a/docling-2.108.0-py3-none-any.whl", hash = "sha256:04d29cfdd94fc1e3cbcf6e503fcdc23e733914103b66b91dd110154d3a9035b3", size = 5109, upload-time = "2026-07-01T10:31:22.156Z" },
1614
+ { url = "https://files.pythonhosted.org/packages/4c/38/68d70077a339f000a31e26d1e4c5014a0376e800336eeeb17cc8e4ff9918/docling-2.109.0-py3-none-any.whl", hash = "sha256:71ce5b63b1850b8b3926f4a60a92ec9c5813d3acc7c679d3999b9f16e804bbe3", size = 5110, upload-time = "2026-07-03T14:05:11.85Z" },
1560
1615
  ]
1561
1616
 
1562
1617
  [[package]]
@@ -1608,18 +1663,22 @@ resolution-markers = [
1608
1663
  "python_full_version == '3.14.*' and sys_platform == 'linux'",
1609
1664
  "python_full_version == '3.13.*' and sys_platform == 'linux'",
1610
1665
  "python_full_version < '3.13' and sys_platform == 'linux'",
1611
- "python_full_version >= '3.15' and sys_platform == 'win32'",
1666
+ "python_full_version >= '3.15' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1612
1667
  "python_full_version >= '3.15' and sys_platform == 'emscripten'",
1613
1668
  "python_full_version >= '3.15' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1614
- "python_full_version == '3.14.*' and sys_platform == 'win32'",
1669
+ "python_full_version == '3.14.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1615
1670
  "python_full_version == '3.14.*' and sys_platform == 'emscripten'",
1616
1671
  "python_full_version == '3.14.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1617
- "python_full_version == '3.13.*' and sys_platform == 'win32'",
1672
+ "python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1673
+ "python_full_version == '3.14.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1674
+ "python_full_version == '3.13.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1618
1675
  "python_full_version == '3.13.*' and sys_platform == 'emscripten'",
1619
1676
  "python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1620
- "python_full_version < '3.13' and sys_platform == 'win32'",
1677
+ "python_full_version == '3.13.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1678
+ "python_full_version < '3.13' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1621
1679
  "python_full_version < '3.13' and sys_platform == 'emscripten'",
1622
1680
  "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1681
+ "python_full_version < '3.13' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1623
1682
  ]
1624
1683
  dependencies = [
1625
1684
  { name = "defusedxml" },
@@ -1691,18 +1750,22 @@ resolution-markers = [
1691
1750
  "python_full_version == '3.14.*' and sys_platform == 'linux'",
1692
1751
  "python_full_version == '3.13.*' and sys_platform == 'linux'",
1693
1752
  "python_full_version < '3.13' and sys_platform == 'linux'",
1694
- "python_full_version >= '3.15' and sys_platform == 'win32'",
1753
+ "python_full_version >= '3.15' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1695
1754
  "python_full_version >= '3.15' and sys_platform == 'emscripten'",
1696
1755
  "python_full_version >= '3.15' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1697
- "python_full_version == '3.14.*' and sys_platform == 'win32'",
1756
+ "python_full_version == '3.14.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1698
1757
  "python_full_version == '3.14.*' and sys_platform == 'emscripten'",
1699
1758
  "python_full_version == '3.14.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1700
- "python_full_version == '3.13.*' and sys_platform == 'win32'",
1759
+ "python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1760
+ "python_full_version == '3.14.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1761
+ "python_full_version == '3.13.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1701
1762
  "python_full_version == '3.13.*' and sys_platform == 'emscripten'",
1702
1763
  "python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1703
- "python_full_version < '3.13' and sys_platform == 'win32'",
1764
+ "python_full_version == '3.13.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1765
+ "python_full_version < '3.13' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1704
1766
  "python_full_version < '3.13' and sys_platform == 'emscripten'",
1705
1767
  "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1768
+ "python_full_version < '3.13' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1706
1769
  ]
1707
1770
  dependencies = [
1708
1771
  { name = "accelerate" },
@@ -1758,18 +1821,22 @@ resolution-markers = [
1758
1821
  "python_full_version == '3.14.*' and sys_platform == 'linux'",
1759
1822
  "python_full_version == '3.13.*' and sys_platform == 'linux'",
1760
1823
  "python_full_version < '3.13' and sys_platform == 'linux'",
1761
- "python_full_version >= '3.15' and sys_platform == 'win32'",
1824
+ "python_full_version >= '3.15' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1762
1825
  "python_full_version >= '3.15' and sys_platform == 'emscripten'",
1763
1826
  "python_full_version >= '3.15' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1764
- "python_full_version == '3.14.*' and sys_platform == 'win32'",
1827
+ "python_full_version == '3.14.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1765
1828
  "python_full_version == '3.14.*' and sys_platform == 'emscripten'",
1766
1829
  "python_full_version == '3.14.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1767
- "python_full_version == '3.13.*' and sys_platform == 'win32'",
1830
+ "python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1831
+ "python_full_version == '3.14.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1832
+ "python_full_version == '3.13.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1768
1833
  "python_full_version == '3.13.*' and sys_platform == 'emscripten'",
1769
1834
  "python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1770
- "python_full_version < '3.13' and sys_platform == 'win32'",
1835
+ "python_full_version == '3.13.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1836
+ "python_full_version < '3.13' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1771
1837
  "python_full_version < '3.13' and sys_platform == 'emscripten'",
1772
1838
  "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1839
+ "python_full_version < '3.13' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1773
1840
  ]
1774
1841
  dependencies = [
1775
1842
  { name = "docling-core", version = "2.86.0", source = { registry = "https://pypi.org/simple" } },
@@ -1848,25 +1915,29 @@ standard = [
1848
1915
 
1849
1916
  [[package]]
1850
1917
  name = "docling-slim"
1851
- version = "2.108.0"
1918
+ version = "2.109.0"
1852
1919
  source = { registry = "https://pypi.org/simple" }
1853
1920
  resolution-markers = [
1854
1921
  "python_full_version >= '3.15' and sys_platform == 'linux'",
1855
1922
  "python_full_version == '3.14.*' and sys_platform == 'linux'",
1856
1923
  "python_full_version == '3.13.*' and sys_platform == 'linux'",
1857
1924
  "python_full_version < '3.13' and sys_platform == 'linux'",
1858
- "python_full_version >= '3.15' and sys_platform == 'win32'",
1925
+ "python_full_version >= '3.15' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1859
1926
  "python_full_version >= '3.15' and sys_platform == 'emscripten'",
1860
1927
  "python_full_version >= '3.15' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1861
- "python_full_version == '3.14.*' and sys_platform == 'win32'",
1928
+ "python_full_version == '3.14.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1862
1929
  "python_full_version == '3.14.*' and sys_platform == 'emscripten'",
1863
1930
  "python_full_version == '3.14.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1864
- "python_full_version == '3.13.*' and sys_platform == 'win32'",
1931
+ "python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1932
+ "python_full_version == '3.14.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1933
+ "python_full_version == '3.13.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1865
1934
  "python_full_version == '3.13.*' and sys_platform == 'emscripten'",
1866
1935
  "python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1867
- "python_full_version < '3.13' and sys_platform == 'win32'",
1936
+ "python_full_version == '3.13.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1937
+ "python_full_version < '3.13' and platform_machine != 'AMD64' and sys_platform == 'win32'",
1868
1938
  "python_full_version < '3.13' and sys_platform == 'emscripten'",
1869
1939
  "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
1940
+ "python_full_version < '3.13' and platform_machine == 'AMD64' and sys_platform == 'win32'",
1870
1941
  ]
1871
1942
  dependencies = [
1872
1943
  { name = "certifi" },
@@ -1878,9 +1949,9 @@ dependencies = [
1878
1949
  { name = "requests" },
1879
1950
  { name = "tqdm" },
1880
1951
  ]
1881
- sdist = { url = "https://files.pythonhosted.org/packages/c8/e7/10eff77367832c2b6ff7aac5c951429fdb7b65b2ec65a9b7aa019dc3169f/docling_slim-2.108.0.tar.gz", hash = "sha256:a870fe790cd64cfef24411216d7c6324b51400fe55b6b10787e00bce64deb75d", size = 486931, upload-time = "2026-07-01T10:30:03.899Z" }
1952
+ sdist = { url = "https://files.pythonhosted.org/packages/9a/59/45eb879596a27143f1298770fd20270b11081dae9b4d5f169a0ed12c5bdf/docling_slim-2.109.0.tar.gz", hash = "sha256:2d04525393776a7727f8c8bb6828cb5ecc28867a252560c05427d1171abca140", size = 499369, upload-time = "2026-07-03T14:03:53.61Z" }
1882
1953
  wheels = [
1883
- { url = "https://files.pythonhosted.org/packages/f7/58/791630d9f324153272b688c3bf266a6bd76d3997bd09fcb4a65abb430e66/docling_slim-2.108.0-py3-none-any.whl", hash = "sha256:2e263e5c9704cd070f8d6113353e20dc57a1fa895808e547587195ff03be90ec", size = 615567, upload-time = "2026-07-01T10:30:01.838Z" },
1954
+ { url = "https://files.pythonhosted.org/packages/9c/df/e9f5707d9d435038e3f73bfb6deae1edaa85ad5cb1de550505e593236cc6/docling_slim-2.109.0-py3-none-any.whl", hash = "sha256:8ce5c79dd9b77b24da11d609989de9325097d3d1e2d87f67bf17860197931fc6", size = 628726, upload-time = "2026-07-03T14:03:51.657Z" },
1884
1955
  ]
1885
1956
 
1886
1957
  [package.optional-dependencies]
@@ -2763,7 +2834,7 @@ wheels = [
2763
2834
 
2764
2835
  [[package]]
2765
2836
  name = "litellm"
2766
- version = "1.90.2"
2837
+ version = "1.90.3"
2767
2838
  source = { registry = "https://pypi.org/simple" }
2768
2839
  dependencies = [
2769
2840
  { name = "aiohttp" },
@@ -2779,9 +2850,9 @@ dependencies = [
2779
2850
  { name = "tiktoken" },
2780
2851
  { name = "tokenizers" },
2781
2852
  ]
2782
- sdist = { url = "https://files.pythonhosted.org/packages/88/00/4187e33818d0de19fd602214ce15a6e1cfa5bf04fb50a6e59606214a92df/litellm-1.90.2.tar.gz", hash = "sha256:b536603894ba2a0ccd14a6f1ebeb5f46cc35b19d4537e8fda7bfdfc7757f19d3", size = 14819154, upload-time = "2026-07-01T02:29:58.397Z" }
2853
+ sdist = { url = "https://files.pythonhosted.org/packages/fa/c8/18d0c831d97ef6e7a971e1e984aa0a07740adb3f343e4596f21a5e880840/litellm-1.90.3.tar.gz", hash = "sha256:1b15776011745ea4f90259d9bd2f269835a8541cd7948751bec726b1d21647fa", size = 14820738, upload-time = "2026-07-03T19:53:20.112Z" }
2783
2854
  wheels = [
2784
- { url = "https://files.pythonhosted.org/packages/24/30/3afa7b212ce1f9bb8b6fa5f58c631f437c1d7b3a025e4e4ed6b01b3d28ad/litellm-1.90.2-py3-none-any.whl", hash = "sha256:6fb46f485150cc861be62a62d670f94d33adbd26991091befeb51bcdfdad34f6", size = 16612720, upload-time = "2026-07-01T02:29:55.215Z" },
2855
+ { url = "https://files.pythonhosted.org/packages/c5/ad/b40e8a29ec9b4564c5fd96829c4b22512c24ca76045304b1b521d6ea68c1/litellm-1.90.3-py3-none-any.whl", hash = "sha256:0ba6844865c0637719b3e76f43cf1089e3bd578a456b7be6a7f64afbbc259472", size = 16613824, upload-time = "2026-07-03T19:53:17.393Z" },
2785
2856
  ]
2786
2857
 
2787
2858
  [[package]]
@@ -5539,7 +5610,7 @@ wheels = [
5539
5610
 
5540
5611
  [[package]]
5541
5612
  name = "snowflake-connector-python"
5542
- version = "4.7.0"
5613
+ version = "4.6.0"
5543
5614
  source = { registry = "https://pypi.org/simple" }
5544
5615
  dependencies = [
5545
5616
  { name = "asn1crypto" },
@@ -5560,23 +5631,23 @@ dependencies = [
5560
5631
  { name = "tomlkit" },
5561
5632
  { name = "typing-extensions" },
5562
5633
  ]
5563
- sdist = { url = "https://files.pythonhosted.org/packages/10/2f/0db1fdca82a936c77059fd2ffc57696fbd37e76abe33098140aea8dbd815/snowflake_connector_python-4.7.0.tar.gz", hash = "sha256:02b310751ba2c84e891ed4edb31fb1db00d988adc473375dafb12315395c859b", size = 944927, upload-time = "2026-07-02T13:18:41.487Z" }
5634
+ sdist = { url = "https://files.pythonhosted.org/packages/49/4d/7e6a9088381386b4cfae4c5d1d23ea0c3618ca694bc2290118737af59f36/snowflake_connector_python-4.6.0.tar.gz", hash = "sha256:06e2dba02703da6fd60e07bb0574506f810a85e5831d3461247753ecce4b8335", size = 937999, upload-time = "2026-05-28T13:01:48.582Z" }
5564
5635
  wheels = [
5565
- { url = "https://files.pythonhosted.org/packages/c3/84/538a8337b9ed13a314210fdfc71e88a93dee8633c28634c6b4dfc8cb8539/snowflake_connector_python-4.7.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:e64be8c321d0a201c0df67f0375cb1947b87eef11e3d2036c608d09e62a31371", size = 1173753, upload-time = "2026-07-02T13:18:49.848Z" },
5566
- { url = "https://files.pythonhosted.org/packages/8e/12/ba24c08b6620000ba49296e1ee362b8058a2101ef3cb8d6a8e74855682bd/snowflake_connector_python-4.7.0-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:c0a9279e6ceaa35e9b333e03cba31b844d57664a919958976b19e69068e48d2e", size = 1186856, upload-time = "2026-07-02T13:18:51.45Z" },
5567
- { url = "https://files.pythonhosted.org/packages/90/02/bdbd61fbfb106343bf7d09af0ed126467f6c2c380910cd5141390449c58d/snowflake_connector_python-4.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:f31e4bd8e16edbe13fa4a7b7e49fc2f35fb1db1a62d12bb15c1ac39a65a9e5d5", size = 2886523, upload-time = "2026-07-02T13:18:30.884Z" },
5568
- { url = "https://files.pythonhosted.org/packages/2b/0c/3aac73d89d92fd5bc7cf60e04b027eea1144600b7421e920fb44308a7c57/snowflake_connector_python-4.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:2246a2a5cabd08a192373928eca3db39dd3afd65e702d6aa5e7d39f0fe105915", size = 2919473, upload-time = "2026-07-02T13:18:33.267Z" },
5569
- { url = "https://files.pythonhosted.org/packages/8e/ef/8d92390f6d2490c3f2cdc7a1ff5635d5d25909e5031d7212c5a31174f0a0/snowflake_connector_python-4.7.0-cp312-cp312-win_amd64.whl", hash = "sha256:71dbdfbc16d6b8f317d9af9a6e9cf0cfa4029865b6116b3fcfe859875cf93221", size = 5393867, upload-time = "2026-07-02T13:19:03.56Z" },
5570
- { url = "https://files.pythonhosted.org/packages/44/cd/d5143c5c6097a84ec134eb08e4936f72f7a283b814ff71c6caccd860b214/snowflake_connector_python-4.7.0-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:df865e5ee8de987f775c1fd814f836266a248a9ae48ee3c5d28802e02abd42aa", size = 1172784, upload-time = "2026-07-02T13:18:52.872Z" },
5571
- { url = "https://files.pythonhosted.org/packages/43/19/4b06b389ef6eacdb9acc96350e4cdb444b6fe6c2cd6e1b6299be4248aab1/snowflake_connector_python-4.7.0-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:c420d2dda59b5d161ac5c0fbc384c28a61d4c6d07267e628b15d656e00015c89", size = 1185405, upload-time = "2026-07-02T13:18:54.538Z" },
5572
- { url = "https://files.pythonhosted.org/packages/05/1b/b706aed7a81f3ffedc558ee2a2103395b40c809c0fccdf1174cadca01813/snowflake_connector_python-4.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:db30d0552d9a31c528965141214aa42a3dac815e4f71f3fa505178c7485c060b", size = 2856701, upload-time = "2026-07-02T13:18:34.834Z" },
5573
- { url = "https://files.pythonhosted.org/packages/d2/48/5a83fbc1c78258893af6d2ced53d889d0901f8cdb430be637a88032c4e47/snowflake_connector_python-4.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:34e07a4b467696e8bb7c73190ce12930d2fb38e58cc55b28ebb047891f5cb754", size = 2892455, upload-time = "2026-07-02T13:18:36.444Z" },
5574
- { url = "https://files.pythonhosted.org/packages/b5/65/56456c698d9682094a79307d49441f50b98740e886c001f07304de510035/snowflake_connector_python-4.7.0-cp313-cp313-win_amd64.whl", hash = "sha256:f81666f1285243b34b7b30251c9104ca6c80e43a4ca5b4190bc0da8b23ff4907", size = 5393930, upload-time = "2026-07-02T13:19:05.438Z" },
5575
- { url = "https://files.pythonhosted.org/packages/dc/f6/c303eeb16f6e36ba48f067056ebced7191c24dc295062afebf297942ecbb/snowflake_connector_python-4.7.0-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:723c0d4e6d1737942e9a875484a88b3aee29d88491e5a8b56f1bde9d889d3a7c", size = 1173244, upload-time = "2026-07-02T13:18:56.071Z" },
5576
- { url = "https://files.pythonhosted.org/packages/c3/84/1f8e7033db9c69021a938f38550f03b2e05a36c9c6293d13c2c45ba336c9/snowflake_connector_python-4.7.0-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:a5ed525d85c543fc1c5dd3c791137061c9622508895d3e3f007c73c0ea1292fa", size = 1185417, upload-time = "2026-07-02T13:18:57.51Z" },
5577
- { url = "https://files.pythonhosted.org/packages/76/93/15b2ed38837cf365f32eae05a3db3a59b4a19056c4aa7d241fa8d167ac57/snowflake_connector_python-4.7.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d214bb67de523dbce2cbacbfba3c24886ab94b2d9aa36829f73c13eb13f5be51", size = 2857217, upload-time = "2026-07-02T13:18:38.053Z" },
5578
- { url = "https://files.pythonhosted.org/packages/62/5b/4c92c0859fe0230e7ae1e54ab447f0a753031d67f3599b595da85186fed2/snowflake_connector_python-4.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:d9db4e9cbcf3ae1c78ed22aa5b4105edabd855d5064a0a8fdadd73be8a82257c", size = 2888071, upload-time = "2026-07-02T13:18:39.752Z" },
5579
- { url = "https://files.pythonhosted.org/packages/32/bd/b6ca0a578001948c1ae396e0b9dd2d7092b8b9deef26b9a511296c183ef5/snowflake_connector_python-4.7.0-cp314-cp314-win_amd64.whl", hash = "sha256:6e421ac8c98aa83235d035b7a60a0a5580b447ee5718f55d77f773fbce50ac4e", size = 5452006, upload-time = "2026-07-02T13:19:07.331Z" },
5636
+ { url = "https://files.pythonhosted.org/packages/ab/4e/a839eddf87df7fe91fd8086e6a43e10e6afddf7c6b718ef036643f032867/snowflake_connector_python-4.6.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:a7701b702dbeb348769c5d1248231e18544c4ff1fb4118ad73d48e8f801cfb6e", size = 1167890, upload-time = "2026-05-28T13:01:56.567Z" },
5637
+ { url = "https://files.pythonhosted.org/packages/7d/81/632b4ca9459cd801abfaa5396a60d9e60b9e2f051d015a577af0493782d3/snowflake_connector_python-4.6.0-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:00abbcfe958f60da18297191f3499b1e61802e64622521a2e8da1c059c14e1c0", size = 1181169, upload-time = "2026-05-28T13:01:58.16Z" },
5638
+ { url = "https://files.pythonhosted.org/packages/c9/31/79871d7eea206c60a7891a8d4349fdd8933822101af87204231162a5c3e8/snowflake_connector_python-4.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:72aaee21a70e00fbe4dadcc60b9b1012b6411dddc90f94804d5efe5706fb9621", size = 2878875, upload-time = "2026-05-28T13:01:36.26Z" },
5639
+ { url = "https://files.pythonhosted.org/packages/e5/ff/ea43b9f87cf632bd9735f4da18d7982572fb67073fd55c67841091a20f1a/snowflake_connector_python-4.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:6d3f6120edeb0d6edd208831d006cc3e769ec51bc346727f22d7aeaecbf20f77", size = 2910491, upload-time = "2026-05-28T13:01:37.957Z" },
5640
+ { url = "https://files.pythonhosted.org/packages/52/b1/80bc142ce5afee2e9b0520e4444bcdf1a02627c1066653705e4c36b475ab/snowflake_connector_python-4.6.0-cp312-cp312-win_amd64.whl", hash = "sha256:f15e2493a316ce79ab3d7fb16add10252bb2401723e5cfbc7a2ebc44d89a7b2b", size = 5388193, upload-time = "2026-05-28T13:02:10.267Z" },
5641
+ { url = "https://files.pythonhosted.org/packages/cd/7b/29af48b122f5df4e2c23a1733bd5ed28193f24734a7cf48e345e5c7c3012/snowflake_connector_python-4.6.0-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:e0ca5a035b1afa690fb36a767ba59c8db85ef6295b88c2bbc2040449e99992ad", size = 1166660, upload-time = "2026-05-28T13:01:59.64Z" },
5642
+ { url = "https://files.pythonhosted.org/packages/20/af/9c5f1551278a309bbda06662e842b34fc17a60916032e5402033482c0367/snowflake_connector_python-4.6.0-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:1894504c69a76ac4a205d01fbb3e18c6a6e974e6ad26dad263edd06343bea501", size = 1179744, upload-time = "2026-05-28T13:02:01.254Z" },
5643
+ { url = "https://files.pythonhosted.org/packages/4e/ef/fdaf6150dacf80edd4dac948fd9a08930944d2ad2e978fe33aca598aa0a5/snowflake_connector_python-4.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ed40d1e9d867253596860b9d5240280489ff4692b7a3fa21e2d45d63b4b61d36", size = 2844736, upload-time = "2026-05-28T13:01:40.001Z" },
5644
+ { url = "https://files.pythonhosted.org/packages/da/a1/25fdb592dfed3150b429f1bbb22b495c2590e5a5007153be9d1b798c72c9/snowflake_connector_python-4.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:1c8476781cfef961fc5f6f75a5238e668d3e0ca5ebf1d055661b2fcf2831c254", size = 2878174, upload-time = "2026-05-28T13:01:42.448Z" },
5645
+ { url = "https://files.pythonhosted.org/packages/29/1f/081d2fb06fca926bb2e9af81533516af4f86ca13abe2b7cbb16ee4938339/snowflake_connector_python-4.6.0-cp313-cp313-win_amd64.whl", hash = "sha256:e8ccbf8b5e12177a86bd3ab8292cc5a99e9ac97d7645ef4a3ed0f767b4ec6594", size = 5388257, upload-time = "2026-05-28T13:02:13.073Z" },
5646
+ { url = "https://files.pythonhosted.org/packages/31/db/4de9e9c82082441c09abad9d7fe30170c8101ecdfb012affab0383401fe2/snowflake_connector_python-4.6.0-cp314-cp314-macosx_14_0_arm64.whl", hash = "sha256:1fe93d88278a0b7e0efde6140890bc298a49fbf1e04968a35aa22c801131cced", size = 1167356, upload-time = "2026-05-28T13:02:02.706Z" },
5647
+ { url = "https://files.pythonhosted.org/packages/3f/05/3a946e69712c178b0de355971c49e1b2afd259b8dc3992c5f8898214f9fd/snowflake_connector_python-4.6.0-cp314-cp314-macosx_14_0_x86_64.whl", hash = "sha256:0829d57467bf1bb5af411f6e7723058cb2218fb7df07cf15d912e3b1a2c126eb", size = 1179787, upload-time = "2026-05-28T13:02:04.387Z" },
5648
+ { url = "https://files.pythonhosted.org/packages/4d/c6/2b367aa04fb6f6d8e6da22908dd8f61f49ba613306648a2b35b61fb70cd4/snowflake_connector_python-4.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:676162cd45df744aa966483960d34bf204cdcae87cecad77fba970f1c2fd570d", size = 2845398, upload-time = "2026-05-28T13:01:44.538Z" },
5649
+ { url = "https://files.pythonhosted.org/packages/b7/94/ec61dfbad2d70131c46605a52487733bc98e2d7b26ddd32334f1c4db104d/snowflake_connector_python-4.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:eab420406a38ebc059100bb1faa55d7d6306bb224cefadb739ec3cafeff65384", size = 2874335, upload-time = "2026-05-28T13:01:46.742Z" },
5650
+ { url = "https://files.pythonhosted.org/packages/af/de/0a816b9877948f60071a5852b1b97a4605475fce4704f04f89d7ca9f43f2/snowflake_connector_python-4.6.0-cp314-cp314-win_amd64.whl", hash = "sha256:9dd8689123a7e7b873db0846f2d92745a02062b16665d20634fbaf34a9c88e7a", size = 5446341, upload-time = "2026-05-28T13:02:16.985Z" },
5580
5651
  ]
5581
5652
 
5582
5653
  [[package]]
@@ -5978,22 +6049,26 @@ name = "torch"
5978
6049
  version = "2.12.1"
5979
6050
  source = { registry = "https://pypi.org/simple" }
5980
6051
  resolution-markers = [
5981
- "python_full_version >= '3.15' and sys_platform == 'win32'",
6052
+ "python_full_version >= '3.15' and platform_machine != 'AMD64' and sys_platform == 'win32'",
5982
6053
  "python_full_version >= '3.15' and sys_platform == 'emscripten'",
5983
6054
  "python_full_version >= '3.15' and sys_platform == 'darwin'",
5984
6055
  "python_full_version >= '3.15' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
5985
- "python_full_version == '3.14.*' and sys_platform == 'win32'",
6056
+ "python_full_version == '3.14.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
5986
6057
  "python_full_version == '3.14.*' and sys_platform == 'emscripten'",
5987
6058
  "python_full_version == '3.14.*' and sys_platform == 'darwin'",
5988
6059
  "python_full_version == '3.14.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
5989
- "python_full_version == '3.13.*' and sys_platform == 'win32'",
6060
+ "python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32'",
6061
+ "python_full_version == '3.14.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
6062
+ "python_full_version == '3.13.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
5990
6063
  "python_full_version == '3.13.*' and sys_platform == 'emscripten'",
5991
6064
  "python_full_version == '3.13.*' and sys_platform == 'darwin'",
5992
6065
  "python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
5993
- "python_full_version < '3.13' and sys_platform == 'win32'",
6066
+ "python_full_version == '3.13.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
6067
+ "python_full_version < '3.13' and platform_machine != 'AMD64' and sys_platform == 'win32'",
5994
6068
  "python_full_version < '3.13' and sys_platform == 'emscripten'",
5995
6069
  "python_full_version < '3.13' and sys_platform == 'darwin'",
5996
6070
  "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
6071
+ "python_full_version < '3.13' and platform_machine == 'AMD64' and sys_platform == 'win32'",
5997
6072
  ]
5998
6073
  dependencies = [
5999
6074
  { name = "filelock" },
@@ -6054,22 +6129,26 @@ name = "torchvision"
6054
6129
  version = "0.27.1"
6055
6130
  source = { registry = "https://pypi.org/simple" }
6056
6131
  resolution-markers = [
6057
- "python_full_version >= '3.15' and sys_platform == 'win32'",
6132
+ "python_full_version >= '3.15' and platform_machine != 'AMD64' and sys_platform == 'win32'",
6058
6133
  "python_full_version >= '3.15' and sys_platform == 'emscripten'",
6059
6134
  "python_full_version >= '3.15' and sys_platform == 'darwin'",
6060
6135
  "python_full_version >= '3.15' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
6061
- "python_full_version == '3.14.*' and sys_platform == 'win32'",
6136
+ "python_full_version == '3.14.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
6062
6137
  "python_full_version == '3.14.*' and sys_platform == 'emscripten'",
6063
6138
  "python_full_version == '3.14.*' and sys_platform == 'darwin'",
6064
6139
  "python_full_version == '3.14.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
6065
- "python_full_version == '3.13.*' and sys_platform == 'win32'",
6140
+ "python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32'",
6141
+ "python_full_version == '3.14.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
6142
+ "python_full_version == '3.13.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
6066
6143
  "python_full_version == '3.13.*' and sys_platform == 'emscripten'",
6067
6144
  "python_full_version == '3.13.*' and sys_platform == 'darwin'",
6068
6145
  "python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
6069
- "python_full_version < '3.13' and sys_platform == 'win32'",
6146
+ "python_full_version == '3.13.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
6147
+ "python_full_version < '3.13' and platform_machine != 'AMD64' and sys_platform == 'win32'",
6070
6148
  "python_full_version < '3.13' and sys_platform == 'emscripten'",
6071
6149
  "python_full_version < '3.13' and sys_platform == 'darwin'",
6072
6150
  "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
6151
+ "python_full_version < '3.13' and platform_machine == 'AMD64' and sys_platform == 'win32'",
6073
6152
  ]
6074
6153
  dependencies = [
6075
6154
  { name = "numpy" },
@@ -6127,7 +6206,7 @@ wheels = [
6127
6206
 
6128
6207
  [[package]]
6129
6208
  name = "transformers"
6130
- version = "5.12.1"
6209
+ version = "5.13.0"
6131
6210
  source = { registry = "https://pypi.org/simple" }
6132
6211
  dependencies = [
6133
6212
  { name = "huggingface-hub" },
@@ -6141,9 +6220,9 @@ dependencies = [
6141
6220
  { name = "typer", version = "0.21.2", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform == 'darwin'" },
6142
6221
  { name = "typer", version = "0.24.2", source = { registry = "https://pypi.org/simple" }, marker = "sys_platform != 'darwin'" },
6143
6222
  ]
6144
- sdist = { url = "https://files.pythonhosted.org/packages/aa/7c/8240f612819718100a9346dc28dea6a11370c3ca9c8c6eabadd3dea4ef29/transformers-5.12.1.tar.gz", hash = "sha256:679ee731c8225347889ad4fb3b2c926a62e9da3b7d284e9d12c791da7272466b", size = 8924054, upload-time = "2026-06-15T17:27:50.604Z" }
6223
+ sdist = { url = "https://files.pythonhosted.org/packages/ec/e1/720ff7ff666b04279fea5bb7ac3ef8675e98f0ddbc1b8cb8bc9f3889d62e/transformers-5.13.0.tar.gz", hash = "sha256:940c1428e42a4238f9ccf0cd41e63c590701aa63c19fd2ce3d7d602222d68495", size = 9195801, upload-time = "2026-07-03T16:05:39.362Z" }
6145
6224
  wheels = [
6146
- { url = "https://files.pythonhosted.org/packages/df/56/bbd60dd8668055803bf8ba55a81f9b8a8b31497f620109a9671d26a2076d/transformers-5.12.1-py3-none-any.whl", hash = "sha256:2a5e109d2021265df7098ffbb738295acaf5ad256f12cbc586db2ea4dcbb1a8a", size = 11150587, upload-time = "2026-06-15T17:27:46.679Z" },
6225
+ { url = "https://files.pythonhosted.org/packages/a5/3a/d99704c5effe10c6339c98cb236259161103e159bb99a78468b6729572ec/transformers-5.13.0-py3-none-any.whl", hash = "sha256:8adbc1d20bd5463cd6876b2eb7cb31971e1065788e7dc6bc12bab597a7c504b7", size = 11503730, upload-time = "2026-07-03T16:05:35.569Z" },
6147
6226
  ]
6148
6227
 
6149
6228
  [[package]]
@@ -6283,18 +6362,22 @@ resolution-markers = [
6283
6362
  "python_full_version == '3.14.*' and sys_platform == 'linux'",
6284
6363
  "python_full_version == '3.13.*' and sys_platform == 'linux'",
6285
6364
  "python_full_version < '3.13' and sys_platform == 'linux'",
6286
- "python_full_version >= '3.15' and sys_platform == 'win32'",
6365
+ "python_full_version >= '3.15' and platform_machine != 'AMD64' and sys_platform == 'win32'",
6287
6366
  "python_full_version >= '3.15' and sys_platform == 'emscripten'",
6288
6367
  "python_full_version >= '3.15' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
6289
- "python_full_version == '3.14.*' and sys_platform == 'win32'",
6368
+ "python_full_version == '3.14.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
6290
6369
  "python_full_version == '3.14.*' and sys_platform == 'emscripten'",
6291
6370
  "python_full_version == '3.14.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
6292
- "python_full_version == '3.13.*' and sys_platform == 'win32'",
6371
+ "python_full_version >= '3.15' and platform_machine == 'AMD64' and sys_platform == 'win32'",
6372
+ "python_full_version == '3.14.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
6373
+ "python_full_version == '3.13.*' and platform_machine != 'AMD64' and sys_platform == 'win32'",
6293
6374
  "python_full_version == '3.13.*' and sys_platform == 'emscripten'",
6294
6375
  "python_full_version == '3.13.*' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
6295
- "python_full_version < '3.13' and sys_platform == 'win32'",
6376
+ "python_full_version == '3.13.*' and platform_machine == 'AMD64' and sys_platform == 'win32'",
6377
+ "python_full_version < '3.13' and platform_machine != 'AMD64' and sys_platform == 'win32'",
6296
6378
  "python_full_version < '3.13' and sys_platform == 'emscripten'",
6297
6379
  "python_full_version < '3.13' and sys_platform != 'darwin' and sys_platform != 'emscripten' and sys_platform != 'linux' and sys_platform != 'win32'",
6380
+ "python_full_version < '3.13' and platform_machine == 'AMD64' and sys_platform == 'win32'",
6298
6381
  ]
6299
6382
  dependencies = [
6300
6383
  { name = "annotated-doc" },
File without changes