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.
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/.turbo/turbo-build.log +1 -1
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/PKG-INFO +1 -1
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/package.json +1 -1
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/pyproject.toml +12 -1
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/uv.lock +156 -73
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/.gitignore +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/.python-version +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/README.md +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/main.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/scripts/generate_models.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/config.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/base.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/broken_links/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/broken_links/detector.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/config.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/content/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/detector.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/extractor.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_base.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_factory.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_feature_extraction.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_gliner2.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_image_classification.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_llm.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_object_detection.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_regex.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/runners/_text_classification.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/custom/trainer.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/dependencies.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/pii/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/pii/detector.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/secrets/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/secrets/detector.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/threat/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/threat/code_security_detector.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/detectors/threat/yara_detector.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/main.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/models/generated_detectors.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/models/generated_input.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/models/generated_single_asset_scan_results.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/outputs/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/outputs/base.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/outputs/console.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/outputs/factory.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/outputs/file.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/outputs/rest.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/pipeline/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/pipeline/content_provider.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/pipeline/detector_pipeline.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/pipeline/parsed_content_provider.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/pipeline/worker_pool.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sandbox/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sandbox/runner.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/asset_metadata.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/atlassian_common.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/azure_blob_storage/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/azure_blob_storage/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/base.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/confluence/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/confluence/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/databricks/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/databricks/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/delta_lake/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/delta_lake/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/dependencies.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/elasticsearch/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/elasticsearch/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/email/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/email/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/google_cloud_storage/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/google_cloud_storage/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/hive/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/hive/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/iceberg/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/iceberg/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/jira/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/jira/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/kafka/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/kafka/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/lakehouse_base.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/meilisearch/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/meilisearch/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/mongodb/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/mongodb/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/mssql/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/mssql/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/mysql/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/mysql/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/neo4j/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/neo4j/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/notion/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/notion/client.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/notion/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/object_storage/base.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/opensearch/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/opensearch/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/oracle/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/oracle/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/postgresql/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/postgresql/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/powerbi/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/powerbi/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/recipe_normalizer.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/s3_client.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/s3_compatible_storage/README.md +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/s3_compatible_storage/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/s3_compatible_storage/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/search_engine_base.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/servicedesk/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/servicedesk/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/slack/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/slack/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/snowflake/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/snowflake/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/sqlite/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/sqlite/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/tableau/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/tableau/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/tabular_base.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/tabular_utils.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/wordpress/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/wordpress/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/youtube/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/sources/youtube/source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/telemetry.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/content_extraction.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/dependency_groups.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/embedded_images.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/file_metadata.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/file_parser.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/file_to_images.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/hashing.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/resources.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/transcription.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/uv_sync.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/src/utils/validation.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/_lakehouse_fakes.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/conftest.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/broken_links/test_broken_links_detector.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/conftest.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/content/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/custom/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/custom/conftest.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/custom/test_invoice_extraction.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/custom/test_llm_runner.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/custom/test_pipeline_integration.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/custom/test_regex_runner.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/custom/test_transformer_runners.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/pii/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/pii/conftest.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/pii/sample_invoice.pdf +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/pii/test_pii_detector.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/pii/test_pii_detector_extended.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/secrets/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/secrets/test_secrets_detector.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/secrets/test_secrets_detector_extended.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/test_base_detector.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/test_custom_detector_examples_runtime.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/test_detector_catalog_commercial.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/test_detector_pipeline_types.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/test_detector_schema_examples.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/test_detector_types.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/test_phase2_detectors.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/test_registry.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/threat/__init__.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/threat/test_code_security_detector.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/detectors/threat/test_yara_detector.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/integration/test_wordpress_broken_links_detector.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/integration/test_wordpress_links_assets.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/pipeline/test_detector_pipeline.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/pipeline/test_worker_pool.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_assets_metadata_catalog.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_azure_blob_storage_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_base_source_attachment.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_base_source_sampling.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_config.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_confluence_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_custom_extractor.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_databricks_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_delta_lake_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_dependency_groups.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_elasticsearch_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_email_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_google_cloud_storage_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_hashing.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_hive_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_iceberg_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_jira_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_kafka_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_meilisearch_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_mongodb_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_mssql_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_mysql_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_neo4j_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_notion_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_opensearch_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_oracle_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_outputs.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_postgresql_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_powerbi_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_recipe_normalizer.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_s3_compatible_storage_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_sampling_automatic.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_sandbox_runner.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_servicedesk_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_slack_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_snowflake_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_source_dependency_groups.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_sqlite_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_tableau_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_tabular_automatic_sampling.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_tabular_utils.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_uv_sync.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_wordpress_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_youtube_source.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/test_youtube_source_integration.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/utils/test_content_extraction.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/utils/test_embedded_images.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/utils/test_file_metadata.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/utils/test_file_parser.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/utils/test_file_to_images.py +0 -0
- {classifyre_cli-0.4.37 → classifyre_cli-0.4.38}/tests/utils/test_transcription.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "classifyre-cli"
|
|
3
|
-
version = "0.4.
|
|
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
|
|
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
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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/
|
|
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/
|
|
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.
|
|
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
|
|
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
|
|
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.
|
|
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/
|
|
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/
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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.
|
|
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
|
|
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
|
|
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/
|
|
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/
|
|
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.
|
|
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/
|
|
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/
|
|
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.
|
|
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/
|
|
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/
|
|
5566
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5567
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5568
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5569
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5570
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5571
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5572
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5573
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5574
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5575
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5576
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5577
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5578
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
5579
|
-
{ url = "https://files.pythonhosted.org/packages/
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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.
|
|
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/
|
|
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/
|
|
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
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|