From 05aceec82853fcdd282da17f2f9807abdad4e576 Mon Sep 17 00:00:00 2001 From: gayathrivijayakumar Date: Mon, 26 Feb 2024 21:53:43 +0530 Subject: [PATCH 1/9] Front end and tool helper changes for OCR support --- backend/adapter_processor/constants.py | 1 + backend/adapter_processor/views.py | 1 + .../0006_alter_profilemanager_x2text.py | 27 ------------------- backend/tool_instance/tool_instance_helper.py | 10 +++++++ backend/tool_instance/tool_processor.py | 11 ++++++++ .../navigations/side-nav-bar/SideNavBar.jsx | 10 +++++++ .../tool-settings/ToolSettings.jsx | 2 ++ frontend/src/routes/Router.jsx | 4 +++ .../src/unstract/tool_registry/dto.py | 24 +++++++++++++++-- .../src/unstract/tool_registry/tool_utils.py | 8 ++++++ 10 files changed, 69 insertions(+), 29 deletions(-) delete mode 100644 backend/prompt_studio/prompt_profile_manager/migrations/0006_alter_profilemanager_x2text.py diff --git a/backend/adapter_processor/constants.py b/backend/adapter_processor/constants.py index 429d67b3a8..5a6296f53c 100644 --- a/backend/adapter_processor/constants.py +++ b/backend/adapter_processor/constants.py @@ -4,6 +4,7 @@ class AdapterKeys: IS_DEFAULT = "is_default" LLM = "LLM" X2TEXT = "X2TEXT" + OCR = "OCR" VECTOR_DB = "VECTOR_DB" EMBEDDING = "EMBEDDING" NAME = "name" diff --git a/backend/adapter_processor/views.py b/backend/adapter_processor/views.py index 2009527afa..8b71443719 100644 --- a/backend/adapter_processor/views.py +++ b/backend/adapter_processor/views.py @@ -63,6 +63,7 @@ def list( or adapter_type == AdapterKeys.EMBEDDING or adapter_type == AdapterKeys.VECTOR_DB or adapter_type == AdapterKeys.X2TEXT + or adapter_type == AdapterKeys.OCR ): json_schema = AdapterProcessor.get_all_supported_adapters( type=adapter_type diff --git a/backend/prompt_studio/prompt_profile_manager/migrations/0006_alter_profilemanager_x2text.py b/backend/prompt_studio/prompt_profile_manager/migrations/0006_alter_profilemanager_x2text.py deleted file mode 100644 index e34d267962..0000000000 --- a/backend/prompt_studio/prompt_profile_manager/migrations/0006_alter_profilemanager_x2text.py +++ /dev/null @@ -1,27 +0,0 @@ -# Generated by Django 4.2.1 on 2024-02-23 17:02 - -import django.db.models.deletion -from django.db import migrations, models - - -class Migration(migrations.Migration): - dependencies = [ - ("adapter_processor", "0004_alter_adapterinstance_adapter_type"), - ( - "prompt_profile_manager", - "0005_removed_converter_and_added_x2text_foreign_key", - ), - ] - - operations = [ - migrations.AlterField( - model_name="profilemanager", - name="x2text", - field=models.ForeignKey( - db_comment="Field to store the X2Text Adapter chosen by the user", - on_delete=django.db.models.deletion.PROTECT, - related_name="profile_manager_x2text", - to="adapter_processor.adapterinstance", - ), - ), - ] diff --git a/backend/tool_instance/tool_instance_helper.py b/backend/tool_instance/tool_instance_helper.py index 356d5374de..febbdc33ab 100644 --- a/backend/tool_instance/tool_instance_helper.py +++ b/backend/tool_instance/tool_instance_helper.py @@ -140,6 +140,7 @@ def update_metadata_with_adapter_instances( embedding_properties = schema.get_embedding_adapter_properties() vector_db_properties = schema.get_vector_db_adapter_properties() x2text_properties = schema.get_text_extractor_adapter_properties() + ocr_properties = schema.get_ocr_adapter_properties() for adapter_key, adapter_property in llm_properties.items(): ToolInstanceHelper.update_metadata_with_adapter_properties( @@ -173,6 +174,13 @@ def update_metadata_with_adapter_instances( adapter_type=AdapterTypes.X2TEXT, ) + for adapter_key, adapter_property in ocr_properties.items(): + ToolInstanceHelper.update_metadata_with_adapter_properties( + metadata=metadata, + adapter_key=adapter_key, + adapter_property=adapter_property, + adapter_type=AdapterTypes.OCR, + ) @staticmethod def get_altered_metadata( tool_instance: ToolInstance, @@ -257,6 +265,8 @@ def update_metadata_with_default_adapter( properties = schema_spec.get_vector_db_adapter_properties() if adapter_type == AdapterTypes.X2TEXT: properties = schema_spec.get_text_extractor_adapter_properties() + if adapter_type == AdapterTypes.OCR: + properties = schema_spec.get_ocr_adapter_properties() for adapter_key, adapter_property in properties.items(): metadata_key_for_id = adapter_property.get( AdapterPropertyKey.ADAPTER_ID_KEY, AdapterPropertyKey.ADAPTER_ID diff --git a/backend/tool_instance/tool_processor.py b/backend/tool_instance/tool_processor.py index 68c3dd10df..3d12d20550 100644 --- a/backend/tool_instance/tool_processor.py +++ b/backend/tool_instance/tool_processor.py @@ -78,6 +78,7 @@ def update_schema_with_adapter_configurations( embedding_keys = schema.get_embedding_adapter_properties_keys() vector_db_keys = schema.get_vector_db_adapter_properties_keys() x2text_keys = schema.get_text_extractor_adapter_properties_keys() + ocr_keys = schema.get_ocr_adapter_properties_keys() if llm_keys: adapters = AdapterProcessor.get_adapters_by_type( @@ -119,6 +120,16 @@ def update_schema_with_adapter_configurations( ) schema.properties[key]["enum"] = list(adapter_names) + if ocr_keys: + adapters = AdapterProcessor.get_adapters_by_type( + AdapterTypes.OCR, user=user + ) + for key in ocr_keys: + adapter_names = map( + lambda adapter: str(adapter.adapter_name), adapters + ) + schema.properties[key]["enum"] = list(adapter_names) + @staticmethod def get_tool_list() -> list[dict[str, Any]]: """Function to get a list of tools.""" diff --git a/frontend/src/components/navigations/side-nav-bar/SideNavBar.jsx b/frontend/src/components/navigations/side-nav-bar/SideNavBar.jsx index d8ccdca6aa..d06f6bbc47 100644 --- a/frontend/src/components/navigations/side-nav-bar/SideNavBar.jsx +++ b/frontend/src/components/navigations/side-nav-bar/SideNavBar.jsx @@ -132,6 +132,16 @@ const SideNavBar = ({ collapsed }) => { }, { id: 3.5, + title: "OCR", + description: "Setup platform wide access to OCR services", + image: EmbeddingIcon, + path: `/${orgName}/settings/ocr`, + active: window.location.pathname.startsWith( + `/${orgName}/settings/ocr` + ), + }, + { + id: 3.6, title: "Platform", description: "Settings for the platform", image: PlatformSettingsIcon, diff --git a/frontend/src/components/tool-settings/tool-settings/ToolSettings.jsx b/frontend/src/components/tool-settings/tool-settings/ToolSettings.jsx index 715a12760d..7799663f47 100644 --- a/frontend/src/components/tool-settings/tool-settings/ToolSettings.jsx +++ b/frontend/src/components/tool-settings/tool-settings/ToolSettings.jsx @@ -21,6 +21,7 @@ const titles = { vector_db: "Vector DBs", embedding: "Embeddings", x2text: "Text Extractor", + ocr: "OCR", }; const btnText = { @@ -28,6 +29,7 @@ const btnText = { vector_db: "New Vector DB Profile", embedding: "New Embedding Profile", x2text: "New Text Extractor", + ocr: "New OCR", }; function ToolSettings({ type }) { diff --git a/frontend/src/routes/Router.jsx b/frontend/src/routes/Router.jsx index dfe29c7985..f52102ba21 100644 --- a/frontend/src/routes/Router.jsx +++ b/frontend/src/routes/Router.jsx @@ -85,6 +85,10 @@ function Router() { path="settings/textExtractor" element={} /> + } + /> } /> } /> } /> diff --git a/unstract/tool-registry/src/unstract/tool_registry/dto.py b/unstract/tool-registry/src/unstract/tool_registry/dto.py index 54707a493f..7479807d56 100644 --- a/unstract/tool-registry/src/unstract/tool_registry/dto.py +++ b/unstract/tool-registry/src/unstract/tool_registry/dto.py @@ -91,6 +91,9 @@ def get_vector_db_adapter_properties_keys(self) -> set[str]: def get_text_extractor_adapter_properties_keys(self) -> set[str]: return self.get_adapter_properties_keys(AdapterTypes.X2TEXT) + def get_ocr_adapter_properties_keys(self) -> set[str]: + return self.get_adapter_properties_keys(AdapterTypes.OCR) + def get_adapter_properties( self, adapter_type: AdapterTypes ) -> dict[str, dict[str, Any]]: @@ -118,6 +121,11 @@ def get_text_extractor_adapter_properties( ) -> dict[str, dict[str, Any]]: return self.get_adapter_properties(AdapterTypes.X2TEXT) + def get_ocr_adapter_properties( + self, + ) -> dict[str, dict[str, Any]]: + return self.get_adapter_properties(AdapterTypes.OCR) + @classmethod def from_dict(cls, data_dict: dict[str, Any]) -> "Spec": title = data_dict.get(cls.TITLE_KEY, "") @@ -214,6 +222,7 @@ class Adapter: EMBEDDING_SERVICES_KEY (str): Constant for the key "embeddingServices". VECTOR_STORES_KEY (str): Constant for the key "vectorStores". TEXT_EXTRACTORS_KEY (str): Constant for the key "textExtractors". + OCR_KEY (str): Constant for the key "ocr". language_model (AdapterProperties): The properties of the language model adapter. @@ -232,6 +241,8 @@ class Adapter: EMBEDDING_SERVICES_KEY = "embeddingServices" VECTOR_STORES_KEY = "vectorStores" TEXT_EXTRACTORS_KEY = "textExtractors" + OCRS_KEY = "ocrs" + language_models: list[AdapterProperties] = field( default_factory=list[AdapterProperties] @@ -245,6 +256,9 @@ class Adapter: text_extractors: list[AdapterProperties] = field( default_factory=list[AdapterProperties] ) + ocrs: list[AdapterProperties] = field( + default_factory=list[AdapterProperties] + ) @classmethod def from_dict(cls, data_dict: dict[str, Any]) -> "Adapter": @@ -252,6 +266,7 @@ def from_dict(cls, data_dict: dict[str, Any]) -> "Adapter": embedding_services_list = data_dict.get(cls.EMBEDDING_SERVICES_KEY, []) vector_stores_list = data_dict.get(cls.VECTOR_STORES_KEY, []) text_extractors_list = data_dict.get(cls.TEXT_EXTRACTORS_KEY, []) + ocrs_list = data_dict.get(cls.OCRS_KEY, []) language_models = [ AdapterProperties.from_dict(language_model_dict) @@ -266,8 +281,12 @@ def from_dict(cls, data_dict: dict[str, Any]) -> "Adapter": for vector_store_dict in vector_stores_list ] text_extractors = [ - AdapterProperties.from_dict(vector_store_dict) - for vector_store_dict in text_extractors_list + AdapterProperties.from_dict(text_extractor_dict) + for text_extractor_dict in text_extractors_list + ] + ocrs = [ + AdapterProperties.from_dict(ocr_dict) + for ocr_dict in ocrs_list ] return cls( @@ -275,6 +294,7 @@ def from_dict(cls, data_dict: dict[str, Any]) -> "Adapter": embedding_services=embedding_services, vector_stores=vector_stores, text_extractors=text_extractors, + ocrs=ocrs, ) def to_dict(self) -> dict[str, Any]: diff --git a/unstract/tool-registry/src/unstract/tool_registry/tool_utils.py b/unstract/tool-registry/src/unstract/tool_registry/tool_utils.py index e0f0f312dd..22114ecf39 100644 --- a/unstract/tool-registry/src/unstract/tool_registry/tool_utils.py +++ b/unstract/tool-registry/src/unstract/tool_registry/tool_utils.py @@ -248,6 +248,9 @@ def get_json_schema_for_tool(tool: Tool) -> Any: text_extractors = ToolUtils.get_enabled_adapters( adapter.text_extractors ) + ocrs = ToolUtils.get_enabled_adapters( + adapter.ocrs + ) ToolUtils.process_adapter_models( models=language_models, @@ -272,6 +275,11 @@ def get_json_schema_for_tool(tool: Tool) -> Any: adapter_type=AdapterTypes.X2TEXT, schema=schema, ) + ToolUtils.process_adapter_models( + models=ocrs, + adapter_type=AdapterTypes.OCR, + schema=schema, + ) return schema @staticmethod From 730f5e723e2620b38086f11c66a1e49ff078f8c0 Mon Sep 17 00:00:00 2001 From: gayathrivijayakumar Date: Mon, 26 Feb 2024 21:57:06 +0530 Subject: [PATCH 2/9] Revert "Front end and tool helper changes for OCR support" This reverts commit 05aceec82853fcdd282da17f2f9807abdad4e576. --- backend/adapter_processor/constants.py | 1 - backend/adapter_processor/views.py | 1 - .../0006_alter_profilemanager_x2text.py | 27 +++++++++++++++++++ backend/tool_instance/tool_instance_helper.py | 10 ------- backend/tool_instance/tool_processor.py | 11 -------- .../navigations/side-nav-bar/SideNavBar.jsx | 10 ------- .../tool-settings/ToolSettings.jsx | 2 -- frontend/src/routes/Router.jsx | 4 --- .../src/unstract/tool_registry/dto.py | 24 ++--------------- .../src/unstract/tool_registry/tool_utils.py | 8 ------ 10 files changed, 29 insertions(+), 69 deletions(-) create mode 100644 backend/prompt_studio/prompt_profile_manager/migrations/0006_alter_profilemanager_x2text.py diff --git a/backend/adapter_processor/constants.py b/backend/adapter_processor/constants.py index 5a6296f53c..429d67b3a8 100644 --- a/backend/adapter_processor/constants.py +++ b/backend/adapter_processor/constants.py @@ -4,7 +4,6 @@ class AdapterKeys: IS_DEFAULT = "is_default" LLM = "LLM" X2TEXT = "X2TEXT" - OCR = "OCR" VECTOR_DB = "VECTOR_DB" EMBEDDING = "EMBEDDING" NAME = "name" diff --git a/backend/adapter_processor/views.py b/backend/adapter_processor/views.py index 8b71443719..2009527afa 100644 --- a/backend/adapter_processor/views.py +++ b/backend/adapter_processor/views.py @@ -63,7 +63,6 @@ def list( or adapter_type == AdapterKeys.EMBEDDING or adapter_type == AdapterKeys.VECTOR_DB or adapter_type == AdapterKeys.X2TEXT - or adapter_type == AdapterKeys.OCR ): json_schema = AdapterProcessor.get_all_supported_adapters( type=adapter_type diff --git a/backend/prompt_studio/prompt_profile_manager/migrations/0006_alter_profilemanager_x2text.py b/backend/prompt_studio/prompt_profile_manager/migrations/0006_alter_profilemanager_x2text.py new file mode 100644 index 0000000000..e34d267962 --- /dev/null +++ b/backend/prompt_studio/prompt_profile_manager/migrations/0006_alter_profilemanager_x2text.py @@ -0,0 +1,27 @@ +# Generated by Django 4.2.1 on 2024-02-23 17:02 + +import django.db.models.deletion +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("adapter_processor", "0004_alter_adapterinstance_adapter_type"), + ( + "prompt_profile_manager", + "0005_removed_converter_and_added_x2text_foreign_key", + ), + ] + + operations = [ + migrations.AlterField( + model_name="profilemanager", + name="x2text", + field=models.ForeignKey( + db_comment="Field to store the X2Text Adapter chosen by the user", + on_delete=django.db.models.deletion.PROTECT, + related_name="profile_manager_x2text", + to="adapter_processor.adapterinstance", + ), + ), + ] diff --git a/backend/tool_instance/tool_instance_helper.py b/backend/tool_instance/tool_instance_helper.py index febbdc33ab..356d5374de 100644 --- a/backend/tool_instance/tool_instance_helper.py +++ b/backend/tool_instance/tool_instance_helper.py @@ -140,7 +140,6 @@ def update_metadata_with_adapter_instances( embedding_properties = schema.get_embedding_adapter_properties() vector_db_properties = schema.get_vector_db_adapter_properties() x2text_properties = schema.get_text_extractor_adapter_properties() - ocr_properties = schema.get_ocr_adapter_properties() for adapter_key, adapter_property in llm_properties.items(): ToolInstanceHelper.update_metadata_with_adapter_properties( @@ -174,13 +173,6 @@ def update_metadata_with_adapter_instances( adapter_type=AdapterTypes.X2TEXT, ) - for adapter_key, adapter_property in ocr_properties.items(): - ToolInstanceHelper.update_metadata_with_adapter_properties( - metadata=metadata, - adapter_key=adapter_key, - adapter_property=adapter_property, - adapter_type=AdapterTypes.OCR, - ) @staticmethod def get_altered_metadata( tool_instance: ToolInstance, @@ -265,8 +257,6 @@ def update_metadata_with_default_adapter( properties = schema_spec.get_vector_db_adapter_properties() if adapter_type == AdapterTypes.X2TEXT: properties = schema_spec.get_text_extractor_adapter_properties() - if adapter_type == AdapterTypes.OCR: - properties = schema_spec.get_ocr_adapter_properties() for adapter_key, adapter_property in properties.items(): metadata_key_for_id = adapter_property.get( AdapterPropertyKey.ADAPTER_ID_KEY, AdapterPropertyKey.ADAPTER_ID diff --git a/backend/tool_instance/tool_processor.py b/backend/tool_instance/tool_processor.py index 3d12d20550..68c3dd10df 100644 --- a/backend/tool_instance/tool_processor.py +++ b/backend/tool_instance/tool_processor.py @@ -78,7 +78,6 @@ def update_schema_with_adapter_configurations( embedding_keys = schema.get_embedding_adapter_properties_keys() vector_db_keys = schema.get_vector_db_adapter_properties_keys() x2text_keys = schema.get_text_extractor_adapter_properties_keys() - ocr_keys = schema.get_ocr_adapter_properties_keys() if llm_keys: adapters = AdapterProcessor.get_adapters_by_type( @@ -120,16 +119,6 @@ def update_schema_with_adapter_configurations( ) schema.properties[key]["enum"] = list(adapter_names) - if ocr_keys: - adapters = AdapterProcessor.get_adapters_by_type( - AdapterTypes.OCR, user=user - ) - for key in ocr_keys: - adapter_names = map( - lambda adapter: str(adapter.adapter_name), adapters - ) - schema.properties[key]["enum"] = list(adapter_names) - @staticmethod def get_tool_list() -> list[dict[str, Any]]: """Function to get a list of tools.""" diff --git a/frontend/src/components/navigations/side-nav-bar/SideNavBar.jsx b/frontend/src/components/navigations/side-nav-bar/SideNavBar.jsx index d06f6bbc47..d8ccdca6aa 100644 --- a/frontend/src/components/navigations/side-nav-bar/SideNavBar.jsx +++ b/frontend/src/components/navigations/side-nav-bar/SideNavBar.jsx @@ -132,16 +132,6 @@ const SideNavBar = ({ collapsed }) => { }, { id: 3.5, - title: "OCR", - description: "Setup platform wide access to OCR services", - image: EmbeddingIcon, - path: `/${orgName}/settings/ocr`, - active: window.location.pathname.startsWith( - `/${orgName}/settings/ocr` - ), - }, - { - id: 3.6, title: "Platform", description: "Settings for the platform", image: PlatformSettingsIcon, diff --git a/frontend/src/components/tool-settings/tool-settings/ToolSettings.jsx b/frontend/src/components/tool-settings/tool-settings/ToolSettings.jsx index 7799663f47..715a12760d 100644 --- a/frontend/src/components/tool-settings/tool-settings/ToolSettings.jsx +++ b/frontend/src/components/tool-settings/tool-settings/ToolSettings.jsx @@ -21,7 +21,6 @@ const titles = { vector_db: "Vector DBs", embedding: "Embeddings", x2text: "Text Extractor", - ocr: "OCR", }; const btnText = { @@ -29,7 +28,6 @@ const btnText = { vector_db: "New Vector DB Profile", embedding: "New Embedding Profile", x2text: "New Text Extractor", - ocr: "New OCR", }; function ToolSettings({ type }) { diff --git a/frontend/src/routes/Router.jsx b/frontend/src/routes/Router.jsx index f52102ba21..dfe29c7985 100644 --- a/frontend/src/routes/Router.jsx +++ b/frontend/src/routes/Router.jsx @@ -85,10 +85,6 @@ function Router() { path="settings/textExtractor" element={} /> - } - /> } /> } /> } /> diff --git a/unstract/tool-registry/src/unstract/tool_registry/dto.py b/unstract/tool-registry/src/unstract/tool_registry/dto.py index 7479807d56..54707a493f 100644 --- a/unstract/tool-registry/src/unstract/tool_registry/dto.py +++ b/unstract/tool-registry/src/unstract/tool_registry/dto.py @@ -91,9 +91,6 @@ def get_vector_db_adapter_properties_keys(self) -> set[str]: def get_text_extractor_adapter_properties_keys(self) -> set[str]: return self.get_adapter_properties_keys(AdapterTypes.X2TEXT) - def get_ocr_adapter_properties_keys(self) -> set[str]: - return self.get_adapter_properties_keys(AdapterTypes.OCR) - def get_adapter_properties( self, adapter_type: AdapterTypes ) -> dict[str, dict[str, Any]]: @@ -121,11 +118,6 @@ def get_text_extractor_adapter_properties( ) -> dict[str, dict[str, Any]]: return self.get_adapter_properties(AdapterTypes.X2TEXT) - def get_ocr_adapter_properties( - self, - ) -> dict[str, dict[str, Any]]: - return self.get_adapter_properties(AdapterTypes.OCR) - @classmethod def from_dict(cls, data_dict: dict[str, Any]) -> "Spec": title = data_dict.get(cls.TITLE_KEY, "") @@ -222,7 +214,6 @@ class Adapter: EMBEDDING_SERVICES_KEY (str): Constant for the key "embeddingServices". VECTOR_STORES_KEY (str): Constant for the key "vectorStores". TEXT_EXTRACTORS_KEY (str): Constant for the key "textExtractors". - OCR_KEY (str): Constant for the key "ocr". language_model (AdapterProperties): The properties of the language model adapter. @@ -241,8 +232,6 @@ class Adapter: EMBEDDING_SERVICES_KEY = "embeddingServices" VECTOR_STORES_KEY = "vectorStores" TEXT_EXTRACTORS_KEY = "textExtractors" - OCRS_KEY = "ocrs" - language_models: list[AdapterProperties] = field( default_factory=list[AdapterProperties] @@ -256,9 +245,6 @@ class Adapter: text_extractors: list[AdapterProperties] = field( default_factory=list[AdapterProperties] ) - ocrs: list[AdapterProperties] = field( - default_factory=list[AdapterProperties] - ) @classmethod def from_dict(cls, data_dict: dict[str, Any]) -> "Adapter": @@ -266,7 +252,6 @@ def from_dict(cls, data_dict: dict[str, Any]) -> "Adapter": embedding_services_list = data_dict.get(cls.EMBEDDING_SERVICES_KEY, []) vector_stores_list = data_dict.get(cls.VECTOR_STORES_KEY, []) text_extractors_list = data_dict.get(cls.TEXT_EXTRACTORS_KEY, []) - ocrs_list = data_dict.get(cls.OCRS_KEY, []) language_models = [ AdapterProperties.from_dict(language_model_dict) @@ -281,12 +266,8 @@ def from_dict(cls, data_dict: dict[str, Any]) -> "Adapter": for vector_store_dict in vector_stores_list ] text_extractors = [ - AdapterProperties.from_dict(text_extractor_dict) - for text_extractor_dict in text_extractors_list - ] - ocrs = [ - AdapterProperties.from_dict(ocr_dict) - for ocr_dict in ocrs_list + AdapterProperties.from_dict(vector_store_dict) + for vector_store_dict in text_extractors_list ] return cls( @@ -294,7 +275,6 @@ def from_dict(cls, data_dict: dict[str, Any]) -> "Adapter": embedding_services=embedding_services, vector_stores=vector_stores, text_extractors=text_extractors, - ocrs=ocrs, ) def to_dict(self) -> dict[str, Any]: diff --git a/unstract/tool-registry/src/unstract/tool_registry/tool_utils.py b/unstract/tool-registry/src/unstract/tool_registry/tool_utils.py index 22114ecf39..e0f0f312dd 100644 --- a/unstract/tool-registry/src/unstract/tool_registry/tool_utils.py +++ b/unstract/tool-registry/src/unstract/tool_registry/tool_utils.py @@ -248,9 +248,6 @@ def get_json_schema_for_tool(tool: Tool) -> Any: text_extractors = ToolUtils.get_enabled_adapters( adapter.text_extractors ) - ocrs = ToolUtils.get_enabled_adapters( - adapter.ocrs - ) ToolUtils.process_adapter_models( models=language_models, @@ -275,11 +272,6 @@ def get_json_schema_for_tool(tool: Tool) -> Any: adapter_type=AdapterTypes.X2TEXT, schema=schema, ) - ToolUtils.process_adapter_models( - models=ocrs, - adapter_type=AdapterTypes.OCR, - schema=schema, - ) return schema @staticmethod From 99c63d038fa3ced49ac26ddc4bad04dc9d0d7dcd Mon Sep 17 00:00:00 2001 From: gayathrivijayakumar Date: Mon, 26 Feb 2024 21:53:43 +0530 Subject: [PATCH 3/9] Front end and tool helper changes for OCR support --- backend/adapter_processor/constants.py | 1 + backend/adapter_processor/views.py | 1 + .../0006_alter_profilemanager_x2text.py | 27 ------------------- backend/tool_instance/tool_instance_helper.py | 10 +++++++ backend/tool_instance/tool_processor.py | 11 ++++++++ .../navigations/side-nav-bar/SideNavBar.jsx | 10 +++++++ .../tool-settings/ToolSettings.jsx | 2 ++ frontend/src/routes/Router.jsx | 4 +++ .../src/unstract/tool_registry/dto.py | 24 +++++++++++++++-- .../src/unstract/tool_registry/tool_utils.py | 8 ++++++ 10 files changed, 69 insertions(+), 29 deletions(-) delete mode 100644 backend/prompt_studio/prompt_profile_manager/migrations/0006_alter_profilemanager_x2text.py diff --git a/backend/adapter_processor/constants.py b/backend/adapter_processor/constants.py index 429d67b3a8..5a6296f53c 100644 --- a/backend/adapter_processor/constants.py +++ b/backend/adapter_processor/constants.py @@ -4,6 +4,7 @@ class AdapterKeys: IS_DEFAULT = "is_default" LLM = "LLM" X2TEXT = "X2TEXT" + OCR = "OCR" VECTOR_DB = "VECTOR_DB" EMBEDDING = "EMBEDDING" NAME = "name" diff --git a/backend/adapter_processor/views.py b/backend/adapter_processor/views.py index 2009527afa..8b71443719 100644 --- a/backend/adapter_processor/views.py +++ b/backend/adapter_processor/views.py @@ -63,6 +63,7 @@ def list( or adapter_type == AdapterKeys.EMBEDDING or adapter_type == AdapterKeys.VECTOR_DB or adapter_type == AdapterKeys.X2TEXT + or adapter_type == AdapterKeys.OCR ): json_schema = AdapterProcessor.get_all_supported_adapters( type=adapter_type diff --git a/backend/prompt_studio/prompt_profile_manager/migrations/0006_alter_profilemanager_x2text.py b/backend/prompt_studio/prompt_profile_manager/migrations/0006_alter_profilemanager_x2text.py deleted file mode 100644 index e34d267962..0000000000 --- a/backend/prompt_studio/prompt_profile_manager/migrations/0006_alter_profilemanager_x2text.py +++ /dev/null @@ -1,27 +0,0 @@ -# Generated by Django 4.2.1 on 2024-02-23 17:02 - -import django.db.models.deletion -from django.db import migrations, models - - -class Migration(migrations.Migration): - dependencies = [ - ("adapter_processor", "0004_alter_adapterinstance_adapter_type"), - ( - "prompt_profile_manager", - "0005_removed_converter_and_added_x2text_foreign_key", - ), - ] - - operations = [ - migrations.AlterField( - model_name="profilemanager", - name="x2text", - field=models.ForeignKey( - db_comment="Field to store the X2Text Adapter chosen by the user", - on_delete=django.db.models.deletion.PROTECT, - related_name="profile_manager_x2text", - to="adapter_processor.adapterinstance", - ), - ), - ] diff --git a/backend/tool_instance/tool_instance_helper.py b/backend/tool_instance/tool_instance_helper.py index 356d5374de..febbdc33ab 100644 --- a/backend/tool_instance/tool_instance_helper.py +++ b/backend/tool_instance/tool_instance_helper.py @@ -140,6 +140,7 @@ def update_metadata_with_adapter_instances( embedding_properties = schema.get_embedding_adapter_properties() vector_db_properties = schema.get_vector_db_adapter_properties() x2text_properties = schema.get_text_extractor_adapter_properties() + ocr_properties = schema.get_ocr_adapter_properties() for adapter_key, adapter_property in llm_properties.items(): ToolInstanceHelper.update_metadata_with_adapter_properties( @@ -173,6 +174,13 @@ def update_metadata_with_adapter_instances( adapter_type=AdapterTypes.X2TEXT, ) + for adapter_key, adapter_property in ocr_properties.items(): + ToolInstanceHelper.update_metadata_with_adapter_properties( + metadata=metadata, + adapter_key=adapter_key, + adapter_property=adapter_property, + adapter_type=AdapterTypes.OCR, + ) @staticmethod def get_altered_metadata( tool_instance: ToolInstance, @@ -257,6 +265,8 @@ def update_metadata_with_default_adapter( properties = schema_spec.get_vector_db_adapter_properties() if adapter_type == AdapterTypes.X2TEXT: properties = schema_spec.get_text_extractor_adapter_properties() + if adapter_type == AdapterTypes.OCR: + properties = schema_spec.get_ocr_adapter_properties() for adapter_key, adapter_property in properties.items(): metadata_key_for_id = adapter_property.get( AdapterPropertyKey.ADAPTER_ID_KEY, AdapterPropertyKey.ADAPTER_ID diff --git a/backend/tool_instance/tool_processor.py b/backend/tool_instance/tool_processor.py index 68c3dd10df..3d12d20550 100644 --- a/backend/tool_instance/tool_processor.py +++ b/backend/tool_instance/tool_processor.py @@ -78,6 +78,7 @@ def update_schema_with_adapter_configurations( embedding_keys = schema.get_embedding_adapter_properties_keys() vector_db_keys = schema.get_vector_db_adapter_properties_keys() x2text_keys = schema.get_text_extractor_adapter_properties_keys() + ocr_keys = schema.get_ocr_adapter_properties_keys() if llm_keys: adapters = AdapterProcessor.get_adapters_by_type( @@ -119,6 +120,16 @@ def update_schema_with_adapter_configurations( ) schema.properties[key]["enum"] = list(adapter_names) + if ocr_keys: + adapters = AdapterProcessor.get_adapters_by_type( + AdapterTypes.OCR, user=user + ) + for key in ocr_keys: + adapter_names = map( + lambda adapter: str(adapter.adapter_name), adapters + ) + schema.properties[key]["enum"] = list(adapter_names) + @staticmethod def get_tool_list() -> list[dict[str, Any]]: """Function to get a list of tools.""" diff --git a/frontend/src/components/navigations/side-nav-bar/SideNavBar.jsx b/frontend/src/components/navigations/side-nav-bar/SideNavBar.jsx index d8ccdca6aa..d06f6bbc47 100644 --- a/frontend/src/components/navigations/side-nav-bar/SideNavBar.jsx +++ b/frontend/src/components/navigations/side-nav-bar/SideNavBar.jsx @@ -132,6 +132,16 @@ const SideNavBar = ({ collapsed }) => { }, { id: 3.5, + title: "OCR", + description: "Setup platform wide access to OCR services", + image: EmbeddingIcon, + path: `/${orgName}/settings/ocr`, + active: window.location.pathname.startsWith( + `/${orgName}/settings/ocr` + ), + }, + { + id: 3.6, title: "Platform", description: "Settings for the platform", image: PlatformSettingsIcon, diff --git a/frontend/src/components/tool-settings/tool-settings/ToolSettings.jsx b/frontend/src/components/tool-settings/tool-settings/ToolSettings.jsx index 715a12760d..7799663f47 100644 --- a/frontend/src/components/tool-settings/tool-settings/ToolSettings.jsx +++ b/frontend/src/components/tool-settings/tool-settings/ToolSettings.jsx @@ -21,6 +21,7 @@ const titles = { vector_db: "Vector DBs", embedding: "Embeddings", x2text: "Text Extractor", + ocr: "OCR", }; const btnText = { @@ -28,6 +29,7 @@ const btnText = { vector_db: "New Vector DB Profile", embedding: "New Embedding Profile", x2text: "New Text Extractor", + ocr: "New OCR", }; function ToolSettings({ type }) { diff --git a/frontend/src/routes/Router.jsx b/frontend/src/routes/Router.jsx index dfe29c7985..f52102ba21 100644 --- a/frontend/src/routes/Router.jsx +++ b/frontend/src/routes/Router.jsx @@ -85,6 +85,10 @@ function Router() { path="settings/textExtractor" element={} /> + } + /> } /> } /> } /> diff --git a/unstract/tool-registry/src/unstract/tool_registry/dto.py b/unstract/tool-registry/src/unstract/tool_registry/dto.py index 54707a493f..7479807d56 100644 --- a/unstract/tool-registry/src/unstract/tool_registry/dto.py +++ b/unstract/tool-registry/src/unstract/tool_registry/dto.py @@ -91,6 +91,9 @@ def get_vector_db_adapter_properties_keys(self) -> set[str]: def get_text_extractor_adapter_properties_keys(self) -> set[str]: return self.get_adapter_properties_keys(AdapterTypes.X2TEXT) + def get_ocr_adapter_properties_keys(self) -> set[str]: + return self.get_adapter_properties_keys(AdapterTypes.OCR) + def get_adapter_properties( self, adapter_type: AdapterTypes ) -> dict[str, dict[str, Any]]: @@ -118,6 +121,11 @@ def get_text_extractor_adapter_properties( ) -> dict[str, dict[str, Any]]: return self.get_adapter_properties(AdapterTypes.X2TEXT) + def get_ocr_adapter_properties( + self, + ) -> dict[str, dict[str, Any]]: + return self.get_adapter_properties(AdapterTypes.OCR) + @classmethod def from_dict(cls, data_dict: dict[str, Any]) -> "Spec": title = data_dict.get(cls.TITLE_KEY, "") @@ -214,6 +222,7 @@ class Adapter: EMBEDDING_SERVICES_KEY (str): Constant for the key "embeddingServices". VECTOR_STORES_KEY (str): Constant for the key "vectorStores". TEXT_EXTRACTORS_KEY (str): Constant for the key "textExtractors". + OCR_KEY (str): Constant for the key "ocr". language_model (AdapterProperties): The properties of the language model adapter. @@ -232,6 +241,8 @@ class Adapter: EMBEDDING_SERVICES_KEY = "embeddingServices" VECTOR_STORES_KEY = "vectorStores" TEXT_EXTRACTORS_KEY = "textExtractors" + OCRS_KEY = "ocrs" + language_models: list[AdapterProperties] = field( default_factory=list[AdapterProperties] @@ -245,6 +256,9 @@ class Adapter: text_extractors: list[AdapterProperties] = field( default_factory=list[AdapterProperties] ) + ocrs: list[AdapterProperties] = field( + default_factory=list[AdapterProperties] + ) @classmethod def from_dict(cls, data_dict: dict[str, Any]) -> "Adapter": @@ -252,6 +266,7 @@ def from_dict(cls, data_dict: dict[str, Any]) -> "Adapter": embedding_services_list = data_dict.get(cls.EMBEDDING_SERVICES_KEY, []) vector_stores_list = data_dict.get(cls.VECTOR_STORES_KEY, []) text_extractors_list = data_dict.get(cls.TEXT_EXTRACTORS_KEY, []) + ocrs_list = data_dict.get(cls.OCRS_KEY, []) language_models = [ AdapterProperties.from_dict(language_model_dict) @@ -266,8 +281,12 @@ def from_dict(cls, data_dict: dict[str, Any]) -> "Adapter": for vector_store_dict in vector_stores_list ] text_extractors = [ - AdapterProperties.from_dict(vector_store_dict) - for vector_store_dict in text_extractors_list + AdapterProperties.from_dict(text_extractor_dict) + for text_extractor_dict in text_extractors_list + ] + ocrs = [ + AdapterProperties.from_dict(ocr_dict) + for ocr_dict in ocrs_list ] return cls( @@ -275,6 +294,7 @@ def from_dict(cls, data_dict: dict[str, Any]) -> "Adapter": embedding_services=embedding_services, vector_stores=vector_stores, text_extractors=text_extractors, + ocrs=ocrs, ) def to_dict(self) -> dict[str, Any]: diff --git a/unstract/tool-registry/src/unstract/tool_registry/tool_utils.py b/unstract/tool-registry/src/unstract/tool_registry/tool_utils.py index e0f0f312dd..22114ecf39 100644 --- a/unstract/tool-registry/src/unstract/tool_registry/tool_utils.py +++ b/unstract/tool-registry/src/unstract/tool_registry/tool_utils.py @@ -248,6 +248,9 @@ def get_json_schema_for_tool(tool: Tool) -> Any: text_extractors = ToolUtils.get_enabled_adapters( adapter.text_extractors ) + ocrs = ToolUtils.get_enabled_adapters( + adapter.ocrs + ) ToolUtils.process_adapter_models( models=language_models, @@ -272,6 +275,11 @@ def get_json_schema_for_tool(tool: Tool) -> Any: adapter_type=AdapterTypes.X2TEXT, schema=schema, ) + ToolUtils.process_adapter_models( + models=ocrs, + adapter_type=AdapterTypes.OCR, + schema=schema, + ) return schema @staticmethod From 97e51ee94dad38daebe2835c21e15a07aeb5ca9e Mon Sep 17 00:00:00 2001 From: gayathrivijayakumar Date: Mon, 26 Feb 2024 22:06:00 +0530 Subject: [PATCH 4/9] Bring back the file deleted by mistae --- .../0006_alter_profilemanager_x2text.py | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 backend/prompt_studio/prompt_profile_manager/migrations/0006_alter_profilemanager_x2text.py diff --git a/backend/prompt_studio/prompt_profile_manager/migrations/0006_alter_profilemanager_x2text.py b/backend/prompt_studio/prompt_profile_manager/migrations/0006_alter_profilemanager_x2text.py new file mode 100644 index 0000000000..e34d267962 --- /dev/null +++ b/backend/prompt_studio/prompt_profile_manager/migrations/0006_alter_profilemanager_x2text.py @@ -0,0 +1,27 @@ +# Generated by Django 4.2.1 on 2024-02-23 17:02 + +import django.db.models.deletion +from django.db import migrations, models + + +class Migration(migrations.Migration): + dependencies = [ + ("adapter_processor", "0004_alter_adapterinstance_adapter_type"), + ( + "prompt_profile_manager", + "0005_removed_converter_and_added_x2text_foreign_key", + ), + ] + + operations = [ + migrations.AlterField( + model_name="profilemanager", + name="x2text", + field=models.ForeignKey( + db_comment="Field to store the X2Text Adapter chosen by the user", + on_delete=django.db.models.deletion.PROTECT, + related_name="profile_manager_x2text", + to="adapter_processor.adapterinstance", + ), + ), + ] From 823978ee4ad457cc1a81911c4245d6ea488cf47f Mon Sep 17 00:00:00 2001 From: gayathrivijayakumar Date: Tue, 27 Feb 2024 14:01:29 +0530 Subject: [PATCH 5/9] Roll up dependency versions for adapters and sdk --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 57dd4607fa..e8c3160f42 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -41,8 +41,8 @@ hook-check-django-migrations = [ "psycopg2-binary==2.9.9", "python-dotenv==1.0.0", "python-magic==0.4.27", - "unstract-sdk~=0.11.1", - "unstract-adapters~=0.2.1", + "unstract-sdk~=0.11.2", + "unstract-adapters~=0.2.2", "-e unstract-connectors @ file:///${PROJECT_ROOT}/unstract/connectors", "-e unstract-core @ file:///${PROJECT_ROOT}/unstract/core", "-e unstract-flags @ file:///${PROJECT_ROOT}/unstract/flags", From 74d4266e1afc05b9c72af5b9699edcca14402bec Mon Sep 17 00:00:00 2001 From: gayathrivijayakumar Date: Tue, 27 Feb 2024 14:11:13 +0530 Subject: [PATCH 6/9] Roll up dependency version for sdk --- prompt-service/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/prompt-service/pyproject.toml b/prompt-service/pyproject.toml index 4e43ff3af5..ae624cbeed 100644 --- a/prompt-service/pyproject.toml +++ b/prompt-service/pyproject.toml @@ -17,7 +17,7 @@ dependencies = [ "flask~=3.0", "llama-index==0.9.28", "python-dotenv==1.0.0", - "unstract-sdk~=0.11.1", + "unstract-sdk~=0.11.2", ] requires-python = ">=3.9,<3.11.1" readme = "README.md" From 82501643742f63139e504587bf1500adfed18d06 Mon Sep 17 00:00:00 2001 From: gayathrivijayakumar Date: Tue, 27 Feb 2024 21:10:29 +0530 Subject: [PATCH 7/9] Update lock files with latest sdk and adapter versions --- backend/pdm.lock | 300 ++-------------------------------------- prompt-service/pdm.lock | 222 ++--------------------------- 2 files changed, 25 insertions(+), 497 deletions(-) diff --git a/backend/pdm.lock b/backend/pdm.lock index 371626ea0c..3b56dab23d 100644 --- a/backend/pdm.lock +++ b/backend/pdm.lock @@ -3,8 +3,8 @@ [metadata] groups = ["default", "deploy", "test"] -strategy = ["cross_platform", "inherit_metadata"] -lock_version = "4.4.1" +strategy = ["cross_platform"] +lock_version = "4.4" content_hash = "sha256:9fb9cc53be1e2e98df6da5f2eee39151edd648e25a231d655be7d626b3e25746" [[package]] @@ -12,7 +12,6 @@ name = "aiobotocore" version = "2.5.4" requires_python = ">=3.7" summary = "Async client for aws services using botocore and aiohttp" -groups = ["default"] dependencies = [ "aiohttp<4.0.0,>=3.3.1", "aioitertools<1.0.0,>=0.5.1", @@ -30,7 +29,6 @@ version = "2.5.4" extras = ["boto3"] requires_python = ">=3.7" summary = "Async client for aws services using botocore and aiohttp" -groups = ["default"] dependencies = [ "aiobotocore==2.5.4", "boto3<1.28.18,>=1.28.17", @@ -45,7 +43,6 @@ name = "aiohttp" version = "3.9.3" requires_python = ">=3.8" summary = "Async http client/server framework (asyncio)" -groups = ["default"] dependencies = [ "aiosignal>=1.1.2", "async-timeout<5.0,>=4.0; python_version < \"3.11\"", @@ -108,7 +105,6 @@ name = "aioitertools" version = "0.11.0" requires_python = ">=3.6" summary = "itertools and builtins for AsyncIO and mixed iterables" -groups = ["default"] dependencies = [ "typing-extensions>=4.0; python_version < \"3.10\"", ] @@ -122,7 +118,6 @@ name = "aiosignal" version = "1.3.1" requires_python = ">=3.7" summary = "aiosignal: a list of registered asynchronous callbacks" -groups = ["default"] dependencies = [ "frozenlist>=1.1.0", ] @@ -136,7 +131,6 @@ name = "amqp" version = "5.2.0" requires_python = ">=3.6" summary = "Low-level AMQP client for Python (fork of amqplib)." -groups = ["default"] dependencies = [ "vine<6.0.0,>=5.0.0", ] @@ -150,7 +144,6 @@ name = "annotated-types" version = "0.6.0" requires_python = ">=3.8" summary = "Reusable constraint types to use with typing.Annotated" -groups = ["default"] files = [ {file = "annotated_types-0.6.0-py3-none-any.whl", hash = "sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43"}, {file = "annotated_types-0.6.0.tar.gz", hash = "sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d"}, @@ -161,7 +154,6 @@ name = "anthropic" version = "0.7.8" requires_python = ">=3.7" summary = "The official Python library for the anthropic API" -groups = ["default"] dependencies = [ "anyio<5,>=3.5.0", "distro<2,>=1.7.0", @@ -181,7 +173,6 @@ name = "anyio" version = "4.3.0" requires_python = ">=3.8" summary = "High level compatibility layer for multiple asynchronous event loop implementations" -groups = ["default"] dependencies = [ "exceptiongroup>=1.0.2; python_version < \"3.11\"", "idna>=2.8", @@ -197,7 +188,6 @@ files = [ name = "anyscale" version = "0.5.165" summary = "Command Line Interface for Anyscale" -groups = ["default"] dependencies = [ "Click>=7.0", "GitPython", @@ -236,7 +226,6 @@ files = [ name = "appdirs" version = "1.4.4" summary = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -groups = ["default"] files = [ {file = "appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128"}, {file = "appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41"}, @@ -247,7 +236,6 @@ name = "argon2-cffi" version = "23.1.0" requires_python = ">=3.7" summary = "Argon2 for Python" -groups = ["default"] dependencies = [ "argon2-cffi-bindings", ] @@ -261,7 +249,6 @@ name = "argon2-cffi-bindings" version = "21.2.0" requires_python = ">=3.6" summary = "Low-level CFFI bindings for Argon2" -groups = ["default"] dependencies = [ "cffi>=1.0.1", ] @@ -294,7 +281,6 @@ name = "asgiref" version = "3.7.2" requires_python = ">=3.7" summary = "ASGI specs, helper code, and adapters" -groups = ["default"] dependencies = [ "typing-extensions>=4; python_version < \"3.11\"", ] @@ -307,7 +293,6 @@ files = [ name = "asn1crypto" version = "1.5.1" summary = "Fast ASN.1 parser and serializer with definitions for private keys, public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, PKCS#8, PKCS#12, PKCS#5, X.509 and TSP" -groups = ["default"] files = [ {file = "asn1crypto-1.5.1-py2.py3-none-any.whl", hash = "sha256:db4e40728b728508912cbb3d44f19ce188f218e9eba635821bb4b68564f8fd67"}, {file = "asn1crypto-1.5.1.tar.gz", hash = "sha256:13ae38502be632115abf8a24cbe5f4da52e3b5231990aff31123c805306ccb9c"}, @@ -318,8 +303,6 @@ name = "async-timeout" version = "4.0.3" requires_python = ">=3.7" summary = "Timeout context manager for asyncio programs" -groups = ["default"] -marker = "python_version < \"3.12.0\"" files = [ {file = "async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f"}, {file = "async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028"}, @@ -330,7 +313,6 @@ name = "asyncpg" version = "0.29.0" requires_python = ">=3.8.0" summary = "An asyncio PostgreSQL driver" -groups = ["default"] dependencies = [ "async-timeout>=4.0.3; python_version < \"3.12.0\"", ] @@ -367,7 +349,6 @@ name = "attrs" version = "23.2.0" requires_python = ">=3.7" summary = "Classes Without Boilerplate" -groups = ["default"] files = [ {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, @@ -377,7 +358,6 @@ files = [ name = "authlib" version = "1.2.1" summary = "The ultimate Python library in building OAuth and OpenID Connect servers and clients." -groups = ["default"] dependencies = [ "cryptography>=3.2", ] @@ -391,7 +371,6 @@ name = "backoff" version = "2.2.1" requires_python = ">=3.7,<4.0" summary = "Function decoration for backoff and retry" -groups = ["default"] files = [ {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, @@ -402,7 +381,6 @@ name = "beautifulsoup4" version = "4.12.3" requires_python = ">=3.6.0" summary = "Screen-scraping library" -groups = ["default"] dependencies = [ "soupsieve>1.2", ] @@ -416,7 +394,6 @@ name = "bidict" version = "0.23.1" requires_python = ">=3.8" summary = "The bidirectional mapping library for Python." -groups = ["default"] files = [ {file = "bidict-0.23.1-py3-none-any.whl", hash = "sha256:5dae8d4d79b552a71cbabc7deb25dfe8ce710b17ff41711e13010ead2abfc3e5"}, {file = "bidict-0.23.1.tar.gz", hash = "sha256:03069d763bc387bbd20e7d49914e75fc4132a41937fa3405417e1a5a2d006d71"}, @@ -427,7 +404,6 @@ name = "billiard" version = "4.2.0" requires_python = ">=3.7" summary = "Python multiprocessing fork with improvements and bugfixes" -groups = ["default"] files = [ {file = "billiard-4.2.0-py3-none-any.whl", hash = "sha256:07aa978b308f334ff8282bd4a746e681b3513db5c9a514cbdd810cbbdc19714d"}, {file = "billiard-4.2.0.tar.gz", hash = "sha256:9a3c3184cb275aa17a732f93f65b20c525d3d9f253722d26a82194803ade5a2c"}, @@ -438,7 +414,6 @@ name = "boto3" version = "1.28.17" requires_python = ">= 3.7" summary = "The AWS SDK for Python" -groups = ["default"] dependencies = [ "botocore<1.32.0,>=1.31.17", "jmespath<2.0.0,>=0.7.1", @@ -454,7 +429,6 @@ name = "botocore" version = "1.31.17" requires_python = ">= 3.7" summary = "Low-level, data-driven core of boto 3." -groups = ["default"] dependencies = [ "jmespath<2.0.0,>=0.7.1", "python-dateutil<3.0.0,>=2.1", @@ -470,7 +444,6 @@ name = "boxfs" version = "0.2.1" requires_python = ">=3.8,<4.0" summary = "Implementation of fsspec for Box file storage" -groups = ["default"] dependencies = [ "boxsdk[jwt]<4.0,>=3.7", "fsspec>=2023.4", @@ -484,7 +457,6 @@ files = [ name = "boxsdk" version = "3.9.2" summary = "Official Box Python SDK" -groups = ["default"] dependencies = [ "attrs>=17.3.0", "python-dateutil", @@ -502,7 +474,6 @@ name = "boxsdk" version = "3.9.2" extras = ["jwt"] summary = "Official Box Python SDK" -groups = ["default"] dependencies = [ "boxsdk==3.9.2", "cryptography>=3", @@ -518,7 +489,6 @@ name = "cachetools" version = "5.3.2" requires_python = ">=3.7" summary = "Extensible memoizing collections and decorators" -groups = ["default"] files = [ {file = "cachetools-5.3.2-py3-none-any.whl", hash = "sha256:861f35a13a451f94e301ce2bec7cac63e881232ccce7ed67fab9b5df4d3beaa1"}, {file = "cachetools-5.3.2.tar.gz", hash = "sha256:086ee420196f7b2ab9ca2db2520aca326318b68fe5ba8bc4d49cca91add450f2"}, @@ -529,7 +499,6 @@ name = "celery" version = "5.3.6" requires_python = ">=3.8" summary = "Distributed Task Queue." -groups = ["default"] dependencies = [ "billiard<5.0,>=4.2.0", "click-didyoumean>=0.3.0", @@ -551,7 +520,6 @@ name = "certifi" version = "2024.2.2" requires_python = ">=3.6" summary = "Python package for providing Mozilla's CA Bundle." -groups = ["default"] files = [ {file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"}, {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"}, @@ -562,7 +530,6 @@ name = "cffi" version = "1.16.0" requires_python = ">=3.8" summary = "Foreign Function Interface for Python calling C code." -groups = ["default"] dependencies = [ "pycparser", ] @@ -608,7 +575,6 @@ name = "charset-normalizer" version = "3.3.2" requires_python = ">=3.7.0" summary = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -groups = ["default"] files = [ {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, @@ -664,7 +630,6 @@ name = "click" version = "8.1.7" requires_python = ">=3.7" summary = "Composable command line interface toolkit" -groups = ["default"] dependencies = [ "colorama; platform_system == \"Windows\"", ] @@ -678,7 +643,6 @@ name = "click-didyoumean" version = "0.3.0" requires_python = ">=3.6.2,<4.0.0" summary = "Enables git-like *did-you-mean* feature in click" -groups = ["default"] dependencies = [ "click>=7", ] @@ -691,7 +655,6 @@ files = [ name = "click-plugins" version = "1.1.1" summary = "An extension module for click to enable registering CLI commands via setuptools entry-points." -groups = ["default"] dependencies = [ "click>=4.0", ] @@ -705,7 +668,6 @@ name = "click-repl" version = "0.3.0" requires_python = ">=3.6" summary = "REPL plugin for Click" -groups = ["default"] dependencies = [ "click>=7.0", "prompt-toolkit>=3.0.36", @@ -720,7 +682,6 @@ name = "colorama" version = "0.4.6" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" summary = "Cross-platform colored terminal text." -groups = ["default", "test"] files = [ {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, @@ -731,7 +692,6 @@ name = "coloredlogs" version = "15.0.1" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Colored terminal output for Python's logging module" -groups = ["default"] dependencies = [ "humanfriendly>=9.1", ] @@ -744,7 +704,6 @@ files = [ name = "cron-descriptor" version = "1.4.0" summary = "A Python library that converts cron expressions into human readable strings." -groups = ["default"] files = [ {file = "cron_descriptor-1.4.0.tar.gz", hash = "sha256:b6ff4e3a988d7ca04a4ab150248e9f166fb7a5c828a85090e75bcc25aa93b4dd"}, ] @@ -754,7 +713,6 @@ name = "cryptography" version = "41.0.7" requires_python = ">=3.7" summary = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." -groups = ["default"] dependencies = [ "cffi>=1.12", ] @@ -789,7 +747,6 @@ name = "dataclasses-json" version = "0.6.4" requires_python = ">=3.7,<4.0" summary = "Easily serialize dataclasses to and from JSON." -groups = ["default"] dependencies = [ "marshmallow<4.0.0,>=3.18.0", "typing-inspect<1,>=0.4.0", @@ -804,7 +761,6 @@ name = "defusedxml" version = "0.8.0rc2" requires_python = ">=3.6" summary = "XML bomb protection for Python stdlib modules" -groups = ["default"] files = [ {file = "defusedxml-0.8.0rc2-py2.py3-none-any.whl", hash = "sha256:1c812964311154c3bf4aaf3bc1443b31ee13530b7f255eaaa062c0553c76103d"}, {file = "defusedxml-0.8.0rc2.tar.gz", hash = "sha256:138c7d540a78775182206c7c97fe65b246a2f40b29471e1a2f1b0da76e7a3942"}, @@ -815,7 +771,6 @@ name = "deprecated" version = "1.2.14" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "Python @deprecated decorator to deprecate old python classes, functions or methods." -groups = ["default"] dependencies = [ "wrapt<2,>=1.10", ] @@ -828,7 +783,6 @@ files = [ name = "deprecation" version = "2.1.0" summary = "A library to handle automated deprecations" -groups = ["default"] dependencies = [ "packaging", ] @@ -842,7 +796,6 @@ name = "distro" version = "1.9.0" requires_python = ">=3.6" summary = "Distro - an OS platform information API" -groups = ["default"] files = [ {file = "distro-1.9.0-py3-none-any.whl", hash = "sha256:7bffd925d65168f85027d8da9af6bddab658135b840670a223589bc0c8ef02b2"}, {file = "distro-1.9.0.tar.gz", hash = "sha256:2fa77c6fd8940f116ee1d6b94a2f90b13b5ea8d019b98bc8bafdcabcdd9bdbed"}, @@ -853,7 +806,6 @@ name = "django" version = "4.2.1" requires_python = ">=3.8" summary = "A high-level Python web framework that encourages rapid development and clean, pragmatic design." -groups = ["default"] dependencies = [ "asgiref<4,>=3.6.0", "sqlparse>=0.3.1", @@ -868,7 +820,6 @@ files = [ name = "django-celery-beat" version = "2.5.0" summary = "Database-backed Periodic Tasks." -groups = ["default"] dependencies = [ "Django<5.0,>=2.2", "celery<6.0,>=5.2.3", @@ -887,7 +838,6 @@ name = "django-cors-headers" version = "4.3.1" requires_python = ">=3.8" summary = "django-cors-headers is a Django application for handling the server headers required for Cross-Origin Resource Sharing (CORS)." -groups = ["default"] dependencies = [ "Django>=3.2", "asgiref>=3.6", @@ -902,7 +852,6 @@ name = "django-redis" version = "5.4.0" requires_python = ">=3.6" summary = "Full featured redis cache backend for Django." -groups = ["default"] dependencies = [ "Django>=3.2", "redis!=4.0.0,!=4.0.1,>=3", @@ -916,7 +865,6 @@ files = [ name = "django-tenants" version = "3.5.0" summary = "Tenant support for Django using PostgreSQL schemas." -groups = ["default"] dependencies = [ "Django<4.3,>=2.1", ] @@ -929,7 +877,6 @@ name = "django-timezone-field" version = "6.1.0" requires_python = ">=3.8,<4.0" summary = "A Django app providing DB, form, and REST framework fields for zoneinfo and pytz timezone objects." -groups = ["default"] dependencies = [ "Django<6.0,>=3.2", ] @@ -943,7 +890,6 @@ name = "djangorestframework" version = "3.14.0" requires_python = ">=3.6" summary = "Web APIs for Django, made easy." -groups = ["default"] dependencies = [ "django>=3.0", "pytz", @@ -958,7 +904,6 @@ name = "dnspython" version = "2.6.1" requires_python = ">=3.8" summary = "DNS toolkit" -groups = ["default"] files = [ {file = "dnspython-2.6.1-py3-none-any.whl", hash = "sha256:5ef3b9680161f6fa89daf8ad451b5f1a33b18ae8a1c6778cdf4b43f08c0a6e50"}, {file = "dnspython-2.6.1.tar.gz", hash = "sha256:e8f0f9c23a7b7cb99ded64e6c3a6f3e701d78f50c55e002b839dea7225cff7cc"}, @@ -969,7 +914,6 @@ name = "docker" version = "6.1.3" requires_python = ">=3.7" summary = "A Python library for the Docker Engine API." -groups = ["default"] dependencies = [ "packaging>=14.0", "pywin32>=304; sys_platform == \"win32\"", @@ -987,7 +931,6 @@ name = "drf-standardized-errors" version = "0.12.6" requires_python = ">=3.8" summary = "Standardize your API error responses." -groups = ["default"] dependencies = [ "django>=3.2", "djangorestframework>=3.12", @@ -1002,7 +945,6 @@ name = "drf-yasg" version = "1.21.7" requires_python = ">=3.6" summary = "Automated generation of real Swagger/OpenAPI 2.0 schemas from Django Rest Framework code." -groups = ["default"] dependencies = [ "django>=2.2.16", "djangorestframework>=3.10.3", @@ -1021,7 +963,6 @@ files = [ name = "dropbox" version = "11.36.2" summary = "Official Dropbox API Client" -groups = ["default"] dependencies = [ "requests>=2.16.2", "six>=1.12.0", @@ -1037,7 +978,6 @@ name = "dropboxdrivefs" version = "1.3.1" requires_python = ">=3.5" summary = "Dropbox implementation for fsspec module" -groups = ["default"] dependencies = [ "dropbox", "fsspec", @@ -1052,7 +992,6 @@ name = "environs" version = "9.5.0" requires_python = ">=3.6" summary = "simplified environment variable parsing" -groups = ["default"] dependencies = [ "marshmallow>=3.0.0", "python-dotenv", @@ -1067,8 +1006,6 @@ name = "exceptiongroup" version = "1.2.0" requires_python = ">=3.7" summary = "Backport of PEP 654 (exception groups)" -groups = ["default", "test"] -marker = "python_version < \"3.11\"" files = [ {file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"}, {file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"}, @@ -1079,7 +1016,6 @@ name = "fastembed" version = "0.1.3" requires_python = ">=3.8.0,<3.12" summary = "Fast, light, accurate library built for retrieval embedding generation" -groups = ["default"] dependencies = [ "huggingface-hub==0.19.4", "onnx<2.0,>=1.11", @@ -1098,7 +1034,6 @@ name = "filelock" version = "3.13.1" requires_python = ">=3.8" summary = "A platform independent file lock." -groups = ["default"] files = [ {file = "filelock-3.13.1-py3-none-any.whl", hash = "sha256:57dbda9b35157b05fb3e58ee91448612eb674172fab98ee235ccb0b5bee19a1c"}, {file = "filelock-3.13.1.tar.gz", hash = "sha256:521f5f56c50f8426f5e03ad3b281b490a87ef15bc6c526f168290f0c7148d44e"}, @@ -1108,7 +1043,6 @@ files = [ name = "filetype" version = "1.2.0" summary = "Infer file type and MIME type of any file/buffer. No external dependencies." -groups = ["default"] files = [ {file = "filetype-1.2.0-py2.py3-none-any.whl", hash = "sha256:7ce71b6880181241cf7ac8697a2f1eb6a8bd9b429f7ad6d27b8db9ba5f1c2d25"}, {file = "filetype-1.2.0.tar.gz", hash = "sha256:66b56cd6474bf41d8c54660347d37afcc3f7d1970648de365c102ef77548aadb"}, @@ -1118,7 +1052,6 @@ files = [ name = "flatbuffers" version = "23.5.26" summary = "The FlatBuffers serialization format for Python" -groups = ["default"] files = [ {file = "flatbuffers-23.5.26-py2.py3-none-any.whl", hash = "sha256:c0ff356da363087b915fde4b8b45bdda73432fc17cddb3c8157472eab1422ad1"}, {file = "flatbuffers-23.5.26.tar.gz", hash = "sha256:9ea1144cac05ce5d86e2859f431c6cd5e66cd9c78c558317c7955fb8d4c78d89"}, @@ -1129,7 +1062,6 @@ name = "flower" version = "2.0.1" requires_python = ">=3.7" summary = "Celery Flower" -groups = ["default"] dependencies = [ "celery>=5.0.5", "humanize", @@ -1146,7 +1078,6 @@ files = [ name = "flupy" version = "1.2.0" summary = "Method chaining built on generators" -groups = ["default"] dependencies = [ "typing-extensions", ] @@ -1159,7 +1090,6 @@ name = "frozenlist" version = "1.4.1" requires_python = ">=3.8" summary = "A list-like structure which implements collections.abc.MutableSequence" -groups = ["default"] files = [ {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"}, {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"}, @@ -1215,7 +1145,6 @@ name = "fsspec" version = "2023.6.0" requires_python = ">=3.8" summary = "File-system specification" -groups = ["default"] files = [ {file = "fsspec-2023.6.0-py3-none-any.whl", hash = "sha256:1cbad1faef3e391fba6dc005ae9b5bdcbf43005c9167ce78c915549c352c869a"}, {file = "fsspec-2023.6.0.tar.gz", hash = "sha256:d0b2f935446169753e7a5c5c55681c54ea91996cc67be93c39a154fb3a2742af"}, @@ -1225,7 +1154,6 @@ files = [ name = "funcy" version = "2.0" summary = "A fancy and practical functional tools" -groups = ["default"] files = [ {file = "funcy-2.0-py2.py3-none-any.whl", hash = "sha256:53df23c8bb1651b12f095df764bfb057935d49537a56de211b098f4c79614bb0"}, {file = "funcy-2.0.tar.gz", hash = "sha256:3963315d59d41c6f30c04bc910e10ab50a3ac4a225868bfa96feed133df075cb"}, @@ -1236,7 +1164,6 @@ name = "gitdb" version = "4.0.11" requires_python = ">=3.7" summary = "Git Object Database" -groups = ["default"] dependencies = [ "smmap<6,>=3.0.1", ] @@ -1250,7 +1177,6 @@ name = "gitpython" version = "3.1.42" requires_python = ">=3.7" summary = "GitPython is a Python library used to interact with Git repositories" -groups = ["default"] dependencies = [ "gitdb<5,>=4.0.1", ] @@ -1264,7 +1190,6 @@ name = "google-ai-generativelanguage" version = "0.4.0" requires_python = ">=3.7" summary = "Google Ai Generativelanguage API client library" -groups = ["default"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.0", "proto-plus<2.0.0dev,>=1.22.3", @@ -1280,7 +1205,6 @@ name = "google-api-core" version = "2.17.1" requires_python = ">=3.7" summary = "Google API client core library" -groups = ["default"] dependencies = [ "google-auth<3.0.dev0,>=2.14.1", "googleapis-common-protos<2.0.dev0,>=1.56.2", @@ -1298,7 +1222,6 @@ version = "2.17.1" extras = ["grpc"] requires_python = ">=3.7" summary = "Google API client core library" -groups = ["default"] dependencies = [ "google-api-core==2.17.1", "grpcio-status<2.0.dev0,>=1.33.2", @@ -1316,7 +1239,6 @@ name = "google-api-python-client" version = "2.119.0" requires_python = ">=3.7" summary = "Google API Client Library for Python" -groups = ["default"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0.dev0,>=1.31.5", "google-auth-httplib2>=0.1.0", @@ -1334,7 +1256,6 @@ name = "google-auth" version = "2.20.0" requires_python = ">=3.6" summary = "Google Authentication Library" -groups = ["default"] dependencies = [ "cachetools<6.0,>=2.0.0", "pyasn1-modules>=0.2.1", @@ -1351,7 +1272,6 @@ files = [ name = "google-auth-httplib2" version = "0.2.0" summary = "Google Authentication Library: httplib2 transport" -groups = ["default"] dependencies = [ "google-auth", "httplib2>=0.19.0", @@ -1366,7 +1286,6 @@ name = "google-cloud-aiplatform" version = "1.40.0" requires_python = ">=3.8" summary = "Vertex AI API client library" -groups = ["default"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,<3.0.0dev,>=1.32.0", "google-cloud-bigquery<4.0.0dev,>=1.15.0", @@ -1387,7 +1306,6 @@ name = "google-cloud-bigquery" version = "3.11.4" requires_python = ">=3.7" summary = "Google BigQuery API client library" -groups = ["default"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5", "google-cloud-core<3.0.0dev,>=1.6.0", @@ -1410,7 +1328,6 @@ name = "google-cloud-core" version = "2.4.1" requires_python = ">=3.7" summary = "Google Cloud API client core library" -groups = ["default"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.6", "google-auth<3.0dev,>=1.25.0", @@ -1425,7 +1342,6 @@ name = "google-cloud-resource-manager" version = "1.12.2" requires_python = ">=3.7" summary = "Google Cloud Resource Manager API client library" -groups = ["default"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1", "google-auth<3.0.0dev,>=2.14.1", @@ -1443,7 +1359,6 @@ name = "google-cloud-secret-manager" version = "2.16.1" requires_python = ">=3.7" summary = "Google Cloud Secret Manager API client library" -groups = ["default"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.0", "grpc-google-iam-v1<1.0.0dev,>=0.12.4", @@ -1461,7 +1376,6 @@ name = "google-cloud-storage" version = "2.9.0" requires_python = ">=3.7" summary = "Google Cloud Storage API client library" -groups = ["default"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5", "google-auth<3.0dev,>=1.25.0", @@ -1479,7 +1393,6 @@ name = "google-crc32c" version = "1.5.0" requires_python = ">=3.7" summary = "A python wrapper of the C library 'Google CRC32C'" -groups = ["default"] files = [ {file = "google-crc32c-1.5.0.tar.gz", hash = "sha256:89284716bc6a5a415d4eaa11b1726d2d60a0cd12aadf5439828353662ede9dd7"}, {file = "google_crc32c-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:596d1f98fc70232fcb6590c439f43b350cb762fb5d61ce7b0e9db4539654cc13"}, @@ -1535,7 +1448,6 @@ name = "google-generativeai" version = "0.3.1" requires_python = ">=3.9" summary = "Google Generative AI High level API client library and tools." -groups = ["default"] dependencies = [ "google-ai-generativelanguage==0.4.0", "google-api-core", @@ -1552,7 +1464,6 @@ name = "google-resumable-media" version = "2.7.0" requires_python = ">= 3.7" summary = "Utilities for Google Media Downloads and Resumable Uploads" -groups = ["default"] dependencies = [ "google-crc32c<2.0dev,>=1.0", ] @@ -1566,7 +1477,6 @@ name = "googleapis-common-protos" version = "1.62.0" requires_python = ">=3.7" summary = "Common protobufs used in Google APIs" -groups = ["default"] dependencies = [ "protobuf!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<5.0.0.dev0,>=3.19.5", ] @@ -1581,7 +1491,6 @@ version = "1.62.0" extras = ["grpc"] requires_python = ">=3.7" summary = "Common protobufs used in Google APIs" -groups = ["default"] dependencies = [ "googleapis-common-protos==1.62.0", "grpcio<2.0.0.dev0,>=1.44.0", @@ -1596,7 +1505,6 @@ name = "gotrue" version = "2.1.0" requires_python = ">=3.8,<4.0" summary = "Python Client Library for GoTrue" -groups = ["default"] dependencies = [ "httpx<0.26,>=0.23", "pydantic<3,>=1.10", @@ -1611,7 +1519,6 @@ name = "greenlet" version = "3.0.3" requires_python = ">=3.7" summary = "Lightweight in-process concurrent programming" -groups = ["default"] files = [ {file = "greenlet-3.0.3-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:9da2bd29ed9e4f15955dd1595ad7bc9320308a3b766ef7f837e23ad4b4aac31a"}, {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d353cadd6083fdb056bb46ed07e4340b0869c305c8ca54ef9da3421acbdf6881"}, @@ -1649,7 +1556,6 @@ name = "grpc-google-iam-v1" version = "0.13.0" requires_python = ">=3.7" summary = "IAM API client library" -groups = ["default"] dependencies = [ "googleapis-common-protos[grpc]<2.0.0dev,>=1.56.0", "grpcio<2.0.0dev,>=1.44.0", @@ -1665,7 +1571,6 @@ name = "grpcio" version = "1.58.0" requires_python = ">=3.7" summary = "HTTP/2-based RPC framework" -groups = ["default"] files = [ {file = "grpcio-1.58.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:3e6bebf1dfdbeb22afd95650e4f019219fef3ab86d3fca8ebade52e4bc39389a"}, {file = "grpcio-1.58.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:cde11577d5b6fd73a00e6bfa3cf5f428f3f33c2d2878982369b5372bbc4acc60"}, @@ -1702,7 +1607,6 @@ name = "grpcio-status" version = "1.58.0" requires_python = ">=3.6" summary = "Status proto mapping for gRPC" -groups = ["default"] dependencies = [ "googleapis-common-protos>=1.5.5", "grpcio>=1.58.0", @@ -1718,7 +1622,6 @@ name = "grpcio-tools" version = "1.58.0" requires_python = ">=3.7" summary = "Protobuf code generator for gRPC" -groups = ["default"] dependencies = [ "grpcio>=1.58.0", "protobuf<5.0dev,>=4.21.6", @@ -1760,7 +1663,6 @@ name = "gunicorn" version = "21.2.0" requires_python = ">=3.5" summary = "WSGI HTTP Server for UNIX" -groups = ["deploy"] dependencies = [ "packaging", ] @@ -1774,7 +1676,6 @@ name = "h11" version = "0.14.0" requires_python = ">=3.7" summary = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" -groups = ["default"] files = [ {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, @@ -1785,7 +1686,6 @@ name = "h2" version = "4.1.0" requires_python = ">=3.6.1" summary = "HTTP/2 State-Machine based protocol implementation" -groups = ["default"] dependencies = [ "hpack<5,>=4.0", "hyperframe<7,>=6.0", @@ -1800,7 +1700,6 @@ name = "halo" version = "0.0.31" requires_python = ">=3.4" summary = "Beautiful terminal spinners in Python" -groups = ["default"] dependencies = [ "colorama>=0.3.9", "log-symbols>=0.0.14", @@ -1817,7 +1716,6 @@ name = "hpack" version = "4.0.0" requires_python = ">=3.6.1" summary = "Pure-Python HPACK header compression" -groups = ["default"] files = [ {file = "hpack-4.0.0-py3-none-any.whl", hash = "sha256:84a076fad3dc9a9f8063ccb8041ef100867b1878b25ef0ee63847a5d53818a6c"}, {file = "hpack-4.0.0.tar.gz", hash = "sha256:fc41de0c63e687ebffde81187a948221294896f6bdc0ae2312708df339430095"}, @@ -1828,7 +1726,6 @@ name = "httpcore" version = "0.17.3" requires_python = ">=3.7" summary = "A minimal low-level HTTP client." -groups = ["default"] dependencies = [ "anyio<5.0,>=3.0", "certifi", @@ -1845,7 +1742,6 @@ name = "httplib2" version = "0.22.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "A comprehensive HTTP client library." -groups = ["default"] dependencies = [ "pyparsing!=3.0.0,!=3.0.1,!=3.0.2,!=3.0.3,<4,>=2.4.2; python_version > \"3.0\"", ] @@ -1859,7 +1755,6 @@ name = "httpx" version = "0.24.1" requires_python = ">=3.7" summary = "The next generation HTTP client." -groups = ["default"] dependencies = [ "certifi", "httpcore<0.18.0,>=0.15.0", @@ -1877,7 +1772,6 @@ version = "0.24.1" extras = ["http2"] requires_python = ">=3.7" summary = "The next generation HTTP client." -groups = ["default"] dependencies = [ "h2<5,>=3", "httpx==0.24.1", @@ -1891,7 +1785,6 @@ files = [ name = "huggingface" version = "0.0.1" summary = "HuggingFace is a single library comprising the main HuggingFace libraries." -groups = ["default"] files = [ {file = "huggingface-0.0.1-py3-none-any.whl", hash = "sha256:98a3409537557cd2fd768997ef94cab08529f86c5e106e6d54bbabdd5ee03910"}, {file = "huggingface-0.0.1.tar.gz", hash = "sha256:0a2f228fd956801d68b7c6a8bef478dfa60c4b7d7eba572ea7de39ecf87e505a"}, @@ -1902,7 +1795,6 @@ name = "huggingface-hub" version = "0.19.4" requires_python = ">=3.8.0" summary = "Client library to download and publish models, datasets and other repos on the huggingface.co hub" -groups = ["default"] dependencies = [ "filelock", "fsspec>=2023.5.0", @@ -1922,7 +1814,6 @@ name = "humanfriendly" version = "10.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Human friendly output for text interfaces using Python" -groups = ["default"] dependencies = [ "pyreadline3; sys_platform == \"win32\" and python_version >= \"3.8\"", ] @@ -1936,7 +1827,6 @@ name = "humanize" version = "4.9.0" requires_python = ">=3.8" summary = "Python humanize utilities" -groups = ["default"] files = [ {file = "humanize-4.9.0-py3-none-any.whl", hash = "sha256:ce284a76d5b1377fd8836733b983bfb0b76f1aa1c090de2566fcf008d7f6ab16"}, {file = "humanize-4.9.0.tar.gz", hash = "sha256:582a265c931c683a7e9b8ed9559089dea7edcf6cc95be39a3cbc2c5d5ac2bcfa"}, @@ -1947,7 +1837,6 @@ name = "hyperframe" version = "6.0.1" requires_python = ">=3.6.1" summary = "HTTP/2 framing layer for Python" -groups = ["default"] files = [ {file = "hyperframe-6.0.1-py3-none-any.whl", hash = "sha256:0ec6bafd80d8ad2195c4f03aacba3a8265e57bc4cff261e802bf39970ed02a15"}, {file = "hyperframe-6.0.1.tar.gz", hash = "sha256:ae510046231dc8e9ecb1a6586f63d2347bf4c8905914aa84ba585ae85f28a914"}, @@ -1958,7 +1847,6 @@ name = "idna" version = "3.6" requires_python = ">=3.5" summary = "Internationalized Domain Names in Applications (IDNA)" -groups = ["default"] files = [ {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"}, {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, @@ -1969,7 +1857,6 @@ name = "inflection" version = "0.5.1" requires_python = ">=3.5" summary = "A port of Ruby on Rails inflector to Python" -groups = ["default"] files = [ {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, @@ -1980,7 +1867,6 @@ name = "iniconfig" version = "2.0.0" requires_python = ">=3.7" summary = "brain-dead simple config-ini parsing" -groups = ["test"] files = [ {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, @@ -1991,7 +1877,6 @@ name = "jmespath" version = "1.0.1" requires_python = ">=3.7" summary = "JSON Matching Expressions" -groups = ["default"] files = [ {file = "jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980"}, {file = "jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe"}, @@ -2002,7 +1887,6 @@ name = "joblib" version = "1.3.2" requires_python = ">=3.7" summary = "Lightweight pipelining with Python functions" -groups = ["default"] files = [ {file = "joblib-1.3.2-py3-none-any.whl", hash = "sha256:ef4331c65f239985f3f2220ecc87db222f08fd22097a3dd5698f693875f8cbb9"}, {file = "joblib-1.3.2.tar.gz", hash = "sha256:92f865e621e17784e7955080b6d042489e3b8e294949cc44c6eac304f59772b1"}, @@ -2013,7 +1897,6 @@ name = "jsonpatch" version = "1.33" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" summary = "Apply JSON-Patches (RFC 6902) " -groups = ["default"] dependencies = [ "jsonpointer>=1.9", ] @@ -2027,7 +1910,6 @@ name = "jsonpointer" version = "2.4" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" summary = "Identify specific nodes in a JSON document (RFC 6901) " -groups = ["default"] files = [ {file = "jsonpointer-2.4-py2.py3-none-any.whl", hash = "sha256:15d51bba20eea3165644553647711d150376234112651b4f1811022aecad7d7a"}, {file = "jsonpointer-2.4.tar.gz", hash = "sha256:585cee82b70211fa9e6043b7bb89db6e1aa49524340dde8ad6b63206ea689d88"}, @@ -2038,7 +1920,6 @@ name = "jsonschema" version = "4.18.6" requires_python = ">=3.8" summary = "An implementation of JSON Schema validation for Python" -groups = ["default"] dependencies = [ "attrs>=22.2.0", "jsonschema-specifications>=2023.03.6", @@ -2055,7 +1936,6 @@ name = "jsonschema-specifications" version = "2023.12.1" requires_python = ">=3.8" summary = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" -groups = ["default"] dependencies = [ "referencing>=0.31.0", ] @@ -2069,7 +1949,6 @@ name = "kombu" version = "5.3.5" requires_python = ">=3.8" summary = "Messaging library for Python." -groups = ["default"] dependencies = [ "amqp<6.0.0,>=5.1.1", "typing-extensions; python_version < \"3.10\"", @@ -2085,7 +1964,6 @@ name = "llama-index" version = "0.9.28" requires_python = ">=3.8.1,<4.0" summary = "Interface between LLMs and your data" -groups = ["default"] dependencies = [ "SQLAlchemy[asyncio]>=1.4.49", "aiohttp<4.0.0,>=3.8.6", @@ -2116,7 +1994,6 @@ files = [ name = "log-symbols" version = "0.0.14" summary = "Colored symbols for various log levels for Python" -groups = ["default"] dependencies = [ "colorama>=0.3.9", ] @@ -2130,7 +2007,6 @@ name = "loguru" version = "0.7.2" requires_python = ">=3.5" summary = "Python logging made (stupidly) simple" -groups = ["default"] dependencies = [ "colorama>=0.3.4; sys_platform == \"win32\"", "win32-setctime>=1.0.0; sys_platform == \"win32\"", @@ -2145,7 +2021,6 @@ name = "markdown-it-py" version = "3.0.0" requires_python = ">=3.8" summary = "Python port of markdown-it. Markdown parsing, done right!" -groups = ["default"] dependencies = [ "mdurl~=0.1", ] @@ -2159,7 +2034,6 @@ name = "marshmallow" version = "3.20.2" requires_python = ">=3.8" summary = "A lightweight library for converting complex datatypes to and from native Python datatypes." -groups = ["default"] dependencies = [ "packaging>=17.0", ] @@ -2173,7 +2047,6 @@ name = "mdurl" version = "0.1.2" requires_python = ">=3.7" summary = "Markdown URL utilities" -groups = ["default"] files = [ {file = "mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8"}, {file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"}, @@ -2183,7 +2056,6 @@ files = [ name = "minio" version = "7.2.4" summary = "MinIO Python SDK for Amazon S3 Compatible Cloud Storage" -groups = ["default"] dependencies = [ "argon2-cffi", "certifi", @@ -2201,7 +2073,6 @@ name = "mistralai" version = "0.0.8" requires_python = ">=3.8,<4.0" summary = "" -groups = ["default"] dependencies = [ "aiohttp<4.0.0,>=3.9.1", "backoff<3.0.0,>=2.2.1", @@ -2218,7 +2089,6 @@ files = [ name = "mpmath" version = "1.3.0" summary = "Python library for arbitrary-precision floating-point arithmetic" -groups = ["default"] files = [ {file = "mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c"}, {file = "mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f"}, @@ -2229,7 +2099,6 @@ name = "multidict" version = "6.0.5" requires_python = ">=3.7" summary = "multidict implementation" -groups = ["default"] files = [ {file = "multidict-6.0.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9"}, {file = "multidict-6.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604"}, @@ -2285,7 +2154,6 @@ name = "mypy-extensions" version = "1.0.0" requires_python = ">=3.5" summary = "Type system extensions for programs checked with the mypy type checker." -groups = ["default"] files = [ {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, @@ -2296,7 +2164,6 @@ name = "nest-asyncio" version = "1.6.0" requires_python = ">=3.5" summary = "Patch asyncio to allow nested event loops" -groups = ["default"] files = [ {file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"}, {file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"}, @@ -2307,7 +2174,6 @@ name = "networkx" version = "3.2.1" requires_python = ">=3.9" summary = "Python package for creating and manipulating graphs and networks" -groups = ["default"] files = [ {file = "networkx-3.2.1-py3-none-any.whl", hash = "sha256:f18c69adc97877c42332c170849c96cefa91881c99a7cb3e95b7c659ebdc1ec2"}, {file = "networkx-3.2.1.tar.gz", hash = "sha256:9f1bb5cf3409bf324e0a722c20bdb4c20ee39bf1c30ce8ae499c8502b0b5e0c6"}, @@ -2318,7 +2184,6 @@ name = "nltk" version = "3.8.1" requires_python = ">=3.7" summary = "Natural Language Toolkit" -groups = ["default"] dependencies = [ "click", "joblib", @@ -2335,7 +2200,6 @@ name = "numpy" version = "1.26.4" requires_python = ">=3.9" summary = "Fundamental package for array computing in Python" -groups = ["default"] files = [ {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, @@ -2371,7 +2235,6 @@ files = [ name = "oauth2client" version = "4.1.3" summary = "OAuth 2.0 client library" -groups = ["default"] dependencies = [ "httplib2>=0.9.1", "pyasn1-modules>=0.0.5", @@ -2389,7 +2252,6 @@ name = "oauthlib" version = "3.2.2" requires_python = ">=3.6" summary = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic" -groups = ["default"] files = [ {file = "oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca"}, {file = "oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918"}, @@ -2400,7 +2262,6 @@ name = "onnx" version = "1.15.0" requires_python = ">=3.8" summary = "Open Neural Network Exchange" -groups = ["default"] dependencies = [ "numpy", "protobuf>=3.20.2", @@ -2431,7 +2292,6 @@ files = [ name = "onnxruntime" version = "1.17.0" summary = "ONNX Runtime is a runtime accelerator for Machine Learning models" -groups = ["default"] dependencies = [ "coloredlogs", "flatbuffers", @@ -2463,7 +2323,6 @@ name = "openai" version = "1.3.9" requires_python = ">=3.7.1" summary = "The official Python library for the openai API" -groups = ["default"] dependencies = [ "anyio<5,>=3.5.0", "distro<2,>=1.7.0", @@ -2483,7 +2342,6 @@ name = "orjson" version = "3.9.15" requires_python = ">=3.8" summary = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" -groups = ["default"] files = [ {file = "orjson-3.9.15-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:d61f7ce4727a9fa7680cd6f3986b0e2c732639f46a5e0156e550e35258aa313a"}, {file = "orjson-3.9.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4feeb41882e8aa17634b589533baafdceb387e01e117b1ec65534ec724023d04"}, @@ -2523,7 +2381,6 @@ name = "packaging" version = "23.2" requires_python = ">=3.7" summary = "Core utilities for Python packages" -groups = ["default", "deploy", "test"] files = [ {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, @@ -2534,7 +2391,6 @@ name = "pandas" version = "2.1.4" requires_python = ">=3.9" summary = "Powerful data structures for data analysis, time series, and statistics" -groups = ["default"] dependencies = [ "numpy<2,>=1.22.4; python_version < \"3.11\"", "numpy<2,>=1.23.2; python_version == \"3.11\"", @@ -2569,7 +2425,6 @@ name = "pathspec" version = "0.12.1" requires_python = ">=3.8" summary = "Utility library for gitignore style pattern matching of file paths." -groups = ["default"] files = [ {file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"}, {file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"}, @@ -2580,7 +2435,6 @@ name = "pdfminer-six" version = "20221105" requires_python = ">=3.6" summary = "PDF parser and analyzer" -groups = ["default"] dependencies = [ "charset-normalizer>=2.0.0", "cryptography>=36.0.0", @@ -2595,7 +2449,6 @@ name = "pdfplumber" version = "0.10.3" requires_python = ">=3.8" summary = "Plumb a PDF for detailed information about each char, rectangle, and line." -groups = ["default"] dependencies = [ "Pillow>=9.1", "pdfminer-six==20221105", @@ -2611,7 +2464,6 @@ name = "pgvector" version = "0.1.8" requires_python = ">=3.6" summary = "pgvector support for Python" -groups = ["default"] dependencies = [ "numpy", ] @@ -2624,7 +2476,6 @@ name = "pillow" version = "10.2.0" requires_python = ">=3.8" summary = "Python Imaging Library (Fork)" -groups = ["default"] files = [ {file = "pillow-10.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:7823bdd049099efa16e4246bdf15e5a13dbb18a51b68fa06d6c1d4d8b99a796e"}, {file = "pillow-10.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:83b2021f2ade7d1ed556bc50a399127d7fb245e725aa0113ebd05cfe88aaf588"}, @@ -2680,7 +2531,6 @@ name = "pinecone-client" version = "2.2.4" requires_python = ">=3.8" summary = "Pinecone client and SDK" -groups = ["default"] dependencies = [ "dnspython>=2.0.0", "loguru>=0.5.0", @@ -2702,7 +2552,6 @@ name = "platformdirs" version = "3.11.0" requires_python = ">=3.7" summary = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -groups = ["default"] files = [ {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, @@ -2713,7 +2562,6 @@ name = "pluggy" version = "1.4.0" requires_python = ">=3.8" summary = "plugin and hook calling mechanisms for python" -groups = ["test"] files = [ {file = "pluggy-1.4.0-py3-none-any.whl", hash = "sha256:7db9f7b503d67d1c5b95f59773ebb58a8c1c288129a88665838012cfb07b8981"}, {file = "pluggy-1.4.0.tar.gz", hash = "sha256:8c85c2876142a764e5b7548e7d9a0e0ddb46f5185161049a79b7e974454223be"}, @@ -2723,7 +2571,6 @@ files = [ name = "ply" version = "3.11" summary = "Python Lex & Yacc" -groups = ["default"] files = [ {file = "ply-3.11-py2.py3-none-any.whl", hash = "sha256:096f9b8350b65ebd2fd1346b12452efe5b9607f7482813ffca50c22722a807ce"}, {file = "ply-3.11.tar.gz", hash = "sha256:00c7c1aaa88358b9c765b6d3000c6eec0ba42abca5351b095321aef446081da3"}, @@ -2734,7 +2581,6 @@ name = "portalocker" version = "2.8.2" requires_python = ">=3.8" summary = "Wraps the portalocker recipe for easy usage" -groups = ["default"] dependencies = [ "pywin32>=226; platform_system == \"Windows\"", ] @@ -2748,7 +2594,6 @@ name = "postgrest" version = "0.13.2" requires_python = ">=3.8,<4.0" summary = "PostgREST client for Python. This library provides an ORM interface to PostgREST." -groups = ["default"] dependencies = [ "deprecation<3.0.0,>=2.1.0", "httpx<0.26,>=0.24", @@ -2765,7 +2610,6 @@ name = "prometheus-client" version = "0.20.0" requires_python = ">=3.8" summary = "Python client for the Prometheus monitoring system." -groups = ["default"] files = [ {file = "prometheus_client-0.20.0-py3-none-any.whl", hash = "sha256:cde524a85bce83ca359cc837f28b8c0db5cac7aa653a588fd7e84ba061c329e7"}, {file = "prometheus_client-0.20.0.tar.gz", hash = "sha256:287629d00b147a32dcb2be0b9df905da599b2d82f80377083ec8463309a4bb89"}, @@ -2776,7 +2620,6 @@ name = "prompt-toolkit" version = "3.0.43" requires_python = ">=3.7.0" summary = "Library for building powerful interactive command lines in Python" -groups = ["default"] dependencies = [ "wcwidth", ] @@ -2790,7 +2633,6 @@ name = "proto-plus" version = "1.23.0" requires_python = ">=3.6" summary = "Beautiful, Pythonic protocol buffers." -groups = ["default"] dependencies = [ "protobuf<5.0.0dev,>=3.19.0", ] @@ -2804,7 +2646,6 @@ name = "protobuf" version = "4.25.3" requires_python = ">=3.8" summary = "" -groups = ["default"] files = [ {file = "protobuf-4.25.3-cp310-abi3-win32.whl", hash = "sha256:d4198877797a83cbfe9bffa3803602bbe1625dc30d8a097365dbc762e5790faa"}, {file = "protobuf-4.25.3-cp310-abi3-win_amd64.whl", hash = "sha256:209ba4cc916bab46f64e56b85b090607a676f66b473e6b762e6f1d9d591eb2e8"}, @@ -2822,7 +2663,6 @@ name = "psycopg2-binary" version = "2.9.9" requires_python = ">=3.7" summary = "psycopg2 - Python-PostgreSQL Database Adapter" -groups = ["default"] files = [ {file = "psycopg2-binary-2.9.9.tar.gz", hash = "sha256:7f01846810177d829c7692f1f5ada8096762d9172af1b1a28d4ab5b77c923c1c"}, {file = "psycopg2_binary-2.9.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c2470da5418b76232f02a2fcd2229537bb2d5a7096674ce61859c3229f2eb202"}, @@ -2868,7 +2708,6 @@ name = "pyarrow" version = "15.0.0" requires_python = ">=3.8" summary = "Python library for Apache Arrow" -groups = ["default"] dependencies = [ "numpy<2,>=1.16.6", ] @@ -2902,7 +2741,6 @@ name = "pyasn1" version = "0.5.1" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" summary = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" -groups = ["default"] files = [ {file = "pyasn1-0.5.1-py2.py3-none-any.whl", hash = "sha256:4439847c58d40b1d0a573d07e3856e95333f1976294494c325775aeca506eb58"}, {file = "pyasn1-0.5.1.tar.gz", hash = "sha256:6d391a96e59b23130a5cfa74d6fd7f388dbbe26cc8f1edf39fdddf08d9d6676c"}, @@ -2913,7 +2751,6 @@ name = "pyasn1-modules" version = "0.3.0" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" summary = "A collection of ASN.1-based protocols modules" -groups = ["default"] dependencies = [ "pyasn1<0.6.0,>=0.4.6", ] @@ -2927,7 +2764,6 @@ name = "pycparser" version = "2.21" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "C parser in Python" -groups = ["default"] files = [ {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, @@ -2938,7 +2774,6 @@ name = "pycryptodome" version = "3.20.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Cryptographic library for Python" -groups = ["default"] files = [ {file = "pycryptodome-3.20.0-cp35-abi3-macosx_10_9_universal2.whl", hash = "sha256:ac1c7c0624a862f2e53438a15c9259d1655325fc2ec4392e66dc46cdae24d044"}, {file = "pycryptodome-3.20.0-cp35-abi3-macosx_10_9_x86_64.whl", hash = "sha256:76658f0d942051d12a9bd08ca1b6b34fd762a8ee4240984f7c06ddfb55eaf15a"}, @@ -2968,7 +2803,6 @@ name = "pydantic" version = "2.6.2" requires_python = ">=3.8" summary = "Data validation using Python type hints" -groups = ["default"] dependencies = [ "annotated-types>=0.4.0", "pydantic-core==2.16.3", @@ -2984,7 +2818,6 @@ name = "pydantic-core" version = "2.16.3" requires_python = ">=3.8" summary = "" -groups = ["default"] dependencies = [ "typing-extensions!=4.7.0,>=4.6.0", ] @@ -3050,7 +2883,6 @@ name = "pydrive2" version = "1.15.4" requires_python = ">=3.7" summary = "Google Drive API made easy. Maintained fork of PyDrive." -groups = ["default"] dependencies = [ "PyYAML>=3.0", "google-api-python-client>=1.12.5", @@ -3068,7 +2900,6 @@ version = "1.15.4" extras = ["fsspec"] requires_python = ">=3.7" summary = "Google Drive API made easy. Maintained fork of PyDrive." -groups = ["default"] dependencies = [ "PyDrive2==1.15.4", "appdirs>=1.4.3", @@ -3086,7 +2917,6 @@ name = "pygments" version = "2.17.2" requires_python = ">=3.7" summary = "Pygments is a syntax highlighting package written in Python." -groups = ["default"] files = [ {file = "pygments-2.17.2-py3-none-any.whl", hash = "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c"}, {file = "pygments-2.17.2.tar.gz", hash = "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367"}, @@ -3097,7 +2927,6 @@ name = "pyjwt" version = "2.8.0" requires_python = ">=3.7" summary = "JSON Web Token implementation in Python" -groups = ["default"] files = [ {file = "PyJWT-2.8.0-py3-none-any.whl", hash = "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320"}, {file = "PyJWT-2.8.0.tar.gz", hash = "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de"}, @@ -3108,7 +2937,6 @@ name = "pymilvus" version = "2.3.4" requires_python = ">=3.7" summary = "Python Sdk for Milvus" -groups = ["default"] dependencies = [ "environs<=9.5.0", "grpcio<=1.58.0,>=1.49.1", @@ -3128,7 +2956,6 @@ files = [ name = "pymssql" version = "2.2.8" summary = "DB-API interface to Microsoft SQL Server for Python. (new Cython-based version)" -groups = ["default"] files = [ {file = "pymssql-2.2.8-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:30bfd7b8edef78097ccd3f52ac3f3a5c3cf0019f8a280f306cacbbb165caaf63"}, {file = "pymssql-2.2.8-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:049f2e3de919e8e02504780a21ebbf235e21ca8ed5c7538c5b6e705aa6c43d8c"}, @@ -3153,7 +2980,6 @@ name = "pymysql" version = "1.1.0" requires_python = ">=3.7" summary = "Pure Python MySQL Driver" -groups = ["default"] files = [ {file = "PyMySQL-1.1.0-py3-none-any.whl", hash = "sha256:8969ec6d763c856f7073c4c64662882675702efcb114b4bcbb955aea3a069fa7"}, {file = "PyMySQL-1.1.0.tar.gz", hash = "sha256:4f13a7df8bf36a51e81dd9f3605fede45a4878fe02f9236349fd82a3f0612f96"}, @@ -3164,7 +2990,6 @@ name = "pyopenssl" version = "23.3.0" requires_python = ">=3.7" summary = "Python wrapper module around the OpenSSL library" -groups = ["default"] dependencies = [ "cryptography<42,>=41.0.5", ] @@ -3178,8 +3003,6 @@ name = "pyparsing" version = "3.1.1" requires_python = ">=3.6.8" summary = "pyparsing module - Classes and methods to define and execute parsing grammars" -groups = ["default"] -marker = "python_version > \"3.0\"" files = [ {file = "pyparsing-3.1.1-py3-none-any.whl", hash = "sha256:32c7c0b711493c72ff18a981d24f28aaf9c1fb7ed5e9667c9e84e3db623bdbfb"}, {file = "pyparsing-3.1.1.tar.gz", hash = "sha256:ede28a1a32462f5a9705e07aea48001a08f7cf81a021585011deba701581a0db"}, @@ -3190,7 +3013,6 @@ name = "pypdfium2" version = "4.27.0" requires_python = ">= 3.6" summary = "Python bindings to PDFium" -groups = ["default"] files = [ {file = "pypdfium2-4.27.0-py3-none-macosx_10_13_x86_64.whl", hash = "sha256:2938f423c79b49df9057993f747e537a05b71bc2c847801ac743f27c3220d363"}, {file = "pypdfium2-4.27.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:f396941e070bf6c245890f2ffb2cb04f39585e3cda93ebb1648f1ed0e99b921f"}, @@ -3211,8 +3033,6 @@ files = [ name = "pyreadline3" version = "3.4.1" summary = "A python implementation of GNU readline." -groups = ["default"] -marker = "sys_platform == \"win32\" and python_version >= \"3.8\"" files = [ {file = "pyreadline3-3.4.1-py3-none-any.whl", hash = "sha256:b0efb6516fd4fb07b45949053826a62fa4cb353db5be2bbb4a7aa1fdd1e345fb"}, {file = "pyreadline3-3.4.1.tar.gz", hash = "sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae"}, @@ -3223,7 +3043,6 @@ name = "pytesseract" version = "0.3.10" requires_python = ">=3.7" summary = "Python-tesseract is a python wrapper for Google's Tesseract-OCR" -groups = ["default"] dependencies = [ "Pillow>=8.0.0", "packaging>=21.3", @@ -3235,10 +3054,9 @@ files = [ [[package]] name = "pytest" -version = "8.0.1" +version = "8.0.2" requires_python = ">=3.8" summary = "pytest: simple powerful testing with Python" -groups = ["test"] dependencies = [ "colorama; sys_platform == \"win32\"", "exceptiongroup>=1.0.0rc8; python_version < \"3.11\"", @@ -3248,15 +3066,14 @@ dependencies = [ "tomli>=1.0.0; python_version < \"3.11\"", ] files = [ - {file = "pytest-8.0.1-py3-none-any.whl", hash = "sha256:3e4f16fe1c0a9dc9d9389161c127c3edc5d810c38d6793042fb81d9f48a59fca"}, - {file = "pytest-8.0.1.tar.gz", hash = "sha256:267f6563751877d772019b13aacbe4e860d73fe8f651f28112e9ac37de7513ae"}, + {file = "pytest-8.0.2-py3-none-any.whl", hash = "sha256:edfaaef32ce5172d5466b5127b42e0d6d35ebbe4453f0e3505d96afd93f6b096"}, + {file = "pytest-8.0.2.tar.gz", hash = "sha256:d4051d623a2e0b7e51960ba963193b09ce6daeb9759a451844a21e4ddedfc1bd"}, ] [[package]] name = "python-crontab" version = "3.0.0" summary = "Python Crontab API" -groups = ["default"] dependencies = [ "python-dateutil", ] @@ -3270,7 +3087,6 @@ name = "python-dateutil" version = "2.8.2" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" summary = "Extensions to the standard Python datetime module" -groups = ["default"] dependencies = [ "six>=1.5", ] @@ -3284,7 +3100,6 @@ name = "python-dotenv" version = "1.0.0" requires_python = ">=3.8" summary = "Read key-value pairs from a .env file and set them as environment variables" -groups = ["default"] files = [ {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, @@ -3295,7 +3110,6 @@ name = "python-engineio" version = "4.9.0" requires_python = ">=3.6" summary = "Engine.IO server and client for Python" -groups = ["default"] dependencies = [ "simple-websocket>=0.10.0", ] @@ -3309,7 +3123,6 @@ name = "python-magic" version = "0.4.27" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "File type identification using libmagic" -groups = ["default"] files = [ {file = "python-magic-0.4.27.tar.gz", hash = "sha256:c1ba14b08e4a5f5c31a302b7721239695b2f0f058d125bd5ce1ee36b9d9d3c3b"}, {file = "python_magic-0.4.27-py2.py3-none-any.whl", hash = "sha256:c212960ad306f700aa0d01e5d7a325d20548ff97eb9920dcd29513174f0294d3"}, @@ -3320,7 +3133,6 @@ name = "python-socketio" version = "5.9.0" requires_python = ">=3.6" summary = "Socket.IO server and client for Python" -groups = ["default"] dependencies = [ "bidict>=0.21.0", "python-engineio>=4.7.0", @@ -3334,7 +3146,6 @@ files = [ name = "python3-openid" version = "3.2.0" summary = "OpenID support for modern servers and consumers." -groups = ["default"] dependencies = [ "defusedxml", ] @@ -3347,7 +3158,6 @@ files = [ name = "pytz" version = "2024.1" summary = "World timezone definitions, modern and historical" -groups = ["default"] files = [ {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, @@ -3357,8 +3167,6 @@ files = [ name = "pywin32" version = "306" summary = "Python for Window Extensions" -groups = ["default"] -marker = "sys_platform == \"win32\" or platform_system == \"Windows\"" files = [ {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, @@ -3374,7 +3182,6 @@ name = "pyyaml" version = "6.0.1" requires_python = ">=3.6" summary = "YAML parser and emitter for Python" -groups = ["default"] files = [ {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, @@ -3408,7 +3215,6 @@ name = "qdrant-client" version = "1.7.0" requires_python = ">=3.8,<3.13" summary = "Client library for the Qdrant vector search engine" -groups = ["default"] dependencies = [ "grpcio-tools>=1.41.0", "grpcio>=1.41.0", @@ -3428,7 +3234,6 @@ name = "realtime" version = "1.0.2" requires_python = ">=3.8,<4.0" summary = "" -groups = ["default"] dependencies = [ "python-dateutil<3.0.0,>=2.8.1", "typing-extensions<5.0.0,>=4.2.0", @@ -3444,7 +3249,6 @@ name = "redis" version = "5.0.1" requires_python = ">=3.7" summary = "Python client for Redis database and key-value store" -groups = ["default"] dependencies = [ "async-timeout>=4.0.2; python_full_version <= \"3.11.2\"", ] @@ -3458,7 +3262,6 @@ name = "referencing" version = "0.33.0" requires_python = ">=3.8" summary = "JSON Referencing + Python" -groups = ["default"] dependencies = [ "attrs>=22.2.0", "rpds-py>=0.7.0", @@ -3473,7 +3276,6 @@ name = "regex" version = "2023.12.25" requires_python = ">=3.7" summary = "Alternative regular expression module, to replace re." -groups = ["default"] files = [ {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0694219a1d54336fd0445ea382d49d36882415c0134ee1e8332afd1529f0baa5"}, {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b014333bd0217ad3d54c143de9d4b9a3ca1c5a29a6d0d554952ea071cff0f1f8"}, @@ -3530,7 +3332,6 @@ name = "replicate" version = "0.22.0" requires_python = ">=3.8" summary = "Python client for Replicate" -groups = ["default"] dependencies = [ "httpx<1,>=0.21.0", "packaging", @@ -3547,7 +3348,6 @@ name = "requests" version = "2.31.0" requires_python = ">=3.7" summary = "Python HTTP for Humans." -groups = ["default"] dependencies = [ "certifi>=2017.4.17", "charset-normalizer<4,>=2", @@ -3564,7 +3364,6 @@ name = "requests-oauthlib" version = "1.3.1" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "OAuthlib authentication support for Requests." -groups = ["default"] dependencies = [ "oauthlib>=3.0.0", "requests>=2.0.0", @@ -3579,7 +3378,6 @@ name = "requests-toolbelt" version = "1.0.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "A utility belt for advanced users of python-requests" -groups = ["default"] dependencies = [ "requests<3.0.0,>=2.0.1", ] @@ -3593,7 +3391,6 @@ name = "rich" version = "13.7.0" requires_python = ">=3.7.0" summary = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" -groups = ["default"] dependencies = [ "markdown-it-py>=2.2.0", "pygments<3.0.0,>=2.13.0", @@ -3608,7 +3405,6 @@ name = "rpds-py" version = "0.18.0" requires_python = ">=3.8" summary = "Python bindings to Rust's persistent data structures (rpds)" -groups = ["default"] files = [ {file = "rpds_py-0.18.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:5b4e7d8d6c9b2e8ee2d55c90b59c707ca59bc30058269b3db7b1f8df5763557e"}, {file = "rpds_py-0.18.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c463ed05f9dfb9baebef68048aed8dcdc94411e4bf3d33a39ba97e271624f8f7"}, @@ -3690,7 +3486,6 @@ name = "rsa" version = "4.9" requires_python = ">=3.6,<4" summary = "Pure-Python RSA implementation" -groups = ["default"] dependencies = [ "pyasn1>=0.1.3", ] @@ -3704,7 +3499,6 @@ name = "s3fs" version = "2023.6.0" requires_python = ">= 3.8" summary = "Convenient Filesystem interface over S3" -groups = ["default"] dependencies = [ "aiobotocore~=2.5.0", "aiohttp!=4.0.0a0,!=4.0.0a1", @@ -3721,7 +3515,6 @@ version = "2023.6.0" extras = ["boto3"] requires_python = ">= 3.8" summary = "Convenient Filesystem interface over S3" -groups = ["default"] dependencies = [ "aiobotocore[boto3]~=2.5.0", "s3fs==2023.6.0", @@ -3736,7 +3529,6 @@ name = "s3transfer" version = "0.6.2" requires_python = ">= 3.7" summary = "An Amazon S3 Transfer Manager" -groups = ["default"] dependencies = [ "botocore<2.0a.0,>=1.12.36", ] @@ -3750,7 +3542,6 @@ name = "safetensors" version = "0.4.2" requires_python = ">=3.7" summary = "" -groups = ["default"] files = [ {file = "safetensors-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:69d8bb8384dc2cb5b72c36c4d6980771b293d1a1377b378763f5e37b6bb8d133"}, {file = "safetensors-0.4.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3d420e19fcef96d0067f4de4699682b4bbd85fc8fea0bd45fcd961fdf3e8c82c"}, @@ -3823,7 +3614,6 @@ name = "setuptools" version = "69.1.1" requires_python = ">=3.8" summary = "Easily download, build, install, upgrade, and uninstall Python packages" -groups = ["default"] files = [ {file = "setuptools-69.1.1-py3-none-any.whl", hash = "sha256:02fa291a0471b3a18b2b2481ed902af520c69e8ae0919c13da936542754b4c56"}, {file = "setuptools-69.1.1.tar.gz", hash = "sha256:5c0806c7d9af348e6dd3777b4f4dbb42c7ad85b190104837488eab9a7c945cf8"}, @@ -3834,7 +3624,6 @@ name = "shapely" version = "2.0.3" requires_python = ">=3.7" summary = "Manipulation and analysis of geometric objects" -groups = ["default"] dependencies = [ "numpy<2,>=1.14", ] @@ -3868,7 +3657,6 @@ name = "simple-websocket" version = "1.0.0" requires_python = ">=3.6" summary = "Simple WebSocket server and client for Python" -groups = ["default"] dependencies = [ "wsproto", ] @@ -3882,7 +3670,6 @@ name = "six" version = "1.16.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" summary = "Python 2 and 3 compatibility utilities" -groups = ["default"] files = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, @@ -3893,7 +3680,6 @@ name = "smart-open" version = "6.4.0" requires_python = ">=3.6,<4.0" summary = "Utils for streaming large files (S3, HDFS, GCS, Azure Blob Storage, gzip, bz2...)" -groups = ["default"] files = [ {file = "smart_open-6.4.0-py3-none-any.whl", hash = "sha256:8d3ef7e6997e8e42dd55c74166ed21e6ac70664caa32dd940b26d54a8f6b4142"}, {file = "smart_open-6.4.0.tar.gz", hash = "sha256:be3c92c246fbe80ebce8fbacb180494a481a77fcdcb7c1aadb2ea5b9c2bee8b9"}, @@ -3904,7 +3690,6 @@ name = "smmap" version = "5.0.1" requires_python = ">=3.7" summary = "A pure Python implementation of a sliding window memory map manager" -groups = ["default"] files = [ {file = "smmap-5.0.1-py3-none-any.whl", hash = "sha256:e6d8668fa5f93e706934a62d7b4db19c8d9eb8cf2adbb75ef1b675aa332b69da"}, {file = "smmap-5.0.1.tar.gz", hash = "sha256:dceeb6c0028fdb6734471eb07c0cd2aae706ccaecab45965ee83f11c8d3b1f62"}, @@ -3915,7 +3700,6 @@ name = "sniffio" version = "1.3.0" requires_python = ">=3.7" summary = "Sniff out which async library your code is running under" -groups = ["default"] files = [ {file = "sniffio-1.3.0-py3-none-any.whl", hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384"}, {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, @@ -3926,7 +3710,6 @@ name = "snowflake-connector-python" version = "3.6.0" requires_python = ">=3.8" summary = "Snowflake Connector for Python" -groups = ["default"] dependencies = [ "asn1crypto<2.0.0,>0.24.0", "certifi>=2017.4.17", @@ -3971,7 +3754,6 @@ version = "3.6.0" extras = ["pandas"] requires_python = ">=3.8" summary = "Snowflake Connector for Python" -groups = ["default"] dependencies = [ "pandas<2.2.0,>=1.0.0", "pyarrow", @@ -4001,7 +3783,6 @@ name = "social-auth-app-django" version = "5.3.0" requires_python = ">=3.7" summary = "Python Social Authentication, Django integration." -groups = ["default"] dependencies = [ "Django>=3.2", "social-auth-core>=4.4.1", @@ -4016,7 +3797,6 @@ name = "social-auth-core" version = "4.4.2" requires_python = ">=3.6" summary = "Python social authentication made simple." -groups = ["default"] dependencies = [ "PyJWT>=2.0.0", "cryptography>=1.4", @@ -4035,7 +3815,6 @@ files = [ name = "sortedcontainers" version = "2.4.0" summary = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" -groups = ["default"] files = [ {file = "sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0"}, {file = "sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88"}, @@ -4046,7 +3825,6 @@ name = "soupsieve" version = "2.5" requires_python = ">=3.8" summary = "A modern CSS selector implementation for Beautiful Soup." -groups = ["default"] files = [ {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"}, {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"}, @@ -4056,7 +3834,6 @@ files = [ name = "spinners" version = "0.0.24" summary = "Spinners for terminals" -groups = ["default"] files = [ {file = "spinners-0.0.24-py3-none-any.whl", hash = "sha256:2fa30d0b72c9650ad12bbe031c9943b8d441e41b4f5602b0ec977a19f3290e98"}, {file = "spinners-0.0.24.tar.gz", hash = "sha256:1eb6aeb4781d72ab42ed8a01dcf20f3002bf50740d7154d12fb8c9769bf9e27f"}, @@ -4067,9 +3844,8 @@ name = "sqlalchemy" version = "2.0.26" requires_python = ">=3.7" summary = "Database Abstraction Library" -groups = ["default"] dependencies = [ - "greenlet!=0.4.17; platform_machine == \"win32\" or platform_machine == \"WIN32\" or platform_machine == \"AMD64\" or platform_machine == \"amd64\" or platform_machine == \"x86_64\" or platform_machine == \"ppc64le\" or platform_machine == \"aarch64\"", + "greenlet!=0.4.17; platform_machine == \"aarch64\" or (platform_machine == \"ppc64le\" or (platform_machine == \"x86_64\" or (platform_machine == \"amd64\" or (platform_machine == \"AMD64\" or (platform_machine == \"win32\" or platform_machine == \"WIN32\")))))", "typing-extensions>=4.6.0", ] files = [ @@ -4107,7 +3883,6 @@ version = "2.0.26" extras = ["asyncio"] requires_python = ">=3.7" summary = "Database Abstraction Library" -groups = ["default"] dependencies = [ "SQLAlchemy==2.0.26", "greenlet!=0.4.17", @@ -4146,7 +3921,6 @@ name = "sqlparse" version = "0.4.4" requires_python = ">=3.5" summary = "A non-validating SQL parser." -groups = ["default"] files = [ {file = "sqlparse-0.4.4-py3-none-any.whl", hash = "sha256:5430a4fe2ac7d0f93e66f1efc6e1338a41884b7ddf2a350cedd20ccc4d9d28f3"}, {file = "sqlparse-0.4.4.tar.gz", hash = "sha256:d446183e84b8349fa3061f0fe7f06ca94ba65b426946ffebe6e3e8295332420c"}, @@ -4156,7 +3930,6 @@ files = [ name = "stone" version = "3.3.1" summary = "Stone is an interface description language (IDL) for APIs." -groups = ["default"] dependencies = [ "ply>=3.4", "six>=1.12.0", @@ -4171,7 +3944,6 @@ name = "storage3" version = "0.7.0" requires_python = ">=3.8,<4.0" summary = "Supabase Storage client for Python." -groups = ["default"] dependencies = [ "httpx<0.26,>=0.24", "python-dateutil<3.0.0,>=2.8.2", @@ -4186,7 +3958,6 @@ files = [ name = "strenum" version = "0.4.15" summary = "An Enum that inherits from str." -groups = ["default"] files = [ {file = "StrEnum-0.4.15-py3-none-any.whl", hash = "sha256:a30cda4af7cc6b5bf52c8055bc4bf4b2b6b14a93b574626da33df53cf7740659"}, {file = "StrEnum-0.4.15.tar.gz", hash = "sha256:878fb5ab705442070e4dd1929bb5e2249511c0bcf2b0eeacf3bcd80875c82eff"}, @@ -4197,7 +3968,6 @@ name = "supabase" version = "2.2.1" requires_python = ">=3.8,<4.0" summary = "Supabase client for Python." -groups = ["default"] dependencies = [ "gotrue<3.0,>=1.3", "httpx<0.25.0,>=0.24.0", @@ -4216,7 +3986,6 @@ name = "supafunc" version = "0.3.3" requires_python = ">=3.8,<4.0" summary = "Library for Supabase Functions" -groups = ["default"] dependencies = [ "httpx<0.26,>=0.24", ] @@ -4230,7 +3999,6 @@ name = "sympy" version = "1.12" requires_python = ">=3.8" summary = "Computer algebra system (CAS) in Python" -groups = ["default"] dependencies = [ "mpmath>=0.19", ] @@ -4244,7 +4012,6 @@ name = "tabulate" version = "0.9.0" requires_python = ">=3.7" summary = "Pretty-print tabular data" -groups = ["default"] files = [ {file = "tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f"}, {file = "tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c"}, @@ -4255,7 +4022,6 @@ name = "tenacity" version = "8.2.3" requires_python = ">=3.7" summary = "Retry code until it succeeds" -groups = ["default"] files = [ {file = "tenacity-8.2.3-py3-none-any.whl", hash = "sha256:ce510e327a630c9e1beaf17d42e6ffacc88185044ad85cf74c0a8887c6a0f88c"}, {file = "tenacity-8.2.3.tar.gz", hash = "sha256:5398ef0d78e63f40007c1fb4c0bff96e1911394d2fa8d194f77619c05ff6cc8a"}, @@ -4266,8 +4032,6 @@ name = "tensorrt-llm" version = "0.7.1" requires_python = ">=3.7, <4" summary = "" -groups = ["default"] -marker = "python_version == \"3.10\"" files = [ {file = "tensorrt-llm-0.7.1.tar.gz", hash = "sha256:10275e2585484f138b43576acddba42ebee073fbb1665fe0954032e421e26e08"}, ] @@ -4277,7 +4041,6 @@ name = "termcolor" version = "2.4.0" requires_python = ">=3.8" summary = "ANSI color formatting for output in terminal" -groups = ["default"] files = [ {file = "termcolor-2.4.0-py3-none-any.whl", hash = "sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63"}, {file = "termcolor-2.4.0.tar.gz", hash = "sha256:aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a"}, @@ -4288,7 +4051,6 @@ name = "tiktoken" version = "0.4.0" requires_python = ">=3.8" summary = "tiktoken is a fast BPE tokeniser for use with OpenAI's models" -groups = ["default"] dependencies = [ "regex>=2022.1.18", "requests>=2.26.0", @@ -4323,7 +4085,6 @@ name = "tokenizers" version = "0.15.2" requires_python = ">=3.7" summary = "" -groups = ["default"] dependencies = [ "huggingface-hub<1.0,>=0.16.4", ] @@ -4399,8 +4160,6 @@ name = "tomli" version = "2.0.1" requires_python = ">=3.7" summary = "A lil' TOML parser" -groups = ["test"] -marker = "python_version < \"3.11\"" files = [ {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, @@ -4411,7 +4170,6 @@ name = "tomlkit" version = "0.12.3" requires_python = ">=3.7" summary = "Style preserving TOML library" -groups = ["default"] files = [ {file = "tomlkit-0.12.3-py3-none-any.whl", hash = "sha256:b0a645a9156dc7cb5d3a1f0d4bab66db287fcb8e0430bdd4664a095ea16414ba"}, {file = "tomlkit-0.12.3.tar.gz", hash = "sha256:75baf5012d06501f07bee5bf8e801b9f343e7aac5a92581f20f80ce632e6b5a4"}, @@ -4422,7 +4180,6 @@ name = "tornado" version = "6.4" requires_python = ">= 3.8" summary = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." -groups = ["default"] files = [ {file = "tornado-6.4-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:02ccefc7d8211e5a7f9e8bc3f9e5b0ad6262ba2fbb683a6443ecc804e5224ce0"}, {file = "tornado-6.4-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:27787de946a9cffd63ce5814c33f734c627a87072ec7eed71f7fc4417bb16263"}, @@ -4442,7 +4199,6 @@ name = "tqdm" version = "4.66.2" requires_python = ">=3.7" summary = "Fast, Extensible Progress Meter" -groups = ["default"] dependencies = [ "colorama; platform_system == \"Windows\"", ] @@ -4456,7 +4212,6 @@ name = "transformers" version = "4.37.0" requires_python = ">=3.8.0" summary = "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow" -groups = ["default"] dependencies = [ "filelock", "huggingface-hub<1.0,>=0.19.3", @@ -4479,7 +4234,6 @@ name = "typing-extensions" version = "4.9.0" requires_python = ">=3.8" summary = "Backported and Experimental Type Hints for Python 3.8+" -groups = ["default"] files = [ {file = "typing_extensions-4.9.0-py3-none-any.whl", hash = "sha256:af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd"}, {file = "typing_extensions-4.9.0.tar.gz", hash = "sha256:23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783"}, @@ -4489,7 +4243,6 @@ files = [ name = "typing-inspect" version = "0.9.0" summary = "Runtime inspection utilities for typing module." -groups = ["default"] dependencies = [ "mypy-extensions>=0.3.0", "typing-extensions>=3.7.4", @@ -4504,7 +4257,6 @@ name = "tzdata" version = "2024.1" requires_python = ">=2" summary = "Provider of IANA time zone data" -groups = ["default"] files = [ {file = "tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252"}, {file = "tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd"}, @@ -4515,7 +4267,6 @@ name = "tzlocal" version = "5.2" requires_python = ">=3.8" summary = "tzinfo object for the local timezone" -groups = ["default"] dependencies = [ "tzdata; platform_system == \"Windows\"", ] @@ -4529,7 +4280,6 @@ name = "ujson" version = "5.9.0" requires_python = ">=3.8" summary = "Ultra fast JSON encoder and decoder for Python" -groups = ["default"] files = [ {file = "ujson-5.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ab71bf27b002eaf7d047c54a68e60230fbd5cd9da60de7ca0aa87d0bccead8fa"}, {file = "ujson-5.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7a365eac66f5aa7a7fdf57e5066ada6226700884fc7dce2ba5483538bc16c8c5"}, @@ -4580,10 +4330,9 @@ files = [ [[package]] name = "unstract-adapters" -version = "0.2.1" +version = "0.2.2" requires_python = "<3.12,>=3.9" summary = "Unstract Adapters" -groups = ["default"] dependencies = [ "SQLAlchemy==2.0.26", "anthropic==0.7.8", @@ -4608,8 +4357,8 @@ dependencies = [ "weaviate-client==3.25.3", ] files = [ - {file = "unstract_adapters-0.2.1-py3-none-any.whl", hash = "sha256:7b48707bc5c634f07d4ea2926f1b2925bcd5c6869e057839ba69c2d62d19941b"}, - {file = "unstract_adapters-0.2.1.tar.gz", hash = "sha256:08646a232185185390a193ad12b16715d1fccc69195d2d28e4f291b5c55f8117"}, + {file = "unstract_adapters-0.2.2-py3-none-any.whl", hash = "sha256:aaf48036f844f4e0295c36596b1772111ab18229246b8677227b983b3c4226e4"}, + {file = "unstract_adapters-0.2.2.tar.gz", hash = "sha256:465d7859a0eb7a905d2c626939f2fed3a501600f832c93160b3e27a559e5ab22"}, ] [[package]] @@ -4618,7 +4367,6 @@ version = "0.0.3" requires_python = ">=3.9" path = "../unstract/connectors" summary = "All connectors that are part of the Unstract platform" -groups = ["default"] dependencies = [ "PyDrive2[fsspec]==1.15.4", "PyMySQL==1.1.0", @@ -4641,7 +4389,6 @@ version = "0.0.1" requires_python = ">=3.9,<3.11.1" path = "../unstract/core" summary = "Core library that helps with executing workflows." -groups = ["default"] dependencies = [ "boto3~=1.28.17", "botocore~=1.31.17", @@ -4656,7 +4403,6 @@ version = "0.0.1" requires_python = ">=3.9" path = "../unstract/flags" summary = "Unstract's feature flags package." -groups = ["default"] dependencies = [ "grpcio-tools<=1.58.0", "grpcio<=1.58.0", @@ -4664,10 +4410,9 @@ dependencies = [ [[package]] name = "unstract-sdk" -version = "0.11.1" +version = "0.11.2" requires_python = "<3.11.1,>=3.9" summary = "A framework for writing Unstract Tools/Apps" -groups = ["default"] dependencies = [ "filetype==1.2.0", "jsonschema~=4.18.2", @@ -4678,11 +4423,11 @@ dependencies = [ "python-magic~=0.4.27", "tiktoken~=0.4.0", "transformers==4.37.0", - "unstract-adapters~=0.2.1", + "unstract-adapters~=0.2.2", ] files = [ - {file = "unstract_sdk-0.11.1-py3-none-any.whl", hash = "sha256:c969050363874b88d5024623ddfa2f7e9e55726b7c774cb96494835f5c7a5037"}, - {file = "unstract_sdk-0.11.1.tar.gz", hash = "sha256:8440f64851449f5962027e563d30b5fa21a3113ca9e65730b8909abff89995e5"}, + {file = "unstract_sdk-0.11.2-py3-none-any.whl", hash = "sha256:bcab064d87dc2985e5a4340e438a8ef71ef165b3e5078aba0ed2da3bda77f9e0"}, + {file = "unstract_sdk-0.11.2.tar.gz", hash = "sha256:0d6e3e00c9bbc6e569cc79922a2a45a54870c482cfa61287ea89a22ebd7fc606"}, ] [[package]] @@ -4691,13 +4436,12 @@ version = "0.0.1" requires_python = ">=3.9,<3.11.1" path = "../unstract/tool-registry" summary = "Unstract's registry of tools to be used in workflows." -groups = ["default"] dependencies = [ "PyYAML~=6.0.1", "docker~=6.1.3", "jsonschema~=4.18.2", "unstract-adapters~=0.2.1", - "unstract-tool-sandbox @ file:///home/chandru/zipstuff/Pandora/unstract/tool-registry/../tool-sandbox", + "unstract-tool-sandbox @ file:///home/gayathrivijayakumar/code/Unstract/unstract/unstract/tool-registry/../tool-sandbox", ] [[package]] @@ -4706,7 +4450,6 @@ version = "0.0.1" requires_python = ">=3.9" path = "../unstract/tool-sandbox" summary = "Unstract Tool Sandbox is a package to communicate with tool worker" -groups = ["default"] dependencies = [ "requests==2.31.0", ] @@ -4717,7 +4460,6 @@ version = "0.0.1" requires_python = ">=3.9" path = "../unstract/workflow-execution" summary = "Unstract workflow execution package" -groups = ["default"] dependencies = [ "unstract-tool-registry", "unstract-tool-sandbox", @@ -4728,7 +4470,6 @@ name = "uritemplate" version = "4.1.1" requires_python = ">=3.6" summary = "Implementation of RFC 6570 URI Templates" -groups = ["default"] files = [ {file = "uritemplate-4.1.1-py2.py3-none-any.whl", hash = "sha256:830c08b8d99bdd312ea4ead05994a38e8936266f84b9a7878232db50b044e02e"}, {file = "uritemplate-4.1.1.tar.gz", hash = "sha256:4346edfc5c3b79f694bccd6d6099a322bbeb628dbf2cd86eea55a456ce5124f0"}, @@ -4739,7 +4480,6 @@ name = "urllib3" version = "1.26.18" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" summary = "HTTP library with thread-safe connection pooling, file post, and more." -groups = ["default"] files = [ {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, @@ -4750,7 +4490,6 @@ name = "validators" version = "0.22.0" requires_python = ">=3.8" summary = "Python Data Validation for Humans™" -groups = ["default"] files = [ {file = "validators-0.22.0-py3-none-any.whl", hash = "sha256:61cf7d4a62bbae559f2e54aed3b000cea9ff3e2fdbe463f51179b92c58c9585a"}, {file = "validators-0.22.0.tar.gz", hash = "sha256:77b2689b172eeeb600d9605ab86194641670cdb73b60afd577142a9397873370"}, @@ -4760,7 +4499,6 @@ files = [ name = "vecs" version = "0.1.0" summary = "pgvector client" -groups = ["default"] dependencies = [ "pgvector==0.1.*", "sqlalchemy==2.*", @@ -4774,7 +4512,6 @@ name = "vine" version = "5.1.0" requires_python = ">=3.6" summary = "Python promises." -groups = ["default"] files = [ {file = "vine-5.1.0-py3-none-any.whl", hash = "sha256:40fdf3c48b2cfe1c38a49e9ae2da6fda88e4794c810050a728bd7413811fb1dc"}, {file = "vine-5.1.0.tar.gz", hash = "sha256:8b62e981d35c41049211cf62a0a1242d8c1ee9bd15bb196ce38aefd6799e61e0"}, @@ -4784,7 +4521,6 @@ files = [ name = "wcwidth" version = "0.2.13" summary = "Measures the displayed width of unicode strings in a terminal" -groups = ["default"] files = [ {file = "wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859"}, {file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"}, @@ -4795,7 +4531,6 @@ name = "weaviate-client" version = "3.25.3" requires_python = ">=3.8" summary = "A python native Weaviate client" -groups = ["default"] dependencies = [ "authlib<2.0.0,>=1.2.1", "requests<3.0.0,>=2.30.0", @@ -4811,7 +4546,6 @@ name = "websocket-client" version = "1.7.0" requires_python = ">=3.8" summary = "WebSocket client for Python with low level API options" -groups = ["default"] files = [ {file = "websocket-client-1.7.0.tar.gz", hash = "sha256:10e511ea3a8c744631d3bd77e61eb17ed09304c413ad42cf6ddfa4c7787e8fe6"}, {file = "websocket_client-1.7.0-py3-none-any.whl", hash = "sha256:f4c3d22fec12a2461427a29957ff07d35098ee2d976d3ba244e688b8b4057588"}, @@ -4822,7 +4556,6 @@ name = "websockets" version = "11.0.3" requires_python = ">=3.7" summary = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" -groups = ["default"] files = [ {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3ccc8a0c387629aec40f2fc9fdcb4b9d5431954f934da3eaf16cdc94f67dbfac"}, {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d67ac60a307f760c6e65dad586f556dde58e683fab03323221a4e530ead6f74d"}, @@ -4881,8 +4614,6 @@ name = "win32-setctime" version = "1.1.0" requires_python = ">=3.5" summary = "A small Python utility to set file creation time on Windows" -groups = ["default"] -marker = "sys_platform == \"win32\"" files = [ {file = "win32_setctime-1.1.0-py3-none-any.whl", hash = "sha256:231db239e959c2fe7eb1d7dc129f11172354f98361c4fa2d6d2d7e278baa8aad"}, {file = "win32_setctime-1.1.0.tar.gz", hash = "sha256:15cf5750465118d6929ae4de4eb46e8edae9a5634350c01ba582df868e932cb2"}, @@ -4893,7 +4624,6 @@ name = "wrapt" version = "1.16.0" requires_python = ">=3.6" summary = "Module for decorators, wrappers and monkey patching." -groups = ["default"] files = [ {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, @@ -4934,7 +4664,6 @@ name = "wsproto" version = "1.2.0" requires_python = ">=3.7.0" summary = "WebSockets state-machine based protocol implementation" -groups = ["default"] dependencies = [ "h11<1,>=0.9.0", ] @@ -4948,7 +4677,6 @@ name = "yarl" version = "1.9.4" requires_python = ">=3.7" summary = "Yet another URL library" -groups = ["default"] dependencies = [ "idna>=2.0", "multidict>=4.0", diff --git a/prompt-service/pdm.lock b/prompt-service/pdm.lock index 51a6363e62..760460d8d6 100644 --- a/prompt-service/pdm.lock +++ b/prompt-service/pdm.lock @@ -3,16 +3,15 @@ [metadata] groups = ["default", "deploy"] -strategy = ["cross_platform", "inherit_metadata"] -lock_version = "4.4.1" -content_hash = "sha256:fd0834c511c2360234ef559431fa33c11967a9a8ba701f225f0cdf04ec19018b" +strategy = ["cross_platform"] +lock_version = "4.4" +content_hash = "sha256:c02615c1fe1a21cddaa8ee726e7d3166446a694f45debed47272c2d8ee1504e0" [[package]] name = "aiohttp" version = "3.9.3" requires_python = ">=3.8" summary = "Async http client/server framework (asyncio)" -groups = ["default"] dependencies = [ "aiosignal>=1.1.2", "async-timeout<5.0,>=4.0; python_version < \"3.11\"", @@ -75,7 +74,6 @@ name = "aiosignal" version = "1.3.1" requires_python = ">=3.7" summary = "aiosignal: a list of registered asynchronous callbacks" -groups = ["default"] dependencies = [ "frozenlist>=1.1.0", ] @@ -89,7 +87,6 @@ name = "annotated-types" version = "0.6.0" requires_python = ">=3.8" summary = "Reusable constraint types to use with typing.Annotated" -groups = ["default"] files = [ {file = "annotated_types-0.6.0-py3-none-any.whl", hash = "sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43"}, {file = "annotated_types-0.6.0.tar.gz", hash = "sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d"}, @@ -100,7 +97,6 @@ name = "anthropic" version = "0.7.8" requires_python = ">=3.7" summary = "The official Python library for the anthropic API" -groups = ["default"] dependencies = [ "anyio<5,>=3.5.0", "distro<2,>=1.7.0", @@ -120,7 +116,6 @@ name = "anyio" version = "4.3.0" requires_python = ">=3.8" summary = "High level compatibility layer for multiple asynchronous event loop implementations" -groups = ["default"] dependencies = [ "exceptiongroup>=1.0.2; python_version < \"3.11\"", "idna>=2.8", @@ -136,7 +131,6 @@ files = [ name = "anyscale" version = "0.5.165" summary = "Command Line Interface for Anyscale" -groups = ["default"] dependencies = [ "Click>=7.0", "GitPython", @@ -176,7 +170,6 @@ name = "argon2-cffi" version = "23.1.0" requires_python = ">=3.7" summary = "Argon2 for Python" -groups = ["default"] dependencies = [ "argon2-cffi-bindings", ] @@ -190,7 +183,6 @@ name = "argon2-cffi-bindings" version = "21.2.0" requires_python = ">=3.6" summary = "Low-level CFFI bindings for Argon2" -groups = ["default"] dependencies = [ "cffi>=1.0.1", ] @@ -223,8 +215,6 @@ name = "async-timeout" version = "4.0.3" requires_python = ">=3.7" summary = "Timeout context manager for asyncio programs" -groups = ["default"] -marker = "python_version < \"3.12.0\"" files = [ {file = "async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f"}, {file = "async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028"}, @@ -235,7 +225,6 @@ name = "asyncpg" version = "0.29.0" requires_python = ">=3.8.0" summary = "An asyncio PostgreSQL driver" -groups = ["default"] dependencies = [ "async-timeout>=4.0.3; python_version < \"3.12.0\"", ] @@ -272,7 +261,6 @@ name = "attrs" version = "23.2.0" requires_python = ">=3.7" summary = "Classes Without Boilerplate" -groups = ["default"] files = [ {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, @@ -283,7 +271,6 @@ name = "authlib" version = "1.3.0" requires_python = ">=3.8" summary = "The ultimate Python library in building OAuth and OpenID Connect servers and clients." -groups = ["default"] dependencies = [ "cryptography", ] @@ -297,7 +284,6 @@ name = "backoff" version = "2.2.1" requires_python = ">=3.7,<4.0" summary = "Function decoration for backoff and retry" -groups = ["default"] files = [ {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, @@ -308,7 +294,6 @@ name = "beautifulsoup4" version = "4.12.3" requires_python = ">=3.6.0" summary = "Screen-scraping library" -groups = ["default"] dependencies = [ "soupsieve>1.2", ] @@ -322,7 +307,6 @@ name = "blinker" version = "1.7.0" requires_python = ">=3.8" summary = "Fast, simple object-to-object and broadcast signaling" -groups = ["default"] files = [ {file = "blinker-1.7.0-py3-none-any.whl", hash = "sha256:c3f865d4d54db7abc53758a01601cf343fe55b84c1de4e3fa910e420b438d5b9"}, {file = "blinker-1.7.0.tar.gz", hash = "sha256:e6820ff6fa4e4d1d8e2747c2283749c3f547e4fee112b98555cdcdae32996182"}, @@ -333,7 +317,6 @@ name = "boto3" version = "1.34.49" requires_python = ">= 3.8" summary = "The AWS SDK for Python" -groups = ["default"] dependencies = [ "botocore<1.35.0,>=1.34.49", "jmespath<2.0.0,>=0.7.1", @@ -349,7 +332,6 @@ name = "botocore" version = "1.34.49" requires_python = ">= 3.8" summary = "Low-level, data-driven core of boto 3." -groups = ["default"] dependencies = [ "jmespath<2.0.0,>=0.7.1", "python-dateutil<3.0.0,>=2.1", @@ -366,7 +348,6 @@ name = "cachetools" version = "5.3.2" requires_python = ">=3.7" summary = "Extensible memoizing collections and decorators" -groups = ["default"] files = [ {file = "cachetools-5.3.2-py3-none-any.whl", hash = "sha256:861f35a13a451f94e301ce2bec7cac63e881232ccce7ed67fab9b5df4d3beaa1"}, {file = "cachetools-5.3.2.tar.gz", hash = "sha256:086ee420196f7b2ab9ca2db2520aca326318b68fe5ba8bc4d49cca91add450f2"}, @@ -377,7 +358,6 @@ name = "certifi" version = "2024.2.2" requires_python = ">=3.6" summary = "Python package for providing Mozilla's CA Bundle." -groups = ["default"] files = [ {file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"}, {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"}, @@ -388,7 +368,6 @@ name = "cffi" version = "1.16.0" requires_python = ">=3.8" summary = "Foreign Function Interface for Python calling C code." -groups = ["default"] dependencies = [ "pycparser", ] @@ -434,7 +413,6 @@ name = "charset-normalizer" version = "3.3.2" requires_python = ">=3.7.0" summary = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -groups = ["default"] files = [ {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, @@ -490,7 +468,6 @@ name = "click" version = "8.1.7" requires_python = ">=3.7" summary = "Composable command line interface toolkit" -groups = ["default"] dependencies = [ "colorama; platform_system == \"Windows\"", ] @@ -504,7 +481,6 @@ name = "colorama" version = "0.4.6" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" summary = "Cross-platform colored terminal text." -groups = ["default"] files = [ {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, @@ -515,7 +491,6 @@ name = "coloredlogs" version = "15.0.1" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Colored terminal output for Python's logging module" -groups = ["default"] dependencies = [ "humanfriendly>=9.1", ] @@ -529,7 +504,6 @@ name = "cryptography" version = "42.0.5" requires_python = ">=3.7" summary = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." -groups = ["default"] dependencies = [ "cffi>=1.12; platform_python_implementation != \"PyPy\"", ] @@ -573,7 +547,6 @@ name = "dataclasses-json" version = "0.6.4" requires_python = ">=3.7,<4.0" summary = "Easily serialize dataclasses to and from JSON." -groups = ["default"] dependencies = [ "marshmallow<4.0.0,>=3.18.0", "typing-inspect<1,>=0.4.0", @@ -588,7 +561,6 @@ name = "deprecated" version = "1.2.14" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "Python @deprecated decorator to deprecate old python classes, functions or methods." -groups = ["default"] dependencies = [ "wrapt<2,>=1.10", ] @@ -601,7 +573,6 @@ files = [ name = "deprecation" version = "2.1.0" summary = "A library to handle automated deprecations" -groups = ["default"] dependencies = [ "packaging", ] @@ -615,7 +586,6 @@ name = "distro" version = "1.9.0" requires_python = ">=3.6" summary = "Distro - an OS platform information API" -groups = ["default"] files = [ {file = "distro-1.9.0-py3-none-any.whl", hash = "sha256:7bffd925d65168f85027d8da9af6bddab658135b840670a223589bc0c8ef02b2"}, {file = "distro-1.9.0.tar.gz", hash = "sha256:2fa77c6fd8940f116ee1d6b94a2f90b13b5ea8d019b98bc8bafdcabcdd9bdbed"}, @@ -626,7 +596,6 @@ name = "dnspython" version = "2.6.1" requires_python = ">=3.8" summary = "DNS toolkit" -groups = ["default"] files = [ {file = "dnspython-2.6.1-py3-none-any.whl", hash = "sha256:5ef3b9680161f6fa89daf8ad451b5f1a33b18ae8a1c6778cdf4b43f08c0a6e50"}, {file = "dnspython-2.6.1.tar.gz", hash = "sha256:e8f0f9c23a7b7cb99ded64e6c3a6f3e701d78f50c55e002b839dea7225cff7cc"}, @@ -637,7 +606,6 @@ name = "environs" version = "9.5.0" requires_python = ">=3.6" summary = "simplified environment variable parsing" -groups = ["default"] dependencies = [ "marshmallow>=3.0.0", "python-dotenv", @@ -652,8 +620,6 @@ name = "exceptiongroup" version = "1.2.0" requires_python = ">=3.7" summary = "Backport of PEP 654 (exception groups)" -groups = ["default"] -marker = "python_version < \"3.11\"" files = [ {file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"}, {file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"}, @@ -664,7 +630,6 @@ name = "fastembed" version = "0.1.3" requires_python = ">=3.8.0,<3.12" summary = "Fast, light, accurate library built for retrieval embedding generation" -groups = ["default"] dependencies = [ "huggingface-hub==0.19.4", "onnx<2.0,>=1.11", @@ -683,7 +648,6 @@ name = "filelock" version = "3.13.1" requires_python = ">=3.8" summary = "A platform independent file lock." -groups = ["default"] files = [ {file = "filelock-3.13.1-py3-none-any.whl", hash = "sha256:57dbda9b35157b05fb3e58ee91448612eb674172fab98ee235ccb0b5bee19a1c"}, {file = "filelock-3.13.1.tar.gz", hash = "sha256:521f5f56c50f8426f5e03ad3b281b490a87ef15bc6c526f168290f0c7148d44e"}, @@ -693,7 +657,6 @@ files = [ name = "filetype" version = "1.2.0" summary = "Infer file type and MIME type of any file/buffer. No external dependencies." -groups = ["default"] files = [ {file = "filetype-1.2.0-py2.py3-none-any.whl", hash = "sha256:7ce71b6880181241cf7ac8697a2f1eb6a8bd9b429f7ad6d27b8db9ba5f1c2d25"}, {file = "filetype-1.2.0.tar.gz", hash = "sha256:66b56cd6474bf41d8c54660347d37afcc3f7d1970648de365c102ef77548aadb"}, @@ -704,7 +667,6 @@ name = "flask" version = "3.0.2" requires_python = ">=3.8" summary = "A simple framework for building complex web applications." -groups = ["default"] dependencies = [ "Jinja2>=3.1.2", "Werkzeug>=3.0.0", @@ -722,7 +684,6 @@ files = [ name = "flatbuffers" version = "23.5.26" summary = "The FlatBuffers serialization format for Python" -groups = ["default"] files = [ {file = "flatbuffers-23.5.26-py2.py3-none-any.whl", hash = "sha256:c0ff356da363087b915fde4b8b45bdda73432fc17cddb3c8157472eab1422ad1"}, {file = "flatbuffers-23.5.26.tar.gz", hash = "sha256:9ea1144cac05ce5d86e2859f431c6cd5e66cd9c78c558317c7955fb8d4c78d89"}, @@ -732,7 +693,6 @@ files = [ name = "flupy" version = "1.2.0" summary = "Method chaining built on generators" -groups = ["default"] dependencies = [ "typing-extensions", ] @@ -745,7 +705,6 @@ name = "frozenlist" version = "1.4.1" requires_python = ">=3.8" summary = "A list-like structure which implements collections.abc.MutableSequence" -groups = ["default"] files = [ {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"}, {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"}, @@ -801,7 +760,6 @@ name = "fsspec" version = "2024.2.0" requires_python = ">=3.8" summary = "File-system specification" -groups = ["default"] files = [ {file = "fsspec-2024.2.0-py3-none-any.whl", hash = "sha256:817f969556fa5916bc682e02ca2045f96ff7f586d45110fcb76022063ad2c7d8"}, {file = "fsspec-2024.2.0.tar.gz", hash = "sha256:b6ad1a679f760dda52b1168c859d01b7b80648ea6f7f7c7f5a8a91dc3f3ecb84"}, @@ -812,7 +770,6 @@ name = "gitdb" version = "4.0.11" requires_python = ">=3.7" summary = "Git Object Database" -groups = ["default"] dependencies = [ "smmap<6,>=3.0.1", ] @@ -826,7 +783,6 @@ name = "gitpython" version = "3.1.42" requires_python = ">=3.7" summary = "GitPython is a Python library used to interact with Git repositories" -groups = ["default"] dependencies = [ "gitdb<5,>=4.0.1", ] @@ -840,7 +796,6 @@ name = "google-ai-generativelanguage" version = "0.4.0" requires_python = ">=3.7" summary = "Google Ai Generativelanguage API client library" -groups = ["default"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.0", "proto-plus<2.0.0dev,>=1.22.3", @@ -856,7 +811,6 @@ name = "google-api-core" version = "2.17.1" requires_python = ">=3.7" summary = "Google API client core library" -groups = ["default"] dependencies = [ "google-auth<3.0.dev0,>=2.14.1", "googleapis-common-protos<2.0.dev0,>=1.56.2", @@ -874,7 +828,6 @@ version = "2.17.1" extras = ["grpc"] requires_python = ">=3.7" summary = "Google API client core library" -groups = ["default"] dependencies = [ "google-api-core==2.17.1", "grpcio-status<2.0.dev0,>=1.33.2", @@ -892,7 +845,6 @@ name = "google-auth" version = "2.28.1" requires_python = ">=3.7" summary = "Google Authentication Library" -groups = ["default"] dependencies = [ "cachetools<6.0,>=2.0.0", "pyasn1-modules>=0.2.1", @@ -908,7 +860,6 @@ name = "google-cloud-aiplatform" version = "1.40.0" requires_python = ">=3.8" summary = "Vertex AI API client library" -groups = ["default"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,<3.0.0dev,>=1.32.0", "google-cloud-bigquery<4.0.0dev,>=1.15.0", @@ -929,7 +880,6 @@ name = "google-cloud-bigquery" version = "3.17.2" requires_python = ">=3.7" summary = "Google BigQuery API client library" -groups = ["default"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5", "google-cloud-core<3.0.0dev,>=1.6.0", @@ -948,7 +898,6 @@ name = "google-cloud-core" version = "2.4.1" requires_python = ">=3.7" summary = "Google Cloud API client core library" -groups = ["default"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.6", "google-auth<3.0dev,>=1.25.0", @@ -963,7 +912,6 @@ name = "google-cloud-resource-manager" version = "1.12.2" requires_python = ">=3.7" summary = "Google Cloud Resource Manager API client library" -groups = ["default"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1", "google-auth<3.0.0dev,>=2.14.1", @@ -981,7 +929,6 @@ name = "google-cloud-storage" version = "2.14.0" requires_python = ">=3.7" summary = "Google Cloud Storage API client library" -groups = ["default"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5", "google-auth<3.0dev,>=2.23.3", @@ -1000,7 +947,6 @@ name = "google-crc32c" version = "1.5.0" requires_python = ">=3.7" summary = "A python wrapper of the C library 'Google CRC32C'" -groups = ["default"] files = [ {file = "google-crc32c-1.5.0.tar.gz", hash = "sha256:89284716bc6a5a415d4eaa11b1726d2d60a0cd12aadf5439828353662ede9dd7"}, {file = "google_crc32c-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:596d1f98fc70232fcb6590c439f43b350cb762fb5d61ce7b0e9db4539654cc13"}, @@ -1056,7 +1002,6 @@ name = "google-generativeai" version = "0.3.1" requires_python = ">=3.9" summary = "Google Generative AI High level API client library and tools." -groups = ["default"] dependencies = [ "google-ai-generativelanguage==0.4.0", "google-api-core", @@ -1073,7 +1018,6 @@ name = "google-resumable-media" version = "2.7.0" requires_python = ">= 3.7" summary = "Utilities for Google Media Downloads and Resumable Uploads" -groups = ["default"] dependencies = [ "google-crc32c<2.0dev,>=1.0", ] @@ -1087,7 +1031,6 @@ name = "googleapis-common-protos" version = "1.62.0" requires_python = ">=3.7" summary = "Common protobufs used in Google APIs" -groups = ["default"] dependencies = [ "protobuf!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<5.0.0.dev0,>=3.19.5", ] @@ -1102,7 +1045,6 @@ version = "1.62.0" extras = ["grpc"] requires_python = ">=3.7" summary = "Common protobufs used in Google APIs" -groups = ["default"] dependencies = [ "googleapis-common-protos==1.62.0", "grpcio<2.0.0.dev0,>=1.44.0", @@ -1117,7 +1059,6 @@ name = "gotrue" version = "2.1.0" requires_python = ">=3.8,<4.0" summary = "Python Client Library for GoTrue" -groups = ["default"] dependencies = [ "httpx<0.26,>=0.23", "pydantic<3,>=1.10", @@ -1132,7 +1073,6 @@ name = "greenlet" version = "3.0.3" requires_python = ">=3.7" summary = "Lightweight in-process concurrent programming" -groups = ["default"] files = [ {file = "greenlet-3.0.3-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:9da2bd29ed9e4f15955dd1595ad7bc9320308a3b766ef7f837e23ad4b4aac31a"}, {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d353cadd6083fdb056bb46ed07e4340b0869c305c8ca54ef9da3421acbdf6881"}, @@ -1170,7 +1110,6 @@ name = "grpc-google-iam-v1" version = "0.13.0" requires_python = ">=3.7" summary = "IAM API client library" -groups = ["default"] dependencies = [ "googleapis-common-protos[grpc]<2.0.0dev,>=1.56.0", "grpcio<2.0.0dev,>=1.44.0", @@ -1186,7 +1125,6 @@ name = "grpcio" version = "1.58.0" requires_python = ">=3.7" summary = "HTTP/2-based RPC framework" -groups = ["default"] files = [ {file = "grpcio-1.58.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:3e6bebf1dfdbeb22afd95650e4f019219fef3ab86d3fca8ebade52e4bc39389a"}, {file = "grpcio-1.58.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:cde11577d5b6fd73a00e6bfa3cf5f428f3f33c2d2878982369b5372bbc4acc60"}, @@ -1223,7 +1161,6 @@ name = "grpcio-status" version = "1.58.0" requires_python = ">=3.6" summary = "Status proto mapping for gRPC" -groups = ["default"] dependencies = [ "googleapis-common-protos>=1.5.5", "grpcio>=1.58.0", @@ -1239,7 +1176,6 @@ name = "grpcio-tools" version = "1.58.0" requires_python = ">=3.7" summary = "Protobuf code generator for gRPC" -groups = ["default"] dependencies = [ "grpcio>=1.58.0", "protobuf<5.0dev,>=4.21.6", @@ -1281,7 +1217,6 @@ name = "gunicorn" version = "21.2.0" requires_python = ">=3.5" summary = "WSGI HTTP Server for UNIX" -groups = ["deploy"] dependencies = [ "packaging", ] @@ -1295,7 +1230,6 @@ name = "h11" version = "0.14.0" requires_python = ">=3.7" summary = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" -groups = ["default"] files = [ {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, @@ -1306,7 +1240,6 @@ name = "h2" version = "4.1.0" requires_python = ">=3.6.1" summary = "HTTP/2 State-Machine based protocol implementation" -groups = ["default"] dependencies = [ "hpack<5,>=4.0", "hyperframe<7,>=6.0", @@ -1321,7 +1254,6 @@ name = "halo" version = "0.0.31" requires_python = ">=3.4" summary = "Beautiful terminal spinners in Python" -groups = ["default"] dependencies = [ "colorama>=0.3.9", "log-symbols>=0.0.14", @@ -1338,7 +1270,6 @@ name = "hpack" version = "4.0.0" requires_python = ">=3.6.1" summary = "Pure-Python HPACK header compression" -groups = ["default"] files = [ {file = "hpack-4.0.0-py3-none-any.whl", hash = "sha256:84a076fad3dc9a9f8063ccb8041ef100867b1878b25ef0ee63847a5d53818a6c"}, {file = "hpack-4.0.0.tar.gz", hash = "sha256:fc41de0c63e687ebffde81187a948221294896f6bdc0ae2312708df339430095"}, @@ -1349,7 +1280,6 @@ name = "httpcore" version = "0.17.3" requires_python = ">=3.7" summary = "A minimal low-level HTTP client." -groups = ["default"] dependencies = [ "anyio<5.0,>=3.0", "certifi", @@ -1366,7 +1296,6 @@ name = "httplib2" version = "0.22.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "A comprehensive HTTP client library." -groups = ["default"] dependencies = [ "pyparsing!=3.0.0,!=3.0.1,!=3.0.2,!=3.0.3,<4,>=2.4.2; python_version > \"3.0\"", ] @@ -1380,7 +1309,6 @@ name = "httpx" version = "0.24.1" requires_python = ">=3.7" summary = "The next generation HTTP client." -groups = ["default"] dependencies = [ "certifi", "httpcore<0.18.0,>=0.15.0", @@ -1398,7 +1326,6 @@ version = "0.24.1" extras = ["http2"] requires_python = ">=3.7" summary = "The next generation HTTP client." -groups = ["default"] dependencies = [ "h2<5,>=3", "httpx==0.24.1", @@ -1412,7 +1339,6 @@ files = [ name = "huggingface" version = "0.0.1" summary = "HuggingFace is a single library comprising the main HuggingFace libraries." -groups = ["default"] files = [ {file = "huggingface-0.0.1-py3-none-any.whl", hash = "sha256:98a3409537557cd2fd768997ef94cab08529f86c5e106e6d54bbabdd5ee03910"}, {file = "huggingface-0.0.1.tar.gz", hash = "sha256:0a2f228fd956801d68b7c6a8bef478dfa60c4b7d7eba572ea7de39ecf87e505a"}, @@ -1423,7 +1349,6 @@ name = "huggingface-hub" version = "0.19.4" requires_python = ">=3.8.0" summary = "Client library to download and publish models, datasets and other repos on the huggingface.co hub" -groups = ["default"] dependencies = [ "filelock", "fsspec>=2023.5.0", @@ -1443,7 +1368,6 @@ name = "humanfriendly" version = "10.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Human friendly output for text interfaces using Python" -groups = ["default"] dependencies = [ "pyreadline3; sys_platform == \"win32\" and python_version >= \"3.8\"", ] @@ -1457,7 +1381,6 @@ name = "humanize" version = "4.9.0" requires_python = ">=3.8" summary = "Python humanize utilities" -groups = ["default"] files = [ {file = "humanize-4.9.0-py3-none-any.whl", hash = "sha256:ce284a76d5b1377fd8836733b983bfb0b76f1aa1c090de2566fcf008d7f6ab16"}, {file = "humanize-4.9.0.tar.gz", hash = "sha256:582a265c931c683a7e9b8ed9559089dea7edcf6cc95be39a3cbc2c5d5ac2bcfa"}, @@ -1468,7 +1391,6 @@ name = "hyperframe" version = "6.0.1" requires_python = ">=3.6.1" summary = "HTTP/2 framing layer for Python" -groups = ["default"] files = [ {file = "hyperframe-6.0.1-py3-none-any.whl", hash = "sha256:0ec6bafd80d8ad2195c4f03aacba3a8265e57bc4cff261e802bf39970ed02a15"}, {file = "hyperframe-6.0.1.tar.gz", hash = "sha256:ae510046231dc8e9ecb1a6586f63d2347bf4c8905914aa84ba585ae85f28a914"}, @@ -1479,7 +1401,6 @@ name = "idna" version = "3.6" requires_python = ">=3.5" summary = "Internationalized Domain Names in Applications (IDNA)" -groups = ["default"] files = [ {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"}, {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, @@ -1490,8 +1411,6 @@ name = "importlib-metadata" version = "7.0.1" requires_python = ">=3.8" summary = "Read metadata from Python packages" -groups = ["default"] -marker = "python_version < \"3.10\"" dependencies = [ "zipp>=0.5", ] @@ -1505,7 +1424,6 @@ name = "itsdangerous" version = "2.1.2" requires_python = ">=3.7" summary = "Safely pass data to untrusted environments and back." -groups = ["default"] files = [ {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, @@ -1516,7 +1434,6 @@ name = "jinja2" version = "3.1.3" requires_python = ">=3.7" summary = "A very fast and expressive template engine." -groups = ["default"] dependencies = [ "MarkupSafe>=2.0", ] @@ -1530,7 +1447,6 @@ name = "jmespath" version = "1.0.1" requires_python = ">=3.7" summary = "JSON Matching Expressions" -groups = ["default"] files = [ {file = "jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980"}, {file = "jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe"}, @@ -1541,7 +1457,6 @@ name = "joblib" version = "1.3.2" requires_python = ">=3.7" summary = "Lightweight pipelining with Python functions" -groups = ["default"] files = [ {file = "joblib-1.3.2-py3-none-any.whl", hash = "sha256:ef4331c65f239985f3f2220ecc87db222f08fd22097a3dd5698f693875f8cbb9"}, {file = "joblib-1.3.2.tar.gz", hash = "sha256:92f865e621e17784e7955080b6d042489e3b8e294949cc44c6eac304f59772b1"}, @@ -1552,7 +1467,6 @@ name = "jsonpatch" version = "1.33" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" summary = "Apply JSON-Patches (RFC 6902) " -groups = ["default"] dependencies = [ "jsonpointer>=1.9", ] @@ -1566,7 +1480,6 @@ name = "jsonpointer" version = "2.4" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" summary = "Identify specific nodes in a JSON document (RFC 6901) " -groups = ["default"] files = [ {file = "jsonpointer-2.4-py2.py3-none-any.whl", hash = "sha256:15d51bba20eea3165644553647711d150376234112651b4f1811022aecad7d7a"}, {file = "jsonpointer-2.4.tar.gz", hash = "sha256:585cee82b70211fa9e6043b7bb89db6e1aa49524340dde8ad6b63206ea689d88"}, @@ -1577,7 +1490,6 @@ name = "jsonschema" version = "4.18.6" requires_python = ">=3.8" summary = "An implementation of JSON Schema validation for Python" -groups = ["default"] dependencies = [ "attrs>=22.2.0", "jsonschema-specifications>=2023.03.6", @@ -1594,7 +1506,6 @@ name = "jsonschema-specifications" version = "2023.12.1" requires_python = ">=3.8" summary = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" -groups = ["default"] dependencies = [ "referencing>=0.31.0", ] @@ -1608,7 +1519,6 @@ name = "llama-index" version = "0.9.28" requires_python = ">=3.8.1,<4.0" summary = "Interface between LLMs and your data" -groups = ["default"] dependencies = [ "SQLAlchemy[asyncio]>=1.4.49", "aiohttp<4.0.0,>=3.8.6", @@ -1639,7 +1549,6 @@ files = [ name = "log-symbols" version = "0.0.14" summary = "Colored symbols for various log levels for Python" -groups = ["default"] dependencies = [ "colorama>=0.3.9", ] @@ -1653,7 +1562,6 @@ name = "loguru" version = "0.7.2" requires_python = ">=3.5" summary = "Python logging made (stupidly) simple" -groups = ["default"] dependencies = [ "colorama>=0.3.4; sys_platform == \"win32\"", "win32-setctime>=1.0.0; sys_platform == \"win32\"", @@ -1668,7 +1576,6 @@ name = "markdown-it-py" version = "3.0.0" requires_python = ">=3.8" summary = "Python port of markdown-it. Markdown parsing, done right!" -groups = ["default"] dependencies = [ "mdurl~=0.1", ] @@ -1682,7 +1589,6 @@ name = "markupsafe" version = "2.1.5" requires_python = ">=3.7" summary = "Safely add untrusted strings to HTML/XML markup." -groups = ["default"] files = [ {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, @@ -1722,7 +1628,6 @@ name = "marshmallow" version = "3.20.2" requires_python = ">=3.8" summary = "A lightweight library for converting complex datatypes to and from native Python datatypes." -groups = ["default"] dependencies = [ "packaging>=17.0", ] @@ -1736,7 +1641,6 @@ name = "mdurl" version = "0.1.2" requires_python = ">=3.7" summary = "Markdown URL utilities" -groups = ["default"] files = [ {file = "mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8"}, {file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"}, @@ -1746,7 +1650,6 @@ files = [ name = "minio" version = "7.2.4" summary = "MinIO Python SDK for Amazon S3 Compatible Cloud Storage" -groups = ["default"] dependencies = [ "argon2-cffi", "certifi", @@ -1764,7 +1667,6 @@ name = "mistralai" version = "0.0.8" requires_python = ">=3.8,<4.0" summary = "" -groups = ["default"] dependencies = [ "aiohttp<4.0.0,>=3.9.1", "backoff<3.0.0,>=2.2.1", @@ -1781,7 +1683,6 @@ files = [ name = "mpmath" version = "1.3.0" summary = "Python library for arbitrary-precision floating-point arithmetic" -groups = ["default"] files = [ {file = "mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c"}, {file = "mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f"}, @@ -1792,7 +1693,6 @@ name = "multidict" version = "6.0.5" requires_python = ">=3.7" summary = "multidict implementation" -groups = ["default"] files = [ {file = "multidict-6.0.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9"}, {file = "multidict-6.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604"}, @@ -1848,7 +1748,6 @@ name = "mypy-extensions" version = "1.0.0" requires_python = ">=3.5" summary = "Type system extensions for programs checked with the mypy type checker." -groups = ["default"] files = [ {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, @@ -1859,7 +1758,6 @@ name = "nest-asyncio" version = "1.6.0" requires_python = ">=3.5" summary = "Patch asyncio to allow nested event loops" -groups = ["default"] files = [ {file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"}, {file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"}, @@ -1870,7 +1768,6 @@ name = "networkx" version = "3.2.1" requires_python = ">=3.9" summary = "Python package for creating and manipulating graphs and networks" -groups = ["default"] files = [ {file = "networkx-3.2.1-py3-none-any.whl", hash = "sha256:f18c69adc97877c42332c170849c96cefa91881c99a7cb3e95b7c659ebdc1ec2"}, {file = "networkx-3.2.1.tar.gz", hash = "sha256:9f1bb5cf3409bf324e0a722c20bdb4c20ee39bf1c30ce8ae499c8502b0b5e0c6"}, @@ -1881,7 +1778,6 @@ name = "nltk" version = "3.8.1" requires_python = ">=3.7" summary = "Natural Language Toolkit" -groups = ["default"] dependencies = [ "click", "joblib", @@ -1898,7 +1794,6 @@ name = "numpy" version = "1.26.4" requires_python = ">=3.9" summary = "Fundamental package for array computing in Python" -groups = ["default"] files = [ {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, @@ -1934,7 +1829,6 @@ files = [ name = "oauth2client" version = "4.1.3" summary = "OAuth 2.0 client library" -groups = ["default"] dependencies = [ "httplib2>=0.9.1", "pyasn1-modules>=0.0.5", @@ -1952,7 +1846,6 @@ name = "onnx" version = "1.15.0" requires_python = ">=3.8" summary = "Open Neural Network Exchange" -groups = ["default"] dependencies = [ "numpy", "protobuf>=3.20.2", @@ -1983,7 +1876,6 @@ files = [ name = "onnxruntime" version = "1.17.0" summary = "ONNX Runtime is a runtime accelerator for Machine Learning models" -groups = ["default"] dependencies = [ "coloredlogs", "flatbuffers", @@ -2015,7 +1907,6 @@ name = "openai" version = "1.3.9" requires_python = ">=3.7.1" summary = "The official Python library for the openai API" -groups = ["default"] dependencies = [ "anyio<5,>=3.5.0", "distro<2,>=1.7.0", @@ -2035,7 +1926,6 @@ name = "orjson" version = "3.9.15" requires_python = ">=3.8" summary = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" -groups = ["default"] files = [ {file = "orjson-3.9.15-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:d61f7ce4727a9fa7680cd6f3986b0e2c732639f46a5e0156e550e35258aa313a"}, {file = "orjson-3.9.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4feeb41882e8aa17634b589533baafdceb387e01e117b1ec65534ec724023d04"}, @@ -2075,7 +1965,6 @@ name = "packaging" version = "23.2" requires_python = ">=3.7" summary = "Core utilities for Python packages" -groups = ["default", "deploy"] files = [ {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, @@ -2086,7 +1975,6 @@ name = "pandas" version = "2.2.1" requires_python = ">=3.9" summary = "Powerful data structures for data analysis, time series, and statistics" -groups = ["default"] dependencies = [ "numpy<2,>=1.22.4; python_version < \"3.11\"", "numpy<2,>=1.23.2; python_version == \"3.11\"", @@ -2124,7 +2012,6 @@ name = "pathspec" version = "0.12.1" requires_python = ">=3.8" summary = "Utility library for gitignore style pattern matching of file paths." -groups = ["default"] files = [ {file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"}, {file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"}, @@ -2135,7 +2022,6 @@ name = "pdfminer-six" version = "20221105" requires_python = ">=3.6" summary = "PDF parser and analyzer" -groups = ["default"] dependencies = [ "charset-normalizer>=2.0.0", "cryptography>=36.0.0", @@ -2150,7 +2036,6 @@ name = "pdfplumber" version = "0.10.3" requires_python = ">=3.8" summary = "Plumb a PDF for detailed information about each char, rectangle, and line." -groups = ["default"] dependencies = [ "Pillow>=9.1", "pdfminer-six==20221105", @@ -2165,7 +2050,6 @@ files = [ name = "peewee" version = "3.17.1" summary = "a little orm" -groups = ["default"] files = [ {file = "peewee-3.17.1.tar.gz", hash = "sha256:e009ac4227c4fdc0058a56e822ad5987684f0a1fbb20fed577200785102581c3"}, ] @@ -2175,7 +2059,6 @@ name = "pgvector" version = "0.1.8" requires_python = ">=3.6" summary = "pgvector support for Python" -groups = ["default"] dependencies = [ "numpy", ] @@ -2188,7 +2071,6 @@ name = "pillow" version = "10.2.0" requires_python = ">=3.8" summary = "Python Imaging Library (Fork)" -groups = ["default"] files = [ {file = "pillow-10.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:7823bdd049099efa16e4246bdf15e5a13dbb18a51b68fa06d6c1d4d8b99a796e"}, {file = "pillow-10.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:83b2021f2ade7d1ed556bc50a399127d7fb245e725aa0113ebd05cfe88aaf588"}, @@ -2244,7 +2126,6 @@ name = "pinecone-client" version = "2.2.4" requires_python = ">=3.8" summary = "Pinecone client and SDK" -groups = ["default"] dependencies = [ "dnspython>=2.0.0", "loguru>=0.5.0", @@ -2266,7 +2147,6 @@ name = "portalocker" version = "2.8.2" requires_python = ">=3.8" summary = "Wraps the portalocker recipe for easy usage" -groups = ["default"] dependencies = [ "pywin32>=226; platform_system == \"Windows\"", ] @@ -2280,7 +2160,6 @@ name = "postgrest" version = "0.13.2" requires_python = ">=3.8,<4.0" summary = "PostgREST client for Python. This library provides an ORM interface to PostgREST." -groups = ["default"] dependencies = [ "deprecation<3.0.0,>=2.1.0", "httpx<0.26,>=0.24", @@ -2297,7 +2176,6 @@ name = "proto-plus" version = "1.23.0" requires_python = ">=3.6" summary = "Beautiful, Pythonic protocol buffers." -groups = ["default"] dependencies = [ "protobuf<5.0.0dev,>=3.19.0", ] @@ -2311,7 +2189,6 @@ name = "protobuf" version = "4.25.3" requires_python = ">=3.8" summary = "" -groups = ["default"] files = [ {file = "protobuf-4.25.3-cp310-abi3-win32.whl", hash = "sha256:d4198877797a83cbfe9bffa3803602bbe1625dc30d8a097365dbc762e5790faa"}, {file = "protobuf-4.25.3-cp310-abi3-win_amd64.whl", hash = "sha256:209ba4cc916bab46f64e56b85b090607a676f66b473e6b762e6f1d9d591eb2e8"}, @@ -2329,7 +2206,6 @@ name = "psycopg2-binary" version = "2.9.9" requires_python = ">=3.7" summary = "psycopg2 - Python-PostgreSQL Database Adapter" -groups = ["default"] files = [ {file = "psycopg2-binary-2.9.9.tar.gz", hash = "sha256:7f01846810177d829c7692f1f5ada8096762d9172af1b1a28d4ab5b77c923c1c"}, {file = "psycopg2_binary-2.9.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c2470da5418b76232f02a2fcd2229537bb2d5a7096674ce61859c3229f2eb202"}, @@ -2375,7 +2251,6 @@ name = "pyarrow" version = "15.0.0" requires_python = ">=3.8" summary = "Python library for Apache Arrow" -groups = ["default"] dependencies = [ "numpy<2,>=1.16.6", ] @@ -2409,7 +2284,6 @@ name = "pyasn1" version = "0.5.1" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" summary = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" -groups = ["default"] files = [ {file = "pyasn1-0.5.1-py2.py3-none-any.whl", hash = "sha256:4439847c58d40b1d0a573d07e3856e95333f1976294494c325775aeca506eb58"}, {file = "pyasn1-0.5.1.tar.gz", hash = "sha256:6d391a96e59b23130a5cfa74d6fd7f388dbbe26cc8f1edf39fdddf08d9d6676c"}, @@ -2420,7 +2294,6 @@ name = "pyasn1-modules" version = "0.3.0" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" summary = "A collection of ASN.1-based protocols modules" -groups = ["default"] dependencies = [ "pyasn1<0.6.0,>=0.4.6", ] @@ -2434,7 +2307,6 @@ name = "pycparser" version = "2.21" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "C parser in Python" -groups = ["default"] files = [ {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, @@ -2445,7 +2317,6 @@ name = "pycryptodome" version = "3.20.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Cryptographic library for Python" -groups = ["default"] files = [ {file = "pycryptodome-3.20.0-cp35-abi3-macosx_10_9_universal2.whl", hash = "sha256:ac1c7c0624a862f2e53438a15c9259d1655325fc2ec4392e66dc46cdae24d044"}, {file = "pycryptodome-3.20.0-cp35-abi3-macosx_10_9_x86_64.whl", hash = "sha256:76658f0d942051d12a9bd08ca1b6b34fd762a8ee4240984f7c06ddfb55eaf15a"}, @@ -2475,7 +2346,6 @@ name = "pydantic" version = "2.6.2" requires_python = ">=3.8" summary = "Data validation using Python type hints" -groups = ["default"] dependencies = [ "annotated-types>=0.4.0", "pydantic-core==2.16.3", @@ -2491,7 +2361,6 @@ name = "pydantic-core" version = "2.16.3" requires_python = ">=3.8" summary = "" -groups = ["default"] dependencies = [ "typing-extensions!=4.7.0,>=4.6.0", ] @@ -2557,7 +2426,6 @@ name = "pygments" version = "2.17.2" requires_python = ">=3.7" summary = "Pygments is a syntax highlighting package written in Python." -groups = ["default"] files = [ {file = "pygments-2.17.2-py3-none-any.whl", hash = "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c"}, {file = "pygments-2.17.2.tar.gz", hash = "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367"}, @@ -2568,7 +2436,6 @@ name = "pymilvus" version = "2.3.4" requires_python = ">=3.7" summary = "Python Sdk for Milvus" -groups = ["default"] dependencies = [ "environs<=9.5.0", "grpcio<=1.58.0,>=1.49.1", @@ -2589,8 +2456,6 @@ name = "pyparsing" version = "3.1.1" requires_python = ">=3.6.8" summary = "pyparsing module - Classes and methods to define and execute parsing grammars" -groups = ["default"] -marker = "python_version > \"3.0\"" files = [ {file = "pyparsing-3.1.1-py3-none-any.whl", hash = "sha256:32c7c0b711493c72ff18a981d24f28aaf9c1fb7ed5e9667c9e84e3db623bdbfb"}, {file = "pyparsing-3.1.1.tar.gz", hash = "sha256:ede28a1a32462f5a9705e07aea48001a08f7cf81a021585011deba701581a0db"}, @@ -2601,7 +2466,6 @@ name = "pypdfium2" version = "4.27.0" requires_python = ">= 3.6" summary = "Python bindings to PDFium" -groups = ["default"] files = [ {file = "pypdfium2-4.27.0-py3-none-macosx_10_13_x86_64.whl", hash = "sha256:2938f423c79b49df9057993f747e537a05b71bc2c847801ac743f27c3220d363"}, {file = "pypdfium2-4.27.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:f396941e070bf6c245890f2ffb2cb04f39585e3cda93ebb1648f1ed0e99b921f"}, @@ -2622,8 +2486,6 @@ files = [ name = "pyreadline3" version = "3.4.1" summary = "A python implementation of GNU readline." -groups = ["default"] -marker = "sys_platform == \"win32\" and python_version >= \"3.8\"" files = [ {file = "pyreadline3-3.4.1-py3-none-any.whl", hash = "sha256:b0efb6516fd4fb07b45949053826a62fa4cb353db5be2bbb4a7aa1fdd1e345fb"}, {file = "pyreadline3-3.4.1.tar.gz", hash = "sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae"}, @@ -2634,7 +2496,6 @@ name = "pytesseract" version = "0.3.10" requires_python = ">=3.7" summary = "Python-tesseract is a python wrapper for Google's Tesseract-OCR" -groups = ["default"] dependencies = [ "Pillow>=8.0.0", "packaging>=21.3", @@ -2649,7 +2510,6 @@ name = "python-dateutil" version = "2.8.2" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" summary = "Extensions to the standard Python datetime module" -groups = ["default"] dependencies = [ "six>=1.5", ] @@ -2663,7 +2523,6 @@ name = "python-dotenv" version = "1.0.0" requires_python = ">=3.8" summary = "Read key-value pairs from a .env file and set them as environment variables" -groups = ["default"] files = [ {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, @@ -2674,7 +2533,6 @@ name = "python-magic" version = "0.4.27" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "File type identification using libmagic" -groups = ["default"] files = [ {file = "python-magic-0.4.27.tar.gz", hash = "sha256:c1ba14b08e4a5f5c31a302b7721239695b2f0f058d125bd5ce1ee36b9d9d3c3b"}, {file = "python_magic-0.4.27-py2.py3-none-any.whl", hash = "sha256:c212960ad306f700aa0d01e5d7a325d20548ff97eb9920dcd29513174f0294d3"}, @@ -2684,7 +2542,6 @@ files = [ name = "pytz" version = "2024.1" summary = "World timezone definitions, modern and historical" -groups = ["default"] files = [ {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, @@ -2694,8 +2551,6 @@ files = [ name = "pywin32" version = "306" summary = "Python for Window Extensions" -groups = ["default"] -marker = "platform_system == \"Windows\"" files = [ {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, @@ -2711,7 +2566,6 @@ name = "pyyaml" version = "6.0.1" requires_python = ">=3.6" summary = "YAML parser and emitter for Python" -groups = ["default"] files = [ {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, @@ -2745,7 +2599,6 @@ name = "qdrant-client" version = "1.7.0" requires_python = ">=3.8,<3.13" summary = "Client library for the Qdrant vector search engine" -groups = ["default"] dependencies = [ "grpcio-tools>=1.41.0", "grpcio>=1.41.0", @@ -2765,7 +2618,6 @@ name = "realtime" version = "1.0.2" requires_python = ">=3.8,<4.0" summary = "" -groups = ["default"] dependencies = [ "python-dateutil<3.0.0,>=2.8.1", "typing-extensions<5.0.0,>=4.2.0", @@ -2781,7 +2633,6 @@ name = "referencing" version = "0.33.0" requires_python = ">=3.8" summary = "JSON Referencing + Python" -groups = ["default"] dependencies = [ "attrs>=22.2.0", "rpds-py>=0.7.0", @@ -2796,7 +2647,6 @@ name = "regex" version = "2023.12.25" requires_python = ">=3.7" summary = "Alternative regular expression module, to replace re." -groups = ["default"] files = [ {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0694219a1d54336fd0445ea382d49d36882415c0134ee1e8332afd1529f0baa5"}, {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b014333bd0217ad3d54c143de9d4b9a3ca1c5a29a6d0d554952ea071cff0f1f8"}, @@ -2853,7 +2703,6 @@ name = "replicate" version = "0.22.0" requires_python = ">=3.8" summary = "Python client for Replicate" -groups = ["default"] dependencies = [ "httpx<1,>=0.21.0", "packaging", @@ -2870,7 +2719,6 @@ name = "requests" version = "2.31.0" requires_python = ">=3.7" summary = "Python HTTP for Humans." -groups = ["default"] dependencies = [ "certifi>=2017.4.17", "charset-normalizer<4,>=2", @@ -2887,7 +2735,6 @@ name = "rich" version = "13.7.0" requires_python = ">=3.7.0" summary = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" -groups = ["default"] dependencies = [ "markdown-it-py>=2.2.0", "pygments<3.0.0,>=2.13.0", @@ -2902,7 +2749,6 @@ name = "rpds-py" version = "0.18.0" requires_python = ">=3.8" summary = "Python bindings to Rust's persistent data structures (rpds)" -groups = ["default"] files = [ {file = "rpds_py-0.18.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:5b4e7d8d6c9b2e8ee2d55c90b59c707ca59bc30058269b3db7b1f8df5763557e"}, {file = "rpds_py-0.18.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c463ed05f9dfb9baebef68048aed8dcdc94411e4bf3d33a39ba97e271624f8f7"}, @@ -2984,7 +2830,6 @@ name = "rsa" version = "4.9" requires_python = ">=3.6,<4" summary = "Pure-Python RSA implementation" -groups = ["default"] dependencies = [ "pyasn1>=0.1.3", ] @@ -2998,7 +2843,6 @@ name = "s3transfer" version = "0.10.0" requires_python = ">= 3.8" summary = "An Amazon S3 Transfer Manager" -groups = ["default"] dependencies = [ "botocore<2.0a.0,>=1.33.2", ] @@ -3012,7 +2856,6 @@ name = "safetensors" version = "0.4.2" requires_python = ">=3.7" summary = "" -groups = ["default"] files = [ {file = "safetensors-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:69d8bb8384dc2cb5b72c36c4d6980771b293d1a1377b378763f5e37b6bb8d133"}, {file = "safetensors-0.4.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3d420e19fcef96d0067f4de4699682b4bbd85fc8fea0bd45fcd961fdf3e8c82c"}, @@ -3085,7 +2928,6 @@ name = "setuptools" version = "69.1.1" requires_python = ">=3.8" summary = "Easily download, build, install, upgrade, and uninstall Python packages" -groups = ["default"] files = [ {file = "setuptools-69.1.1-py3-none-any.whl", hash = "sha256:02fa291a0471b3a18b2b2481ed902af520c69e8ae0919c13da936542754b4c56"}, {file = "setuptools-69.1.1.tar.gz", hash = "sha256:5c0806c7d9af348e6dd3777b4f4dbb42c7ad85b190104837488eab9a7c945cf8"}, @@ -3096,7 +2938,6 @@ name = "shapely" version = "2.0.3" requires_python = ">=3.7" summary = "Manipulation and analysis of geometric objects" -groups = ["default"] dependencies = [ "numpy<2,>=1.14", ] @@ -3130,7 +2971,6 @@ name = "six" version = "1.16.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" summary = "Python 2 and 3 compatibility utilities" -groups = ["default"] files = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, @@ -3141,7 +2981,6 @@ name = "smart-open" version = "6.4.0" requires_python = ">=3.6,<4.0" summary = "Utils for streaming large files (S3, HDFS, GCS, Azure Blob Storage, gzip, bz2...)" -groups = ["default"] files = [ {file = "smart_open-6.4.0-py3-none-any.whl", hash = "sha256:8d3ef7e6997e8e42dd55c74166ed21e6ac70664caa32dd940b26d54a8f6b4142"}, {file = "smart_open-6.4.0.tar.gz", hash = "sha256:be3c92c246fbe80ebce8fbacb180494a481a77fcdcb7c1aadb2ea5b9c2bee8b9"}, @@ -3152,7 +2991,6 @@ name = "smmap" version = "5.0.1" requires_python = ">=3.7" summary = "A pure Python implementation of a sliding window memory map manager" -groups = ["default"] files = [ {file = "smmap-5.0.1-py3-none-any.whl", hash = "sha256:e6d8668fa5f93e706934a62d7b4db19c8d9eb8cf2adbb75ef1b675aa332b69da"}, {file = "smmap-5.0.1.tar.gz", hash = "sha256:dceeb6c0028fdb6734471eb07c0cd2aae706ccaecab45965ee83f11c8d3b1f62"}, @@ -3163,7 +3001,6 @@ name = "sniffio" version = "1.3.0" requires_python = ">=3.7" summary = "Sniff out which async library your code is running under" -groups = ["default"] files = [ {file = "sniffio-1.3.0-py3-none-any.whl", hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384"}, {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, @@ -3174,7 +3011,6 @@ name = "soupsieve" version = "2.5" requires_python = ">=3.8" summary = "A modern CSS selector implementation for Beautiful Soup." -groups = ["default"] files = [ {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"}, {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"}, @@ -3184,7 +3020,6 @@ files = [ name = "spinners" version = "0.0.24" summary = "Spinners for terminals" -groups = ["default"] files = [ {file = "spinners-0.0.24-py3-none-any.whl", hash = "sha256:2fa30d0b72c9650ad12bbe031c9943b8d441e41b4f5602b0ec977a19f3290e98"}, {file = "spinners-0.0.24.tar.gz", hash = "sha256:1eb6aeb4781d72ab42ed8a01dcf20f3002bf50740d7154d12fb8c9769bf9e27f"}, @@ -3195,9 +3030,8 @@ name = "sqlalchemy" version = "2.0.26" requires_python = ">=3.7" summary = "Database Abstraction Library" -groups = ["default"] dependencies = [ - "greenlet!=0.4.17; platform_machine == \"win32\" or platform_machine == \"WIN32\" or platform_machine == \"AMD64\" or platform_machine == \"amd64\" or platform_machine == \"x86_64\" or platform_machine == \"ppc64le\" or platform_machine == \"aarch64\"", + "greenlet!=0.4.17; platform_machine == \"aarch64\" or (platform_machine == \"ppc64le\" or (platform_machine == \"x86_64\" or (platform_machine == \"amd64\" or (platform_machine == \"AMD64\" or (platform_machine == \"win32\" or platform_machine == \"WIN32\")))))", "typing-extensions>=4.6.0", ] files = [ @@ -3235,7 +3069,6 @@ version = "2.0.26" extras = ["asyncio"] requires_python = ">=3.7" summary = "Database Abstraction Library" -groups = ["default"] dependencies = [ "SQLAlchemy==2.0.26", "greenlet!=0.4.17", @@ -3274,7 +3107,6 @@ name = "storage3" version = "0.7.0" requires_python = ">=3.8,<4.0" summary = "Supabase Storage client for Python." -groups = ["default"] dependencies = [ "httpx<0.26,>=0.24", "python-dateutil<3.0.0,>=2.8.2", @@ -3289,7 +3121,6 @@ files = [ name = "strenum" version = "0.4.15" summary = "An Enum that inherits from str." -groups = ["default"] files = [ {file = "StrEnum-0.4.15-py3-none-any.whl", hash = "sha256:a30cda4af7cc6b5bf52c8055bc4bf4b2b6b14a93b574626da33df53cf7740659"}, {file = "StrEnum-0.4.15.tar.gz", hash = "sha256:878fb5ab705442070e4dd1929bb5e2249511c0bcf2b0eeacf3bcd80875c82eff"}, @@ -3300,7 +3131,6 @@ name = "supabase" version = "2.2.1" requires_python = ">=3.8,<4.0" summary = "Supabase client for Python." -groups = ["default"] dependencies = [ "gotrue<3.0,>=1.3", "httpx<0.25.0,>=0.24.0", @@ -3319,7 +3149,6 @@ name = "supafunc" version = "0.3.3" requires_python = ">=3.8,<4.0" summary = "Library for Supabase Functions" -groups = ["default"] dependencies = [ "httpx<0.26,>=0.24", ] @@ -3333,7 +3162,6 @@ name = "sympy" version = "1.12" requires_python = ">=3.8" summary = "Computer algebra system (CAS) in Python" -groups = ["default"] dependencies = [ "mpmath>=0.19", ] @@ -3347,7 +3175,6 @@ name = "tabulate" version = "0.9.0" requires_python = ">=3.7" summary = "Pretty-print tabular data" -groups = ["default"] files = [ {file = "tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f"}, {file = "tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c"}, @@ -3358,7 +3185,6 @@ name = "tenacity" version = "8.2.3" requires_python = ">=3.7" summary = "Retry code until it succeeds" -groups = ["default"] files = [ {file = "tenacity-8.2.3-py3-none-any.whl", hash = "sha256:ce510e327a630c9e1beaf17d42e6ffacc88185044ad85cf74c0a8887c6a0f88c"}, {file = "tenacity-8.2.3.tar.gz", hash = "sha256:5398ef0d78e63f40007c1fb4c0bff96e1911394d2fa8d194f77619c05ff6cc8a"}, @@ -3369,8 +3195,6 @@ name = "tensorrt-llm" version = "0.7.1" requires_python = ">=3.7, <4" summary = "" -groups = ["default"] -marker = "python_version == \"3.10\"" files = [ {file = "tensorrt-llm-0.7.1.tar.gz", hash = "sha256:10275e2585484f138b43576acddba42ebee073fbb1665fe0954032e421e26e08"}, ] @@ -3380,7 +3204,6 @@ name = "termcolor" version = "2.4.0" requires_python = ">=3.8" summary = "ANSI color formatting for output in terminal" -groups = ["default"] files = [ {file = "termcolor-2.4.0-py3-none-any.whl", hash = "sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63"}, {file = "termcolor-2.4.0.tar.gz", hash = "sha256:aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a"}, @@ -3391,7 +3214,6 @@ name = "tiktoken" version = "0.4.0" requires_python = ">=3.8" summary = "tiktoken is a fast BPE tokeniser for use with OpenAI's models" -groups = ["default"] dependencies = [ "regex>=2022.1.18", "requests>=2.26.0", @@ -3426,7 +3248,6 @@ name = "tokenizers" version = "0.15.2" requires_python = ">=3.7" summary = "" -groups = ["default"] dependencies = [ "huggingface-hub<1.0,>=0.16.4", ] @@ -3502,7 +3323,6 @@ name = "tqdm" version = "4.66.2" requires_python = ">=3.7" summary = "Fast, Extensible Progress Meter" -groups = ["default"] dependencies = [ "colorama; platform_system == \"Windows\"", ] @@ -3516,7 +3336,6 @@ name = "transformers" version = "4.37.0" requires_python = ">=3.8.0" summary = "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow" -groups = ["default"] dependencies = [ "filelock", "huggingface-hub<1.0,>=0.19.3", @@ -3539,7 +3358,6 @@ name = "typing-extensions" version = "4.9.0" requires_python = ">=3.8" summary = "Backported and Experimental Type Hints for Python 3.8+" -groups = ["default"] files = [ {file = "typing_extensions-4.9.0-py3-none-any.whl", hash = "sha256:af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd"}, {file = "typing_extensions-4.9.0.tar.gz", hash = "sha256:23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783"}, @@ -3549,7 +3367,6 @@ files = [ name = "typing-inspect" version = "0.9.0" summary = "Runtime inspection utilities for typing module." -groups = ["default"] dependencies = [ "mypy-extensions>=0.3.0", "typing-extensions>=3.7.4", @@ -3564,7 +3381,6 @@ name = "tzdata" version = "2024.1" requires_python = ">=2" summary = "Provider of IANA time zone data" -groups = ["default"] files = [ {file = "tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252"}, {file = "tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd"}, @@ -3575,7 +3391,6 @@ name = "tzlocal" version = "5.2" requires_python = ">=3.8" summary = "tzinfo object for the local timezone" -groups = ["default"] dependencies = [ "tzdata; platform_system == \"Windows\"", ] @@ -3589,7 +3404,6 @@ name = "ujson" version = "5.9.0" requires_python = ">=3.8" summary = "Ultra fast JSON encoder and decoder for Python" -groups = ["default"] files = [ {file = "ujson-5.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ab71bf27b002eaf7d047c54a68e60230fbd5cd9da60de7ca0aa87d0bccead8fa"}, {file = "ujson-5.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7a365eac66f5aa7a7fdf57e5066ada6226700884fc7dce2ba5483538bc16c8c5"}, @@ -3640,10 +3454,9 @@ files = [ [[package]] name = "unstract-adapters" -version = "0.2.1" +version = "0.2.2" requires_python = "<3.12,>=3.9" summary = "Unstract Adapters" -groups = ["default"] dependencies = [ "SQLAlchemy==2.0.26", "anthropic==0.7.8", @@ -3668,16 +3481,15 @@ dependencies = [ "weaviate-client==3.25.3", ] files = [ - {file = "unstract_adapters-0.2.1-py3-none-any.whl", hash = "sha256:7b48707bc5c634f07d4ea2926f1b2925bcd5c6869e057839ba69c2d62d19941b"}, - {file = "unstract_adapters-0.2.1.tar.gz", hash = "sha256:08646a232185185390a193ad12b16715d1fccc69195d2d28e4f291b5c55f8117"}, + {file = "unstract_adapters-0.2.2-py3-none-any.whl", hash = "sha256:aaf48036f844f4e0295c36596b1772111ab18229246b8677227b983b3c4226e4"}, + {file = "unstract_adapters-0.2.2.tar.gz", hash = "sha256:465d7859a0eb7a905d2c626939f2fed3a501600f832c93160b3e27a559e5ab22"}, ] [[package]] name = "unstract-sdk" -version = "0.11.1" +version = "0.11.2" requires_python = "<3.11.1,>=3.9" summary = "A framework for writing Unstract Tools/Apps" -groups = ["default"] dependencies = [ "filetype==1.2.0", "jsonschema~=4.18.2", @@ -3688,11 +3500,11 @@ dependencies = [ "python-magic~=0.4.27", "tiktoken~=0.4.0", "transformers==4.37.0", - "unstract-adapters~=0.2.1", + "unstract-adapters~=0.2.2", ] files = [ - {file = "unstract_sdk-0.11.1-py3-none-any.whl", hash = "sha256:c969050363874b88d5024623ddfa2f7e9e55726b7c774cb96494835f5c7a5037"}, - {file = "unstract_sdk-0.11.1.tar.gz", hash = "sha256:8440f64851449f5962027e563d30b5fa21a3113ca9e65730b8909abff89995e5"}, + {file = "unstract_sdk-0.11.2-py3-none-any.whl", hash = "sha256:bcab064d87dc2985e5a4340e438a8ef71ef165b3e5078aba0ed2da3bda77f9e0"}, + {file = "unstract_sdk-0.11.2.tar.gz", hash = "sha256:0d6e3e00c9bbc6e569cc79922a2a45a54870c482cfa61287ea89a22ebd7fc606"}, ] [[package]] @@ -3700,7 +3512,6 @@ name = "urllib3" version = "1.26.18" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" summary = "HTTP library with thread-safe connection pooling, file post, and more." -groups = ["default"] files = [ {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, @@ -3711,7 +3522,6 @@ name = "validators" version = "0.22.0" requires_python = ">=3.8" summary = "Python Data Validation for Humans™" -groups = ["default"] files = [ {file = "validators-0.22.0-py3-none-any.whl", hash = "sha256:61cf7d4a62bbae559f2e54aed3b000cea9ff3e2fdbe463f51179b92c58c9585a"}, {file = "validators-0.22.0.tar.gz", hash = "sha256:77b2689b172eeeb600d9605ab86194641670cdb73b60afd577142a9397873370"}, @@ -3721,7 +3531,6 @@ files = [ name = "vecs" version = "0.1.0" summary = "pgvector client" -groups = ["default"] dependencies = [ "pgvector==0.1.*", "sqlalchemy==2.*", @@ -3735,7 +3544,6 @@ name = "weaviate-client" version = "3.25.3" requires_python = ">=3.8" summary = "A python native Weaviate client" -groups = ["default"] dependencies = [ "authlib<2.0.0,>=1.2.1", "requests<3.0.0,>=2.30.0", @@ -3751,7 +3559,6 @@ name = "websockets" version = "11.0.3" requires_python = ">=3.7" summary = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" -groups = ["default"] files = [ {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3ccc8a0c387629aec40f2fc9fdcb4b9d5431954f934da3eaf16cdc94f67dbfac"}, {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d67ac60a307f760c6e65dad586f556dde58e683fab03323221a4e530ead6f74d"}, @@ -3810,7 +3617,6 @@ name = "werkzeug" version = "3.0.1" requires_python = ">=3.8" summary = "The comprehensive WSGI web application library." -groups = ["default"] dependencies = [ "MarkupSafe>=2.1.1", ] @@ -3824,8 +3630,6 @@ name = "win32-setctime" version = "1.1.0" requires_python = ">=3.5" summary = "A small Python utility to set file creation time on Windows" -groups = ["default"] -marker = "sys_platform == \"win32\"" files = [ {file = "win32_setctime-1.1.0-py3-none-any.whl", hash = "sha256:231db239e959c2fe7eb1d7dc129f11172354f98361c4fa2d6d2d7e278baa8aad"}, {file = "win32_setctime-1.1.0.tar.gz", hash = "sha256:15cf5750465118d6929ae4de4eb46e8edae9a5634350c01ba582df868e932cb2"}, @@ -3836,7 +3640,6 @@ name = "wrapt" version = "1.16.0" requires_python = ">=3.6" summary = "Module for decorators, wrappers and monkey patching." -groups = ["default"] files = [ {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, @@ -3877,7 +3680,6 @@ name = "yarl" version = "1.9.4" requires_python = ">=3.7" summary = "Yet another URL library" -groups = ["default"] dependencies = [ "idna>=2.0", "multidict>=4.0", @@ -3937,8 +3739,6 @@ name = "zipp" version = "3.17.0" requires_python = ">=3.8" summary = "Backport of pathlib-compatible object wrapper for zip files" -groups = ["default"] -marker = "python_version < \"3.10\"" files = [ {file = "zipp-3.17.0-py3-none-any.whl", hash = "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31"}, {file = "zipp-3.17.0.tar.gz", hash = "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0"}, From d6d38f96a8af40211f85b9bed458330e7cbe2bef Mon Sep 17 00:00:00 2001 From: gayathrivijayakumar Date: Tue, 27 Feb 2024 21:49:28 +0530 Subject: [PATCH 8/9] Update versions and lock files --- backend/pdm.lock | 73 +++++----- backend/pyproject.toml | 4 +- pdm.lock | 307 ++--------------------------------------- 3 files changed, 51 insertions(+), 333 deletions(-) diff --git a/backend/pdm.lock b/backend/pdm.lock index 3b56dab23d..1459b0207d 100644 --- a/backend/pdm.lock +++ b/backend/pdm.lock @@ -5,7 +5,7 @@ groups = ["default", "deploy", "test"] strategy = ["cross_platform"] lock_version = "4.4" -content_hash = "sha256:9fb9cc53be1e2e98df6da5f2eee39151edd648e25a231d655be7d626b3e25746" +content_hash = "sha256:73a791002f5f7bab1afe9eaee07e8fc946774da3448f9daabedbccfc9be4f202" [[package]] name = "aiobotocore" @@ -486,12 +486,12 @@ files = [ [[package]] name = "cachetools" -version = "5.3.2" +version = "5.3.3" requires_python = ">=3.7" summary = "Extensible memoizing collections and decorators" files = [ - {file = "cachetools-5.3.2-py3-none-any.whl", hash = "sha256:861f35a13a451f94e301ce2bec7cac63e881232ccce7ed67fab9b5df4d3beaa1"}, - {file = "cachetools-5.3.2.tar.gz", hash = "sha256:086ee420196f7b2ab9ca2db2520aca326318b68fe5ba8bc4d49cca91add450f2"}, + {file = "cachetools-5.3.3-py3-none-any.whl", hash = "sha256:0abad1021d3f8325b2fc1d2e9c8b9c9d57b04c3932657a72465447332c24d945"}, + {file = "cachetools-5.3.3.tar.gz", hash = "sha256:ba29e2dfa0b8b556606f097407ed1aa62080ee108ab0dc5ec9d6a723a007d105"}, ] [[package]] @@ -2031,15 +2031,15 @@ files = [ [[package]] name = "marshmallow" -version = "3.20.2" +version = "3.21.0" requires_python = ">=3.8" summary = "A lightweight library for converting complex datatypes to and from native Python datatypes." dependencies = [ "packaging>=17.0", ] files = [ - {file = "marshmallow-3.20.2-py3-none-any.whl", hash = "sha256:c21d4b98fee747c130e6bc8f45c4b3199ea66bc00c12ee1f639f0aeca034d5e9"}, - {file = "marshmallow-3.20.2.tar.gz", hash = "sha256:4c1daff273513dc5eb24b219a8035559dc573c8f322558ef85f5438ddd1236dd"}, + {file = "marshmallow-3.21.0-py3-none-any.whl", hash = "sha256:e7997f83571c7fd476042c2c188e4ee8a78900ca5e74bd9c8097afa56624e9bd"}, + {file = "marshmallow-3.21.0.tar.gz", hash = "sha256:20f53be28c6e374a711a16165fb22a8dc6003e3f7cda1285e3ca777b9193885b"}, ] [[package]] @@ -2290,7 +2290,7 @@ files = [ [[package]] name = "onnxruntime" -version = "1.17.0" +version = "1.17.1" summary = "ONNX Runtime is a runtime accelerator for Machine Learning models" dependencies = [ "coloredlogs", @@ -2301,21 +2301,21 @@ dependencies = [ "sympy", ] files = [ - {file = "onnxruntime-1.17.0-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:d2b22a25a94109cc983443116da8d9805ced0256eb215c5e6bc6dcbabefeab96"}, - {file = "onnxruntime-1.17.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b4c87d83c6f58d1af2675fc99e3dc810f2dbdb844bcefd0c1b7573632661f6fc"}, - {file = "onnxruntime-1.17.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dba55723bf9b835e358f48c98a814b41692c393eb11f51e02ece0625c756b797"}, - {file = "onnxruntime-1.17.0-cp310-cp310-win32.whl", hash = "sha256:ee48422349cc500273beea7607e33c2237909f58468ae1d6cccfc4aecd158565"}, - {file = "onnxruntime-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:f34cc46553359293854e38bdae2ab1be59543aad78a6317e7746d30e311110c3"}, - {file = "onnxruntime-1.17.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:16d26badd092c8c257fa57c458bb600d96dc15282c647ccad0ed7b2732e6c03b"}, - {file = "onnxruntime-1.17.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6f1273bebcdb47ed932d076c85eb9488bc4768fcea16d5f2747ca692fad4f9d3"}, - {file = "onnxruntime-1.17.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cb60fd3c2c1acd684752eb9680e89ae223e9801a9b0e0dc7b28adabe45a2e380"}, - {file = "onnxruntime-1.17.0-cp311-cp311-win32.whl", hash = "sha256:4b038324586bc905299e435f7c00007e6242389c856b82fe9357fdc3b1ef2bdc"}, - {file = "onnxruntime-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:93d39b3fa1ee01f034f098e1c7769a811a21365b4883f05f96c14a2b60c6028b"}, - {file = "onnxruntime-1.17.0-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:5a06ab84eaa350bf64b1d747b33ccf10da64221ed1f38f7287f15eccbec81603"}, - {file = "onnxruntime-1.17.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d3d11db2c8242766212a68d0b139745157da7ce53bd96ba349a5c65e5a02357"}, - {file = "onnxruntime-1.17.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5632077c3ab8b0cd4f74b0af9c4e924be012b1a7bcd7daa845763c6c6bf14b7d"}, - {file = "onnxruntime-1.17.0-cp39-cp39-win32.whl", hash = "sha256:61a12732cba869b3ad2d4e29ab6cb62c7a96f61b8c213f7fcb961ba412b70b37"}, - {file = "onnxruntime-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:461fa0fc7d9c392c352b6cccdedf44d818430f3d6eacd924bb804fdea2dcfd02"}, + {file = "onnxruntime-1.17.1-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:d43ac17ac4fa3c9096ad3c0e5255bb41fd134560212dc124e7f52c3159af5d21"}, + {file = "onnxruntime-1.17.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:55b5e92a4c76a23981c998078b9bf6145e4fb0b016321a8274b1607bd3c6bd35"}, + {file = "onnxruntime-1.17.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ebbcd2bc3a066cf54e6f18c75708eb4d309ef42be54606d22e5bdd78afc5b0d7"}, + {file = "onnxruntime-1.17.1-cp310-cp310-win32.whl", hash = "sha256:5e3716b5eec9092e29a8d17aab55e737480487deabfca7eac3cd3ed952b6ada9"}, + {file = "onnxruntime-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:fbb98cced6782ae1bb799cc74ddcbbeeae8819f3ad1d942a74d88e72b6511337"}, + {file = "onnxruntime-1.17.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:36fd6f87a1ecad87e9c652e42407a50fb305374f9a31d71293eb231caae18784"}, + {file = "onnxruntime-1.17.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:99a8bddeb538edabc524d468edb60ad4722cff8a49d66f4e280c39eace70500b"}, + {file = "onnxruntime-1.17.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fd7fddb4311deb5a7d3390cd8e9b3912d4d963efbe4dfe075edbaf18d01c024e"}, + {file = "onnxruntime-1.17.1-cp311-cp311-win32.whl", hash = "sha256:606a7cbfb6680202b0e4f1890881041ffc3ac6e41760a25763bd9fe146f0b335"}, + {file = "onnxruntime-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:53e4e06c0a541696ebdf96085fd9390304b7b04b748a19e02cf3b35c869a1e76"}, + {file = "onnxruntime-1.17.1-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:7a9539935fb2d78ebf2cf2693cad02d9930b0fb23cdd5cf37a7df813e977674d"}, + {file = "onnxruntime-1.17.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:45c6a384e9d9a29c78afff62032a46a993c477b280247a7e335df09372aedbe9"}, + {file = "onnxruntime-1.17.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4e19f966450f16863a1d6182a685ca33ae04d7772a76132303852d05b95411ea"}, + {file = "onnxruntime-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e2ae712d64a42aac29ed7a40a426cb1e624a08cfe9273dcfe681614aa65b07dc"}, + {file = "onnxruntime-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:f7e9f7fb049825cdddf4a923cfc7c649d84d63c0134315f8e0aa9e0c3004672c"}, ] [[package]] @@ -3677,12 +3677,15 @@ files = [ [[package]] name = "smart-open" -version = "6.4.0" +version = "7.0.1" requires_python = ">=3.6,<4.0" summary = "Utils for streaming large files (S3, HDFS, GCS, Azure Blob Storage, gzip, bz2...)" +dependencies = [ + "wrapt", +] files = [ - {file = "smart_open-6.4.0-py3-none-any.whl", hash = "sha256:8d3ef7e6997e8e42dd55c74166ed21e6ac70664caa32dd940b26d54a8f6b4142"}, - {file = "smart_open-6.4.0.tar.gz", hash = "sha256:be3c92c246fbe80ebce8fbacb180494a481a77fcdcb7c1aadb2ea5b9c2bee8b9"}, + {file = "smart_open-7.0.1-py3-none-any.whl", hash = "sha256:9507e38b43d1fd515c2085b9db2e41b592bb754b0e31395a085eb0d61d2410e5"}, + {file = "smart_open-7.0.1.tar.gz", hash = "sha256:c03d00e49483d8e5375720d4d6c1402107f23584bf96505db0b4e17f92339e56"}, ] [[package]] @@ -3697,12 +3700,12 @@ files = [ [[package]] name = "sniffio" -version = "1.3.0" +version = "1.3.1" requires_python = ">=3.7" summary = "Sniff out which async library your code is running under" files = [ - {file = "sniffio-1.3.0-py3-none-any.whl", hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384"}, - {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, + {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, + {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, ] [[package]] @@ -4167,12 +4170,12 @@ files = [ [[package]] name = "tomlkit" -version = "0.12.3" +version = "0.12.4" requires_python = ">=3.7" summary = "Style preserving TOML library" files = [ - {file = "tomlkit-0.12.3-py3-none-any.whl", hash = "sha256:b0a645a9156dc7cb5d3a1f0d4bab66db287fcb8e0430bdd4664a095ea16414ba"}, - {file = "tomlkit-0.12.3.tar.gz", hash = "sha256:75baf5012d06501f07bee5bf8e801b9f343e7aac5a92581f20f80ce632e6b5a4"}, + {file = "tomlkit-0.12.4-py3-none-any.whl", hash = "sha256:5cd82d48a3dd89dee1f9d64420aa20ae65cfbd00668d6f094d7578a78efbb77b"}, + {file = "tomlkit-0.12.4.tar.gz", hash = "sha256:7ca1cfc12232806517a8515047ba66a19369e71edf2439d0f5824f91032b6cc3"}, ] [[package]] @@ -4231,12 +4234,12 @@ files = [ [[package]] name = "typing-extensions" -version = "4.9.0" +version = "4.10.0" requires_python = ">=3.8" summary = "Backported and Experimental Type Hints for Python 3.8+" files = [ - {file = "typing_extensions-4.9.0-py3-none-any.whl", hash = "sha256:af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd"}, - {file = "typing_extensions-4.9.0.tar.gz", hash = "sha256:23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783"}, + {file = "typing_extensions-4.10.0-py3-none-any.whl", hash = "sha256:69b1a937c3a517342112fb4c6df7e72fc39a38e7891a5730ed4985b5214b5475"}, + {file = "typing_extensions-4.10.0.tar.gz", hash = "sha256:b0abd7c89e8fb96f98db18d86106ff1d90ab692004eb746cf6eda2682f91b3cb"}, ] [[package]] diff --git a/backend/pyproject.toml b/backend/pyproject.toml index 774d9d5dac..9494a1fdaa 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -30,8 +30,8 @@ dependencies = [ "python-socketio==5.9.0", # For log_events "social-auth-app-django==5.3.0", # For OAuth "social-auth-core==4.4.2", # For OAuth - "unstract-sdk~=0.11.1", - "unstract-adapters~=0.2.1", + "unstract-sdk~=0.11.2", + "unstract-adapters~=0.2.2", # ! IMPORTANT! # Indirect local dependencies usually need to be added in their own projects # as: https://pdm-project.org/latest/usage/dependency/#local-dependencies. diff --git a/pdm.lock b/pdm.lock index 812202c3f2..d61e48a253 100644 --- a/pdm.lock +++ b/pdm.lock @@ -3,16 +3,15 @@ [metadata] groups = ["default", "lint", "hook-check-django-migrations"] -strategy = ["cross_platform", "inherit_metadata"] -lock_version = "4.4.1" -content_hash = "sha256:5abced790d2f05a575a9e664b1571b3853c216ac1a6d5a90274a67c5c7de383c" +strategy = ["cross_platform"] +lock_version = "4.4" +content_hash = "sha256:34bd617283cb8620b48d2ff82e83a4721d9464962bb6ccebd4d9f860efaed221" [[package]] name = "absolufy-imports" version = "0.3.1" requires_python = ">=3.6.1" summary = "A tool to automatically replace relative imports with absolute ones." -groups = ["lint"] files = [ {file = "absolufy_imports-0.3.1-py2.py3-none-any.whl", hash = "sha256:49bf7c753a9282006d553ba99217f48f947e3eef09e18a700f8a82f75dc7fc5c"}, {file = "absolufy_imports-0.3.1.tar.gz", hash = "sha256:c90638a6c0b66826d1fb4880ddc20ef7701af34192c94faf40b95d32b59f9793"}, @@ -23,7 +22,6 @@ name = "aiobotocore" version = "2.5.4" requires_python = ">=3.7" summary = "Async client for aws services using botocore and aiohttp" -groups = ["hook-check-django-migrations"] dependencies = [ "aiohttp<4.0.0,>=3.3.1", "aioitertools<1.0.0,>=0.5.1", @@ -41,7 +39,6 @@ version = "2.5.4" extras = ["boto3"] requires_python = ">=3.7" summary = "Async client for aws services using botocore and aiohttp" -groups = ["hook-check-django-migrations"] dependencies = [ "aiobotocore==2.5.4", "boto3<1.28.18,>=1.28.17", @@ -56,7 +53,6 @@ name = "aiohttp" version = "3.9.3" requires_python = ">=3.8" summary = "Async http client/server framework (asyncio)" -groups = ["hook-check-django-migrations"] dependencies = [ "aiosignal>=1.1.2", "async-timeout<5.0,>=4.0; python_version < \"3.11\"", @@ -119,7 +115,6 @@ name = "aioitertools" version = "0.11.0" requires_python = ">=3.6" summary = "itertools and builtins for AsyncIO and mixed iterables" -groups = ["hook-check-django-migrations"] dependencies = [ "typing-extensions>=4.0; python_version < \"3.10\"", ] @@ -133,7 +128,6 @@ name = "aiosignal" version = "1.3.1" requires_python = ">=3.7" summary = "aiosignal: a list of registered asynchronous callbacks" -groups = ["hook-check-django-migrations"] dependencies = [ "frozenlist>=1.1.0", ] @@ -147,7 +141,6 @@ name = "amqp" version = "5.2.0" requires_python = ">=3.6" summary = "Low-level AMQP client for Python (fork of amqplib)." -groups = ["hook-check-django-migrations"] dependencies = [ "vine<6.0.0,>=5.0.0", ] @@ -161,7 +154,6 @@ name = "annotated-types" version = "0.6.0" requires_python = ">=3.8" summary = "Reusable constraint types to use with typing.Annotated" -groups = ["hook-check-django-migrations"] files = [ {file = "annotated_types-0.6.0-py3-none-any.whl", hash = "sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43"}, {file = "annotated_types-0.6.0.tar.gz", hash = "sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d"}, @@ -172,7 +164,6 @@ name = "anthropic" version = "0.7.8" requires_python = ">=3.7" summary = "The official Python library for the anthropic API" -groups = ["hook-check-django-migrations"] dependencies = [ "anyio<5,>=3.5.0", "distro<2,>=1.7.0", @@ -192,7 +183,6 @@ name = "anyio" version = "4.3.0" requires_python = ">=3.8" summary = "High level compatibility layer for multiple asynchronous event loop implementations" -groups = ["hook-check-django-migrations"] dependencies = [ "exceptiongroup>=1.0.2; python_version < \"3.11\"", "idna>=2.8", @@ -208,7 +198,6 @@ files = [ name = "anyscale" version = "0.5.165" summary = "Command Line Interface for Anyscale" -groups = ["hook-check-django-migrations"] dependencies = [ "Click>=7.0", "GitPython", @@ -247,7 +236,6 @@ files = [ name = "appdirs" version = "1.4.4" summary = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -groups = ["hook-check-django-migrations"] files = [ {file = "appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128"}, {file = "appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41"}, @@ -258,7 +246,6 @@ name = "argon2-cffi" version = "23.1.0" requires_python = ">=3.7" summary = "Argon2 for Python" -groups = ["hook-check-django-migrations"] dependencies = [ "argon2-cffi-bindings", ] @@ -272,7 +259,6 @@ name = "argon2-cffi-bindings" version = "21.2.0" requires_python = ">=3.6" summary = "Low-level CFFI bindings for Argon2" -groups = ["hook-check-django-migrations"] dependencies = [ "cffi>=1.0.1", ] @@ -305,7 +291,6 @@ name = "asgiref" version = "3.7.2" requires_python = ">=3.7" summary = "ASGI specs, helper code, and adapters" -groups = ["hook-check-django-migrations"] dependencies = [ "typing-extensions>=4; python_version < \"3.11\"", ] @@ -318,7 +303,6 @@ files = [ name = "asn1crypto" version = "1.5.1" summary = "Fast ASN.1 parser and serializer with definitions for private keys, public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, PKCS#8, PKCS#12, PKCS#5, X.509 and TSP" -groups = ["hook-check-django-migrations"] files = [ {file = "asn1crypto-1.5.1-py2.py3-none-any.whl", hash = "sha256:db4e40728b728508912cbb3d44f19ce188f218e9eba635821bb4b68564f8fd67"}, {file = "asn1crypto-1.5.1.tar.gz", hash = "sha256:13ae38502be632115abf8a24cbe5f4da52e3b5231990aff31123c805306ccb9c"}, @@ -329,8 +313,6 @@ name = "async-timeout" version = "4.0.3" requires_python = ">=3.7" summary = "Timeout context manager for asyncio programs" -groups = ["hook-check-django-migrations"] -marker = "python_version < \"3.12.0\"" files = [ {file = "async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f"}, {file = "async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028"}, @@ -341,7 +323,6 @@ name = "asyncpg" version = "0.29.0" requires_python = ">=3.8.0" summary = "An asyncio PostgreSQL driver" -groups = ["hook-check-django-migrations"] dependencies = [ "async-timeout>=4.0.3; python_version < \"3.12.0\"", ] @@ -378,7 +359,6 @@ name = "attrs" version = "23.2.0" requires_python = ">=3.7" summary = "Classes Without Boilerplate" -groups = ["hook-check-django-migrations"] files = [ {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, @@ -389,7 +369,6 @@ name = "authlib" version = "1.3.0" requires_python = ">=3.8" summary = "The ultimate Python library in building OAuth and OpenID Connect servers and clients." -groups = ["hook-check-django-migrations"] dependencies = [ "cryptography", ] @@ -403,7 +382,6 @@ name = "autopep8" version = "2.0.4" requires_python = ">=3.6" summary = "A tool that automatically formats Python code to conform to the PEP 8 style guide" -groups = ["lint"] dependencies = [ "pycodestyle>=2.10.0", "tomli; python_version < \"3.11\"", @@ -418,7 +396,6 @@ name = "backoff" version = "2.2.1" requires_python = ">=3.7,<4.0" summary = "Function decoration for backoff and retry" -groups = ["hook-check-django-migrations"] files = [ {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, @@ -429,7 +406,6 @@ name = "beautifulsoup4" version = "4.12.3" requires_python = ">=3.6.0" summary = "Screen-scraping library" -groups = ["hook-check-django-migrations"] dependencies = [ "soupsieve>1.2", ] @@ -443,7 +419,6 @@ name = "billiard" version = "4.2.0" requires_python = ">=3.7" summary = "Python multiprocessing fork with improvements and bugfixes" -groups = ["hook-check-django-migrations"] files = [ {file = "billiard-4.2.0-py3-none-any.whl", hash = "sha256:07aa978b308f334ff8282bd4a746e681b3513db5c9a514cbdd810cbbdc19714d"}, {file = "billiard-4.2.0.tar.gz", hash = "sha256:9a3c3184cb275aa17a732f93f65b20c525d3d9f253722d26a82194803ade5a2c"}, @@ -454,7 +429,6 @@ name = "black" version = "23.3.0" requires_python = ">=3.7" summary = "The uncompromising code formatter." -groups = ["lint"] dependencies = [ "click>=8.0.0", "mypy-extensions>=0.4.3", @@ -489,7 +463,6 @@ name = "boto3" version = "1.28.17" requires_python = ">= 3.7" summary = "The AWS SDK for Python" -groups = ["hook-check-django-migrations"] dependencies = [ "botocore<1.32.0,>=1.31.17", "jmespath<2.0.0,>=0.7.1", @@ -505,7 +478,6 @@ name = "botocore" version = "1.31.17" requires_python = ">= 3.7" summary = "Low-level, data-driven core of boto 3." -groups = ["hook-check-django-migrations"] dependencies = [ "jmespath<2.0.0,>=0.7.1", "python-dateutil<3.0.0,>=2.1", @@ -521,7 +493,6 @@ name = "boxfs" version = "0.2.1" requires_python = ">=3.8,<4.0" summary = "Implementation of fsspec for Box file storage" -groups = ["hook-check-django-migrations"] dependencies = [ "boxsdk[jwt]<4.0,>=3.7", "fsspec>=2023.4", @@ -535,7 +506,6 @@ files = [ name = "boxsdk" version = "3.9.2" summary = "Official Box Python SDK" -groups = ["hook-check-django-migrations"] dependencies = [ "attrs>=17.3.0", "python-dateutil", @@ -553,7 +523,6 @@ name = "boxsdk" version = "3.9.2" extras = ["jwt"] summary = "Official Box Python SDK" -groups = ["hook-check-django-migrations"] dependencies = [ "boxsdk==3.9.2", "cryptography>=3", @@ -569,7 +538,6 @@ name = "cachetools" version = "5.3.2" requires_python = ">=3.7" summary = "Extensible memoizing collections and decorators" -groups = ["hook-check-django-migrations"] files = [ {file = "cachetools-5.3.2-py3-none-any.whl", hash = "sha256:861f35a13a451f94e301ce2bec7cac63e881232ccce7ed67fab9b5df4d3beaa1"}, {file = "cachetools-5.3.2.tar.gz", hash = "sha256:086ee420196f7b2ab9ca2db2520aca326318b68fe5ba8bc4d49cca91add450f2"}, @@ -580,7 +548,6 @@ name = "celery" version = "5.3.6" requires_python = ">=3.8" summary = "Distributed Task Queue." -groups = ["hook-check-django-migrations"] dependencies = [ "billiard<5.0,>=4.2.0", "click-didyoumean>=0.3.0", @@ -602,7 +569,6 @@ name = "certifi" version = "2024.2.2" requires_python = ">=3.6" summary = "Python package for providing Mozilla's CA Bundle." -groups = ["hook-check-django-migrations"] files = [ {file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"}, {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"}, @@ -613,7 +579,6 @@ name = "cffi" version = "1.16.0" requires_python = ">=3.8" summary = "Foreign Function Interface for Python calling C code." -groups = ["hook-check-django-migrations", "lint"] dependencies = [ "pycparser", ] @@ -659,7 +624,6 @@ name = "cfgv" version = "3.4.0" requires_python = ">=3.8" summary = "Validate configuration and produce human readable error messages." -groups = ["lint"] files = [ {file = "cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9"}, {file = "cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560"}, @@ -670,7 +634,6 @@ name = "charset-normalizer" version = "3.3.2" requires_python = ">=3.7.0" summary = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." -groups = ["hook-check-django-migrations"] files = [ {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, @@ -726,7 +689,6 @@ name = "click" version = "8.1.7" requires_python = ">=3.7" summary = "Composable command line interface toolkit" -groups = ["hook-check-django-migrations", "lint"] dependencies = [ "colorama; platform_system == \"Windows\"", ] @@ -740,7 +702,6 @@ name = "click-didyoumean" version = "0.3.0" requires_python = ">=3.6.2,<4.0.0" summary = "Enables git-like *did-you-mean* feature in click" -groups = ["hook-check-django-migrations"] dependencies = [ "click>=7", ] @@ -753,7 +714,6 @@ files = [ name = "click-plugins" version = "1.1.1" summary = "An extension module for click to enable registering CLI commands via setuptools entry-points." -groups = ["hook-check-django-migrations"] dependencies = [ "click>=4.0", ] @@ -767,7 +727,6 @@ name = "click-repl" version = "0.3.0" requires_python = ">=3.6" summary = "REPL plugin for Click" -groups = ["hook-check-django-migrations"] dependencies = [ "click>=7.0", "prompt-toolkit>=3.0.36", @@ -782,7 +741,6 @@ name = "colorama" version = "0.4.6" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" summary = "Cross-platform colored terminal text." -groups = ["hook-check-django-migrations", "lint"] files = [ {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, @@ -793,7 +751,6 @@ name = "coloredlogs" version = "15.0.1" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Colored terminal output for Python's logging module" -groups = ["hook-check-django-migrations"] dependencies = [ "humanfriendly>=9.1", ] @@ -806,7 +763,6 @@ files = [ name = "cron-descriptor" version = "1.4.0" summary = "A Python library that converts cron expressions into human readable strings." -groups = ["hook-check-django-migrations"] files = [ {file = "cron_descriptor-1.4.0.tar.gz", hash = "sha256:b6ff4e3a988d7ca04a4ab150248e9f166fb7a5c828a85090e75bcc25aa93b4dd"}, ] @@ -816,7 +772,6 @@ name = "cryptography" version = "41.0.7" requires_python = ">=3.7" summary = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." -groups = ["hook-check-django-migrations", "lint"] dependencies = [ "cffi>=1.12", ] @@ -851,7 +806,6 @@ name = "dataclasses-json" version = "0.6.4" requires_python = ">=3.7,<4.0" summary = "Easily serialize dataclasses to and from JSON." -groups = ["hook-check-django-migrations"] dependencies = [ "marshmallow<4.0.0,>=3.18.0", "typing-inspect<1,>=0.4.0", @@ -866,7 +820,6 @@ name = "defusedxml" version = "0.8.0rc2" requires_python = ">=3.6" summary = "XML bomb protection for Python stdlib modules" -groups = ["hook-check-django-migrations"] files = [ {file = "defusedxml-0.8.0rc2-py2.py3-none-any.whl", hash = "sha256:1c812964311154c3bf4aaf3bc1443b31ee13530b7f255eaaa062c0553c76103d"}, {file = "defusedxml-0.8.0rc2.tar.gz", hash = "sha256:138c7d540a78775182206c7c97fe65b246a2f40b29471e1a2f1b0da76e7a3942"}, @@ -877,7 +830,6 @@ name = "deprecated" version = "1.2.14" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "Python @deprecated decorator to deprecate old python classes, functions or methods." -groups = ["hook-check-django-migrations"] dependencies = [ "wrapt<2,>=1.10", ] @@ -890,7 +842,6 @@ files = [ name = "deprecation" version = "2.1.0" summary = "A library to handle automated deprecations" -groups = ["hook-check-django-migrations"] dependencies = [ "packaging", ] @@ -903,7 +854,6 @@ files = [ name = "distlib" version = "0.3.8" summary = "Distribution utilities" -groups = ["lint"] files = [ {file = "distlib-0.3.8-py2.py3-none-any.whl", hash = "sha256:034db59a0b96f8ca18035f36290806a9a6e6bd9d1ff91e45a7f172eb17e51784"}, {file = "distlib-0.3.8.tar.gz", hash = "sha256:1530ea13e350031b6312d8580ddb6b27a104275a31106523b8f123787f494f64"}, @@ -914,7 +864,6 @@ name = "distro" version = "1.9.0" requires_python = ">=3.6" summary = "Distro - an OS platform information API" -groups = ["hook-check-django-migrations"] files = [ {file = "distro-1.9.0-py3-none-any.whl", hash = "sha256:7bffd925d65168f85027d8da9af6bddab658135b840670a223589bc0c8ef02b2"}, {file = "distro-1.9.0.tar.gz", hash = "sha256:2fa77c6fd8940f116ee1d6b94a2f90b13b5ea8d019b98bc8bafdcabcdd9bdbed"}, @@ -925,7 +874,6 @@ name = "django" version = "4.2.1" requires_python = ">=3.8" summary = "A high-level Python web framework that encourages rapid development and clean, pragmatic design." -groups = ["hook-check-django-migrations"] dependencies = [ "asgiref<4,>=3.6.0", "sqlparse>=0.3.1", @@ -940,7 +888,6 @@ files = [ name = "django-celery-beat" version = "2.5.0" summary = "Database-backed Periodic Tasks." -groups = ["hook-check-django-migrations"] dependencies = [ "Django<5.0,>=2.2", "celery<6.0,>=5.2.3", @@ -959,7 +906,6 @@ name = "django-cors-headers" version = "4.3.1" requires_python = ">=3.8" summary = "django-cors-headers is a Django application for handling the server headers required for Cross-Origin Resource Sharing (CORS)." -groups = ["hook-check-django-migrations"] dependencies = [ "Django>=3.2", "asgiref>=3.6", @@ -974,7 +920,6 @@ name = "django-redis" version = "5.4.0" requires_python = ">=3.6" summary = "Full featured redis cache backend for Django." -groups = ["hook-check-django-migrations"] dependencies = [ "Django>=3.2", "redis!=4.0.0,!=4.0.1,>=3", @@ -988,7 +933,6 @@ files = [ name = "django-tenants" version = "3.5.0" summary = "Tenant support for Django using PostgreSQL schemas." -groups = ["hook-check-django-migrations"] dependencies = [ "Django<4.3,>=2.1", ] @@ -1001,7 +945,6 @@ name = "django-timezone-field" version = "6.1.0" requires_python = ">=3.8,<4.0" summary = "A Django app providing DB, form, and REST framework fields for zoneinfo and pytz timezone objects." -groups = ["hook-check-django-migrations"] dependencies = [ "Django<6.0,>=3.2", ] @@ -1015,7 +958,6 @@ name = "djangorestframework" version = "3.14.0" requires_python = ">=3.6" summary = "Web APIs for Django, made easy." -groups = ["hook-check-django-migrations"] dependencies = [ "django>=3.0", "pytz", @@ -1030,7 +972,6 @@ name = "dnspython" version = "2.6.1" requires_python = ">=3.8" summary = "DNS toolkit" -groups = ["hook-check-django-migrations"] files = [ {file = "dnspython-2.6.1-py3-none-any.whl", hash = "sha256:5ef3b9680161f6fa89daf8ad451b5f1a33b18ae8a1c6778cdf4b43f08c0a6e50"}, {file = "dnspython-2.6.1.tar.gz", hash = "sha256:e8f0f9c23a7b7cb99ded64e6c3a6f3e701d78f50c55e002b839dea7225cff7cc"}, @@ -1041,7 +982,6 @@ name = "docker" version = "6.1.3" requires_python = ">=3.7" summary = "A Python library for the Docker Engine API." -groups = ["hook-check-django-migrations"] dependencies = [ "packaging>=14.0", "pywin32>=304; sys_platform == \"win32\"", @@ -1059,7 +999,6 @@ name = "docutils" version = "0.20.1" requires_python = ">=3.7" summary = "Docutils -- Python Documentation Utilities" -groups = ["lint"] files = [ {file = "docutils-0.20.1-py3-none-any.whl", hash = "sha256:96f387a2c5562db4476f09f13bbab2192e764cac08ebbf3a34a95d9b1e4a59d6"}, {file = "docutils-0.20.1.tar.gz", hash = "sha256:f08a4e276c3a1583a86dce3e34aba3fe04d02bba2dd51ed16106244e8a923e3b"}, @@ -1070,7 +1009,6 @@ name = "drf-yasg" version = "1.21.7" requires_python = ">=3.6" summary = "Automated generation of real Swagger/OpenAPI 2.0 schemas from Django Rest Framework code." -groups = ["hook-check-django-migrations"] dependencies = [ "django>=2.2.16", "djangorestframework>=3.10.3", @@ -1089,7 +1027,6 @@ files = [ name = "dropbox" version = "11.36.2" summary = "Official Dropbox API Client" -groups = ["hook-check-django-migrations"] dependencies = [ "requests>=2.16.2", "six>=1.12.0", @@ -1105,7 +1042,6 @@ name = "dropboxdrivefs" version = "1.3.1" requires_python = ">=3.5" summary = "Dropbox implementation for fsspec module" -groups = ["hook-check-django-migrations"] dependencies = [ "dropbox", "fsspec", @@ -1120,7 +1056,6 @@ name = "environs" version = "9.5.0" requires_python = ">=3.6" summary = "simplified environment variable parsing" -groups = ["hook-check-django-migrations"] dependencies = [ "marshmallow>=3.0.0", "python-dotenv", @@ -1135,8 +1070,6 @@ name = "exceptiongroup" version = "1.2.0" requires_python = ">=3.7" summary = "Backport of PEP 654 (exception groups)" -groups = ["hook-check-django-migrations"] -marker = "python_version < \"3.11\"" files = [ {file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"}, {file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"}, @@ -1147,7 +1080,6 @@ name = "fastembed" version = "0.1.3" requires_python = ">=3.8.0,<3.12" summary = "Fast, light, accurate library built for retrieval embedding generation" -groups = ["hook-check-django-migrations"] dependencies = [ "huggingface-hub==0.19.4", "onnx<2.0,>=1.11", @@ -1166,7 +1098,6 @@ name = "filelock" version = "3.13.1" requires_python = ">=3.8" summary = "A platform independent file lock." -groups = ["hook-check-django-migrations", "lint"] files = [ {file = "filelock-3.13.1-py3-none-any.whl", hash = "sha256:57dbda9b35157b05fb3e58ee91448612eb674172fab98ee235ccb0b5bee19a1c"}, {file = "filelock-3.13.1.tar.gz", hash = "sha256:521f5f56c50f8426f5e03ad3b281b490a87ef15bc6c526f168290f0c7148d44e"}, @@ -1176,7 +1107,6 @@ files = [ name = "filetype" version = "1.2.0" summary = "Infer file type and MIME type of any file/buffer. No external dependencies." -groups = ["hook-check-django-migrations"] files = [ {file = "filetype-1.2.0-py2.py3-none-any.whl", hash = "sha256:7ce71b6880181241cf7ac8697a2f1eb6a8bd9b429f7ad6d27b8db9ba5f1c2d25"}, {file = "filetype-1.2.0.tar.gz", hash = "sha256:66b56cd6474bf41d8c54660347d37afcc3f7d1970648de365c102ef77548aadb"}, @@ -1187,7 +1117,6 @@ name = "flake8" version = "6.0.0" requires_python = ">=3.8.1" summary = "the modular source code checker: pep8 pyflakes and co" -groups = ["lint"] dependencies = [ "mccabe<0.8.0,>=0.7.0", "pycodestyle<2.11.0,>=2.10.0", @@ -1203,7 +1132,6 @@ name = "flake8-pyproject" version = "1.2.3" requires_python = ">= 3.6" summary = "Flake8 plug-in loading the configuration from pyproject.toml" -groups = ["lint"] dependencies = [ "Flake8>=5", "TOMLi; python_version < \"3.11\"", @@ -1216,7 +1144,6 @@ files = [ name = "flatbuffers" version = "23.5.26" summary = "The FlatBuffers serialization format for Python" -groups = ["hook-check-django-migrations"] files = [ {file = "flatbuffers-23.5.26-py2.py3-none-any.whl", hash = "sha256:c0ff356da363087b915fde4b8b45bdda73432fc17cddb3c8157472eab1422ad1"}, {file = "flatbuffers-23.5.26.tar.gz", hash = "sha256:9ea1144cac05ce5d86e2859f431c6cd5e66cd9c78c558317c7955fb8d4c78d89"}, @@ -1226,7 +1153,6 @@ files = [ name = "flupy" version = "1.2.0" summary = "Method chaining built on generators" -groups = ["hook-check-django-migrations"] dependencies = [ "typing-extensions", ] @@ -1239,7 +1165,6 @@ name = "frozenlist" version = "1.4.1" requires_python = ">=3.8" summary = "A list-like structure which implements collections.abc.MutableSequence" -groups = ["hook-check-django-migrations"] files = [ {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"}, {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"}, @@ -1295,7 +1220,6 @@ name = "fsspec" version = "2023.6.0" requires_python = ">=3.8" summary = "File-system specification" -groups = ["hook-check-django-migrations"] files = [ {file = "fsspec-2023.6.0-py3-none-any.whl", hash = "sha256:1cbad1faef3e391fba6dc005ae9b5bdcbf43005c9167ce78c915549c352c869a"}, {file = "fsspec-2023.6.0.tar.gz", hash = "sha256:d0b2f935446169753e7a5c5c55681c54ea91996cc67be93c39a154fb3a2742af"}, @@ -1305,7 +1229,6 @@ files = [ name = "funcy" version = "2.0" summary = "A fancy and practical functional tools" -groups = ["hook-check-django-migrations"] files = [ {file = "funcy-2.0-py2.py3-none-any.whl", hash = "sha256:53df23c8bb1651b12f095df764bfb057935d49537a56de211b098f4c79614bb0"}, {file = "funcy-2.0.tar.gz", hash = "sha256:3963315d59d41c6f30c04bc910e10ab50a3ac4a225868bfa96feed133df075cb"}, @@ -1316,7 +1239,6 @@ name = "gitdb" version = "4.0.11" requires_python = ">=3.7" summary = "Git Object Database" -groups = ["hook-check-django-migrations"] dependencies = [ "smmap<6,>=3.0.1", ] @@ -1330,7 +1252,6 @@ name = "gitpython" version = "3.1.42" requires_python = ">=3.7" summary = "GitPython is a Python library used to interact with Git repositories" -groups = ["hook-check-django-migrations"] dependencies = [ "gitdb<5,>=4.0.1", ] @@ -1344,7 +1265,6 @@ name = "google-ai-generativelanguage" version = "0.4.0" requires_python = ">=3.7" summary = "Google Ai Generativelanguage API client library" -groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.0", "proto-plus<2.0.0dev,>=1.22.3", @@ -1360,7 +1280,6 @@ name = "google-api-core" version = "2.17.1" requires_python = ">=3.7" summary = "Google API client core library" -groups = ["hook-check-django-migrations"] dependencies = [ "google-auth<3.0.dev0,>=2.14.1", "googleapis-common-protos<2.0.dev0,>=1.56.2", @@ -1378,7 +1297,6 @@ version = "2.17.1" extras = ["grpc"] requires_python = ">=3.7" summary = "Google API client core library" -groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core==2.17.1", "grpcio-status<2.0.dev0,>=1.33.2", @@ -1396,7 +1314,6 @@ name = "google-api-python-client" version = "2.118.0" requires_python = ">=3.7" summary = "Google API Client Library for Python" -groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0.dev0,>=1.31.5", "google-auth-httplib2>=0.1.0", @@ -1414,7 +1331,6 @@ name = "google-auth" version = "2.20.0" requires_python = ">=3.6" summary = "Google Authentication Library" -groups = ["hook-check-django-migrations"] dependencies = [ "cachetools<6.0,>=2.0.0", "pyasn1-modules>=0.2.1", @@ -1431,7 +1347,6 @@ files = [ name = "google-auth-httplib2" version = "0.2.0" summary = "Google Authentication Library: httplib2 transport" -groups = ["hook-check-django-migrations"] dependencies = [ "google-auth", "httplib2>=0.19.0", @@ -1446,7 +1361,6 @@ name = "google-cloud-aiplatform" version = "1.40.0" requires_python = ">=3.8" summary = "Vertex AI API client library" -groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,<3.0.0dev,>=1.32.0", "google-cloud-bigquery<4.0.0dev,>=1.15.0", @@ -1467,7 +1381,6 @@ name = "google-cloud-bigquery" version = "3.11.4" requires_python = ">=3.7" summary = "Google BigQuery API client library" -groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5", "google-cloud-core<3.0.0dev,>=1.6.0", @@ -1490,7 +1403,6 @@ name = "google-cloud-core" version = "2.4.1" requires_python = ">=3.7" summary = "Google Cloud API client core library" -groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.6", "google-auth<3.0dev,>=1.25.0", @@ -1505,7 +1417,6 @@ name = "google-cloud-resource-manager" version = "1.12.1" requires_python = ">=3.7" summary = "Google Cloud Resource Manager API client library" -groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.0", "google-auth<3.0.0dev,>=2.14.1", @@ -1523,7 +1434,6 @@ name = "google-cloud-secret-manager" version = "2.16.1" requires_python = ">=3.7" summary = "Google Cloud Secret Manager API client library" -groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.0", "grpc-google-iam-v1<1.0.0dev,>=0.12.4", @@ -1541,7 +1451,6 @@ name = "google-cloud-storage" version = "2.9.0" requires_python = ">=3.7" summary = "Google Cloud Storage API client library" -groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5", "google-auth<3.0dev,>=1.25.0", @@ -1559,7 +1468,6 @@ name = "google-crc32c" version = "1.5.0" requires_python = ">=3.7" summary = "A python wrapper of the C library 'Google CRC32C'" -groups = ["hook-check-django-migrations"] files = [ {file = "google-crc32c-1.5.0.tar.gz", hash = "sha256:89284716bc6a5a415d4eaa11b1726d2d60a0cd12aadf5439828353662ede9dd7"}, {file = "google_crc32c-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:596d1f98fc70232fcb6590c439f43b350cb762fb5d61ce7b0e9db4539654cc13"}, @@ -1615,7 +1523,6 @@ name = "google-generativeai" version = "0.3.1" requires_python = ">=3.9" summary = "Google Generative AI High level API client library and tools." -groups = ["hook-check-django-migrations"] dependencies = [ "google-ai-generativelanguage==0.4.0", "google-api-core", @@ -1632,7 +1539,6 @@ name = "google-resumable-media" version = "2.7.0" requires_python = ">= 3.7" summary = "Utilities for Google Media Downloads and Resumable Uploads" -groups = ["hook-check-django-migrations"] dependencies = [ "google-crc32c<2.0dev,>=1.0", ] @@ -1646,7 +1552,6 @@ name = "googleapis-common-protos" version = "1.62.0" requires_python = ">=3.7" summary = "Common protobufs used in Google APIs" -groups = ["hook-check-django-migrations"] dependencies = [ "protobuf!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<5.0.0.dev0,>=3.19.5", ] @@ -1661,7 +1566,6 @@ version = "1.62.0" extras = ["grpc"] requires_python = ">=3.7" summary = "Common protobufs used in Google APIs" -groups = ["hook-check-django-migrations"] dependencies = [ "googleapis-common-protos==1.62.0", "grpcio<2.0.0.dev0,>=1.44.0", @@ -1676,7 +1580,6 @@ name = "gotrue" version = "2.1.0" requires_python = ">=3.8,<4.0" summary = "Python Client Library for GoTrue" -groups = ["hook-check-django-migrations"] dependencies = [ "httpx<0.26,>=0.23", "pydantic<3,>=1.10", @@ -1691,7 +1594,6 @@ name = "greenlet" version = "3.0.3" requires_python = ">=3.7" summary = "Lightweight in-process concurrent programming" -groups = ["hook-check-django-migrations"] files = [ {file = "greenlet-3.0.3-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:9da2bd29ed9e4f15955dd1595ad7bc9320308a3b766ef7f837e23ad4b4aac31a"}, {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d353cadd6083fdb056bb46ed07e4340b0869c305c8ca54ef9da3421acbdf6881"}, @@ -1729,7 +1631,6 @@ name = "grpc-google-iam-v1" version = "0.13.0" requires_python = ">=3.7" summary = "IAM API client library" -groups = ["hook-check-django-migrations"] dependencies = [ "googleapis-common-protos[grpc]<2.0.0dev,>=1.56.0", "grpcio<2.0.0dev,>=1.44.0", @@ -1745,7 +1646,6 @@ name = "grpcio" version = "1.58.0" requires_python = ">=3.7" summary = "HTTP/2-based RPC framework" -groups = ["hook-check-django-migrations"] files = [ {file = "grpcio-1.58.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:3e6bebf1dfdbeb22afd95650e4f019219fef3ab86d3fca8ebade52e4bc39389a"}, {file = "grpcio-1.58.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:cde11577d5b6fd73a00e6bfa3cf5f428f3f33c2d2878982369b5372bbc4acc60"}, @@ -1782,7 +1682,6 @@ name = "grpcio-status" version = "1.58.0" requires_python = ">=3.6" summary = "Status proto mapping for gRPC" -groups = ["hook-check-django-migrations"] dependencies = [ "googleapis-common-protos>=1.5.5", "grpcio>=1.58.0", @@ -1798,7 +1697,6 @@ name = "grpcio-tools" version = "1.58.0" requires_python = ">=3.7" summary = "Protobuf code generator for gRPC" -groups = ["hook-check-django-migrations"] dependencies = [ "grpcio>=1.58.0", "protobuf<5.0dev,>=4.21.6", @@ -1840,7 +1738,6 @@ name = "h11" version = "0.14.0" requires_python = ">=3.7" summary = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" -groups = ["hook-check-django-migrations"] files = [ {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, @@ -1851,7 +1748,6 @@ name = "h2" version = "4.1.0" requires_python = ">=3.6.1" summary = "HTTP/2 State-Machine based protocol implementation" -groups = ["hook-check-django-migrations"] dependencies = [ "hpack<5,>=4.0", "hyperframe<7,>=6.0", @@ -1866,7 +1762,6 @@ name = "halo" version = "0.0.31" requires_python = ">=3.4" summary = "Beautiful terminal spinners in Python" -groups = ["hook-check-django-migrations"] dependencies = [ "colorama>=0.3.9", "log-symbols>=0.0.14", @@ -1883,7 +1778,6 @@ name = "hpack" version = "4.0.0" requires_python = ">=3.6.1" summary = "Pure-Python HPACK header compression" -groups = ["hook-check-django-migrations"] files = [ {file = "hpack-4.0.0-py3-none-any.whl", hash = "sha256:84a076fad3dc9a9f8063ccb8041ef100867b1878b25ef0ee63847a5d53818a6c"}, {file = "hpack-4.0.0.tar.gz", hash = "sha256:fc41de0c63e687ebffde81187a948221294896f6bdc0ae2312708df339430095"}, @@ -1894,7 +1788,6 @@ name = "httpcore" version = "0.17.3" requires_python = ">=3.7" summary = "A minimal low-level HTTP client." -groups = ["hook-check-django-migrations"] dependencies = [ "anyio<5.0,>=3.0", "certifi", @@ -1911,7 +1804,6 @@ name = "httplib2" version = "0.22.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "A comprehensive HTTP client library." -groups = ["hook-check-django-migrations"] dependencies = [ "pyparsing!=3.0.0,!=3.0.1,!=3.0.2,!=3.0.3,<4,>=2.4.2; python_version > \"3.0\"", ] @@ -1925,7 +1817,6 @@ name = "httpx" version = "0.24.1" requires_python = ">=3.7" summary = "The next generation HTTP client." -groups = ["hook-check-django-migrations"] dependencies = [ "certifi", "httpcore<0.18.0,>=0.15.0", @@ -1943,7 +1834,6 @@ version = "0.24.1" extras = ["http2"] requires_python = ">=3.7" summary = "The next generation HTTP client." -groups = ["hook-check-django-migrations"] dependencies = [ "h2<5,>=3", "httpx==0.24.1", @@ -1957,7 +1847,6 @@ files = [ name = "huggingface" version = "0.0.1" summary = "HuggingFace is a single library comprising the main HuggingFace libraries." -groups = ["hook-check-django-migrations"] files = [ {file = "huggingface-0.0.1-py3-none-any.whl", hash = "sha256:98a3409537557cd2fd768997ef94cab08529f86c5e106e6d54bbabdd5ee03910"}, {file = "huggingface-0.0.1.tar.gz", hash = "sha256:0a2f228fd956801d68b7c6a8bef478dfa60c4b7d7eba572ea7de39ecf87e505a"}, @@ -1968,7 +1857,6 @@ name = "huggingface-hub" version = "0.19.4" requires_python = ">=3.8.0" summary = "Client library to download and publish models, datasets and other repos on the huggingface.co hub" -groups = ["hook-check-django-migrations"] dependencies = [ "filelock", "fsspec>=2023.5.0", @@ -1988,7 +1876,6 @@ name = "humanfriendly" version = "10.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Human friendly output for text interfaces using Python" -groups = ["hook-check-django-migrations"] dependencies = [ "pyreadline3; sys_platform == \"win32\" and python_version >= \"3.8\"", ] @@ -2002,7 +1889,6 @@ name = "humanize" version = "4.9.0" requires_python = ">=3.8" summary = "Python humanize utilities" -groups = ["hook-check-django-migrations"] files = [ {file = "humanize-4.9.0-py3-none-any.whl", hash = "sha256:ce284a76d5b1377fd8836733b983bfb0b76f1aa1c090de2566fcf008d7f6ab16"}, {file = "humanize-4.9.0.tar.gz", hash = "sha256:582a265c931c683a7e9b8ed9559089dea7edcf6cc95be39a3cbc2c5d5ac2bcfa"}, @@ -2013,7 +1899,6 @@ name = "hyperframe" version = "6.0.1" requires_python = ">=3.6.1" summary = "HTTP/2 framing layer for Python" -groups = ["hook-check-django-migrations"] files = [ {file = "hyperframe-6.0.1-py3-none-any.whl", hash = "sha256:0ec6bafd80d8ad2195c4f03aacba3a8265e57bc4cff261e802bf39970ed02a15"}, {file = "hyperframe-6.0.1.tar.gz", hash = "sha256:ae510046231dc8e9ecb1a6586f63d2347bf4c8905914aa84ba585ae85f28a914"}, @@ -2024,7 +1909,6 @@ name = "identify" version = "2.5.35" requires_python = ">=3.8" summary = "File identification library for Python" -groups = ["lint"] files = [ {file = "identify-2.5.35-py2.py3-none-any.whl", hash = "sha256:c4de0081837b211594f8e877a6b4fad7ca32bbfc1a9307fdd61c28bfe923f13e"}, {file = "identify-2.5.35.tar.gz", hash = "sha256:10a7ca245cfcd756a554a7288159f72ff105ad233c7c4b9c6f0f4d108f5f6791"}, @@ -2035,7 +1919,6 @@ name = "idna" version = "3.6" requires_python = ">=3.5" summary = "Internationalized Domain Names in Applications (IDNA)" -groups = ["hook-check-django-migrations"] files = [ {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"}, {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, @@ -2046,7 +1929,6 @@ name = "inflection" version = "0.5.1" requires_python = ">=3.5" summary = "A port of Ruby on Rails inflector to Python" -groups = ["hook-check-django-migrations"] files = [ {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, @@ -2057,7 +1939,6 @@ name = "isort" version = "5.12.0" requires_python = ">=3.8.0" summary = "A Python utility / library to sort Python imports." -groups = ["lint"] files = [ {file = "isort-5.12.0-py3-none-any.whl", hash = "sha256:f84c2818376e66cf843d497486ea8fed8700b340f308f076c6fb1229dff318b6"}, {file = "isort-5.12.0.tar.gz", hash = "sha256:8bef7dde241278824a6d83f44a544709b065191b95b6e50894bdc722fcba0504"}, @@ -2068,7 +1949,6 @@ name = "jmespath" version = "1.0.1" requires_python = ">=3.7" summary = "JSON Matching Expressions" -groups = ["hook-check-django-migrations"] files = [ {file = "jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980"}, {file = "jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe"}, @@ -2079,7 +1959,6 @@ name = "joblib" version = "1.3.2" requires_python = ">=3.7" summary = "Lightweight pipelining with Python functions" -groups = ["hook-check-django-migrations"] files = [ {file = "joblib-1.3.2-py3-none-any.whl", hash = "sha256:ef4331c65f239985f3f2220ecc87db222f08fd22097a3dd5698f693875f8cbb9"}, {file = "joblib-1.3.2.tar.gz", hash = "sha256:92f865e621e17784e7955080b6d042489e3b8e294949cc44c6eac304f59772b1"}, @@ -2090,7 +1969,6 @@ name = "jsonpatch" version = "1.33" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" summary = "Apply JSON-Patches (RFC 6902) " -groups = ["hook-check-django-migrations"] dependencies = [ "jsonpointer>=1.9", ] @@ -2104,7 +1982,6 @@ name = "jsonpointer" version = "2.4" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" summary = "Identify specific nodes in a JSON document (RFC 6901) " -groups = ["hook-check-django-migrations"] files = [ {file = "jsonpointer-2.4-py2.py3-none-any.whl", hash = "sha256:15d51bba20eea3165644553647711d150376234112651b4f1811022aecad7d7a"}, {file = "jsonpointer-2.4.tar.gz", hash = "sha256:585cee82b70211fa9e6043b7bb89db6e1aa49524340dde8ad6b63206ea689d88"}, @@ -2115,7 +1992,6 @@ name = "jsonschema" version = "4.18.6" requires_python = ">=3.8" summary = "An implementation of JSON Schema validation for Python" -groups = ["hook-check-django-migrations"] dependencies = [ "attrs>=22.2.0", "jsonschema-specifications>=2023.03.6", @@ -2132,7 +2008,6 @@ name = "jsonschema-specifications" version = "2023.12.1" requires_python = ">=3.8" summary = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" -groups = ["hook-check-django-migrations"] dependencies = [ "referencing>=0.31.0", ] @@ -2146,7 +2021,6 @@ name = "kombu" version = "5.3.5" requires_python = ">=3.8" summary = "Messaging library for Python." -groups = ["hook-check-django-migrations"] dependencies = [ "amqp<6.0.0,>=5.1.1", "typing-extensions; python_version < \"3.10\"", @@ -2162,7 +2036,6 @@ name = "llama-index" version = "0.9.28" requires_python = ">=3.8.1,<4.0" summary = "Interface between LLMs and your data" -groups = ["hook-check-django-migrations"] dependencies = [ "SQLAlchemy[asyncio]>=1.4.49", "aiohttp<4.0.0,>=3.8.6", @@ -2193,7 +2066,6 @@ files = [ name = "log-symbols" version = "0.0.14" summary = "Colored symbols for various log levels for Python" -groups = ["hook-check-django-migrations"] dependencies = [ "colorama>=0.3.9", ] @@ -2207,7 +2079,6 @@ name = "loguru" version = "0.7.2" requires_python = ">=3.5" summary = "Python logging made (stupidly) simple" -groups = ["hook-check-django-migrations"] dependencies = [ "colorama>=0.3.4; sys_platform == \"win32\"", "win32-setctime>=1.0.0; sys_platform == \"win32\"", @@ -2222,7 +2093,6 @@ name = "markdown-it-py" version = "3.0.0" requires_python = ">=3.8" summary = "Python port of markdown-it. Markdown parsing, done right!" -groups = ["hook-check-django-migrations"] dependencies = [ "mdurl~=0.1", ] @@ -2236,7 +2106,6 @@ name = "marshmallow" version = "3.20.2" requires_python = ">=3.8" summary = "A lightweight library for converting complex datatypes to and from native Python datatypes." -groups = ["hook-check-django-migrations"] dependencies = [ "packaging>=17.0", ] @@ -2250,7 +2119,6 @@ name = "mccabe" version = "0.7.0" requires_python = ">=3.6" summary = "McCabe checker, plugin for flake8" -groups = ["lint"] files = [ {file = "mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e"}, {file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"}, @@ -2261,7 +2129,6 @@ name = "mdurl" version = "0.1.2" requires_python = ">=3.7" summary = "Markdown URL utilities" -groups = ["hook-check-django-migrations"] files = [ {file = "mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8"}, {file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"}, @@ -2271,7 +2138,6 @@ files = [ name = "minio" version = "7.2.4" summary = "MinIO Python SDK for Amazon S3 Compatible Cloud Storage" -groups = ["hook-check-django-migrations"] dependencies = [ "argon2-cffi", "certifi", @@ -2289,7 +2155,6 @@ name = "mistralai" version = "0.0.8" requires_python = ">=3.8,<4.0" summary = "" -groups = ["hook-check-django-migrations"] dependencies = [ "aiohttp<4.0.0,>=3.9.1", "backoff<3.0.0,>=2.2.1", @@ -2306,7 +2171,6 @@ files = [ name = "mpmath" version = "1.3.0" summary = "Python library for arbitrary-precision floating-point arithmetic" -groups = ["hook-check-django-migrations"] files = [ {file = "mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c"}, {file = "mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f"}, @@ -2317,7 +2181,6 @@ name = "multidict" version = "6.0.5" requires_python = ">=3.7" summary = "multidict implementation" -groups = ["hook-check-django-migrations"] files = [ {file = "multidict-6.0.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9"}, {file = "multidict-6.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604"}, @@ -2373,7 +2236,6 @@ name = "mypy" version = "1.2.0" requires_python = ">=3.7" summary = "Optional static typing for Python" -groups = ["lint"] dependencies = [ "mypy-extensions>=1.0.0", "tomli>=1.1.0; python_version < \"3.11\"", @@ -2404,7 +2266,6 @@ name = "mypy-extensions" version = "1.0.0" requires_python = ">=3.5" summary = "Type system extensions for programs checked with the mypy type checker." -groups = ["hook-check-django-migrations", "lint"] files = [ {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, @@ -2415,7 +2276,6 @@ name = "nest-asyncio" version = "1.6.0" requires_python = ">=3.5" summary = "Patch asyncio to allow nested event loops" -groups = ["hook-check-django-migrations"] files = [ {file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"}, {file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"}, @@ -2426,7 +2286,6 @@ name = "networkx" version = "3.2.1" requires_python = ">=3.9" summary = "Python package for creating and manipulating graphs and networks" -groups = ["hook-check-django-migrations"] files = [ {file = "networkx-3.2.1-py3-none-any.whl", hash = "sha256:f18c69adc97877c42332c170849c96cefa91881c99a7cb3e95b7c659ebdc1ec2"}, {file = "networkx-3.2.1.tar.gz", hash = "sha256:9f1bb5cf3409bf324e0a722c20bdb4c20ee39bf1c30ce8ae499c8502b0b5e0c6"}, @@ -2437,7 +2296,6 @@ name = "nltk" version = "3.8.1" requires_python = ">=3.7" summary = "Natural Language Toolkit" -groups = ["hook-check-django-migrations"] dependencies = [ "click", "joblib", @@ -2454,7 +2312,6 @@ name = "nodeenv" version = "1.8.0" requires_python = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*" summary = "Node.js virtual environment builder" -groups = ["lint"] dependencies = [ "setuptools", ] @@ -2468,7 +2325,6 @@ name = "numpy" version = "1.26.4" requires_python = ">=3.9" summary = "Fundamental package for array computing in Python" -groups = ["hook-check-django-migrations"] files = [ {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, @@ -2504,7 +2360,6 @@ files = [ name = "oauth2client" version = "4.1.3" summary = "OAuth 2.0 client library" -groups = ["hook-check-django-migrations"] dependencies = [ "httplib2>=0.9.1", "pyasn1-modules>=0.0.5", @@ -2522,7 +2377,6 @@ name = "oauthlib" version = "3.2.2" requires_python = ">=3.6" summary = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic" -groups = ["hook-check-django-migrations"] files = [ {file = "oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca"}, {file = "oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918"}, @@ -2533,7 +2387,6 @@ name = "onnx" version = "1.15.0" requires_python = ">=3.8" summary = "Open Neural Network Exchange" -groups = ["hook-check-django-migrations"] dependencies = [ "numpy", "protobuf>=3.20.2", @@ -2564,7 +2417,6 @@ files = [ name = "onnxruntime" version = "1.17.0" summary = "ONNX Runtime is a runtime accelerator for Machine Learning models" -groups = ["hook-check-django-migrations"] dependencies = [ "coloredlogs", "flatbuffers", @@ -2596,7 +2448,6 @@ name = "openai" version = "1.3.9" requires_python = ">=3.7.1" summary = "The official Python library for the openai API" -groups = ["hook-check-django-migrations"] dependencies = [ "anyio<5,>=3.5.0", "distro<2,>=1.7.0", @@ -2616,7 +2467,6 @@ name = "orjson" version = "3.9.14" requires_python = ">=3.8" summary = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" -groups = ["hook-check-django-migrations"] files = [ {file = "orjson-3.9.14-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:793f6c9448ab6eb7d4974b4dde3f230345c08ca6c7995330fbceeb43a5c8aa5e"}, {file = "orjson-3.9.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a6bc7928d161840096adc956703494b5c0193ede887346f028216cac0af87500"}, @@ -2656,7 +2506,6 @@ name = "packaging" version = "23.2" requires_python = ">=3.7" summary = "Core utilities for Python packages" -groups = ["hook-check-django-migrations", "lint"] files = [ {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, @@ -2667,7 +2516,6 @@ name = "pandas" version = "2.1.4" requires_python = ">=3.9" summary = "Powerful data structures for data analysis, time series, and statistics" -groups = ["hook-check-django-migrations"] dependencies = [ "numpy<2,>=1.22.4; python_version < \"3.11\"", "numpy<2,>=1.23.2; python_version == \"3.11\"", @@ -2702,7 +2550,6 @@ name = "pathspec" version = "0.12.1" requires_python = ">=3.8" summary = "Utility library for gitignore style pattern matching of file paths." -groups = ["hook-check-django-migrations", "lint"] files = [ {file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"}, {file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"}, @@ -2713,7 +2560,6 @@ name = "pdfminer-six" version = "20221105" requires_python = ">=3.6" summary = "PDF parser and analyzer" -groups = ["hook-check-django-migrations"] dependencies = [ "charset-normalizer>=2.0.0", "cryptography>=36.0.0", @@ -2728,7 +2574,6 @@ name = "pdfplumber" version = "0.10.3" requires_python = ">=3.8" summary = "Plumb a PDF for detailed information about each char, rectangle, and line." -groups = ["hook-check-django-migrations"] dependencies = [ "Pillow>=9.1", "pdfminer-six==20221105", @@ -2744,7 +2589,6 @@ name = "pgvector" version = "0.1.8" requires_python = ">=3.6" summary = "pgvector support for Python" -groups = ["hook-check-django-migrations"] dependencies = [ "numpy", ] @@ -2757,7 +2601,6 @@ name = "pillow" version = "10.2.0" requires_python = ">=3.8" summary = "Python Imaging Library (Fork)" -groups = ["hook-check-django-migrations"] files = [ {file = "pillow-10.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:7823bdd049099efa16e4246bdf15e5a13dbb18a51b68fa06d6c1d4d8b99a796e"}, {file = "pillow-10.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:83b2021f2ade7d1ed556bc50a399127d7fb245e725aa0113ebd05cfe88aaf588"}, @@ -2813,7 +2656,6 @@ name = "pinecone-client" version = "2.2.4" requires_python = ">=3.8" summary = "Pinecone client and SDK" -groups = ["hook-check-django-migrations"] dependencies = [ "dnspython>=2.0.0", "loguru>=0.5.0", @@ -2835,7 +2677,6 @@ name = "platformdirs" version = "3.11.0" requires_python = ">=3.7" summary = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." -groups = ["hook-check-django-migrations", "lint"] files = [ {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, @@ -2845,7 +2686,6 @@ files = [ name = "ply" version = "3.11" summary = "Python Lex & Yacc" -groups = ["hook-check-django-migrations"] files = [ {file = "ply-3.11-py2.py3-none-any.whl", hash = "sha256:096f9b8350b65ebd2fd1346b12452efe5b9607f7482813ffca50c22722a807ce"}, {file = "ply-3.11.tar.gz", hash = "sha256:00c7c1aaa88358b9c765b6d3000c6eec0ba42abca5351b095321aef446081da3"}, @@ -2856,7 +2696,6 @@ name = "portalocker" version = "2.8.2" requires_python = ">=3.8" summary = "Wraps the portalocker recipe for easy usage" -groups = ["hook-check-django-migrations"] dependencies = [ "pywin32>=226; platform_system == \"Windows\"", ] @@ -2870,7 +2709,6 @@ name = "postgrest" version = "0.13.2" requires_python = ">=3.8,<4.0" summary = "PostgREST client for Python. This library provides an ORM interface to PostgREST." -groups = ["hook-check-django-migrations"] dependencies = [ "deprecation<3.0.0,>=2.1.0", "httpx<0.26,>=0.24", @@ -2887,7 +2725,6 @@ name = "pre-commit" version = "3.3.3" requires_python = ">=3.8" summary = "A framework for managing and maintaining multi-language pre-commit hooks." -groups = ["lint"] dependencies = [ "cfgv>=2.0.0", "identify>=1.0.0", @@ -2905,7 +2742,6 @@ name = "prompt-toolkit" version = "3.0.43" requires_python = ">=3.7.0" summary = "Library for building powerful interactive command lines in Python" -groups = ["hook-check-django-migrations"] dependencies = [ "wcwidth", ] @@ -2919,7 +2755,6 @@ name = "proto-plus" version = "1.23.0" requires_python = ">=3.6" summary = "Beautiful, Pythonic protocol buffers." -groups = ["hook-check-django-migrations"] dependencies = [ "protobuf<5.0.0dev,>=3.19.0", ] @@ -2933,7 +2768,6 @@ name = "protobuf" version = "4.25.3" requires_python = ">=3.8" summary = "" -groups = ["hook-check-django-migrations"] files = [ {file = "protobuf-4.25.3-cp310-abi3-win32.whl", hash = "sha256:d4198877797a83cbfe9bffa3803602bbe1625dc30d8a097365dbc762e5790faa"}, {file = "protobuf-4.25.3-cp310-abi3-win_amd64.whl", hash = "sha256:209ba4cc916bab46f64e56b85b090607a676f66b473e6b762e6f1d9d591eb2e8"}, @@ -2951,7 +2785,6 @@ name = "psycopg2-binary" version = "2.9.9" requires_python = ">=3.7" summary = "psycopg2 - Python-PostgreSQL Database Adapter" -groups = ["hook-check-django-migrations"] files = [ {file = "psycopg2-binary-2.9.9.tar.gz", hash = "sha256:7f01846810177d829c7692f1f5ada8096762d9172af1b1a28d4ab5b77c923c1c"}, {file = "psycopg2_binary-2.9.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c2470da5418b76232f02a2fcd2229537bb2d5a7096674ce61859c3229f2eb202"}, @@ -2997,7 +2830,6 @@ name = "pyarrow" version = "15.0.0" requires_python = ">=3.8" summary = "Python library for Apache Arrow" -groups = ["hook-check-django-migrations"] dependencies = [ "numpy<2,>=1.16.6", ] @@ -3031,7 +2863,6 @@ name = "pyasn1" version = "0.5.1" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" summary = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" -groups = ["hook-check-django-migrations"] files = [ {file = "pyasn1-0.5.1-py2.py3-none-any.whl", hash = "sha256:4439847c58d40b1d0a573d07e3856e95333f1976294494c325775aeca506eb58"}, {file = "pyasn1-0.5.1.tar.gz", hash = "sha256:6d391a96e59b23130a5cfa74d6fd7f388dbbe26cc8f1edf39fdddf08d9d6676c"}, @@ -3042,7 +2873,6 @@ name = "pyasn1-modules" version = "0.3.0" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" summary = "A collection of ASN.1-based protocols modules" -groups = ["hook-check-django-migrations"] dependencies = [ "pyasn1<0.6.0,>=0.4.6", ] @@ -3056,7 +2886,6 @@ name = "pycodestyle" version = "2.10.0" requires_python = ">=3.6" summary = "Python style guide checker" -groups = ["lint"] files = [ {file = "pycodestyle-2.10.0-py2.py3-none-any.whl", hash = "sha256:8a4eaf0d0495c7395bdab3589ac2db602797d76207242c17d470186815706610"}, {file = "pycodestyle-2.10.0.tar.gz", hash = "sha256:347187bdb476329d98f695c213d7295a846d1152ff4fe9bacb8a9590b8ee7053"}, @@ -3067,7 +2896,6 @@ name = "pycparser" version = "2.21" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "C parser in Python" -groups = ["hook-check-django-migrations", "lint"] files = [ {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, @@ -3078,7 +2906,6 @@ name = "pycryptodome" version = "3.20.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Cryptographic library for Python" -groups = ["hook-check-django-migrations"] files = [ {file = "pycryptodome-3.20.0-cp35-abi3-macosx_10_9_universal2.whl", hash = "sha256:ac1c7c0624a862f2e53438a15c9259d1655325fc2ec4392e66dc46cdae24d044"}, {file = "pycryptodome-3.20.0-cp35-abi3-macosx_10_9_x86_64.whl", hash = "sha256:76658f0d942051d12a9bd08ca1b6b34fd762a8ee4240984f7c06ddfb55eaf15a"}, @@ -3108,7 +2935,6 @@ name = "pydantic" version = "2.6.1" requires_python = ">=3.8" summary = "Data validation using Python type hints" -groups = ["hook-check-django-migrations"] dependencies = [ "annotated-types>=0.4.0", "pydantic-core==2.16.2", @@ -3124,7 +2950,6 @@ name = "pydantic-core" version = "2.16.2" requires_python = ">=3.8" summary = "" -groups = ["hook-check-django-migrations"] dependencies = [ "typing-extensions!=4.7.0,>=4.6.0", ] @@ -3190,7 +3015,6 @@ name = "pydrive2" version = "1.15.4" requires_python = ">=3.7" summary = "Google Drive API made easy. Maintained fork of PyDrive." -groups = ["hook-check-django-migrations"] dependencies = [ "PyYAML>=3.0", "google-api-python-client>=1.12.5", @@ -3208,7 +3032,6 @@ version = "1.15.4" extras = ["fsspec"] requires_python = ">=3.7" summary = "Google Drive API made easy. Maintained fork of PyDrive." -groups = ["hook-check-django-migrations"] dependencies = [ "PyDrive2==1.15.4", "appdirs>=1.4.3", @@ -3226,7 +3049,6 @@ name = "pyflakes" version = "3.0.1" requires_python = ">=3.6" summary = "passive checker of Python programs" -groups = ["lint"] files = [ {file = "pyflakes-3.0.1-py2.py3-none-any.whl", hash = "sha256:ec55bf7fe21fff7f1ad2f7da62363d749e2a470500eab1b555334b67aa1ef8cf"}, {file = "pyflakes-3.0.1.tar.gz", hash = "sha256:ec8b276a6b60bd80defed25add7e439881c19e64850afd9b346283d4165fd0fd"}, @@ -3237,7 +3059,6 @@ name = "pygments" version = "2.17.2" requires_python = ">=3.7" summary = "Pygments is a syntax highlighting package written in Python." -groups = ["hook-check-django-migrations"] files = [ {file = "pygments-2.17.2-py3-none-any.whl", hash = "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c"}, {file = "pygments-2.17.2.tar.gz", hash = "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367"}, @@ -3248,7 +3069,6 @@ name = "pyjwt" version = "2.8.0" requires_python = ">=3.7" summary = "JSON Web Token implementation in Python" -groups = ["hook-check-django-migrations"] files = [ {file = "PyJWT-2.8.0-py3-none-any.whl", hash = "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320"}, {file = "PyJWT-2.8.0.tar.gz", hash = "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de"}, @@ -3259,7 +3079,6 @@ name = "pymilvus" version = "2.3.4" requires_python = ">=3.7" summary = "Python Sdk for Milvus" -groups = ["hook-check-django-migrations"] dependencies = [ "environs<=9.5.0", "grpcio<=1.58.0,>=1.49.1", @@ -3279,7 +3098,6 @@ files = [ name = "pymssql" version = "2.2.8" summary = "DB-API interface to Microsoft SQL Server for Python. (new Cython-based version)" -groups = ["hook-check-django-migrations"] files = [ {file = "pymssql-2.2.8-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:30bfd7b8edef78097ccd3f52ac3f3a5c3cf0019f8a280f306cacbbb165caaf63"}, {file = "pymssql-2.2.8-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:049f2e3de919e8e02504780a21ebbf235e21ca8ed5c7538c5b6e705aa6c43d8c"}, @@ -3304,7 +3122,6 @@ name = "pymysql" version = "1.1.0" requires_python = ">=3.7" summary = "Pure Python MySQL Driver" -groups = ["hook-check-django-migrations"] files = [ {file = "PyMySQL-1.1.0-py3-none-any.whl", hash = "sha256:8969ec6d763c856f7073c4c64662882675702efcb114b4bcbb955aea3a069fa7"}, {file = "PyMySQL-1.1.0.tar.gz", hash = "sha256:4f13a7df8bf36a51e81dd9f3605fede45a4878fe02f9236349fd82a3f0612f96"}, @@ -3315,7 +3132,6 @@ name = "pyopenssl" version = "23.3.0" requires_python = ">=3.7" summary = "Python wrapper module around the OpenSSL library" -groups = ["hook-check-django-migrations"] dependencies = [ "cryptography<42,>=41.0.5", ] @@ -3329,8 +3145,6 @@ name = "pyparsing" version = "3.1.1" requires_python = ">=3.6.8" summary = "pyparsing module - Classes and methods to define and execute parsing grammars" -groups = ["hook-check-django-migrations"] -marker = "python_version > \"3.0\"" files = [ {file = "pyparsing-3.1.1-py3-none-any.whl", hash = "sha256:32c7c0b711493c72ff18a981d24f28aaf9c1fb7ed5e9667c9e84e3db623bdbfb"}, {file = "pyparsing-3.1.1.tar.gz", hash = "sha256:ede28a1a32462f5a9705e07aea48001a08f7cf81a021585011deba701581a0db"}, @@ -3341,7 +3155,6 @@ name = "pypdfium2" version = "4.27.0" requires_python = ">= 3.6" summary = "Python bindings to PDFium" -groups = ["hook-check-django-migrations"] files = [ {file = "pypdfium2-4.27.0-py3-none-macosx_10_13_x86_64.whl", hash = "sha256:2938f423c79b49df9057993f747e537a05b71bc2c847801ac743f27c3220d363"}, {file = "pypdfium2-4.27.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:f396941e070bf6c245890f2ffb2cb04f39585e3cda93ebb1648f1ed0e99b921f"}, @@ -3362,8 +3175,6 @@ files = [ name = "pyreadline3" version = "3.4.1" summary = "A python implementation of GNU readline." -groups = ["hook-check-django-migrations"] -marker = "sys_platform == \"win32\" and python_version >= \"3.8\"" files = [ {file = "pyreadline3-3.4.1-py3-none-any.whl", hash = "sha256:b0efb6516fd4fb07b45949053826a62fa4cb353db5be2bbb4a7aa1fdd1e345fb"}, {file = "pyreadline3-3.4.1.tar.gz", hash = "sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae"}, @@ -3374,7 +3185,6 @@ name = "pytesseract" version = "0.3.10" requires_python = ">=3.7" summary = "Python-tesseract is a python wrapper for Google's Tesseract-OCR" -groups = ["hook-check-django-migrations"] dependencies = [ "Pillow>=8.0.0", "packaging>=21.3", @@ -3388,7 +3198,6 @@ files = [ name = "python-crontab" version = "3.0.0" summary = "Python Crontab API" -groups = ["hook-check-django-migrations"] dependencies = [ "python-dateutil", ] @@ -3402,7 +3211,6 @@ name = "python-dateutil" version = "2.8.2" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" summary = "Extensions to the standard Python datetime module" -groups = ["hook-check-django-migrations"] dependencies = [ "six>=1.5", ] @@ -3416,7 +3224,6 @@ name = "python-dotenv" version = "1.0.0" requires_python = ">=3.8" summary = "Read key-value pairs from a .env file and set them as environment variables" -groups = ["hook-check-django-migrations"] files = [ {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, @@ -3427,7 +3234,6 @@ name = "python-magic" version = "0.4.27" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "File type identification using libmagic" -groups = ["hook-check-django-migrations"] files = [ {file = "python-magic-0.4.27.tar.gz", hash = "sha256:c1ba14b08e4a5f5c31a302b7721239695b2f0f058d125bd5ce1ee36b9d9d3c3b"}, {file = "python_magic-0.4.27-py2.py3-none-any.whl", hash = "sha256:c212960ad306f700aa0d01e5d7a325d20548ff97eb9920dcd29513174f0294d3"}, @@ -3437,7 +3243,6 @@ files = [ name = "python3-openid" version = "3.2.0" summary = "OpenID support for modern servers and consumers." -groups = ["hook-check-django-migrations"] dependencies = [ "defusedxml", ] @@ -3450,7 +3255,6 @@ files = [ name = "pytz" version = "2024.1" summary = "World timezone definitions, modern and historical" -groups = ["hook-check-django-migrations"] files = [ {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, @@ -3460,8 +3264,6 @@ files = [ name = "pywin32" version = "306" summary = "Python for Window Extensions" -groups = ["hook-check-django-migrations"] -marker = "sys_platform == \"win32\" or platform_system == \"Windows\"" files = [ {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, @@ -3477,7 +3279,6 @@ name = "pyyaml" version = "6.0.1" requires_python = ">=3.6" summary = "YAML parser and emitter for Python" -groups = ["hook-check-django-migrations", "lint"] files = [ {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, @@ -3511,7 +3312,6 @@ name = "qdrant-client" version = "1.7.0" requires_python = ">=3.8,<3.13" summary = "Client library for the Qdrant vector search engine" -groups = ["hook-check-django-migrations"] dependencies = [ "grpcio-tools>=1.41.0", "grpcio>=1.41.0", @@ -3531,7 +3331,6 @@ name = "realtime" version = "1.0.2" requires_python = ">=3.8,<4.0" summary = "" -groups = ["hook-check-django-migrations"] dependencies = [ "python-dateutil<3.0.0,>=2.8.1", "typing-extensions<5.0.0,>=4.2.0", @@ -3547,7 +3346,6 @@ name = "redis" version = "5.0.1" requires_python = ">=3.7" summary = "Python client for Redis database and key-value store" -groups = ["hook-check-django-migrations"] dependencies = [ "async-timeout>=4.0.2; python_full_version <= \"3.11.2\"", ] @@ -3561,7 +3359,6 @@ name = "referencing" version = "0.33.0" requires_python = ">=3.8" summary = "JSON Referencing + Python" -groups = ["hook-check-django-migrations"] dependencies = [ "attrs>=22.2.0", "rpds-py>=0.7.0", @@ -3576,7 +3373,6 @@ name = "regex" version = "2023.12.25" requires_python = ">=3.7" summary = "Alternative regular expression module, to replace re." -groups = ["hook-check-django-migrations"] files = [ {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0694219a1d54336fd0445ea382d49d36882415c0134ee1e8332afd1529f0baa5"}, {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b014333bd0217ad3d54c143de9d4b9a3ca1c5a29a6d0d554952ea071cff0f1f8"}, @@ -3633,7 +3429,6 @@ name = "replicate" version = "0.22.0" requires_python = ">=3.8" summary = "Python client for Replicate" -groups = ["hook-check-django-migrations"] dependencies = [ "httpx<1,>=0.21.0", "packaging", @@ -3650,7 +3445,6 @@ name = "requests" version = "2.31.0" requires_python = ">=3.7" summary = "Python HTTP for Humans." -groups = ["hook-check-django-migrations"] dependencies = [ "certifi>=2017.4.17", "charset-normalizer<4,>=2", @@ -3667,7 +3461,6 @@ name = "requests-oauthlib" version = "1.3.1" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "OAuthlib authentication support for Requests." -groups = ["hook-check-django-migrations"] dependencies = [ "oauthlib>=3.0.0", "requests>=2.0.0", @@ -3682,7 +3475,6 @@ name = "requests-toolbelt" version = "1.0.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "A utility belt for advanced users of python-requests" -groups = ["hook-check-django-migrations"] dependencies = [ "requests<3.0.0,>=2.0.1", ] @@ -3696,7 +3488,6 @@ name = "rich" version = "13.7.0" requires_python = ">=3.7.0" summary = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" -groups = ["hook-check-django-migrations"] dependencies = [ "markdown-it-py>=2.2.0", "pygments<3.0.0,>=2.13.0", @@ -3711,7 +3502,6 @@ name = "rpds-py" version = "0.18.0" requires_python = ">=3.8" summary = "Python bindings to Rust's persistent data structures (rpds)" -groups = ["hook-check-django-migrations"] files = [ {file = "rpds_py-0.18.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:5b4e7d8d6c9b2e8ee2d55c90b59c707ca59bc30058269b3db7b1f8df5763557e"}, {file = "rpds_py-0.18.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c463ed05f9dfb9baebef68048aed8dcdc94411e4bf3d33a39ba97e271624f8f7"}, @@ -3793,7 +3583,6 @@ name = "rsa" version = "4.9" requires_python = ">=3.6,<4" summary = "Pure-Python RSA implementation" -groups = ["hook-check-django-migrations"] dependencies = [ "pyasn1>=0.1.3", ] @@ -3807,7 +3596,6 @@ name = "s3fs" version = "2023.6.0" requires_python = ">= 3.8" summary = "Convenient Filesystem interface over S3" -groups = ["hook-check-django-migrations"] dependencies = [ "aiobotocore~=2.5.0", "aiohttp!=4.0.0a0,!=4.0.0a1", @@ -3824,7 +3612,6 @@ version = "2023.6.0" extras = ["boto3"] requires_python = ">= 3.8" summary = "Convenient Filesystem interface over S3" -groups = ["hook-check-django-migrations"] dependencies = [ "aiobotocore[boto3]~=2.5.0", "s3fs==2023.6.0", @@ -3839,7 +3626,6 @@ name = "s3transfer" version = "0.6.2" requires_python = ">= 3.7" summary = "An Amazon S3 Transfer Manager" -groups = ["hook-check-django-migrations"] dependencies = [ "botocore<2.0a.0,>=1.12.36", ] @@ -3853,7 +3639,6 @@ name = "safetensors" version = "0.4.2" requires_python = ">=3.7" summary = "" -groups = ["hook-check-django-migrations"] files = [ {file = "safetensors-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:69d8bb8384dc2cb5b72c36c4d6980771b293d1a1377b378763f5e37b6bb8d133"}, {file = "safetensors-0.4.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3d420e19fcef96d0067f4de4699682b4bbd85fc8fea0bd45fcd961fdf3e8c82c"}, @@ -3926,7 +3711,6 @@ name = "setuptools" version = "69.1.0" requires_python = ">=3.8" summary = "Easily download, build, install, upgrade, and uninstall Python packages" -groups = ["hook-check-django-migrations", "lint"] files = [ {file = "setuptools-69.1.0-py3-none-any.whl", hash = "sha256:c054629b81b946d63a9c6e732bc8b2513a7c3ea645f11d0139a2191d735c60c6"}, {file = "setuptools-69.1.0.tar.gz", hash = "sha256:850894c4195f09c4ed30dba56213bf7c3f21d86ed6bdaafb5df5972593bfc401"}, @@ -3937,7 +3721,6 @@ name = "shapely" version = "2.0.3" requires_python = ">=3.7" summary = "Manipulation and analysis of geometric objects" -groups = ["hook-check-django-migrations"] dependencies = [ "numpy<2,>=1.14", ] @@ -3971,7 +3754,6 @@ name = "six" version = "1.16.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" summary = "Python 2 and 3 compatibility utilities" -groups = ["hook-check-django-migrations"] files = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, @@ -3982,7 +3764,6 @@ name = "smart-open" version = "6.4.0" requires_python = ">=3.6,<4.0" summary = "Utils for streaming large files (S3, HDFS, GCS, Azure Blob Storage, gzip, bz2...)" -groups = ["hook-check-django-migrations"] files = [ {file = "smart_open-6.4.0-py3-none-any.whl", hash = "sha256:8d3ef7e6997e8e42dd55c74166ed21e6ac70664caa32dd940b26d54a8f6b4142"}, {file = "smart_open-6.4.0.tar.gz", hash = "sha256:be3c92c246fbe80ebce8fbacb180494a481a77fcdcb7c1aadb2ea5b9c2bee8b9"}, @@ -3993,7 +3774,6 @@ name = "smmap" version = "5.0.1" requires_python = ">=3.7" summary = "A pure Python implementation of a sliding window memory map manager" -groups = ["hook-check-django-migrations"] files = [ {file = "smmap-5.0.1-py3-none-any.whl", hash = "sha256:e6d8668fa5f93e706934a62d7b4db19c8d9eb8cf2adbb75ef1b675aa332b69da"}, {file = "smmap-5.0.1.tar.gz", hash = "sha256:dceeb6c0028fdb6734471eb07c0cd2aae706ccaecab45965ee83f11c8d3b1f62"}, @@ -4004,7 +3784,6 @@ name = "sniffio" version = "1.3.0" requires_python = ">=3.7" summary = "Sniff out which async library your code is running under" -groups = ["hook-check-django-migrations"] files = [ {file = "sniffio-1.3.0-py3-none-any.whl", hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384"}, {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, @@ -4015,7 +3794,6 @@ name = "snowflake-connector-python" version = "3.6.0" requires_python = ">=3.8" summary = "Snowflake Connector for Python" -groups = ["hook-check-django-migrations"] dependencies = [ "asn1crypto<2.0.0,>0.24.0", "certifi>=2017.4.17", @@ -4060,7 +3838,6 @@ version = "3.6.0" extras = ["pandas"] requires_python = ">=3.8" summary = "Snowflake Connector for Python" -groups = ["hook-check-django-migrations"] dependencies = [ "pandas<2.2.0,>=1.0.0", "pyarrow", @@ -4090,7 +3867,6 @@ name = "social-auth-app-django" version = "5.3.0" requires_python = ">=3.7" summary = "Python Social Authentication, Django integration." -groups = ["hook-check-django-migrations"] dependencies = [ "Django>=3.2", "social-auth-core>=4.4.1", @@ -4105,7 +3881,6 @@ name = "social-auth-core" version = "4.5.3" requires_python = ">=3.8" summary = "Python social authentication made simple." -groups = ["hook-check-django-migrations"] dependencies = [ "PyJWT>=2.7.0", "cryptography>=1.4", @@ -4124,7 +3899,6 @@ files = [ name = "sortedcontainers" version = "2.4.0" summary = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" -groups = ["hook-check-django-migrations"] files = [ {file = "sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0"}, {file = "sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88"}, @@ -4135,7 +3909,6 @@ name = "soupsieve" version = "2.5" requires_python = ">=3.8" summary = "A modern CSS selector implementation for Beautiful Soup." -groups = ["hook-check-django-migrations"] files = [ {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"}, {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"}, @@ -4145,7 +3918,6 @@ files = [ name = "spinners" version = "0.0.24" summary = "Spinners for terminals" -groups = ["hook-check-django-migrations"] files = [ {file = "spinners-0.0.24-py3-none-any.whl", hash = "sha256:2fa30d0b72c9650ad12bbe031c9943b8d441e41b4f5602b0ec977a19f3290e98"}, {file = "spinners-0.0.24.tar.gz", hash = "sha256:1eb6aeb4781d72ab42ed8a01dcf20f3002bf50740d7154d12fb8c9769bf9e27f"}, @@ -4156,9 +3928,8 @@ name = "sqlalchemy" version = "2.0.26" requires_python = ">=3.7" summary = "Database Abstraction Library" -groups = ["hook-check-django-migrations"] dependencies = [ - "greenlet!=0.4.17; platform_machine == \"win32\" or platform_machine == \"WIN32\" or platform_machine == \"AMD64\" or platform_machine == \"amd64\" or platform_machine == \"x86_64\" or platform_machine == \"ppc64le\" or platform_machine == \"aarch64\"", + "greenlet!=0.4.17; platform_machine == \"aarch64\" or (platform_machine == \"ppc64le\" or (platform_machine == \"x86_64\" or (platform_machine == \"amd64\" or (platform_machine == \"AMD64\" or (platform_machine == \"win32\" or platform_machine == \"WIN32\")))))", "typing-extensions>=4.6.0", ] files = [ @@ -4196,7 +3967,6 @@ version = "2.0.26" extras = ["asyncio"] requires_python = ">=3.7" summary = "Database Abstraction Library" -groups = ["hook-check-django-migrations"] dependencies = [ "SQLAlchemy==2.0.26", "greenlet!=0.4.17", @@ -4235,7 +4005,6 @@ name = "sqlparse" version = "0.4.4" requires_python = ">=3.5" summary = "A non-validating SQL parser." -groups = ["hook-check-django-migrations"] files = [ {file = "sqlparse-0.4.4-py3-none-any.whl", hash = "sha256:5430a4fe2ac7d0f93e66f1efc6e1338a41884b7ddf2a350cedd20ccc4d9d28f3"}, {file = "sqlparse-0.4.4.tar.gz", hash = "sha256:d446183e84b8349fa3061f0fe7f06ca94ba65b426946ffebe6e3e8295332420c"}, @@ -4245,7 +4014,6 @@ files = [ name = "stone" version = "3.3.1" summary = "Stone is an interface description language (IDL) for APIs." -groups = ["hook-check-django-migrations"] dependencies = [ "ply>=3.4", "six>=1.12.0", @@ -4260,7 +4028,6 @@ name = "storage3" version = "0.7.0" requires_python = ">=3.8,<4.0" summary = "Supabase Storage client for Python." -groups = ["hook-check-django-migrations"] dependencies = [ "httpx<0.26,>=0.24", "python-dateutil<3.0.0,>=2.8.2", @@ -4275,7 +4042,6 @@ files = [ name = "strenum" version = "0.4.15" summary = "An Enum that inherits from str." -groups = ["hook-check-django-migrations"] files = [ {file = "StrEnum-0.4.15-py3-none-any.whl", hash = "sha256:a30cda4af7cc6b5bf52c8055bc4bf4b2b6b14a93b574626da33df53cf7740659"}, {file = "StrEnum-0.4.15.tar.gz", hash = "sha256:878fb5ab705442070e4dd1929bb5e2249511c0bcf2b0eeacf3bcd80875c82eff"}, @@ -4286,7 +4052,6 @@ name = "supabase" version = "2.2.1" requires_python = ">=3.8,<4.0" summary = "Supabase client for Python." -groups = ["hook-check-django-migrations"] dependencies = [ "gotrue<3.0,>=1.3", "httpx<0.25.0,>=0.24.0", @@ -4305,7 +4070,6 @@ name = "supafunc" version = "0.3.3" requires_python = ">=3.8,<4.0" summary = "Library for Supabase Functions" -groups = ["hook-check-django-migrations"] dependencies = [ "httpx<0.26,>=0.24", ] @@ -4319,7 +4083,6 @@ name = "sympy" version = "1.12" requires_python = ">=3.8" summary = "Computer algebra system (CAS) in Python" -groups = ["hook-check-django-migrations"] dependencies = [ "mpmath>=0.19", ] @@ -4333,7 +4096,6 @@ name = "tabulate" version = "0.9.0" requires_python = ">=3.7" summary = "Pretty-print tabular data" -groups = ["hook-check-django-migrations"] files = [ {file = "tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f"}, {file = "tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c"}, @@ -4344,7 +4106,6 @@ name = "tenacity" version = "8.2.3" requires_python = ">=3.7" summary = "Retry code until it succeeds" -groups = ["hook-check-django-migrations"] files = [ {file = "tenacity-8.2.3-py3-none-any.whl", hash = "sha256:ce510e327a630c9e1beaf17d42e6ffacc88185044ad85cf74c0a8887c6a0f88c"}, {file = "tenacity-8.2.3.tar.gz", hash = "sha256:5398ef0d78e63f40007c1fb4c0bff96e1911394d2fa8d194f77619c05ff6cc8a"}, @@ -4355,8 +4116,6 @@ name = "tensorrt-llm" version = "0.7.1" requires_python = ">=3.7, <4" summary = "" -groups = ["hook-check-django-migrations"] -marker = "python_version == \"3.10\"" files = [ {file = "tensorrt-llm-0.7.1.tar.gz", hash = "sha256:10275e2585484f138b43576acddba42ebee073fbb1665fe0954032e421e26e08"}, ] @@ -4366,7 +4125,6 @@ name = "termcolor" version = "2.4.0" requires_python = ">=3.8" summary = "ANSI color formatting for output in terminal" -groups = ["hook-check-django-migrations"] files = [ {file = "termcolor-2.4.0-py3-none-any.whl", hash = "sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63"}, {file = "termcolor-2.4.0.tar.gz", hash = "sha256:aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a"}, @@ -4377,7 +4135,6 @@ name = "tiktoken" version = "0.4.0" requires_python = ">=3.8" summary = "tiktoken is a fast BPE tokeniser for use with OpenAI's models" -groups = ["hook-check-django-migrations"] dependencies = [ "regex>=2022.1.18", "requests>=2.26.0", @@ -4412,7 +4169,6 @@ name = "tokenizers" version = "0.15.2" requires_python = ">=3.7" summary = "" -groups = ["hook-check-django-migrations"] dependencies = [ "huggingface-hub<1.0,>=0.16.4", ] @@ -4488,8 +4244,6 @@ name = "tomli" version = "2.0.1" requires_python = ">=3.7" summary = "A lil' TOML parser" -groups = ["lint"] -marker = "python_version < \"3.11\"" files = [ {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, @@ -4500,7 +4254,6 @@ name = "tomlkit" version = "0.12.3" requires_python = ">=3.7" summary = "Style preserving TOML library" -groups = ["hook-check-django-migrations"] files = [ {file = "tomlkit-0.12.3-py3-none-any.whl", hash = "sha256:b0a645a9156dc7cb5d3a1f0d4bab66db287fcb8e0430bdd4664a095ea16414ba"}, {file = "tomlkit-0.12.3.tar.gz", hash = "sha256:75baf5012d06501f07bee5bf8e801b9f343e7aac5a92581f20f80ce632e6b5a4"}, @@ -4511,7 +4264,6 @@ name = "tqdm" version = "4.66.2" requires_python = ">=3.7" summary = "Fast, Extensible Progress Meter" -groups = ["hook-check-django-migrations"] dependencies = [ "colorama; platform_system == \"Windows\"", ] @@ -4525,7 +4277,6 @@ name = "transformers" version = "4.37.0" requires_python = ">=3.8.0" summary = "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow" -groups = ["hook-check-django-migrations"] dependencies = [ "filelock", "huggingface-hub<1.0,>=0.19.3", @@ -4547,7 +4298,6 @@ files = [ name = "types-pymysql" version = "1.1.0.1" summary = "Typing stubs for PyMySQL" -groups = ["lint"] files = [ {file = "types-PyMySQL-1.1.0.1.tar.gz", hash = "sha256:72bdaecb88de4a30bc3e1842e1d4522ceb3c4b2e883a6a2a7a7162775dd27b93"}, {file = "types_PyMySQL-1.1.0.1-py3-none-any.whl", hash = "sha256:9aec9ee0453314d477ef26e5832b4a992bc4cc3557358d62b0fe4af760a7728f"}, @@ -4557,7 +4307,6 @@ files = [ name = "types-pyopenssl" version = "23.2.0.2" summary = "Typing stubs for pyOpenSSL" -groups = ["lint"] dependencies = [ "cryptography>=35.0.0", ] @@ -4571,7 +4320,6 @@ name = "types-pytz" version = "2024.1.0.20240203" requires_python = ">=3.8" summary = "Typing stubs for pytz" -groups = ["lint"] files = [ {file = "types-pytz-2024.1.0.20240203.tar.gz", hash = "sha256:c93751ee20dfc6e054a0148f8f5227b9a00b79c90a4d3c9f464711a73179c89e"}, {file = "types_pytz-2024.1.0.20240203-py3-none-any.whl", hash = "sha256:9679eef0365db3af91ef7722c199dbb75ee5c1b67e3c4dd7bfbeb1b8a71c21a3"}, @@ -4581,7 +4329,6 @@ files = [ name = "types-pyyaml" version = "6.0.12.12" summary = "Typing stubs for PyYAML" -groups = ["lint"] files = [ {file = "types-PyYAML-6.0.12.12.tar.gz", hash = "sha256:334373d392fde0fdf95af5c3f1661885fa10c52167b14593eb856289e1855062"}, {file = "types_PyYAML-6.0.12.12-py3-none-any.whl", hash = "sha256:c05bc6c158facb0676674b7f11fe3960db4f389718e19e62bd2b84d6205cfd24"}, @@ -4592,7 +4339,6 @@ name = "types-redis" version = "4.6.0.20240218" requires_python = ">=3.8" summary = "Typing stubs for redis" -groups = ["lint"] dependencies = [ "cryptography>=35.0.0", "types-pyOpenSSL", @@ -4607,7 +4353,6 @@ name = "types-requests" version = "2.31.0.6" requires_python = ">=3.7" summary = "Typing stubs for requests" -groups = ["lint"] dependencies = [ "types-urllib3", ] @@ -4621,7 +4366,6 @@ name = "types-tzlocal" version = "5.1.0.1" requires_python = ">=3.7" summary = "Typing stubs for tzlocal" -groups = ["lint"] dependencies = [ "types-pytz", ] @@ -4634,7 +4378,6 @@ files = [ name = "types-urllib3" version = "1.26.25.14" summary = "Typing stubs for urllib3" -groups = ["lint"] files = [ {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, @@ -4645,7 +4388,6 @@ name = "typing-extensions" version = "4.9.0" requires_python = ">=3.8" summary = "Backported and Experimental Type Hints for Python 3.8+" -groups = ["hook-check-django-migrations", "lint"] files = [ {file = "typing_extensions-4.9.0-py3-none-any.whl", hash = "sha256:af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd"}, {file = "typing_extensions-4.9.0.tar.gz", hash = "sha256:23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783"}, @@ -4655,7 +4397,6 @@ files = [ name = "typing-inspect" version = "0.9.0" summary = "Runtime inspection utilities for typing module." -groups = ["hook-check-django-migrations"] dependencies = [ "mypy-extensions>=0.3.0", "typing-extensions>=3.7.4", @@ -4670,7 +4411,6 @@ name = "tzdata" version = "2024.1" requires_python = ">=2" summary = "Provider of IANA time zone data" -groups = ["hook-check-django-migrations"] files = [ {file = "tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252"}, {file = "tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd"}, @@ -4681,7 +4421,6 @@ name = "tzlocal" version = "5.2" requires_python = ">=3.8" summary = "tzinfo object for the local timezone" -groups = ["hook-check-django-migrations"] dependencies = [ "tzdata; platform_system == \"Windows\"", ] @@ -4695,7 +4434,6 @@ name = "ujson" version = "5.9.0" requires_python = ">=3.8" summary = "Ultra fast JSON encoder and decoder for Python" -groups = ["hook-check-django-migrations"] files = [ {file = "ujson-5.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ab71bf27b002eaf7d047c54a68e60230fbd5cd9da60de7ca0aa87d0bccead8fa"}, {file = "ujson-5.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7a365eac66f5aa7a7fdf57e5066ada6226700884fc7dce2ba5483538bc16c8c5"}, @@ -4746,10 +4484,9 @@ files = [ [[package]] name = "unstract-adapters" -version = "0.2.1" +version = "0.2.2" requires_python = "<3.12,>=3.9" summary = "Unstract Adapters" -groups = ["hook-check-django-migrations"] dependencies = [ "SQLAlchemy==2.0.26", "anthropic==0.7.8", @@ -4774,8 +4511,8 @@ dependencies = [ "weaviate-client==3.25.3", ] files = [ - {file = "unstract_adapters-0.2.1-py3-none-any.whl", hash = "sha256:7b48707bc5c634f07d4ea2926f1b2925bcd5c6869e057839ba69c2d62d19941b"}, - {file = "unstract_adapters-0.2.1.tar.gz", hash = "sha256:08646a232185185390a193ad12b16715d1fccc69195d2d28e4f291b5c55f8117"}, + {file = "unstract_adapters-0.2.2-py3-none-any.whl", hash = "sha256:aaf48036f844f4e0295c36596b1772111ab18229246b8677227b983b3c4226e4"}, + {file = "unstract_adapters-0.2.2.tar.gz", hash = "sha256:465d7859a0eb7a905d2c626939f2fed3a501600f832c93160b3e27a559e5ab22"}, ] [[package]] @@ -4785,7 +4522,6 @@ requires_python = ">=3.9" editable = true path = "./unstract/connectors" summary = "All connectors that are part of the Unstract platform" -groups = ["hook-check-django-migrations"] dependencies = [ "PyDrive2[fsspec]==1.15.4", "PyMySQL==1.1.0", @@ -4809,7 +4545,6 @@ requires_python = ">=3.9,<3.11.1" editable = true path = "./unstract/core" summary = "Core library that helps with executing workflows." -groups = ["hook-check-django-migrations"] dependencies = [ "boto3~=1.28.17", "botocore~=1.31.17", @@ -4825,7 +4560,6 @@ requires_python = ">=3.9" editable = true path = "./unstract/flags" summary = "Unstract's feature flags package." -groups = ["hook-check-django-migrations"] dependencies = [ "grpcio-tools<=1.58.0", "grpcio<=1.58.0", @@ -4833,10 +4567,9 @@ dependencies = [ [[package]] name = "unstract-sdk" -version = "0.11.1" +version = "0.11.2" requires_python = "<3.11.1,>=3.9" summary = "A framework for writing Unstract Tools/Apps" -groups = ["hook-check-django-migrations"] dependencies = [ "filetype==1.2.0", "jsonschema~=4.18.2", @@ -4847,11 +4580,11 @@ dependencies = [ "python-magic~=0.4.27", "tiktoken~=0.4.0", "transformers==4.37.0", - "unstract-adapters~=0.2.1", + "unstract-adapters~=0.2.2", ] files = [ - {file = "unstract_sdk-0.11.1-py3-none-any.whl", hash = "sha256:c969050363874b88d5024623ddfa2f7e9e55726b7c774cb96494835f5c7a5037"}, - {file = "unstract_sdk-0.11.1.tar.gz", hash = "sha256:8440f64851449f5962027e563d30b5fa21a3113ca9e65730b8909abff89995e5"}, + {file = "unstract_sdk-0.11.2-py3-none-any.whl", hash = "sha256:bcab064d87dc2985e5a4340e438a8ef71ef165b3e5078aba0ed2da3bda77f9e0"}, + {file = "unstract_sdk-0.11.2.tar.gz", hash = "sha256:0d6e3e00c9bbc6e569cc79922a2a45a54870c482cfa61287ea89a22ebd7fc606"}, ] [[package]] @@ -4861,7 +4594,6 @@ requires_python = ">=3.9,<3.11.1" editable = true path = "./unstract/tool-registry" summary = "Unstract's registry of tools to be used in workflows." -groups = ["hook-check-django-migrations"] dependencies = [ "PyYAML~=6.0.1", "docker~=6.1.3", @@ -4877,7 +4609,6 @@ requires_python = ">=3.9" editable = true path = "./unstract/tool-sandbox" summary = "Unstract Tool Sandbox is a package to communicate with tool worker" -groups = ["hook-check-django-migrations"] dependencies = [ "requests==2.31.0", ] @@ -4889,7 +4620,6 @@ requires_python = ">=3.9" editable = true path = "./unstract/workflow-execution" summary = "Unstract workflow execution package" -groups = ["hook-check-django-migrations"] dependencies = [ "unstract-tool-registry", "unstract-tool-sandbox", @@ -4900,7 +4630,6 @@ name = "uritemplate" version = "4.1.1" requires_python = ">=3.6" summary = "Implementation of RFC 6570 URI Templates" -groups = ["hook-check-django-migrations"] files = [ {file = "uritemplate-4.1.1-py2.py3-none-any.whl", hash = "sha256:830c08b8d99bdd312ea4ead05994a38e8936266f84b9a7878232db50b044e02e"}, {file = "uritemplate-4.1.1.tar.gz", hash = "sha256:4346edfc5c3b79f694bccd6d6099a322bbeb628dbf2cd86eea55a456ce5124f0"}, @@ -4911,7 +4640,6 @@ name = "urllib3" version = "1.26.18" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" summary = "HTTP library with thread-safe connection pooling, file post, and more." -groups = ["hook-check-django-migrations"] files = [ {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, @@ -4922,7 +4650,6 @@ name = "validators" version = "0.22.0" requires_python = ">=3.8" summary = "Python Data Validation for Humans™" -groups = ["hook-check-django-migrations"] files = [ {file = "validators-0.22.0-py3-none-any.whl", hash = "sha256:61cf7d4a62bbae559f2e54aed3b000cea9ff3e2fdbe463f51179b92c58c9585a"}, {file = "validators-0.22.0.tar.gz", hash = "sha256:77b2689b172eeeb600d9605ab86194641670cdb73b60afd577142a9397873370"}, @@ -4932,7 +4659,6 @@ files = [ name = "vecs" version = "0.1.0" summary = "pgvector client" -groups = ["hook-check-django-migrations"] dependencies = [ "pgvector==0.1.*", "sqlalchemy==2.*", @@ -4946,7 +4672,6 @@ name = "vine" version = "5.1.0" requires_python = ">=3.6" summary = "Python promises." -groups = ["hook-check-django-migrations"] files = [ {file = "vine-5.1.0-py3-none-any.whl", hash = "sha256:40fdf3c48b2cfe1c38a49e9ae2da6fda88e4794c810050a728bd7413811fb1dc"}, {file = "vine-5.1.0.tar.gz", hash = "sha256:8b62e981d35c41049211cf62a0a1242d8c1ee9bd15bb196ce38aefd6799e61e0"}, @@ -4957,7 +4682,6 @@ name = "virtualenv" version = "20.25.0" requires_python = ">=3.7" summary = "Virtual Python Environment builder" -groups = ["lint"] dependencies = [ "distlib<1,>=0.3.7", "filelock<4,>=3.12.2", @@ -4972,7 +4696,6 @@ files = [ name = "wcwidth" version = "0.2.13" summary = "Measures the displayed width of unicode strings in a terminal" -groups = ["hook-check-django-migrations"] files = [ {file = "wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859"}, {file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"}, @@ -4983,7 +4706,6 @@ name = "weaviate-client" version = "3.25.3" requires_python = ">=3.8" summary = "A python native Weaviate client" -groups = ["hook-check-django-migrations"] dependencies = [ "authlib<2.0.0,>=1.2.1", "requests<3.0.0,>=2.30.0", @@ -4999,7 +4721,6 @@ name = "websocket-client" version = "1.7.0" requires_python = ">=3.8" summary = "WebSocket client for Python with low level API options" -groups = ["hook-check-django-migrations"] files = [ {file = "websocket-client-1.7.0.tar.gz", hash = "sha256:10e511ea3a8c744631d3bd77e61eb17ed09304c413ad42cf6ddfa4c7787e8fe6"}, {file = "websocket_client-1.7.0-py3-none-any.whl", hash = "sha256:f4c3d22fec12a2461427a29957ff07d35098ee2d976d3ba244e688b8b4057588"}, @@ -5010,7 +4731,6 @@ name = "websockets" version = "11.0.3" requires_python = ">=3.7" summary = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" -groups = ["hook-check-django-migrations"] files = [ {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3ccc8a0c387629aec40f2fc9fdcb4b9d5431954f934da3eaf16cdc94f67dbfac"}, {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d67ac60a307f760c6e65dad586f556dde58e683fab03323221a4e530ead6f74d"}, @@ -5069,8 +4789,6 @@ name = "win32-setctime" version = "1.1.0" requires_python = ">=3.5" summary = "A small Python utility to set file creation time on Windows" -groups = ["hook-check-django-migrations"] -marker = "sys_platform == \"win32\"" files = [ {file = "win32_setctime-1.1.0-py3-none-any.whl", hash = "sha256:231db239e959c2fe7eb1d7dc129f11172354f98361c4fa2d6d2d7e278baa8aad"}, {file = "win32_setctime-1.1.0.tar.gz", hash = "sha256:15cf5750465118d6929ae4de4eb46e8edae9a5634350c01ba582df868e932cb2"}, @@ -5081,7 +4799,6 @@ name = "wrapt" version = "1.16.0" requires_python = ">=3.6" summary = "Module for decorators, wrappers and monkey patching." -groups = ["hook-check-django-migrations"] files = [ {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, @@ -5122,7 +4839,6 @@ name = "yamllint" version = "1.35.1" requires_python = ">=3.8" summary = "A linter for YAML files." -groups = ["lint"] dependencies = [ "pathspec>=0.5.3", "pyyaml", @@ -5137,7 +4853,6 @@ name = "yarl" version = "1.9.4" requires_python = ">=3.7" summary = "Yet another URL library" -groups = ["hook-check-django-migrations"] dependencies = [ "idna>=2.0", "multidict>=4.0", From 90a6da817821247fa3c0725e06431307e6237cf9 Mon Sep 17 00:00:00 2001 From: gayathrivijayakumar Date: Wed, 28 Feb 2024 11:35:58 +0530 Subject: [PATCH 9/9] Update lock files to resolve build issues --- backend/pdm.lock | 286 +++++++++++++++++++- pdm.lock | 574 ++++++++++++++++++++++++++++++---------- prompt-service/pdm.lock | 291 +++++++++++++++++--- 3 files changed, 957 insertions(+), 194 deletions(-) diff --git a/backend/pdm.lock b/backend/pdm.lock index 1459b0207d..da10551b77 100644 --- a/backend/pdm.lock +++ b/backend/pdm.lock @@ -2,9 +2,9 @@ # It is not intended for manual editing. [metadata] -groups = ["default", "deploy", "test"] -strategy = ["cross_platform"] -lock_version = "4.4" +groups = ["default", "test", "deploy"] +strategy = ["cross_platform", "inherit_metadata"] +lock_version = "4.4.1" content_hash = "sha256:73a791002f5f7bab1afe9eaee07e8fc946774da3448f9daabedbccfc9be4f202" [[package]] @@ -12,6 +12,7 @@ name = "aiobotocore" version = "2.5.4" requires_python = ">=3.7" summary = "Async client for aws services using botocore and aiohttp" +groups = ["default"] dependencies = [ "aiohttp<4.0.0,>=3.3.1", "aioitertools<1.0.0,>=0.5.1", @@ -29,6 +30,7 @@ version = "2.5.4" extras = ["boto3"] requires_python = ">=3.7" summary = "Async client for aws services using botocore and aiohttp" +groups = ["default"] dependencies = [ "aiobotocore==2.5.4", "boto3<1.28.18,>=1.28.17", @@ -43,6 +45,7 @@ name = "aiohttp" version = "3.9.3" requires_python = ">=3.8" summary = "Async http client/server framework (asyncio)" +groups = ["default"] dependencies = [ "aiosignal>=1.1.2", "async-timeout<5.0,>=4.0; python_version < \"3.11\"", @@ -105,6 +108,7 @@ name = "aioitertools" version = "0.11.0" requires_python = ">=3.6" summary = "itertools and builtins for AsyncIO and mixed iterables" +groups = ["default"] dependencies = [ "typing-extensions>=4.0; python_version < \"3.10\"", ] @@ -118,6 +122,7 @@ name = "aiosignal" version = "1.3.1" requires_python = ">=3.7" summary = "aiosignal: a list of registered asynchronous callbacks" +groups = ["default"] dependencies = [ "frozenlist>=1.1.0", ] @@ -131,6 +136,7 @@ name = "amqp" version = "5.2.0" requires_python = ">=3.6" summary = "Low-level AMQP client for Python (fork of amqplib)." +groups = ["default"] dependencies = [ "vine<6.0.0,>=5.0.0", ] @@ -144,6 +150,7 @@ name = "annotated-types" version = "0.6.0" requires_python = ">=3.8" summary = "Reusable constraint types to use with typing.Annotated" +groups = ["default"] files = [ {file = "annotated_types-0.6.0-py3-none-any.whl", hash = "sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43"}, {file = "annotated_types-0.6.0.tar.gz", hash = "sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d"}, @@ -154,6 +161,7 @@ name = "anthropic" version = "0.7.8" requires_python = ">=3.7" summary = "The official Python library for the anthropic API" +groups = ["default"] dependencies = [ "anyio<5,>=3.5.0", "distro<2,>=1.7.0", @@ -173,6 +181,7 @@ name = "anyio" version = "4.3.0" requires_python = ">=3.8" summary = "High level compatibility layer for multiple asynchronous event loop implementations" +groups = ["default"] dependencies = [ "exceptiongroup>=1.0.2; python_version < \"3.11\"", "idna>=2.8", @@ -188,6 +197,7 @@ files = [ name = "anyscale" version = "0.5.165" summary = "Command Line Interface for Anyscale" +groups = ["default"] dependencies = [ "Click>=7.0", "GitPython", @@ -226,6 +236,7 @@ files = [ name = "appdirs" version = "1.4.4" summary = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +groups = ["default"] files = [ {file = "appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128"}, {file = "appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41"}, @@ -236,6 +247,7 @@ name = "argon2-cffi" version = "23.1.0" requires_python = ">=3.7" summary = "Argon2 for Python" +groups = ["default"] dependencies = [ "argon2-cffi-bindings", ] @@ -249,6 +261,7 @@ name = "argon2-cffi-bindings" version = "21.2.0" requires_python = ">=3.6" summary = "Low-level CFFI bindings for Argon2" +groups = ["default"] dependencies = [ "cffi>=1.0.1", ] @@ -281,6 +294,7 @@ name = "asgiref" version = "3.7.2" requires_python = ">=3.7" summary = "ASGI specs, helper code, and adapters" +groups = ["default"] dependencies = [ "typing-extensions>=4; python_version < \"3.11\"", ] @@ -293,6 +307,7 @@ files = [ name = "asn1crypto" version = "1.5.1" summary = "Fast ASN.1 parser and serializer with definitions for private keys, public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, PKCS#8, PKCS#12, PKCS#5, X.509 and TSP" +groups = ["default"] files = [ {file = "asn1crypto-1.5.1-py2.py3-none-any.whl", hash = "sha256:db4e40728b728508912cbb3d44f19ce188f218e9eba635821bb4b68564f8fd67"}, {file = "asn1crypto-1.5.1.tar.gz", hash = "sha256:13ae38502be632115abf8a24cbe5f4da52e3b5231990aff31123c805306ccb9c"}, @@ -303,6 +318,8 @@ name = "async-timeout" version = "4.0.3" requires_python = ">=3.7" summary = "Timeout context manager for asyncio programs" +groups = ["default"] +marker = "python_version < \"3.12.0\"" files = [ {file = "async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f"}, {file = "async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028"}, @@ -313,6 +330,7 @@ name = "asyncpg" version = "0.29.0" requires_python = ">=3.8.0" summary = "An asyncio PostgreSQL driver" +groups = ["default"] dependencies = [ "async-timeout>=4.0.3; python_version < \"3.12.0\"", ] @@ -349,6 +367,7 @@ name = "attrs" version = "23.2.0" requires_python = ">=3.7" summary = "Classes Without Boilerplate" +groups = ["default"] files = [ {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, @@ -358,6 +377,7 @@ files = [ name = "authlib" version = "1.2.1" summary = "The ultimate Python library in building OAuth and OpenID Connect servers and clients." +groups = ["default"] dependencies = [ "cryptography>=3.2", ] @@ -371,6 +391,7 @@ name = "backoff" version = "2.2.1" requires_python = ">=3.7,<4.0" summary = "Function decoration for backoff and retry" +groups = ["default"] files = [ {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, @@ -381,6 +402,7 @@ name = "beautifulsoup4" version = "4.12.3" requires_python = ">=3.6.0" summary = "Screen-scraping library" +groups = ["default"] dependencies = [ "soupsieve>1.2", ] @@ -394,6 +416,7 @@ name = "bidict" version = "0.23.1" requires_python = ">=3.8" summary = "The bidirectional mapping library for Python." +groups = ["default"] files = [ {file = "bidict-0.23.1-py3-none-any.whl", hash = "sha256:5dae8d4d79b552a71cbabc7deb25dfe8ce710b17ff41711e13010ead2abfc3e5"}, {file = "bidict-0.23.1.tar.gz", hash = "sha256:03069d763bc387bbd20e7d49914e75fc4132a41937fa3405417e1a5a2d006d71"}, @@ -404,6 +427,7 @@ name = "billiard" version = "4.2.0" requires_python = ">=3.7" summary = "Python multiprocessing fork with improvements and bugfixes" +groups = ["default"] files = [ {file = "billiard-4.2.0-py3-none-any.whl", hash = "sha256:07aa978b308f334ff8282bd4a746e681b3513db5c9a514cbdd810cbbdc19714d"}, {file = "billiard-4.2.0.tar.gz", hash = "sha256:9a3c3184cb275aa17a732f93f65b20c525d3d9f253722d26a82194803ade5a2c"}, @@ -414,6 +438,7 @@ name = "boto3" version = "1.28.17" requires_python = ">= 3.7" summary = "The AWS SDK for Python" +groups = ["default"] dependencies = [ "botocore<1.32.0,>=1.31.17", "jmespath<2.0.0,>=0.7.1", @@ -429,6 +454,7 @@ name = "botocore" version = "1.31.17" requires_python = ">= 3.7" summary = "Low-level, data-driven core of boto 3." +groups = ["default"] dependencies = [ "jmespath<2.0.0,>=0.7.1", "python-dateutil<3.0.0,>=2.1", @@ -444,6 +470,7 @@ name = "boxfs" version = "0.2.1" requires_python = ">=3.8,<4.0" summary = "Implementation of fsspec for Box file storage" +groups = ["default"] dependencies = [ "boxsdk[jwt]<4.0,>=3.7", "fsspec>=2023.4", @@ -457,6 +484,7 @@ files = [ name = "boxsdk" version = "3.9.2" summary = "Official Box Python SDK" +groups = ["default"] dependencies = [ "attrs>=17.3.0", "python-dateutil", @@ -474,6 +502,7 @@ name = "boxsdk" version = "3.9.2" extras = ["jwt"] summary = "Official Box Python SDK" +groups = ["default"] dependencies = [ "boxsdk==3.9.2", "cryptography>=3", @@ -489,6 +518,7 @@ name = "cachetools" version = "5.3.3" requires_python = ">=3.7" summary = "Extensible memoizing collections and decorators" +groups = ["default"] files = [ {file = "cachetools-5.3.3-py3-none-any.whl", hash = "sha256:0abad1021d3f8325b2fc1d2e9c8b9c9d57b04c3932657a72465447332c24d945"}, {file = "cachetools-5.3.3.tar.gz", hash = "sha256:ba29e2dfa0b8b556606f097407ed1aa62080ee108ab0dc5ec9d6a723a007d105"}, @@ -499,6 +529,7 @@ name = "celery" version = "5.3.6" requires_python = ">=3.8" summary = "Distributed Task Queue." +groups = ["default"] dependencies = [ "billiard<5.0,>=4.2.0", "click-didyoumean>=0.3.0", @@ -520,6 +551,7 @@ name = "certifi" version = "2024.2.2" requires_python = ">=3.6" summary = "Python package for providing Mozilla's CA Bundle." +groups = ["default"] files = [ {file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"}, {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"}, @@ -530,6 +562,7 @@ name = "cffi" version = "1.16.0" requires_python = ">=3.8" summary = "Foreign Function Interface for Python calling C code." +groups = ["default"] dependencies = [ "pycparser", ] @@ -575,6 +608,7 @@ name = "charset-normalizer" version = "3.3.2" requires_python = ">=3.7.0" summary = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +groups = ["default"] files = [ {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, @@ -630,6 +664,7 @@ name = "click" version = "8.1.7" requires_python = ">=3.7" summary = "Composable command line interface toolkit" +groups = ["default"] dependencies = [ "colorama; platform_system == \"Windows\"", ] @@ -643,6 +678,7 @@ name = "click-didyoumean" version = "0.3.0" requires_python = ">=3.6.2,<4.0.0" summary = "Enables git-like *did-you-mean* feature in click" +groups = ["default"] dependencies = [ "click>=7", ] @@ -655,6 +691,7 @@ files = [ name = "click-plugins" version = "1.1.1" summary = "An extension module for click to enable registering CLI commands via setuptools entry-points." +groups = ["default"] dependencies = [ "click>=4.0", ] @@ -668,6 +705,7 @@ name = "click-repl" version = "0.3.0" requires_python = ">=3.6" summary = "REPL plugin for Click" +groups = ["default"] dependencies = [ "click>=7.0", "prompt-toolkit>=3.0.36", @@ -682,6 +720,7 @@ name = "colorama" version = "0.4.6" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" summary = "Cross-platform colored terminal text." +groups = ["default", "test"] files = [ {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, @@ -692,6 +731,7 @@ name = "coloredlogs" version = "15.0.1" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Colored terminal output for Python's logging module" +groups = ["default"] dependencies = [ "humanfriendly>=9.1", ] @@ -704,6 +744,7 @@ files = [ name = "cron-descriptor" version = "1.4.0" summary = "A Python library that converts cron expressions into human readable strings." +groups = ["default"] files = [ {file = "cron_descriptor-1.4.0.tar.gz", hash = "sha256:b6ff4e3a988d7ca04a4ab150248e9f166fb7a5c828a85090e75bcc25aa93b4dd"}, ] @@ -713,6 +754,7 @@ name = "cryptography" version = "41.0.7" requires_python = ">=3.7" summary = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +groups = ["default"] dependencies = [ "cffi>=1.12", ] @@ -747,6 +789,7 @@ name = "dataclasses-json" version = "0.6.4" requires_python = ">=3.7,<4.0" summary = "Easily serialize dataclasses to and from JSON." +groups = ["default"] dependencies = [ "marshmallow<4.0.0,>=3.18.0", "typing-inspect<1,>=0.4.0", @@ -761,6 +804,7 @@ name = "defusedxml" version = "0.8.0rc2" requires_python = ">=3.6" summary = "XML bomb protection for Python stdlib modules" +groups = ["default"] files = [ {file = "defusedxml-0.8.0rc2-py2.py3-none-any.whl", hash = "sha256:1c812964311154c3bf4aaf3bc1443b31ee13530b7f255eaaa062c0553c76103d"}, {file = "defusedxml-0.8.0rc2.tar.gz", hash = "sha256:138c7d540a78775182206c7c97fe65b246a2f40b29471e1a2f1b0da76e7a3942"}, @@ -771,6 +815,7 @@ name = "deprecated" version = "1.2.14" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "Python @deprecated decorator to deprecate old python classes, functions or methods." +groups = ["default"] dependencies = [ "wrapt<2,>=1.10", ] @@ -783,6 +828,7 @@ files = [ name = "deprecation" version = "2.1.0" summary = "A library to handle automated deprecations" +groups = ["default"] dependencies = [ "packaging", ] @@ -796,6 +842,7 @@ name = "distro" version = "1.9.0" requires_python = ">=3.6" summary = "Distro - an OS platform information API" +groups = ["default"] files = [ {file = "distro-1.9.0-py3-none-any.whl", hash = "sha256:7bffd925d65168f85027d8da9af6bddab658135b840670a223589bc0c8ef02b2"}, {file = "distro-1.9.0.tar.gz", hash = "sha256:2fa77c6fd8940f116ee1d6b94a2f90b13b5ea8d019b98bc8bafdcabcdd9bdbed"}, @@ -806,6 +853,7 @@ name = "django" version = "4.2.1" requires_python = ">=3.8" summary = "A high-level Python web framework that encourages rapid development and clean, pragmatic design." +groups = ["default"] dependencies = [ "asgiref<4,>=3.6.0", "sqlparse>=0.3.1", @@ -820,6 +868,7 @@ files = [ name = "django-celery-beat" version = "2.5.0" summary = "Database-backed Periodic Tasks." +groups = ["default"] dependencies = [ "Django<5.0,>=2.2", "celery<6.0,>=5.2.3", @@ -838,6 +887,7 @@ name = "django-cors-headers" version = "4.3.1" requires_python = ">=3.8" summary = "django-cors-headers is a Django application for handling the server headers required for Cross-Origin Resource Sharing (CORS)." +groups = ["default"] dependencies = [ "Django>=3.2", "asgiref>=3.6", @@ -852,6 +902,7 @@ name = "django-redis" version = "5.4.0" requires_python = ">=3.6" summary = "Full featured redis cache backend for Django." +groups = ["default"] dependencies = [ "Django>=3.2", "redis!=4.0.0,!=4.0.1,>=3", @@ -865,6 +916,7 @@ files = [ name = "django-tenants" version = "3.5.0" summary = "Tenant support for Django using PostgreSQL schemas." +groups = ["default"] dependencies = [ "Django<4.3,>=2.1", ] @@ -877,6 +929,7 @@ name = "django-timezone-field" version = "6.1.0" requires_python = ">=3.8,<4.0" summary = "A Django app providing DB, form, and REST framework fields for zoneinfo and pytz timezone objects." +groups = ["default"] dependencies = [ "Django<6.0,>=3.2", ] @@ -890,6 +943,7 @@ name = "djangorestframework" version = "3.14.0" requires_python = ">=3.6" summary = "Web APIs for Django, made easy." +groups = ["default"] dependencies = [ "django>=3.0", "pytz", @@ -904,6 +958,7 @@ name = "dnspython" version = "2.6.1" requires_python = ">=3.8" summary = "DNS toolkit" +groups = ["default"] files = [ {file = "dnspython-2.6.1-py3-none-any.whl", hash = "sha256:5ef3b9680161f6fa89daf8ad451b5f1a33b18ae8a1c6778cdf4b43f08c0a6e50"}, {file = "dnspython-2.6.1.tar.gz", hash = "sha256:e8f0f9c23a7b7cb99ded64e6c3a6f3e701d78f50c55e002b839dea7225cff7cc"}, @@ -914,6 +969,7 @@ name = "docker" version = "6.1.3" requires_python = ">=3.7" summary = "A Python library for the Docker Engine API." +groups = ["default"] dependencies = [ "packaging>=14.0", "pywin32>=304; sys_platform == \"win32\"", @@ -931,6 +987,7 @@ name = "drf-standardized-errors" version = "0.12.6" requires_python = ">=3.8" summary = "Standardize your API error responses." +groups = ["default"] dependencies = [ "django>=3.2", "djangorestframework>=3.12", @@ -945,6 +1002,7 @@ name = "drf-yasg" version = "1.21.7" requires_python = ">=3.6" summary = "Automated generation of real Swagger/OpenAPI 2.0 schemas from Django Rest Framework code." +groups = ["default"] dependencies = [ "django>=2.2.16", "djangorestframework>=3.10.3", @@ -963,6 +1021,7 @@ files = [ name = "dropbox" version = "11.36.2" summary = "Official Dropbox API Client" +groups = ["default"] dependencies = [ "requests>=2.16.2", "six>=1.12.0", @@ -978,6 +1037,7 @@ name = "dropboxdrivefs" version = "1.3.1" requires_python = ">=3.5" summary = "Dropbox implementation for fsspec module" +groups = ["default"] dependencies = [ "dropbox", "fsspec", @@ -992,6 +1052,7 @@ name = "environs" version = "9.5.0" requires_python = ">=3.6" summary = "simplified environment variable parsing" +groups = ["default"] dependencies = [ "marshmallow>=3.0.0", "python-dotenv", @@ -1006,6 +1067,8 @@ name = "exceptiongroup" version = "1.2.0" requires_python = ">=3.7" summary = "Backport of PEP 654 (exception groups)" +groups = ["default", "test"] +marker = "python_version < \"3.11\"" files = [ {file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"}, {file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"}, @@ -1016,6 +1079,7 @@ name = "fastembed" version = "0.1.3" requires_python = ">=3.8.0,<3.12" summary = "Fast, light, accurate library built for retrieval embedding generation" +groups = ["default"] dependencies = [ "huggingface-hub==0.19.4", "onnx<2.0,>=1.11", @@ -1034,6 +1098,7 @@ name = "filelock" version = "3.13.1" requires_python = ">=3.8" summary = "A platform independent file lock." +groups = ["default"] files = [ {file = "filelock-3.13.1-py3-none-any.whl", hash = "sha256:57dbda9b35157b05fb3e58ee91448612eb674172fab98ee235ccb0b5bee19a1c"}, {file = "filelock-3.13.1.tar.gz", hash = "sha256:521f5f56c50f8426f5e03ad3b281b490a87ef15bc6c526f168290f0c7148d44e"}, @@ -1043,6 +1108,7 @@ files = [ name = "filetype" version = "1.2.0" summary = "Infer file type and MIME type of any file/buffer. No external dependencies." +groups = ["default"] files = [ {file = "filetype-1.2.0-py2.py3-none-any.whl", hash = "sha256:7ce71b6880181241cf7ac8697a2f1eb6a8bd9b429f7ad6d27b8db9ba5f1c2d25"}, {file = "filetype-1.2.0.tar.gz", hash = "sha256:66b56cd6474bf41d8c54660347d37afcc3f7d1970648de365c102ef77548aadb"}, @@ -1052,6 +1118,7 @@ files = [ name = "flatbuffers" version = "23.5.26" summary = "The FlatBuffers serialization format for Python" +groups = ["default"] files = [ {file = "flatbuffers-23.5.26-py2.py3-none-any.whl", hash = "sha256:c0ff356da363087b915fde4b8b45bdda73432fc17cddb3c8157472eab1422ad1"}, {file = "flatbuffers-23.5.26.tar.gz", hash = "sha256:9ea1144cac05ce5d86e2859f431c6cd5e66cd9c78c558317c7955fb8d4c78d89"}, @@ -1062,6 +1129,7 @@ name = "flower" version = "2.0.1" requires_python = ">=3.7" summary = "Celery Flower" +groups = ["default"] dependencies = [ "celery>=5.0.5", "humanize", @@ -1078,6 +1146,7 @@ files = [ name = "flupy" version = "1.2.0" summary = "Method chaining built on generators" +groups = ["default"] dependencies = [ "typing-extensions", ] @@ -1090,6 +1159,7 @@ name = "frozenlist" version = "1.4.1" requires_python = ">=3.8" summary = "A list-like structure which implements collections.abc.MutableSequence" +groups = ["default"] files = [ {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"}, {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"}, @@ -1145,6 +1215,7 @@ name = "fsspec" version = "2023.6.0" requires_python = ">=3.8" summary = "File-system specification" +groups = ["default"] files = [ {file = "fsspec-2023.6.0-py3-none-any.whl", hash = "sha256:1cbad1faef3e391fba6dc005ae9b5bdcbf43005c9167ce78c915549c352c869a"}, {file = "fsspec-2023.6.0.tar.gz", hash = "sha256:d0b2f935446169753e7a5c5c55681c54ea91996cc67be93c39a154fb3a2742af"}, @@ -1154,6 +1225,7 @@ files = [ name = "funcy" version = "2.0" summary = "A fancy and practical functional tools" +groups = ["default"] files = [ {file = "funcy-2.0-py2.py3-none-any.whl", hash = "sha256:53df23c8bb1651b12f095df764bfb057935d49537a56de211b098f4c79614bb0"}, {file = "funcy-2.0.tar.gz", hash = "sha256:3963315d59d41c6f30c04bc910e10ab50a3ac4a225868bfa96feed133df075cb"}, @@ -1164,6 +1236,7 @@ name = "gitdb" version = "4.0.11" requires_python = ">=3.7" summary = "Git Object Database" +groups = ["default"] dependencies = [ "smmap<6,>=3.0.1", ] @@ -1177,6 +1250,7 @@ name = "gitpython" version = "3.1.42" requires_python = ">=3.7" summary = "GitPython is a Python library used to interact with Git repositories" +groups = ["default"] dependencies = [ "gitdb<5,>=4.0.1", ] @@ -1190,6 +1264,7 @@ name = "google-ai-generativelanguage" version = "0.4.0" requires_python = ">=3.7" summary = "Google Ai Generativelanguage API client library" +groups = ["default"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.0", "proto-plus<2.0.0dev,>=1.22.3", @@ -1205,6 +1280,7 @@ name = "google-api-core" version = "2.17.1" requires_python = ">=3.7" summary = "Google API client core library" +groups = ["default"] dependencies = [ "google-auth<3.0.dev0,>=2.14.1", "googleapis-common-protos<2.0.dev0,>=1.56.2", @@ -1222,6 +1298,7 @@ version = "2.17.1" extras = ["grpc"] requires_python = ">=3.7" summary = "Google API client core library" +groups = ["default"] dependencies = [ "google-api-core==2.17.1", "grpcio-status<2.0.dev0,>=1.33.2", @@ -1239,6 +1316,7 @@ name = "google-api-python-client" version = "2.119.0" requires_python = ">=3.7" summary = "Google API Client Library for Python" +groups = ["default"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0.dev0,>=1.31.5", "google-auth-httplib2>=0.1.0", @@ -1256,6 +1334,7 @@ name = "google-auth" version = "2.20.0" requires_python = ">=3.6" summary = "Google Authentication Library" +groups = ["default"] dependencies = [ "cachetools<6.0,>=2.0.0", "pyasn1-modules>=0.2.1", @@ -1272,6 +1351,7 @@ files = [ name = "google-auth-httplib2" version = "0.2.0" summary = "Google Authentication Library: httplib2 transport" +groups = ["default"] dependencies = [ "google-auth", "httplib2>=0.19.0", @@ -1286,6 +1366,7 @@ name = "google-cloud-aiplatform" version = "1.40.0" requires_python = ">=3.8" summary = "Vertex AI API client library" +groups = ["default"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,<3.0.0dev,>=1.32.0", "google-cloud-bigquery<4.0.0dev,>=1.15.0", @@ -1306,6 +1387,7 @@ name = "google-cloud-bigquery" version = "3.11.4" requires_python = ">=3.7" summary = "Google BigQuery API client library" +groups = ["default"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5", "google-cloud-core<3.0.0dev,>=1.6.0", @@ -1328,6 +1410,7 @@ name = "google-cloud-core" version = "2.4.1" requires_python = ">=3.7" summary = "Google Cloud API client core library" +groups = ["default"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.6", "google-auth<3.0dev,>=1.25.0", @@ -1342,6 +1425,7 @@ name = "google-cloud-resource-manager" version = "1.12.2" requires_python = ">=3.7" summary = "Google Cloud Resource Manager API client library" +groups = ["default"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1", "google-auth<3.0.0dev,>=2.14.1", @@ -1359,6 +1443,7 @@ name = "google-cloud-secret-manager" version = "2.16.1" requires_python = ">=3.7" summary = "Google Cloud Secret Manager API client library" +groups = ["default"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.0", "grpc-google-iam-v1<1.0.0dev,>=0.12.4", @@ -1376,6 +1461,7 @@ name = "google-cloud-storage" version = "2.9.0" requires_python = ">=3.7" summary = "Google Cloud Storage API client library" +groups = ["default"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5", "google-auth<3.0dev,>=1.25.0", @@ -1393,6 +1479,7 @@ name = "google-crc32c" version = "1.5.0" requires_python = ">=3.7" summary = "A python wrapper of the C library 'Google CRC32C'" +groups = ["default"] files = [ {file = "google-crc32c-1.5.0.tar.gz", hash = "sha256:89284716bc6a5a415d4eaa11b1726d2d60a0cd12aadf5439828353662ede9dd7"}, {file = "google_crc32c-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:596d1f98fc70232fcb6590c439f43b350cb762fb5d61ce7b0e9db4539654cc13"}, @@ -1448,6 +1535,7 @@ name = "google-generativeai" version = "0.3.1" requires_python = ">=3.9" summary = "Google Generative AI High level API client library and tools." +groups = ["default"] dependencies = [ "google-ai-generativelanguage==0.4.0", "google-api-core", @@ -1464,6 +1552,7 @@ name = "google-resumable-media" version = "2.7.0" requires_python = ">= 3.7" summary = "Utilities for Google Media Downloads and Resumable Uploads" +groups = ["default"] dependencies = [ "google-crc32c<2.0dev,>=1.0", ] @@ -1477,6 +1566,7 @@ name = "googleapis-common-protos" version = "1.62.0" requires_python = ">=3.7" summary = "Common protobufs used in Google APIs" +groups = ["default"] dependencies = [ "protobuf!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<5.0.0.dev0,>=3.19.5", ] @@ -1491,6 +1581,7 @@ version = "1.62.0" extras = ["grpc"] requires_python = ">=3.7" summary = "Common protobufs used in Google APIs" +groups = ["default"] dependencies = [ "googleapis-common-protos==1.62.0", "grpcio<2.0.0.dev0,>=1.44.0", @@ -1505,6 +1596,7 @@ name = "gotrue" version = "2.1.0" requires_python = ">=3.8,<4.0" summary = "Python Client Library for GoTrue" +groups = ["default"] dependencies = [ "httpx<0.26,>=0.23", "pydantic<3,>=1.10", @@ -1519,6 +1611,7 @@ name = "greenlet" version = "3.0.3" requires_python = ">=3.7" summary = "Lightweight in-process concurrent programming" +groups = ["default"] files = [ {file = "greenlet-3.0.3-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:9da2bd29ed9e4f15955dd1595ad7bc9320308a3b766ef7f837e23ad4b4aac31a"}, {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d353cadd6083fdb056bb46ed07e4340b0869c305c8ca54ef9da3421acbdf6881"}, @@ -1556,6 +1649,7 @@ name = "grpc-google-iam-v1" version = "0.13.0" requires_python = ">=3.7" summary = "IAM API client library" +groups = ["default"] dependencies = [ "googleapis-common-protos[grpc]<2.0.0dev,>=1.56.0", "grpcio<2.0.0dev,>=1.44.0", @@ -1571,6 +1665,7 @@ name = "grpcio" version = "1.58.0" requires_python = ">=3.7" summary = "HTTP/2-based RPC framework" +groups = ["default"] files = [ {file = "grpcio-1.58.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:3e6bebf1dfdbeb22afd95650e4f019219fef3ab86d3fca8ebade52e4bc39389a"}, {file = "grpcio-1.58.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:cde11577d5b6fd73a00e6bfa3cf5f428f3f33c2d2878982369b5372bbc4acc60"}, @@ -1607,6 +1702,7 @@ name = "grpcio-status" version = "1.58.0" requires_python = ">=3.6" summary = "Status proto mapping for gRPC" +groups = ["default"] dependencies = [ "googleapis-common-protos>=1.5.5", "grpcio>=1.58.0", @@ -1622,6 +1718,7 @@ name = "grpcio-tools" version = "1.58.0" requires_python = ">=3.7" summary = "Protobuf code generator for gRPC" +groups = ["default"] dependencies = [ "grpcio>=1.58.0", "protobuf<5.0dev,>=4.21.6", @@ -1663,6 +1760,7 @@ name = "gunicorn" version = "21.2.0" requires_python = ">=3.5" summary = "WSGI HTTP Server for UNIX" +groups = ["deploy"] dependencies = [ "packaging", ] @@ -1676,6 +1774,7 @@ name = "h11" version = "0.14.0" requires_python = ">=3.7" summary = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +groups = ["default"] files = [ {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, @@ -1686,6 +1785,7 @@ name = "h2" version = "4.1.0" requires_python = ">=3.6.1" summary = "HTTP/2 State-Machine based protocol implementation" +groups = ["default"] dependencies = [ "hpack<5,>=4.0", "hyperframe<7,>=6.0", @@ -1700,6 +1800,7 @@ name = "halo" version = "0.0.31" requires_python = ">=3.4" summary = "Beautiful terminal spinners in Python" +groups = ["default"] dependencies = [ "colorama>=0.3.9", "log-symbols>=0.0.14", @@ -1716,6 +1817,7 @@ name = "hpack" version = "4.0.0" requires_python = ">=3.6.1" summary = "Pure-Python HPACK header compression" +groups = ["default"] files = [ {file = "hpack-4.0.0-py3-none-any.whl", hash = "sha256:84a076fad3dc9a9f8063ccb8041ef100867b1878b25ef0ee63847a5d53818a6c"}, {file = "hpack-4.0.0.tar.gz", hash = "sha256:fc41de0c63e687ebffde81187a948221294896f6bdc0ae2312708df339430095"}, @@ -1726,6 +1828,7 @@ name = "httpcore" version = "0.17.3" requires_python = ">=3.7" summary = "A minimal low-level HTTP client." +groups = ["default"] dependencies = [ "anyio<5.0,>=3.0", "certifi", @@ -1742,6 +1845,7 @@ name = "httplib2" version = "0.22.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "A comprehensive HTTP client library." +groups = ["default"] dependencies = [ "pyparsing!=3.0.0,!=3.0.1,!=3.0.2,!=3.0.3,<4,>=2.4.2; python_version > \"3.0\"", ] @@ -1755,6 +1859,7 @@ name = "httpx" version = "0.24.1" requires_python = ">=3.7" summary = "The next generation HTTP client." +groups = ["default"] dependencies = [ "certifi", "httpcore<0.18.0,>=0.15.0", @@ -1772,6 +1877,7 @@ version = "0.24.1" extras = ["http2"] requires_python = ">=3.7" summary = "The next generation HTTP client." +groups = ["default"] dependencies = [ "h2<5,>=3", "httpx==0.24.1", @@ -1785,6 +1891,7 @@ files = [ name = "huggingface" version = "0.0.1" summary = "HuggingFace is a single library comprising the main HuggingFace libraries." +groups = ["default"] files = [ {file = "huggingface-0.0.1-py3-none-any.whl", hash = "sha256:98a3409537557cd2fd768997ef94cab08529f86c5e106e6d54bbabdd5ee03910"}, {file = "huggingface-0.0.1.tar.gz", hash = "sha256:0a2f228fd956801d68b7c6a8bef478dfa60c4b7d7eba572ea7de39ecf87e505a"}, @@ -1795,6 +1902,7 @@ name = "huggingface-hub" version = "0.19.4" requires_python = ">=3.8.0" summary = "Client library to download and publish models, datasets and other repos on the huggingface.co hub" +groups = ["default"] dependencies = [ "filelock", "fsspec>=2023.5.0", @@ -1814,6 +1922,7 @@ name = "humanfriendly" version = "10.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Human friendly output for text interfaces using Python" +groups = ["default"] dependencies = [ "pyreadline3; sys_platform == \"win32\" and python_version >= \"3.8\"", ] @@ -1827,6 +1936,7 @@ name = "humanize" version = "4.9.0" requires_python = ">=3.8" summary = "Python humanize utilities" +groups = ["default"] files = [ {file = "humanize-4.9.0-py3-none-any.whl", hash = "sha256:ce284a76d5b1377fd8836733b983bfb0b76f1aa1c090de2566fcf008d7f6ab16"}, {file = "humanize-4.9.0.tar.gz", hash = "sha256:582a265c931c683a7e9b8ed9559089dea7edcf6cc95be39a3cbc2c5d5ac2bcfa"}, @@ -1837,6 +1947,7 @@ name = "hyperframe" version = "6.0.1" requires_python = ">=3.6.1" summary = "HTTP/2 framing layer for Python" +groups = ["default"] files = [ {file = "hyperframe-6.0.1-py3-none-any.whl", hash = "sha256:0ec6bafd80d8ad2195c4f03aacba3a8265e57bc4cff261e802bf39970ed02a15"}, {file = "hyperframe-6.0.1.tar.gz", hash = "sha256:ae510046231dc8e9ecb1a6586f63d2347bf4c8905914aa84ba585ae85f28a914"}, @@ -1847,6 +1958,7 @@ name = "idna" version = "3.6" requires_python = ">=3.5" summary = "Internationalized Domain Names in Applications (IDNA)" +groups = ["default"] files = [ {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"}, {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, @@ -1857,6 +1969,7 @@ name = "inflection" version = "0.5.1" requires_python = ">=3.5" summary = "A port of Ruby on Rails inflector to Python" +groups = ["default"] files = [ {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, @@ -1867,6 +1980,7 @@ name = "iniconfig" version = "2.0.0" requires_python = ">=3.7" summary = "brain-dead simple config-ini parsing" +groups = ["test"] files = [ {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, @@ -1877,6 +1991,7 @@ name = "jmespath" version = "1.0.1" requires_python = ">=3.7" summary = "JSON Matching Expressions" +groups = ["default"] files = [ {file = "jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980"}, {file = "jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe"}, @@ -1887,6 +2002,7 @@ name = "joblib" version = "1.3.2" requires_python = ">=3.7" summary = "Lightweight pipelining with Python functions" +groups = ["default"] files = [ {file = "joblib-1.3.2-py3-none-any.whl", hash = "sha256:ef4331c65f239985f3f2220ecc87db222f08fd22097a3dd5698f693875f8cbb9"}, {file = "joblib-1.3.2.tar.gz", hash = "sha256:92f865e621e17784e7955080b6d042489e3b8e294949cc44c6eac304f59772b1"}, @@ -1897,6 +2013,7 @@ name = "jsonpatch" version = "1.33" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" summary = "Apply JSON-Patches (RFC 6902) " +groups = ["default"] dependencies = [ "jsonpointer>=1.9", ] @@ -1910,6 +2027,7 @@ name = "jsonpointer" version = "2.4" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" summary = "Identify specific nodes in a JSON document (RFC 6901) " +groups = ["default"] files = [ {file = "jsonpointer-2.4-py2.py3-none-any.whl", hash = "sha256:15d51bba20eea3165644553647711d150376234112651b4f1811022aecad7d7a"}, {file = "jsonpointer-2.4.tar.gz", hash = "sha256:585cee82b70211fa9e6043b7bb89db6e1aa49524340dde8ad6b63206ea689d88"}, @@ -1920,6 +2038,7 @@ name = "jsonschema" version = "4.18.6" requires_python = ">=3.8" summary = "An implementation of JSON Schema validation for Python" +groups = ["default"] dependencies = [ "attrs>=22.2.0", "jsonschema-specifications>=2023.03.6", @@ -1936,6 +2055,7 @@ name = "jsonschema-specifications" version = "2023.12.1" requires_python = ">=3.8" summary = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +groups = ["default"] dependencies = [ "referencing>=0.31.0", ] @@ -1949,6 +2069,7 @@ name = "kombu" version = "5.3.5" requires_python = ">=3.8" summary = "Messaging library for Python." +groups = ["default"] dependencies = [ "amqp<6.0.0,>=5.1.1", "typing-extensions; python_version < \"3.10\"", @@ -1964,6 +2085,7 @@ name = "llama-index" version = "0.9.28" requires_python = ">=3.8.1,<4.0" summary = "Interface between LLMs and your data" +groups = ["default"] dependencies = [ "SQLAlchemy[asyncio]>=1.4.49", "aiohttp<4.0.0,>=3.8.6", @@ -1994,6 +2116,7 @@ files = [ name = "log-symbols" version = "0.0.14" summary = "Colored symbols for various log levels for Python" +groups = ["default"] dependencies = [ "colorama>=0.3.9", ] @@ -2007,6 +2130,7 @@ name = "loguru" version = "0.7.2" requires_python = ">=3.5" summary = "Python logging made (stupidly) simple" +groups = ["default"] dependencies = [ "colorama>=0.3.4; sys_platform == \"win32\"", "win32-setctime>=1.0.0; sys_platform == \"win32\"", @@ -2021,6 +2145,7 @@ name = "markdown-it-py" version = "3.0.0" requires_python = ">=3.8" summary = "Python port of markdown-it. Markdown parsing, done right!" +groups = ["default"] dependencies = [ "mdurl~=0.1", ] @@ -2034,6 +2159,7 @@ name = "marshmallow" version = "3.21.0" requires_python = ">=3.8" summary = "A lightweight library for converting complex datatypes to and from native Python datatypes." +groups = ["default"] dependencies = [ "packaging>=17.0", ] @@ -2047,6 +2173,7 @@ name = "mdurl" version = "0.1.2" requires_python = ">=3.7" summary = "Markdown URL utilities" +groups = ["default"] files = [ {file = "mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8"}, {file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"}, @@ -2056,6 +2183,7 @@ files = [ name = "minio" version = "7.2.4" summary = "MinIO Python SDK for Amazon S3 Compatible Cloud Storage" +groups = ["default"] dependencies = [ "argon2-cffi", "certifi", @@ -2073,6 +2201,7 @@ name = "mistralai" version = "0.0.8" requires_python = ">=3.8,<4.0" summary = "" +groups = ["default"] dependencies = [ "aiohttp<4.0.0,>=3.9.1", "backoff<3.0.0,>=2.2.1", @@ -2089,6 +2218,7 @@ files = [ name = "mpmath" version = "1.3.0" summary = "Python library for arbitrary-precision floating-point arithmetic" +groups = ["default"] files = [ {file = "mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c"}, {file = "mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f"}, @@ -2099,6 +2229,7 @@ name = "multidict" version = "6.0.5" requires_python = ">=3.7" summary = "multidict implementation" +groups = ["default"] files = [ {file = "multidict-6.0.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9"}, {file = "multidict-6.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604"}, @@ -2154,6 +2285,7 @@ name = "mypy-extensions" version = "1.0.0" requires_python = ">=3.5" summary = "Type system extensions for programs checked with the mypy type checker." +groups = ["default"] files = [ {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, @@ -2164,6 +2296,7 @@ name = "nest-asyncio" version = "1.6.0" requires_python = ">=3.5" summary = "Patch asyncio to allow nested event loops" +groups = ["default"] files = [ {file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"}, {file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"}, @@ -2174,6 +2307,7 @@ name = "networkx" version = "3.2.1" requires_python = ">=3.9" summary = "Python package for creating and manipulating graphs and networks" +groups = ["default"] files = [ {file = "networkx-3.2.1-py3-none-any.whl", hash = "sha256:f18c69adc97877c42332c170849c96cefa91881c99a7cb3e95b7c659ebdc1ec2"}, {file = "networkx-3.2.1.tar.gz", hash = "sha256:9f1bb5cf3409bf324e0a722c20bdb4c20ee39bf1c30ce8ae499c8502b0b5e0c6"}, @@ -2184,6 +2318,7 @@ name = "nltk" version = "3.8.1" requires_python = ">=3.7" summary = "Natural Language Toolkit" +groups = ["default"] dependencies = [ "click", "joblib", @@ -2200,6 +2335,7 @@ name = "numpy" version = "1.26.4" requires_python = ">=3.9" summary = "Fundamental package for array computing in Python" +groups = ["default"] files = [ {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, @@ -2235,6 +2371,7 @@ files = [ name = "oauth2client" version = "4.1.3" summary = "OAuth 2.0 client library" +groups = ["default"] dependencies = [ "httplib2>=0.9.1", "pyasn1-modules>=0.0.5", @@ -2252,6 +2389,7 @@ name = "oauthlib" version = "3.2.2" requires_python = ">=3.6" summary = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic" +groups = ["default"] files = [ {file = "oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca"}, {file = "oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918"}, @@ -2262,6 +2400,7 @@ name = "onnx" version = "1.15.0" requires_python = ">=3.8" summary = "Open Neural Network Exchange" +groups = ["default"] dependencies = [ "numpy", "protobuf>=3.20.2", @@ -2292,6 +2431,7 @@ files = [ name = "onnxruntime" version = "1.17.1" summary = "ONNX Runtime is a runtime accelerator for Machine Learning models" +groups = ["default"] dependencies = [ "coloredlogs", "flatbuffers", @@ -2323,6 +2463,7 @@ name = "openai" version = "1.3.9" requires_python = ">=3.7.1" summary = "The official Python library for the openai API" +groups = ["default"] dependencies = [ "anyio<5,>=3.5.0", "distro<2,>=1.7.0", @@ -2342,6 +2483,7 @@ name = "orjson" version = "3.9.15" requires_python = ">=3.8" summary = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" +groups = ["default"] files = [ {file = "orjson-3.9.15-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:d61f7ce4727a9fa7680cd6f3986b0e2c732639f46a5e0156e550e35258aa313a"}, {file = "orjson-3.9.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4feeb41882e8aa17634b589533baafdceb387e01e117b1ec65534ec724023d04"}, @@ -2381,6 +2523,7 @@ name = "packaging" version = "23.2" requires_python = ">=3.7" summary = "Core utilities for Python packages" +groups = ["default", "deploy", "test"] files = [ {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, @@ -2391,6 +2534,7 @@ name = "pandas" version = "2.1.4" requires_python = ">=3.9" summary = "Powerful data structures for data analysis, time series, and statistics" +groups = ["default"] dependencies = [ "numpy<2,>=1.22.4; python_version < \"3.11\"", "numpy<2,>=1.23.2; python_version == \"3.11\"", @@ -2425,6 +2569,7 @@ name = "pathspec" version = "0.12.1" requires_python = ">=3.8" summary = "Utility library for gitignore style pattern matching of file paths." +groups = ["default"] files = [ {file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"}, {file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"}, @@ -2435,6 +2580,7 @@ name = "pdfminer-six" version = "20221105" requires_python = ">=3.6" summary = "PDF parser and analyzer" +groups = ["default"] dependencies = [ "charset-normalizer>=2.0.0", "cryptography>=36.0.0", @@ -2449,6 +2595,7 @@ name = "pdfplumber" version = "0.10.3" requires_python = ">=3.8" summary = "Plumb a PDF for detailed information about each char, rectangle, and line." +groups = ["default"] dependencies = [ "Pillow>=9.1", "pdfminer-six==20221105", @@ -2464,6 +2611,7 @@ name = "pgvector" version = "0.1.8" requires_python = ">=3.6" summary = "pgvector support for Python" +groups = ["default"] dependencies = [ "numpy", ] @@ -2476,6 +2624,7 @@ name = "pillow" version = "10.2.0" requires_python = ">=3.8" summary = "Python Imaging Library (Fork)" +groups = ["default"] files = [ {file = "pillow-10.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:7823bdd049099efa16e4246bdf15e5a13dbb18a51b68fa06d6c1d4d8b99a796e"}, {file = "pillow-10.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:83b2021f2ade7d1ed556bc50a399127d7fb245e725aa0113ebd05cfe88aaf588"}, @@ -2531,6 +2680,7 @@ name = "pinecone-client" version = "2.2.4" requires_python = ">=3.8" summary = "Pinecone client and SDK" +groups = ["default"] dependencies = [ "dnspython>=2.0.0", "loguru>=0.5.0", @@ -2552,6 +2702,7 @@ name = "platformdirs" version = "3.11.0" requires_python = ">=3.7" summary = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +groups = ["default"] files = [ {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, @@ -2562,6 +2713,7 @@ name = "pluggy" version = "1.4.0" requires_python = ">=3.8" summary = "plugin and hook calling mechanisms for python" +groups = ["test"] files = [ {file = "pluggy-1.4.0-py3-none-any.whl", hash = "sha256:7db9f7b503d67d1c5b95f59773ebb58a8c1c288129a88665838012cfb07b8981"}, {file = "pluggy-1.4.0.tar.gz", hash = "sha256:8c85c2876142a764e5b7548e7d9a0e0ddb46f5185161049a79b7e974454223be"}, @@ -2571,6 +2723,7 @@ files = [ name = "ply" version = "3.11" summary = "Python Lex & Yacc" +groups = ["default"] files = [ {file = "ply-3.11-py2.py3-none-any.whl", hash = "sha256:096f9b8350b65ebd2fd1346b12452efe5b9607f7482813ffca50c22722a807ce"}, {file = "ply-3.11.tar.gz", hash = "sha256:00c7c1aaa88358b9c765b6d3000c6eec0ba42abca5351b095321aef446081da3"}, @@ -2581,6 +2734,7 @@ name = "portalocker" version = "2.8.2" requires_python = ">=3.8" summary = "Wraps the portalocker recipe for easy usage" +groups = ["default"] dependencies = [ "pywin32>=226; platform_system == \"Windows\"", ] @@ -2594,6 +2748,7 @@ name = "postgrest" version = "0.13.2" requires_python = ">=3.8,<4.0" summary = "PostgREST client for Python. This library provides an ORM interface to PostgREST." +groups = ["default"] dependencies = [ "deprecation<3.0.0,>=2.1.0", "httpx<0.26,>=0.24", @@ -2610,6 +2765,7 @@ name = "prometheus-client" version = "0.20.0" requires_python = ">=3.8" summary = "Python client for the Prometheus monitoring system." +groups = ["default"] files = [ {file = "prometheus_client-0.20.0-py3-none-any.whl", hash = "sha256:cde524a85bce83ca359cc837f28b8c0db5cac7aa653a588fd7e84ba061c329e7"}, {file = "prometheus_client-0.20.0.tar.gz", hash = "sha256:287629d00b147a32dcb2be0b9df905da599b2d82f80377083ec8463309a4bb89"}, @@ -2620,6 +2776,7 @@ name = "prompt-toolkit" version = "3.0.43" requires_python = ">=3.7.0" summary = "Library for building powerful interactive command lines in Python" +groups = ["default"] dependencies = [ "wcwidth", ] @@ -2633,6 +2790,7 @@ name = "proto-plus" version = "1.23.0" requires_python = ">=3.6" summary = "Beautiful, Pythonic protocol buffers." +groups = ["default"] dependencies = [ "protobuf<5.0.0dev,>=3.19.0", ] @@ -2646,6 +2804,7 @@ name = "protobuf" version = "4.25.3" requires_python = ">=3.8" summary = "" +groups = ["default"] files = [ {file = "protobuf-4.25.3-cp310-abi3-win32.whl", hash = "sha256:d4198877797a83cbfe9bffa3803602bbe1625dc30d8a097365dbc762e5790faa"}, {file = "protobuf-4.25.3-cp310-abi3-win_amd64.whl", hash = "sha256:209ba4cc916bab46f64e56b85b090607a676f66b473e6b762e6f1d9d591eb2e8"}, @@ -2663,6 +2822,7 @@ name = "psycopg2-binary" version = "2.9.9" requires_python = ">=3.7" summary = "psycopg2 - Python-PostgreSQL Database Adapter" +groups = ["default"] files = [ {file = "psycopg2-binary-2.9.9.tar.gz", hash = "sha256:7f01846810177d829c7692f1f5ada8096762d9172af1b1a28d4ab5b77c923c1c"}, {file = "psycopg2_binary-2.9.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c2470da5418b76232f02a2fcd2229537bb2d5a7096674ce61859c3229f2eb202"}, @@ -2708,6 +2868,7 @@ name = "pyarrow" version = "15.0.0" requires_python = ">=3.8" summary = "Python library for Apache Arrow" +groups = ["default"] dependencies = [ "numpy<2,>=1.16.6", ] @@ -2741,6 +2902,7 @@ name = "pyasn1" version = "0.5.1" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" summary = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" +groups = ["default"] files = [ {file = "pyasn1-0.5.1-py2.py3-none-any.whl", hash = "sha256:4439847c58d40b1d0a573d07e3856e95333f1976294494c325775aeca506eb58"}, {file = "pyasn1-0.5.1.tar.gz", hash = "sha256:6d391a96e59b23130a5cfa74d6fd7f388dbbe26cc8f1edf39fdddf08d9d6676c"}, @@ -2751,6 +2913,7 @@ name = "pyasn1-modules" version = "0.3.0" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" summary = "A collection of ASN.1-based protocols modules" +groups = ["default"] dependencies = [ "pyasn1<0.6.0,>=0.4.6", ] @@ -2764,6 +2927,7 @@ name = "pycparser" version = "2.21" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "C parser in Python" +groups = ["default"] files = [ {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, @@ -2774,6 +2938,7 @@ name = "pycryptodome" version = "3.20.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Cryptographic library for Python" +groups = ["default"] files = [ {file = "pycryptodome-3.20.0-cp35-abi3-macosx_10_9_universal2.whl", hash = "sha256:ac1c7c0624a862f2e53438a15c9259d1655325fc2ec4392e66dc46cdae24d044"}, {file = "pycryptodome-3.20.0-cp35-abi3-macosx_10_9_x86_64.whl", hash = "sha256:76658f0d942051d12a9bd08ca1b6b34fd762a8ee4240984f7c06ddfb55eaf15a"}, @@ -2800,17 +2965,18 @@ files = [ [[package]] name = "pydantic" -version = "2.6.2" +version = "2.6.3" requires_python = ">=3.8" summary = "Data validation using Python type hints" +groups = ["default"] dependencies = [ "annotated-types>=0.4.0", "pydantic-core==2.16.3", "typing-extensions>=4.6.1", ] files = [ - {file = "pydantic-2.6.2-py3-none-any.whl", hash = "sha256:37a5432e54b12fecaa1049c5195f3d860a10e01bdfd24f1840ef14bd0d3aeab3"}, - {file = "pydantic-2.6.2.tar.gz", hash = "sha256:a09be1c3d28f3abe37f8a78af58284b236a92ce520105ddc91a6d29ea1176ba7"}, + {file = "pydantic-2.6.3-py3-none-any.whl", hash = "sha256:72c6034df47f46ccdf81869fddb81aade68056003900a8724a4f160700016a2a"}, + {file = "pydantic-2.6.3.tar.gz", hash = "sha256:e07805c4c7f5c6826e33a1d4c9d47950d7eaf34868e2690f8594d2e30241f11f"}, ] [[package]] @@ -2818,6 +2984,7 @@ name = "pydantic-core" version = "2.16.3" requires_python = ">=3.8" summary = "" +groups = ["default"] dependencies = [ "typing-extensions!=4.7.0,>=4.6.0", ] @@ -2883,6 +3050,7 @@ name = "pydrive2" version = "1.15.4" requires_python = ">=3.7" summary = "Google Drive API made easy. Maintained fork of PyDrive." +groups = ["default"] dependencies = [ "PyYAML>=3.0", "google-api-python-client>=1.12.5", @@ -2900,6 +3068,7 @@ version = "1.15.4" extras = ["fsspec"] requires_python = ">=3.7" summary = "Google Drive API made easy. Maintained fork of PyDrive." +groups = ["default"] dependencies = [ "PyDrive2==1.15.4", "appdirs>=1.4.3", @@ -2917,6 +3086,7 @@ name = "pygments" version = "2.17.2" requires_python = ">=3.7" summary = "Pygments is a syntax highlighting package written in Python." +groups = ["default"] files = [ {file = "pygments-2.17.2-py3-none-any.whl", hash = "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c"}, {file = "pygments-2.17.2.tar.gz", hash = "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367"}, @@ -2927,6 +3097,7 @@ name = "pyjwt" version = "2.8.0" requires_python = ">=3.7" summary = "JSON Web Token implementation in Python" +groups = ["default"] files = [ {file = "PyJWT-2.8.0-py3-none-any.whl", hash = "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320"}, {file = "PyJWT-2.8.0.tar.gz", hash = "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de"}, @@ -2937,6 +3108,7 @@ name = "pymilvus" version = "2.3.4" requires_python = ">=3.7" summary = "Python Sdk for Milvus" +groups = ["default"] dependencies = [ "environs<=9.5.0", "grpcio<=1.58.0,>=1.49.1", @@ -2956,6 +3128,7 @@ files = [ name = "pymssql" version = "2.2.8" summary = "DB-API interface to Microsoft SQL Server for Python. (new Cython-based version)" +groups = ["default"] files = [ {file = "pymssql-2.2.8-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:30bfd7b8edef78097ccd3f52ac3f3a5c3cf0019f8a280f306cacbbb165caaf63"}, {file = "pymssql-2.2.8-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:049f2e3de919e8e02504780a21ebbf235e21ca8ed5c7538c5b6e705aa6c43d8c"}, @@ -2980,6 +3153,7 @@ name = "pymysql" version = "1.1.0" requires_python = ">=3.7" summary = "Pure Python MySQL Driver" +groups = ["default"] files = [ {file = "PyMySQL-1.1.0-py3-none-any.whl", hash = "sha256:8969ec6d763c856f7073c4c64662882675702efcb114b4bcbb955aea3a069fa7"}, {file = "PyMySQL-1.1.0.tar.gz", hash = "sha256:4f13a7df8bf36a51e81dd9f3605fede45a4878fe02f9236349fd82a3f0612f96"}, @@ -2990,6 +3164,7 @@ name = "pyopenssl" version = "23.3.0" requires_python = ">=3.7" summary = "Python wrapper module around the OpenSSL library" +groups = ["default"] dependencies = [ "cryptography<42,>=41.0.5", ] @@ -3003,6 +3178,8 @@ name = "pyparsing" version = "3.1.1" requires_python = ">=3.6.8" summary = "pyparsing module - Classes and methods to define and execute parsing grammars" +groups = ["default"] +marker = "python_version > \"3.0\"" files = [ {file = "pyparsing-3.1.1-py3-none-any.whl", hash = "sha256:32c7c0b711493c72ff18a981d24f28aaf9c1fb7ed5e9667c9e84e3db623bdbfb"}, {file = "pyparsing-3.1.1.tar.gz", hash = "sha256:ede28a1a32462f5a9705e07aea48001a08f7cf81a021585011deba701581a0db"}, @@ -3013,6 +3190,7 @@ name = "pypdfium2" version = "4.27.0" requires_python = ">= 3.6" summary = "Python bindings to PDFium" +groups = ["default"] files = [ {file = "pypdfium2-4.27.0-py3-none-macosx_10_13_x86_64.whl", hash = "sha256:2938f423c79b49df9057993f747e537a05b71bc2c847801ac743f27c3220d363"}, {file = "pypdfium2-4.27.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:f396941e070bf6c245890f2ffb2cb04f39585e3cda93ebb1648f1ed0e99b921f"}, @@ -3033,6 +3211,8 @@ files = [ name = "pyreadline3" version = "3.4.1" summary = "A python implementation of GNU readline." +groups = ["default"] +marker = "sys_platform == \"win32\" and python_version >= \"3.8\"" files = [ {file = "pyreadline3-3.4.1-py3-none-any.whl", hash = "sha256:b0efb6516fd4fb07b45949053826a62fa4cb353db5be2bbb4a7aa1fdd1e345fb"}, {file = "pyreadline3-3.4.1.tar.gz", hash = "sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae"}, @@ -3043,6 +3223,7 @@ name = "pytesseract" version = "0.3.10" requires_python = ">=3.7" summary = "Python-tesseract is a python wrapper for Google's Tesseract-OCR" +groups = ["default"] dependencies = [ "Pillow>=8.0.0", "packaging>=21.3", @@ -3057,6 +3238,7 @@ name = "pytest" version = "8.0.2" requires_python = ">=3.8" summary = "pytest: simple powerful testing with Python" +groups = ["test"] dependencies = [ "colorama; sys_platform == \"win32\"", "exceptiongroup>=1.0.0rc8; python_version < \"3.11\"", @@ -3074,6 +3256,7 @@ files = [ name = "python-crontab" version = "3.0.0" summary = "Python Crontab API" +groups = ["default"] dependencies = [ "python-dateutil", ] @@ -3087,6 +3270,7 @@ name = "python-dateutil" version = "2.8.2" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" summary = "Extensions to the standard Python datetime module" +groups = ["default"] dependencies = [ "six>=1.5", ] @@ -3100,6 +3284,7 @@ name = "python-dotenv" version = "1.0.0" requires_python = ">=3.8" summary = "Read key-value pairs from a .env file and set them as environment variables" +groups = ["default"] files = [ {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, @@ -3110,6 +3295,7 @@ name = "python-engineio" version = "4.9.0" requires_python = ">=3.6" summary = "Engine.IO server and client for Python" +groups = ["default"] dependencies = [ "simple-websocket>=0.10.0", ] @@ -3123,6 +3309,7 @@ name = "python-magic" version = "0.4.27" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "File type identification using libmagic" +groups = ["default"] files = [ {file = "python-magic-0.4.27.tar.gz", hash = "sha256:c1ba14b08e4a5f5c31a302b7721239695b2f0f058d125bd5ce1ee36b9d9d3c3b"}, {file = "python_magic-0.4.27-py2.py3-none-any.whl", hash = "sha256:c212960ad306f700aa0d01e5d7a325d20548ff97eb9920dcd29513174f0294d3"}, @@ -3133,6 +3320,7 @@ name = "python-socketio" version = "5.9.0" requires_python = ">=3.6" summary = "Socket.IO server and client for Python" +groups = ["default"] dependencies = [ "bidict>=0.21.0", "python-engineio>=4.7.0", @@ -3146,6 +3334,7 @@ files = [ name = "python3-openid" version = "3.2.0" summary = "OpenID support for modern servers and consumers." +groups = ["default"] dependencies = [ "defusedxml", ] @@ -3158,6 +3347,7 @@ files = [ name = "pytz" version = "2024.1" summary = "World timezone definitions, modern and historical" +groups = ["default"] files = [ {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, @@ -3167,6 +3357,8 @@ files = [ name = "pywin32" version = "306" summary = "Python for Window Extensions" +groups = ["default"] +marker = "sys_platform == \"win32\" or platform_system == \"Windows\"" files = [ {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, @@ -3182,6 +3374,7 @@ name = "pyyaml" version = "6.0.1" requires_python = ">=3.6" summary = "YAML parser and emitter for Python" +groups = ["default"] files = [ {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, @@ -3215,6 +3408,7 @@ name = "qdrant-client" version = "1.7.0" requires_python = ">=3.8,<3.13" summary = "Client library for the Qdrant vector search engine" +groups = ["default"] dependencies = [ "grpcio-tools>=1.41.0", "grpcio>=1.41.0", @@ -3234,6 +3428,7 @@ name = "realtime" version = "1.0.2" requires_python = ">=3.8,<4.0" summary = "" +groups = ["default"] dependencies = [ "python-dateutil<3.0.0,>=2.8.1", "typing-extensions<5.0.0,>=4.2.0", @@ -3249,6 +3444,7 @@ name = "redis" version = "5.0.1" requires_python = ">=3.7" summary = "Python client for Redis database and key-value store" +groups = ["default"] dependencies = [ "async-timeout>=4.0.2; python_full_version <= \"3.11.2\"", ] @@ -3262,6 +3458,7 @@ name = "referencing" version = "0.33.0" requires_python = ">=3.8" summary = "JSON Referencing + Python" +groups = ["default"] dependencies = [ "attrs>=22.2.0", "rpds-py>=0.7.0", @@ -3276,6 +3473,7 @@ name = "regex" version = "2023.12.25" requires_python = ">=3.7" summary = "Alternative regular expression module, to replace re." +groups = ["default"] files = [ {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0694219a1d54336fd0445ea382d49d36882415c0134ee1e8332afd1529f0baa5"}, {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b014333bd0217ad3d54c143de9d4b9a3ca1c5a29a6d0d554952ea071cff0f1f8"}, @@ -3332,6 +3530,7 @@ name = "replicate" version = "0.22.0" requires_python = ">=3.8" summary = "Python client for Replicate" +groups = ["default"] dependencies = [ "httpx<1,>=0.21.0", "packaging", @@ -3348,6 +3547,7 @@ name = "requests" version = "2.31.0" requires_python = ">=3.7" summary = "Python HTTP for Humans." +groups = ["default"] dependencies = [ "certifi>=2017.4.17", "charset-normalizer<4,>=2", @@ -3364,6 +3564,7 @@ name = "requests-oauthlib" version = "1.3.1" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "OAuthlib authentication support for Requests." +groups = ["default"] dependencies = [ "oauthlib>=3.0.0", "requests>=2.0.0", @@ -3378,6 +3579,7 @@ name = "requests-toolbelt" version = "1.0.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "A utility belt for advanced users of python-requests" +groups = ["default"] dependencies = [ "requests<3.0.0,>=2.0.1", ] @@ -3391,6 +3593,7 @@ name = "rich" version = "13.7.0" requires_python = ">=3.7.0" summary = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" +groups = ["default"] dependencies = [ "markdown-it-py>=2.2.0", "pygments<3.0.0,>=2.13.0", @@ -3405,6 +3608,7 @@ name = "rpds-py" version = "0.18.0" requires_python = ">=3.8" summary = "Python bindings to Rust's persistent data structures (rpds)" +groups = ["default"] files = [ {file = "rpds_py-0.18.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:5b4e7d8d6c9b2e8ee2d55c90b59c707ca59bc30058269b3db7b1f8df5763557e"}, {file = "rpds_py-0.18.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c463ed05f9dfb9baebef68048aed8dcdc94411e4bf3d33a39ba97e271624f8f7"}, @@ -3486,6 +3690,7 @@ name = "rsa" version = "4.9" requires_python = ">=3.6,<4" summary = "Pure-Python RSA implementation" +groups = ["default"] dependencies = [ "pyasn1>=0.1.3", ] @@ -3499,6 +3704,7 @@ name = "s3fs" version = "2023.6.0" requires_python = ">= 3.8" summary = "Convenient Filesystem interface over S3" +groups = ["default"] dependencies = [ "aiobotocore~=2.5.0", "aiohttp!=4.0.0a0,!=4.0.0a1", @@ -3515,6 +3721,7 @@ version = "2023.6.0" extras = ["boto3"] requires_python = ">= 3.8" summary = "Convenient Filesystem interface over S3" +groups = ["default"] dependencies = [ "aiobotocore[boto3]~=2.5.0", "s3fs==2023.6.0", @@ -3529,6 +3736,7 @@ name = "s3transfer" version = "0.6.2" requires_python = ">= 3.7" summary = "An Amazon S3 Transfer Manager" +groups = ["default"] dependencies = [ "botocore<2.0a.0,>=1.12.36", ] @@ -3542,6 +3750,7 @@ name = "safetensors" version = "0.4.2" requires_python = ">=3.7" summary = "" +groups = ["default"] files = [ {file = "safetensors-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:69d8bb8384dc2cb5b72c36c4d6980771b293d1a1377b378763f5e37b6bb8d133"}, {file = "safetensors-0.4.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3d420e19fcef96d0067f4de4699682b4bbd85fc8fea0bd45fcd961fdf3e8c82c"}, @@ -3614,6 +3823,7 @@ name = "setuptools" version = "69.1.1" requires_python = ">=3.8" summary = "Easily download, build, install, upgrade, and uninstall Python packages" +groups = ["default"] files = [ {file = "setuptools-69.1.1-py3-none-any.whl", hash = "sha256:02fa291a0471b3a18b2b2481ed902af520c69e8ae0919c13da936542754b4c56"}, {file = "setuptools-69.1.1.tar.gz", hash = "sha256:5c0806c7d9af348e6dd3777b4f4dbb42c7ad85b190104837488eab9a7c945cf8"}, @@ -3624,6 +3834,7 @@ name = "shapely" version = "2.0.3" requires_python = ">=3.7" summary = "Manipulation and analysis of geometric objects" +groups = ["default"] dependencies = [ "numpy<2,>=1.14", ] @@ -3657,6 +3868,7 @@ name = "simple-websocket" version = "1.0.0" requires_python = ">=3.6" summary = "Simple WebSocket server and client for Python" +groups = ["default"] dependencies = [ "wsproto", ] @@ -3670,6 +3882,7 @@ name = "six" version = "1.16.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" summary = "Python 2 and 3 compatibility utilities" +groups = ["default"] files = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, @@ -3680,6 +3893,7 @@ name = "smart-open" version = "7.0.1" requires_python = ">=3.6,<4.0" summary = "Utils for streaming large files (S3, HDFS, GCS, Azure Blob Storage, gzip, bz2...)" +groups = ["default"] dependencies = [ "wrapt", ] @@ -3693,6 +3907,7 @@ name = "smmap" version = "5.0.1" requires_python = ">=3.7" summary = "A pure Python implementation of a sliding window memory map manager" +groups = ["default"] files = [ {file = "smmap-5.0.1-py3-none-any.whl", hash = "sha256:e6d8668fa5f93e706934a62d7b4db19c8d9eb8cf2adbb75ef1b675aa332b69da"}, {file = "smmap-5.0.1.tar.gz", hash = "sha256:dceeb6c0028fdb6734471eb07c0cd2aae706ccaecab45965ee83f11c8d3b1f62"}, @@ -3703,6 +3918,7 @@ name = "sniffio" version = "1.3.1" requires_python = ">=3.7" summary = "Sniff out which async library your code is running under" +groups = ["default"] files = [ {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, @@ -3713,6 +3929,7 @@ name = "snowflake-connector-python" version = "3.6.0" requires_python = ">=3.8" summary = "Snowflake Connector for Python" +groups = ["default"] dependencies = [ "asn1crypto<2.0.0,>0.24.0", "certifi>=2017.4.17", @@ -3757,6 +3974,7 @@ version = "3.6.0" extras = ["pandas"] requires_python = ">=3.8" summary = "Snowflake Connector for Python" +groups = ["default"] dependencies = [ "pandas<2.2.0,>=1.0.0", "pyarrow", @@ -3786,6 +4004,7 @@ name = "social-auth-app-django" version = "5.3.0" requires_python = ">=3.7" summary = "Python Social Authentication, Django integration." +groups = ["default"] dependencies = [ "Django>=3.2", "social-auth-core>=4.4.1", @@ -3800,6 +4019,7 @@ name = "social-auth-core" version = "4.4.2" requires_python = ">=3.6" summary = "Python social authentication made simple." +groups = ["default"] dependencies = [ "PyJWT>=2.0.0", "cryptography>=1.4", @@ -3818,6 +4038,7 @@ files = [ name = "sortedcontainers" version = "2.4.0" summary = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" +groups = ["default"] files = [ {file = "sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0"}, {file = "sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88"}, @@ -3828,6 +4049,7 @@ name = "soupsieve" version = "2.5" requires_python = ">=3.8" summary = "A modern CSS selector implementation for Beautiful Soup." +groups = ["default"] files = [ {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"}, {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"}, @@ -3837,6 +4059,7 @@ files = [ name = "spinners" version = "0.0.24" summary = "Spinners for terminals" +groups = ["default"] files = [ {file = "spinners-0.0.24-py3-none-any.whl", hash = "sha256:2fa30d0b72c9650ad12bbe031c9943b8d441e41b4f5602b0ec977a19f3290e98"}, {file = "spinners-0.0.24.tar.gz", hash = "sha256:1eb6aeb4781d72ab42ed8a01dcf20f3002bf50740d7154d12fb8c9769bf9e27f"}, @@ -3847,8 +4070,9 @@ name = "sqlalchemy" version = "2.0.26" requires_python = ">=3.7" summary = "Database Abstraction Library" +groups = ["default"] dependencies = [ - "greenlet!=0.4.17; platform_machine == \"aarch64\" or (platform_machine == \"ppc64le\" or (platform_machine == \"x86_64\" or (platform_machine == \"amd64\" or (platform_machine == \"AMD64\" or (platform_machine == \"win32\" or platform_machine == \"WIN32\")))))", + "greenlet!=0.4.17; platform_machine == \"win32\" or platform_machine == \"WIN32\" or platform_machine == \"AMD64\" or platform_machine == \"amd64\" or platform_machine == \"x86_64\" or platform_machine == \"ppc64le\" or platform_machine == \"aarch64\"", "typing-extensions>=4.6.0", ] files = [ @@ -3886,6 +4110,7 @@ version = "2.0.26" extras = ["asyncio"] requires_python = ">=3.7" summary = "Database Abstraction Library" +groups = ["default"] dependencies = [ "SQLAlchemy==2.0.26", "greenlet!=0.4.17", @@ -3924,6 +4149,7 @@ name = "sqlparse" version = "0.4.4" requires_python = ">=3.5" summary = "A non-validating SQL parser." +groups = ["default"] files = [ {file = "sqlparse-0.4.4-py3-none-any.whl", hash = "sha256:5430a4fe2ac7d0f93e66f1efc6e1338a41884b7ddf2a350cedd20ccc4d9d28f3"}, {file = "sqlparse-0.4.4.tar.gz", hash = "sha256:d446183e84b8349fa3061f0fe7f06ca94ba65b426946ffebe6e3e8295332420c"}, @@ -3933,6 +4159,7 @@ files = [ name = "stone" version = "3.3.1" summary = "Stone is an interface description language (IDL) for APIs." +groups = ["default"] dependencies = [ "ply>=3.4", "six>=1.12.0", @@ -3947,6 +4174,7 @@ name = "storage3" version = "0.7.0" requires_python = ">=3.8,<4.0" summary = "Supabase Storage client for Python." +groups = ["default"] dependencies = [ "httpx<0.26,>=0.24", "python-dateutil<3.0.0,>=2.8.2", @@ -3961,6 +4189,7 @@ files = [ name = "strenum" version = "0.4.15" summary = "An Enum that inherits from str." +groups = ["default"] files = [ {file = "StrEnum-0.4.15-py3-none-any.whl", hash = "sha256:a30cda4af7cc6b5bf52c8055bc4bf4b2b6b14a93b574626da33df53cf7740659"}, {file = "StrEnum-0.4.15.tar.gz", hash = "sha256:878fb5ab705442070e4dd1929bb5e2249511c0bcf2b0eeacf3bcd80875c82eff"}, @@ -3971,6 +4200,7 @@ name = "supabase" version = "2.2.1" requires_python = ">=3.8,<4.0" summary = "Supabase client for Python." +groups = ["default"] dependencies = [ "gotrue<3.0,>=1.3", "httpx<0.25.0,>=0.24.0", @@ -3989,6 +4219,7 @@ name = "supafunc" version = "0.3.3" requires_python = ">=3.8,<4.0" summary = "Library for Supabase Functions" +groups = ["default"] dependencies = [ "httpx<0.26,>=0.24", ] @@ -4002,6 +4233,7 @@ name = "sympy" version = "1.12" requires_python = ">=3.8" summary = "Computer algebra system (CAS) in Python" +groups = ["default"] dependencies = [ "mpmath>=0.19", ] @@ -4015,6 +4247,7 @@ name = "tabulate" version = "0.9.0" requires_python = ">=3.7" summary = "Pretty-print tabular data" +groups = ["default"] files = [ {file = "tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f"}, {file = "tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c"}, @@ -4025,6 +4258,7 @@ name = "tenacity" version = "8.2.3" requires_python = ">=3.7" summary = "Retry code until it succeeds" +groups = ["default"] files = [ {file = "tenacity-8.2.3-py3-none-any.whl", hash = "sha256:ce510e327a630c9e1beaf17d42e6ffacc88185044ad85cf74c0a8887c6a0f88c"}, {file = "tenacity-8.2.3.tar.gz", hash = "sha256:5398ef0d78e63f40007c1fb4c0bff96e1911394d2fa8d194f77619c05ff6cc8a"}, @@ -4035,6 +4269,8 @@ name = "tensorrt-llm" version = "0.7.1" requires_python = ">=3.7, <4" summary = "" +groups = ["default"] +marker = "python_version == \"3.10\"" files = [ {file = "tensorrt-llm-0.7.1.tar.gz", hash = "sha256:10275e2585484f138b43576acddba42ebee073fbb1665fe0954032e421e26e08"}, ] @@ -4044,6 +4280,7 @@ name = "termcolor" version = "2.4.0" requires_python = ">=3.8" summary = "ANSI color formatting for output in terminal" +groups = ["default"] files = [ {file = "termcolor-2.4.0-py3-none-any.whl", hash = "sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63"}, {file = "termcolor-2.4.0.tar.gz", hash = "sha256:aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a"}, @@ -4054,6 +4291,7 @@ name = "tiktoken" version = "0.4.0" requires_python = ">=3.8" summary = "tiktoken is a fast BPE tokeniser for use with OpenAI's models" +groups = ["default"] dependencies = [ "regex>=2022.1.18", "requests>=2.26.0", @@ -4088,6 +4326,7 @@ name = "tokenizers" version = "0.15.2" requires_python = ">=3.7" summary = "" +groups = ["default"] dependencies = [ "huggingface-hub<1.0,>=0.16.4", ] @@ -4163,6 +4402,8 @@ name = "tomli" version = "2.0.1" requires_python = ">=3.7" summary = "A lil' TOML parser" +groups = ["test"] +marker = "python_version < \"3.11\"" files = [ {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, @@ -4173,6 +4414,7 @@ name = "tomlkit" version = "0.12.4" requires_python = ">=3.7" summary = "Style preserving TOML library" +groups = ["default"] files = [ {file = "tomlkit-0.12.4-py3-none-any.whl", hash = "sha256:5cd82d48a3dd89dee1f9d64420aa20ae65cfbd00668d6f094d7578a78efbb77b"}, {file = "tomlkit-0.12.4.tar.gz", hash = "sha256:7ca1cfc12232806517a8515047ba66a19369e71edf2439d0f5824f91032b6cc3"}, @@ -4183,6 +4425,7 @@ name = "tornado" version = "6.4" requires_python = ">= 3.8" summary = "Tornado is a Python web framework and asynchronous networking library, originally developed at FriendFeed." +groups = ["default"] files = [ {file = "tornado-6.4-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:02ccefc7d8211e5a7f9e8bc3f9e5b0ad6262ba2fbb683a6443ecc804e5224ce0"}, {file = "tornado-6.4-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:27787de946a9cffd63ce5814c33f734c627a87072ec7eed71f7fc4417bb16263"}, @@ -4202,6 +4445,7 @@ name = "tqdm" version = "4.66.2" requires_python = ">=3.7" summary = "Fast, Extensible Progress Meter" +groups = ["default"] dependencies = [ "colorama; platform_system == \"Windows\"", ] @@ -4215,6 +4459,7 @@ name = "transformers" version = "4.37.0" requires_python = ">=3.8.0" summary = "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow" +groups = ["default"] dependencies = [ "filelock", "huggingface-hub<1.0,>=0.19.3", @@ -4237,6 +4482,7 @@ name = "typing-extensions" version = "4.10.0" requires_python = ">=3.8" summary = "Backported and Experimental Type Hints for Python 3.8+" +groups = ["default"] files = [ {file = "typing_extensions-4.10.0-py3-none-any.whl", hash = "sha256:69b1a937c3a517342112fb4c6df7e72fc39a38e7891a5730ed4985b5214b5475"}, {file = "typing_extensions-4.10.0.tar.gz", hash = "sha256:b0abd7c89e8fb96f98db18d86106ff1d90ab692004eb746cf6eda2682f91b3cb"}, @@ -4246,6 +4492,7 @@ files = [ name = "typing-inspect" version = "0.9.0" summary = "Runtime inspection utilities for typing module." +groups = ["default"] dependencies = [ "mypy-extensions>=0.3.0", "typing-extensions>=3.7.4", @@ -4260,6 +4507,7 @@ name = "tzdata" version = "2024.1" requires_python = ">=2" summary = "Provider of IANA time zone data" +groups = ["default"] files = [ {file = "tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252"}, {file = "tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd"}, @@ -4270,6 +4518,7 @@ name = "tzlocal" version = "5.2" requires_python = ">=3.8" summary = "tzinfo object for the local timezone" +groups = ["default"] dependencies = [ "tzdata; platform_system == \"Windows\"", ] @@ -4283,6 +4532,7 @@ name = "ujson" version = "5.9.0" requires_python = ">=3.8" summary = "Ultra fast JSON encoder and decoder for Python" +groups = ["default"] files = [ {file = "ujson-5.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ab71bf27b002eaf7d047c54a68e60230fbd5cd9da60de7ca0aa87d0bccead8fa"}, {file = "ujson-5.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7a365eac66f5aa7a7fdf57e5066ada6226700884fc7dce2ba5483538bc16c8c5"}, @@ -4336,6 +4586,7 @@ name = "unstract-adapters" version = "0.2.2" requires_python = "<3.12,>=3.9" summary = "Unstract Adapters" +groups = ["default"] dependencies = [ "SQLAlchemy==2.0.26", "anthropic==0.7.8", @@ -4370,6 +4621,7 @@ version = "0.0.3" requires_python = ">=3.9" path = "../unstract/connectors" summary = "All connectors that are part of the Unstract platform" +groups = ["default"] dependencies = [ "PyDrive2[fsspec]==1.15.4", "PyMySQL==1.1.0", @@ -4392,6 +4644,7 @@ version = "0.0.1" requires_python = ">=3.9,<3.11.1" path = "../unstract/core" summary = "Core library that helps with executing workflows." +groups = ["default"] dependencies = [ "boto3~=1.28.17", "botocore~=1.31.17", @@ -4406,6 +4659,7 @@ version = "0.0.1" requires_python = ">=3.9" path = "../unstract/flags" summary = "Unstract's feature flags package." +groups = ["default"] dependencies = [ "grpcio-tools<=1.58.0", "grpcio<=1.58.0", @@ -4416,6 +4670,7 @@ name = "unstract-sdk" version = "0.11.2" requires_python = "<3.11.1,>=3.9" summary = "A framework for writing Unstract Tools/Apps" +groups = ["default"] dependencies = [ "filetype==1.2.0", "jsonschema~=4.18.2", @@ -4439,6 +4694,7 @@ version = "0.0.1" requires_python = ">=3.9,<3.11.1" path = "../unstract/tool-registry" summary = "Unstract's registry of tools to be used in workflows." +groups = ["default"] dependencies = [ "PyYAML~=6.0.1", "docker~=6.1.3", @@ -4453,6 +4709,7 @@ version = "0.0.1" requires_python = ">=3.9" path = "../unstract/tool-sandbox" summary = "Unstract Tool Sandbox is a package to communicate with tool worker" +groups = ["default"] dependencies = [ "requests==2.31.0", ] @@ -4463,6 +4720,7 @@ version = "0.0.1" requires_python = ">=3.9" path = "../unstract/workflow-execution" summary = "Unstract workflow execution package" +groups = ["default"] dependencies = [ "unstract-tool-registry", "unstract-tool-sandbox", @@ -4473,6 +4731,7 @@ name = "uritemplate" version = "4.1.1" requires_python = ">=3.6" summary = "Implementation of RFC 6570 URI Templates" +groups = ["default"] files = [ {file = "uritemplate-4.1.1-py2.py3-none-any.whl", hash = "sha256:830c08b8d99bdd312ea4ead05994a38e8936266f84b9a7878232db50b044e02e"}, {file = "uritemplate-4.1.1.tar.gz", hash = "sha256:4346edfc5c3b79f694bccd6d6099a322bbeb628dbf2cd86eea55a456ce5124f0"}, @@ -4483,6 +4742,7 @@ name = "urllib3" version = "1.26.18" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" summary = "HTTP library with thread-safe connection pooling, file post, and more." +groups = ["default"] files = [ {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, @@ -4493,6 +4753,7 @@ name = "validators" version = "0.22.0" requires_python = ">=3.8" summary = "Python Data Validation for Humans™" +groups = ["default"] files = [ {file = "validators-0.22.0-py3-none-any.whl", hash = "sha256:61cf7d4a62bbae559f2e54aed3b000cea9ff3e2fdbe463f51179b92c58c9585a"}, {file = "validators-0.22.0.tar.gz", hash = "sha256:77b2689b172eeeb600d9605ab86194641670cdb73b60afd577142a9397873370"}, @@ -4502,6 +4763,7 @@ files = [ name = "vecs" version = "0.1.0" summary = "pgvector client" +groups = ["default"] dependencies = [ "pgvector==0.1.*", "sqlalchemy==2.*", @@ -4515,6 +4777,7 @@ name = "vine" version = "5.1.0" requires_python = ">=3.6" summary = "Python promises." +groups = ["default"] files = [ {file = "vine-5.1.0-py3-none-any.whl", hash = "sha256:40fdf3c48b2cfe1c38a49e9ae2da6fda88e4794c810050a728bd7413811fb1dc"}, {file = "vine-5.1.0.tar.gz", hash = "sha256:8b62e981d35c41049211cf62a0a1242d8c1ee9bd15bb196ce38aefd6799e61e0"}, @@ -4524,6 +4787,7 @@ files = [ name = "wcwidth" version = "0.2.13" summary = "Measures the displayed width of unicode strings in a terminal" +groups = ["default"] files = [ {file = "wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859"}, {file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"}, @@ -4534,6 +4798,7 @@ name = "weaviate-client" version = "3.25.3" requires_python = ">=3.8" summary = "A python native Weaviate client" +groups = ["default"] dependencies = [ "authlib<2.0.0,>=1.2.1", "requests<3.0.0,>=2.30.0", @@ -4549,6 +4814,7 @@ name = "websocket-client" version = "1.7.0" requires_python = ">=3.8" summary = "WebSocket client for Python with low level API options" +groups = ["default"] files = [ {file = "websocket-client-1.7.0.tar.gz", hash = "sha256:10e511ea3a8c744631d3bd77e61eb17ed09304c413ad42cf6ddfa4c7787e8fe6"}, {file = "websocket_client-1.7.0-py3-none-any.whl", hash = "sha256:f4c3d22fec12a2461427a29957ff07d35098ee2d976d3ba244e688b8b4057588"}, @@ -4559,6 +4825,7 @@ name = "websockets" version = "11.0.3" requires_python = ">=3.7" summary = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" +groups = ["default"] files = [ {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3ccc8a0c387629aec40f2fc9fdcb4b9d5431954f934da3eaf16cdc94f67dbfac"}, {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d67ac60a307f760c6e65dad586f556dde58e683fab03323221a4e530ead6f74d"}, @@ -4617,6 +4884,8 @@ name = "win32-setctime" version = "1.1.0" requires_python = ">=3.5" summary = "A small Python utility to set file creation time on Windows" +groups = ["default"] +marker = "sys_platform == \"win32\"" files = [ {file = "win32_setctime-1.1.0-py3-none-any.whl", hash = "sha256:231db239e959c2fe7eb1d7dc129f11172354f98361c4fa2d6d2d7e278baa8aad"}, {file = "win32_setctime-1.1.0.tar.gz", hash = "sha256:15cf5750465118d6929ae4de4eb46e8edae9a5634350c01ba582df868e932cb2"}, @@ -4627,6 +4896,7 @@ name = "wrapt" version = "1.16.0" requires_python = ">=3.6" summary = "Module for decorators, wrappers and monkey patching." +groups = ["default"] files = [ {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, @@ -4667,6 +4937,7 @@ name = "wsproto" version = "1.2.0" requires_python = ">=3.7.0" summary = "WebSockets state-machine based protocol implementation" +groups = ["default"] dependencies = [ "h11<1,>=0.9.0", ] @@ -4680,6 +4951,7 @@ name = "yarl" version = "1.9.4" requires_python = ">=3.7" summary = "Yet another URL library" +groups = ["default"] dependencies = [ "idna>=2.0", "multidict>=4.0", diff --git a/pdm.lock b/pdm.lock index d61e48a253..a617b0be0f 100644 --- a/pdm.lock +++ b/pdm.lock @@ -2,9 +2,9 @@ # It is not intended for manual editing. [metadata] -groups = ["default", "lint", "hook-check-django-migrations"] -strategy = ["cross_platform"] -lock_version = "4.4" +groups = ["default", "hook-check-django-migrations", "lint"] +strategy = ["cross_platform", "inherit_metadata"] +lock_version = "4.4.1" content_hash = "sha256:34bd617283cb8620b48d2ff82e83a4721d9464962bb6ccebd4d9f860efaed221" [[package]] @@ -12,6 +12,7 @@ name = "absolufy-imports" version = "0.3.1" requires_python = ">=3.6.1" summary = "A tool to automatically replace relative imports with absolute ones." +groups = ["lint"] files = [ {file = "absolufy_imports-0.3.1-py2.py3-none-any.whl", hash = "sha256:49bf7c753a9282006d553ba99217f48f947e3eef09e18a700f8a82f75dc7fc5c"}, {file = "absolufy_imports-0.3.1.tar.gz", hash = "sha256:c90638a6c0b66826d1fb4880ddc20ef7701af34192c94faf40b95d32b59f9793"}, @@ -22,6 +23,7 @@ name = "aiobotocore" version = "2.5.4" requires_python = ">=3.7" summary = "Async client for aws services using botocore and aiohttp" +groups = ["hook-check-django-migrations"] dependencies = [ "aiohttp<4.0.0,>=3.3.1", "aioitertools<1.0.0,>=0.5.1", @@ -39,6 +41,7 @@ version = "2.5.4" extras = ["boto3"] requires_python = ">=3.7" summary = "Async client for aws services using botocore and aiohttp" +groups = ["hook-check-django-migrations"] dependencies = [ "aiobotocore==2.5.4", "boto3<1.28.18,>=1.28.17", @@ -53,6 +56,7 @@ name = "aiohttp" version = "3.9.3" requires_python = ">=3.8" summary = "Async http client/server framework (asyncio)" +groups = ["hook-check-django-migrations"] dependencies = [ "aiosignal>=1.1.2", "async-timeout<5.0,>=4.0; python_version < \"3.11\"", @@ -115,6 +119,7 @@ name = "aioitertools" version = "0.11.0" requires_python = ">=3.6" summary = "itertools and builtins for AsyncIO and mixed iterables" +groups = ["hook-check-django-migrations"] dependencies = [ "typing-extensions>=4.0; python_version < \"3.10\"", ] @@ -128,6 +133,7 @@ name = "aiosignal" version = "1.3.1" requires_python = ">=3.7" summary = "aiosignal: a list of registered asynchronous callbacks" +groups = ["hook-check-django-migrations"] dependencies = [ "frozenlist>=1.1.0", ] @@ -141,6 +147,7 @@ name = "amqp" version = "5.2.0" requires_python = ">=3.6" summary = "Low-level AMQP client for Python (fork of amqplib)." +groups = ["hook-check-django-migrations"] dependencies = [ "vine<6.0.0,>=5.0.0", ] @@ -154,6 +161,7 @@ name = "annotated-types" version = "0.6.0" requires_python = ">=3.8" summary = "Reusable constraint types to use with typing.Annotated" +groups = ["hook-check-django-migrations"] files = [ {file = "annotated_types-0.6.0-py3-none-any.whl", hash = "sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43"}, {file = "annotated_types-0.6.0.tar.gz", hash = "sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d"}, @@ -164,6 +172,7 @@ name = "anthropic" version = "0.7.8" requires_python = ">=3.7" summary = "The official Python library for the anthropic API" +groups = ["hook-check-django-migrations"] dependencies = [ "anyio<5,>=3.5.0", "distro<2,>=1.7.0", @@ -183,6 +192,7 @@ name = "anyio" version = "4.3.0" requires_python = ">=3.8" summary = "High level compatibility layer for multiple asynchronous event loop implementations" +groups = ["hook-check-django-migrations"] dependencies = [ "exceptiongroup>=1.0.2; python_version < \"3.11\"", "idna>=2.8", @@ -198,6 +208,7 @@ files = [ name = "anyscale" version = "0.5.165" summary = "Command Line Interface for Anyscale" +groups = ["hook-check-django-migrations"] dependencies = [ "Click>=7.0", "GitPython", @@ -236,6 +247,7 @@ files = [ name = "appdirs" version = "1.4.4" summary = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +groups = ["hook-check-django-migrations"] files = [ {file = "appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128"}, {file = "appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41"}, @@ -246,6 +258,7 @@ name = "argon2-cffi" version = "23.1.0" requires_python = ">=3.7" summary = "Argon2 for Python" +groups = ["hook-check-django-migrations"] dependencies = [ "argon2-cffi-bindings", ] @@ -259,6 +272,7 @@ name = "argon2-cffi-bindings" version = "21.2.0" requires_python = ">=3.6" summary = "Low-level CFFI bindings for Argon2" +groups = ["hook-check-django-migrations"] dependencies = [ "cffi>=1.0.1", ] @@ -291,6 +305,7 @@ name = "asgiref" version = "3.7.2" requires_python = ">=3.7" summary = "ASGI specs, helper code, and adapters" +groups = ["hook-check-django-migrations"] dependencies = [ "typing-extensions>=4; python_version < \"3.11\"", ] @@ -303,6 +318,7 @@ files = [ name = "asn1crypto" version = "1.5.1" summary = "Fast ASN.1 parser and serializer with definitions for private keys, public keys, certificates, CRL, OCSP, CMS, PKCS#3, PKCS#7, PKCS#8, PKCS#12, PKCS#5, X.509 and TSP" +groups = ["hook-check-django-migrations"] files = [ {file = "asn1crypto-1.5.1-py2.py3-none-any.whl", hash = "sha256:db4e40728b728508912cbb3d44f19ce188f218e9eba635821bb4b68564f8fd67"}, {file = "asn1crypto-1.5.1.tar.gz", hash = "sha256:13ae38502be632115abf8a24cbe5f4da52e3b5231990aff31123c805306ccb9c"}, @@ -313,6 +329,8 @@ name = "async-timeout" version = "4.0.3" requires_python = ">=3.7" summary = "Timeout context manager for asyncio programs" +groups = ["hook-check-django-migrations"] +marker = "python_version < \"3.12.0\"" files = [ {file = "async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f"}, {file = "async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028"}, @@ -323,6 +341,7 @@ name = "asyncpg" version = "0.29.0" requires_python = ">=3.8.0" summary = "An asyncio PostgreSQL driver" +groups = ["hook-check-django-migrations"] dependencies = [ "async-timeout>=4.0.3; python_version < \"3.12.0\"", ] @@ -359,6 +378,7 @@ name = "attrs" version = "23.2.0" requires_python = ">=3.7" summary = "Classes Without Boilerplate" +groups = ["hook-check-django-migrations"] files = [ {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, @@ -369,6 +389,7 @@ name = "authlib" version = "1.3.0" requires_python = ">=3.8" summary = "The ultimate Python library in building OAuth and OpenID Connect servers and clients." +groups = ["hook-check-django-migrations"] dependencies = [ "cryptography", ] @@ -382,6 +403,7 @@ name = "autopep8" version = "2.0.4" requires_python = ">=3.6" summary = "A tool that automatically formats Python code to conform to the PEP 8 style guide" +groups = ["lint"] dependencies = [ "pycodestyle>=2.10.0", "tomli; python_version < \"3.11\"", @@ -396,6 +418,7 @@ name = "backoff" version = "2.2.1" requires_python = ">=3.7,<4.0" summary = "Function decoration for backoff and retry" +groups = ["hook-check-django-migrations"] files = [ {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, @@ -406,6 +429,7 @@ name = "beautifulsoup4" version = "4.12.3" requires_python = ">=3.6.0" summary = "Screen-scraping library" +groups = ["hook-check-django-migrations"] dependencies = [ "soupsieve>1.2", ] @@ -419,6 +443,7 @@ name = "billiard" version = "4.2.0" requires_python = ">=3.7" summary = "Python multiprocessing fork with improvements and bugfixes" +groups = ["hook-check-django-migrations"] files = [ {file = "billiard-4.2.0-py3-none-any.whl", hash = "sha256:07aa978b308f334ff8282bd4a746e681b3513db5c9a514cbdd810cbbdc19714d"}, {file = "billiard-4.2.0.tar.gz", hash = "sha256:9a3c3184cb275aa17a732f93f65b20c525d3d9f253722d26a82194803ade5a2c"}, @@ -429,6 +454,7 @@ name = "black" version = "23.3.0" requires_python = ">=3.7" summary = "The uncompromising code formatter." +groups = ["lint"] dependencies = [ "click>=8.0.0", "mypy-extensions>=0.4.3", @@ -463,6 +489,7 @@ name = "boto3" version = "1.28.17" requires_python = ">= 3.7" summary = "The AWS SDK for Python" +groups = ["hook-check-django-migrations"] dependencies = [ "botocore<1.32.0,>=1.31.17", "jmespath<2.0.0,>=0.7.1", @@ -478,6 +505,7 @@ name = "botocore" version = "1.31.17" requires_python = ">= 3.7" summary = "Low-level, data-driven core of boto 3." +groups = ["hook-check-django-migrations"] dependencies = [ "jmespath<2.0.0,>=0.7.1", "python-dateutil<3.0.0,>=2.1", @@ -493,6 +521,7 @@ name = "boxfs" version = "0.2.1" requires_python = ">=3.8,<4.0" summary = "Implementation of fsspec for Box file storage" +groups = ["hook-check-django-migrations"] dependencies = [ "boxsdk[jwt]<4.0,>=3.7", "fsspec>=2023.4", @@ -506,6 +535,7 @@ files = [ name = "boxsdk" version = "3.9.2" summary = "Official Box Python SDK" +groups = ["hook-check-django-migrations"] dependencies = [ "attrs>=17.3.0", "python-dateutil", @@ -523,6 +553,7 @@ name = "boxsdk" version = "3.9.2" extras = ["jwt"] summary = "Official Box Python SDK" +groups = ["hook-check-django-migrations"] dependencies = [ "boxsdk==3.9.2", "cryptography>=3", @@ -535,12 +566,13 @@ files = [ [[package]] name = "cachetools" -version = "5.3.2" +version = "5.3.3" requires_python = ">=3.7" summary = "Extensible memoizing collections and decorators" +groups = ["hook-check-django-migrations"] files = [ - {file = "cachetools-5.3.2-py3-none-any.whl", hash = "sha256:861f35a13a451f94e301ce2bec7cac63e881232ccce7ed67fab9b5df4d3beaa1"}, - {file = "cachetools-5.3.2.tar.gz", hash = "sha256:086ee420196f7b2ab9ca2db2520aca326318b68fe5ba8bc4d49cca91add450f2"}, + {file = "cachetools-5.3.3-py3-none-any.whl", hash = "sha256:0abad1021d3f8325b2fc1d2e9c8b9c9d57b04c3932657a72465447332c24d945"}, + {file = "cachetools-5.3.3.tar.gz", hash = "sha256:ba29e2dfa0b8b556606f097407ed1aa62080ee108ab0dc5ec9d6a723a007d105"}, ] [[package]] @@ -548,6 +580,7 @@ name = "celery" version = "5.3.6" requires_python = ">=3.8" summary = "Distributed Task Queue." +groups = ["hook-check-django-migrations"] dependencies = [ "billiard<5.0,>=4.2.0", "click-didyoumean>=0.3.0", @@ -569,6 +602,7 @@ name = "certifi" version = "2024.2.2" requires_python = ">=3.6" summary = "Python package for providing Mozilla's CA Bundle." +groups = ["hook-check-django-migrations"] files = [ {file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"}, {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"}, @@ -579,6 +613,7 @@ name = "cffi" version = "1.16.0" requires_python = ">=3.8" summary = "Foreign Function Interface for Python calling C code." +groups = ["hook-check-django-migrations", "lint"] dependencies = [ "pycparser", ] @@ -624,6 +659,7 @@ name = "cfgv" version = "3.4.0" requires_python = ">=3.8" summary = "Validate configuration and produce human readable error messages." +groups = ["lint"] files = [ {file = "cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9"}, {file = "cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560"}, @@ -634,6 +670,7 @@ name = "charset-normalizer" version = "3.3.2" requires_python = ">=3.7.0" summary = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +groups = ["hook-check-django-migrations"] files = [ {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, @@ -689,6 +726,7 @@ name = "click" version = "8.1.7" requires_python = ">=3.7" summary = "Composable command line interface toolkit" +groups = ["hook-check-django-migrations", "lint"] dependencies = [ "colorama; platform_system == \"Windows\"", ] @@ -702,6 +740,7 @@ name = "click-didyoumean" version = "0.3.0" requires_python = ">=3.6.2,<4.0.0" summary = "Enables git-like *did-you-mean* feature in click" +groups = ["hook-check-django-migrations"] dependencies = [ "click>=7", ] @@ -714,6 +753,7 @@ files = [ name = "click-plugins" version = "1.1.1" summary = "An extension module for click to enable registering CLI commands via setuptools entry-points." +groups = ["hook-check-django-migrations"] dependencies = [ "click>=4.0", ] @@ -727,6 +767,7 @@ name = "click-repl" version = "0.3.0" requires_python = ">=3.6" summary = "REPL plugin for Click" +groups = ["hook-check-django-migrations"] dependencies = [ "click>=7.0", "prompt-toolkit>=3.0.36", @@ -741,6 +782,7 @@ name = "colorama" version = "0.4.6" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" summary = "Cross-platform colored terminal text." +groups = ["hook-check-django-migrations", "lint"] files = [ {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, @@ -751,6 +793,7 @@ name = "coloredlogs" version = "15.0.1" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Colored terminal output for Python's logging module" +groups = ["hook-check-django-migrations"] dependencies = [ "humanfriendly>=9.1", ] @@ -763,6 +806,7 @@ files = [ name = "cron-descriptor" version = "1.4.0" summary = "A Python library that converts cron expressions into human readable strings." +groups = ["hook-check-django-migrations"] files = [ {file = "cron_descriptor-1.4.0.tar.gz", hash = "sha256:b6ff4e3a988d7ca04a4ab150248e9f166fb7a5c828a85090e75bcc25aa93b4dd"}, ] @@ -772,6 +816,7 @@ name = "cryptography" version = "41.0.7" requires_python = ">=3.7" summary = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +groups = ["hook-check-django-migrations", "lint"] dependencies = [ "cffi>=1.12", ] @@ -806,6 +851,7 @@ name = "dataclasses-json" version = "0.6.4" requires_python = ">=3.7,<4.0" summary = "Easily serialize dataclasses to and from JSON." +groups = ["hook-check-django-migrations"] dependencies = [ "marshmallow<4.0.0,>=3.18.0", "typing-inspect<1,>=0.4.0", @@ -820,6 +866,7 @@ name = "defusedxml" version = "0.8.0rc2" requires_python = ">=3.6" summary = "XML bomb protection for Python stdlib modules" +groups = ["hook-check-django-migrations"] files = [ {file = "defusedxml-0.8.0rc2-py2.py3-none-any.whl", hash = "sha256:1c812964311154c3bf4aaf3bc1443b31ee13530b7f255eaaa062c0553c76103d"}, {file = "defusedxml-0.8.0rc2.tar.gz", hash = "sha256:138c7d540a78775182206c7c97fe65b246a2f40b29471e1a2f1b0da76e7a3942"}, @@ -830,6 +877,7 @@ name = "deprecated" version = "1.2.14" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "Python @deprecated decorator to deprecate old python classes, functions or methods." +groups = ["hook-check-django-migrations"] dependencies = [ "wrapt<2,>=1.10", ] @@ -842,6 +890,7 @@ files = [ name = "deprecation" version = "2.1.0" summary = "A library to handle automated deprecations" +groups = ["hook-check-django-migrations"] dependencies = [ "packaging", ] @@ -854,6 +903,7 @@ files = [ name = "distlib" version = "0.3.8" summary = "Distribution utilities" +groups = ["lint"] files = [ {file = "distlib-0.3.8-py2.py3-none-any.whl", hash = "sha256:034db59a0b96f8ca18035f36290806a9a6e6bd9d1ff91e45a7f172eb17e51784"}, {file = "distlib-0.3.8.tar.gz", hash = "sha256:1530ea13e350031b6312d8580ddb6b27a104275a31106523b8f123787f494f64"}, @@ -864,6 +914,7 @@ name = "distro" version = "1.9.0" requires_python = ">=3.6" summary = "Distro - an OS platform information API" +groups = ["hook-check-django-migrations"] files = [ {file = "distro-1.9.0-py3-none-any.whl", hash = "sha256:7bffd925d65168f85027d8da9af6bddab658135b840670a223589bc0c8ef02b2"}, {file = "distro-1.9.0.tar.gz", hash = "sha256:2fa77c6fd8940f116ee1d6b94a2f90b13b5ea8d019b98bc8bafdcabcdd9bdbed"}, @@ -874,6 +925,7 @@ name = "django" version = "4.2.1" requires_python = ">=3.8" summary = "A high-level Python web framework that encourages rapid development and clean, pragmatic design." +groups = ["hook-check-django-migrations"] dependencies = [ "asgiref<4,>=3.6.0", "sqlparse>=0.3.1", @@ -888,6 +940,7 @@ files = [ name = "django-celery-beat" version = "2.5.0" summary = "Database-backed Periodic Tasks." +groups = ["hook-check-django-migrations"] dependencies = [ "Django<5.0,>=2.2", "celery<6.0,>=5.2.3", @@ -906,6 +959,7 @@ name = "django-cors-headers" version = "4.3.1" requires_python = ">=3.8" summary = "django-cors-headers is a Django application for handling the server headers required for Cross-Origin Resource Sharing (CORS)." +groups = ["hook-check-django-migrations"] dependencies = [ "Django>=3.2", "asgiref>=3.6", @@ -920,6 +974,7 @@ name = "django-redis" version = "5.4.0" requires_python = ">=3.6" summary = "Full featured redis cache backend for Django." +groups = ["hook-check-django-migrations"] dependencies = [ "Django>=3.2", "redis!=4.0.0,!=4.0.1,>=3", @@ -933,6 +988,7 @@ files = [ name = "django-tenants" version = "3.5.0" summary = "Tenant support for Django using PostgreSQL schemas." +groups = ["hook-check-django-migrations"] dependencies = [ "Django<4.3,>=2.1", ] @@ -945,6 +1001,7 @@ name = "django-timezone-field" version = "6.1.0" requires_python = ">=3.8,<4.0" summary = "A Django app providing DB, form, and REST framework fields for zoneinfo and pytz timezone objects." +groups = ["hook-check-django-migrations"] dependencies = [ "Django<6.0,>=3.2", ] @@ -958,6 +1015,7 @@ name = "djangorestframework" version = "3.14.0" requires_python = ">=3.6" summary = "Web APIs for Django, made easy." +groups = ["hook-check-django-migrations"] dependencies = [ "django>=3.0", "pytz", @@ -972,6 +1030,7 @@ name = "dnspython" version = "2.6.1" requires_python = ">=3.8" summary = "DNS toolkit" +groups = ["hook-check-django-migrations"] files = [ {file = "dnspython-2.6.1-py3-none-any.whl", hash = "sha256:5ef3b9680161f6fa89daf8ad451b5f1a33b18ae8a1c6778cdf4b43f08c0a6e50"}, {file = "dnspython-2.6.1.tar.gz", hash = "sha256:e8f0f9c23a7b7cb99ded64e6c3a6f3e701d78f50c55e002b839dea7225cff7cc"}, @@ -982,6 +1041,7 @@ name = "docker" version = "6.1.3" requires_python = ">=3.7" summary = "A Python library for the Docker Engine API." +groups = ["hook-check-django-migrations"] dependencies = [ "packaging>=14.0", "pywin32>=304; sys_platform == \"win32\"", @@ -999,6 +1059,7 @@ name = "docutils" version = "0.20.1" requires_python = ">=3.7" summary = "Docutils -- Python Documentation Utilities" +groups = ["lint"] files = [ {file = "docutils-0.20.1-py3-none-any.whl", hash = "sha256:96f387a2c5562db4476f09f13bbab2192e764cac08ebbf3a34a95d9b1e4a59d6"}, {file = "docutils-0.20.1.tar.gz", hash = "sha256:f08a4e276c3a1583a86dce3e34aba3fe04d02bba2dd51ed16106244e8a923e3b"}, @@ -1009,6 +1070,7 @@ name = "drf-yasg" version = "1.21.7" requires_python = ">=3.6" summary = "Automated generation of real Swagger/OpenAPI 2.0 schemas from Django Rest Framework code." +groups = ["hook-check-django-migrations"] dependencies = [ "django>=2.2.16", "djangorestframework>=3.10.3", @@ -1027,6 +1089,7 @@ files = [ name = "dropbox" version = "11.36.2" summary = "Official Dropbox API Client" +groups = ["hook-check-django-migrations"] dependencies = [ "requests>=2.16.2", "six>=1.12.0", @@ -1042,6 +1105,7 @@ name = "dropboxdrivefs" version = "1.3.1" requires_python = ">=3.5" summary = "Dropbox implementation for fsspec module" +groups = ["hook-check-django-migrations"] dependencies = [ "dropbox", "fsspec", @@ -1056,6 +1120,7 @@ name = "environs" version = "9.5.0" requires_python = ">=3.6" summary = "simplified environment variable parsing" +groups = ["hook-check-django-migrations"] dependencies = [ "marshmallow>=3.0.0", "python-dotenv", @@ -1070,6 +1135,8 @@ name = "exceptiongroup" version = "1.2.0" requires_python = ">=3.7" summary = "Backport of PEP 654 (exception groups)" +groups = ["hook-check-django-migrations"] +marker = "python_version < \"3.11\"" files = [ {file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"}, {file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"}, @@ -1080,6 +1147,7 @@ name = "fastembed" version = "0.1.3" requires_python = ">=3.8.0,<3.12" summary = "Fast, light, accurate library built for retrieval embedding generation" +groups = ["hook-check-django-migrations"] dependencies = [ "huggingface-hub==0.19.4", "onnx<2.0,>=1.11", @@ -1098,6 +1166,7 @@ name = "filelock" version = "3.13.1" requires_python = ">=3.8" summary = "A platform independent file lock." +groups = ["hook-check-django-migrations", "lint"] files = [ {file = "filelock-3.13.1-py3-none-any.whl", hash = "sha256:57dbda9b35157b05fb3e58ee91448612eb674172fab98ee235ccb0b5bee19a1c"}, {file = "filelock-3.13.1.tar.gz", hash = "sha256:521f5f56c50f8426f5e03ad3b281b490a87ef15bc6c526f168290f0c7148d44e"}, @@ -1107,6 +1176,7 @@ files = [ name = "filetype" version = "1.2.0" summary = "Infer file type and MIME type of any file/buffer. No external dependencies." +groups = ["hook-check-django-migrations"] files = [ {file = "filetype-1.2.0-py2.py3-none-any.whl", hash = "sha256:7ce71b6880181241cf7ac8697a2f1eb6a8bd9b429f7ad6d27b8db9ba5f1c2d25"}, {file = "filetype-1.2.0.tar.gz", hash = "sha256:66b56cd6474bf41d8c54660347d37afcc3f7d1970648de365c102ef77548aadb"}, @@ -1117,6 +1187,7 @@ name = "flake8" version = "6.0.0" requires_python = ">=3.8.1" summary = "the modular source code checker: pep8 pyflakes and co" +groups = ["lint"] dependencies = [ "mccabe<0.8.0,>=0.7.0", "pycodestyle<2.11.0,>=2.10.0", @@ -1132,6 +1203,7 @@ name = "flake8-pyproject" version = "1.2.3" requires_python = ">= 3.6" summary = "Flake8 plug-in loading the configuration from pyproject.toml" +groups = ["lint"] dependencies = [ "Flake8>=5", "TOMLi; python_version < \"3.11\"", @@ -1144,6 +1216,7 @@ files = [ name = "flatbuffers" version = "23.5.26" summary = "The FlatBuffers serialization format for Python" +groups = ["hook-check-django-migrations"] files = [ {file = "flatbuffers-23.5.26-py2.py3-none-any.whl", hash = "sha256:c0ff356da363087b915fde4b8b45bdda73432fc17cddb3c8157472eab1422ad1"}, {file = "flatbuffers-23.5.26.tar.gz", hash = "sha256:9ea1144cac05ce5d86e2859f431c6cd5e66cd9c78c558317c7955fb8d4c78d89"}, @@ -1153,6 +1226,7 @@ files = [ name = "flupy" version = "1.2.0" summary = "Method chaining built on generators" +groups = ["hook-check-django-migrations"] dependencies = [ "typing-extensions", ] @@ -1165,6 +1239,7 @@ name = "frozenlist" version = "1.4.1" requires_python = ">=3.8" summary = "A list-like structure which implements collections.abc.MutableSequence" +groups = ["hook-check-django-migrations"] files = [ {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"}, {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"}, @@ -1220,6 +1295,7 @@ name = "fsspec" version = "2023.6.0" requires_python = ">=3.8" summary = "File-system specification" +groups = ["hook-check-django-migrations"] files = [ {file = "fsspec-2023.6.0-py3-none-any.whl", hash = "sha256:1cbad1faef3e391fba6dc005ae9b5bdcbf43005c9167ce78c915549c352c869a"}, {file = "fsspec-2023.6.0.tar.gz", hash = "sha256:d0b2f935446169753e7a5c5c55681c54ea91996cc67be93c39a154fb3a2742af"}, @@ -1229,6 +1305,7 @@ files = [ name = "funcy" version = "2.0" summary = "A fancy and practical functional tools" +groups = ["hook-check-django-migrations"] files = [ {file = "funcy-2.0-py2.py3-none-any.whl", hash = "sha256:53df23c8bb1651b12f095df764bfb057935d49537a56de211b098f4c79614bb0"}, {file = "funcy-2.0.tar.gz", hash = "sha256:3963315d59d41c6f30c04bc910e10ab50a3ac4a225868bfa96feed133df075cb"}, @@ -1239,6 +1316,7 @@ name = "gitdb" version = "4.0.11" requires_python = ">=3.7" summary = "Git Object Database" +groups = ["hook-check-django-migrations"] dependencies = [ "smmap<6,>=3.0.1", ] @@ -1252,6 +1330,7 @@ name = "gitpython" version = "3.1.42" requires_python = ">=3.7" summary = "GitPython is a Python library used to interact with Git repositories" +groups = ["hook-check-django-migrations"] dependencies = [ "gitdb<5,>=4.0.1", ] @@ -1265,6 +1344,7 @@ name = "google-ai-generativelanguage" version = "0.4.0" requires_python = ">=3.7" summary = "Google Ai Generativelanguage API client library" +groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.0", "proto-plus<2.0.0dev,>=1.22.3", @@ -1280,6 +1360,7 @@ name = "google-api-core" version = "2.17.1" requires_python = ">=3.7" summary = "Google API client core library" +groups = ["hook-check-django-migrations"] dependencies = [ "google-auth<3.0.dev0,>=2.14.1", "googleapis-common-protos<2.0.dev0,>=1.56.2", @@ -1297,6 +1378,7 @@ version = "2.17.1" extras = ["grpc"] requires_python = ">=3.7" summary = "Google API client core library" +groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core==2.17.1", "grpcio-status<2.0.dev0,>=1.33.2", @@ -1311,9 +1393,10 @@ files = [ [[package]] name = "google-api-python-client" -version = "2.118.0" +version = "2.119.0" requires_python = ">=3.7" summary = "Google API Client Library for Python" +groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0.dev0,>=1.31.5", "google-auth-httplib2>=0.1.0", @@ -1322,8 +1405,8 @@ dependencies = [ "uritemplate<5,>=3.0.1", ] files = [ - {file = "google-api-python-client-2.118.0.tar.gz", hash = "sha256:ebf4927a3f5184096647be8f705d090e7f06d48ad82b0fa431a2fe80c2cbe182"}, - {file = "google_api_python_client-2.118.0-py2.py3-none-any.whl", hash = "sha256:9d83b178496b180e058fd206ebfb70ea1afab49f235dd326f557513f56f496d5"}, + {file = "google-api-python-client-2.119.0.tar.gz", hash = "sha256:ff9ef7539eaf7e088a481b25d1af4704210b07863e1d51b5ee498b910a3a46a3"}, + {file = "google_api_python_client-2.119.0-py2.py3-none-any.whl", hash = "sha256:84e43bdb58dd8d2301669513863996378ffe9a3bf6d23b5ccd4f1e021323dbeb"}, ] [[package]] @@ -1331,6 +1414,7 @@ name = "google-auth" version = "2.20.0" requires_python = ">=3.6" summary = "Google Authentication Library" +groups = ["hook-check-django-migrations"] dependencies = [ "cachetools<6.0,>=2.0.0", "pyasn1-modules>=0.2.1", @@ -1347,6 +1431,7 @@ files = [ name = "google-auth-httplib2" version = "0.2.0" summary = "Google Authentication Library: httplib2 transport" +groups = ["hook-check-django-migrations"] dependencies = [ "google-auth", "httplib2>=0.19.0", @@ -1361,6 +1446,7 @@ name = "google-cloud-aiplatform" version = "1.40.0" requires_python = ">=3.8" summary = "Vertex AI API client library" +groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,<3.0.0dev,>=1.32.0", "google-cloud-bigquery<4.0.0dev,>=1.15.0", @@ -1381,6 +1467,7 @@ name = "google-cloud-bigquery" version = "3.11.4" requires_python = ">=3.7" summary = "Google BigQuery API client library" +groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5", "google-cloud-core<3.0.0dev,>=1.6.0", @@ -1403,6 +1490,7 @@ name = "google-cloud-core" version = "2.4.1" requires_python = ">=3.7" summary = "Google Cloud API client core library" +groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.6", "google-auth<3.0dev,>=1.25.0", @@ -1414,19 +1502,20 @@ files = [ [[package]] name = "google-cloud-resource-manager" -version = "1.12.1" +version = "1.12.2" requires_python = ">=3.7" summary = "Google Cloud Resource Manager API client library" +groups = ["hook-check-django-migrations"] dependencies = [ - "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.0", + "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1", "google-auth<3.0.0dev,>=2.14.1", "grpc-google-iam-v1<1.0.0dev,>=0.12.4", "proto-plus<2.0.0dev,>=1.22.3", "protobuf!=3.20.0,!=3.20.1,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<5.0.0dev,>=3.19.5", ] files = [ - {file = "google-cloud-resource-manager-1.12.1.tar.gz", hash = "sha256:25b3112c984ef6a2569ca7047160b2341c528c70e1d2e72deb99686aa2e167dd"}, - {file = "google_cloud_resource_manager-1.12.1-py2.py3-none-any.whl", hash = "sha256:6a0b97886998fb076a71a7e9679a1187f6bed97519e0dff13352e7946513d458"}, + {file = "google-cloud-resource-manager-1.12.2.tar.gz", hash = "sha256:2ede446a5087b236f0e1fb39cca3791bae97eb0d9125057401454b190d5572ee"}, + {file = "google_cloud_resource_manager-1.12.2-py2.py3-none-any.whl", hash = "sha256:45abbb8911195cc831cc77c8e3be84decc271686579b332d4142af507f423ebf"}, ] [[package]] @@ -1434,6 +1523,7 @@ name = "google-cloud-secret-manager" version = "2.16.1" requires_python = ">=3.7" summary = "Google Cloud Secret Manager API client library" +groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.0", "grpc-google-iam-v1<1.0.0dev,>=0.12.4", @@ -1451,6 +1541,7 @@ name = "google-cloud-storage" version = "2.9.0" requires_python = ">=3.7" summary = "Google Cloud Storage API client library" +groups = ["hook-check-django-migrations"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5", "google-auth<3.0dev,>=1.25.0", @@ -1468,6 +1559,7 @@ name = "google-crc32c" version = "1.5.0" requires_python = ">=3.7" summary = "A python wrapper of the C library 'Google CRC32C'" +groups = ["hook-check-django-migrations"] files = [ {file = "google-crc32c-1.5.0.tar.gz", hash = "sha256:89284716bc6a5a415d4eaa11b1726d2d60a0cd12aadf5439828353662ede9dd7"}, {file = "google_crc32c-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:596d1f98fc70232fcb6590c439f43b350cb762fb5d61ce7b0e9db4539654cc13"}, @@ -1523,6 +1615,7 @@ name = "google-generativeai" version = "0.3.1" requires_python = ">=3.9" summary = "Google Generative AI High level API client library and tools." +groups = ["hook-check-django-migrations"] dependencies = [ "google-ai-generativelanguage==0.4.0", "google-api-core", @@ -1539,6 +1632,7 @@ name = "google-resumable-media" version = "2.7.0" requires_python = ">= 3.7" summary = "Utilities for Google Media Downloads and Resumable Uploads" +groups = ["hook-check-django-migrations"] dependencies = [ "google-crc32c<2.0dev,>=1.0", ] @@ -1552,6 +1646,7 @@ name = "googleapis-common-protos" version = "1.62.0" requires_python = ">=3.7" summary = "Common protobufs used in Google APIs" +groups = ["hook-check-django-migrations"] dependencies = [ "protobuf!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<5.0.0.dev0,>=3.19.5", ] @@ -1566,6 +1661,7 @@ version = "1.62.0" extras = ["grpc"] requires_python = ">=3.7" summary = "Common protobufs used in Google APIs" +groups = ["hook-check-django-migrations"] dependencies = [ "googleapis-common-protos==1.62.0", "grpcio<2.0.0.dev0,>=1.44.0", @@ -1580,6 +1676,7 @@ name = "gotrue" version = "2.1.0" requires_python = ">=3.8,<4.0" summary = "Python Client Library for GoTrue" +groups = ["hook-check-django-migrations"] dependencies = [ "httpx<0.26,>=0.23", "pydantic<3,>=1.10", @@ -1594,6 +1691,7 @@ name = "greenlet" version = "3.0.3" requires_python = ">=3.7" summary = "Lightweight in-process concurrent programming" +groups = ["hook-check-django-migrations"] files = [ {file = "greenlet-3.0.3-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:9da2bd29ed9e4f15955dd1595ad7bc9320308a3b766ef7f837e23ad4b4aac31a"}, {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d353cadd6083fdb056bb46ed07e4340b0869c305c8ca54ef9da3421acbdf6881"}, @@ -1631,6 +1729,7 @@ name = "grpc-google-iam-v1" version = "0.13.0" requires_python = ">=3.7" summary = "IAM API client library" +groups = ["hook-check-django-migrations"] dependencies = [ "googleapis-common-protos[grpc]<2.0.0dev,>=1.56.0", "grpcio<2.0.0dev,>=1.44.0", @@ -1646,6 +1745,7 @@ name = "grpcio" version = "1.58.0" requires_python = ">=3.7" summary = "HTTP/2-based RPC framework" +groups = ["hook-check-django-migrations"] files = [ {file = "grpcio-1.58.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:3e6bebf1dfdbeb22afd95650e4f019219fef3ab86d3fca8ebade52e4bc39389a"}, {file = "grpcio-1.58.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:cde11577d5b6fd73a00e6bfa3cf5f428f3f33c2d2878982369b5372bbc4acc60"}, @@ -1682,6 +1782,7 @@ name = "grpcio-status" version = "1.58.0" requires_python = ">=3.6" summary = "Status proto mapping for gRPC" +groups = ["hook-check-django-migrations"] dependencies = [ "googleapis-common-protos>=1.5.5", "grpcio>=1.58.0", @@ -1697,6 +1798,7 @@ name = "grpcio-tools" version = "1.58.0" requires_python = ">=3.7" summary = "Protobuf code generator for gRPC" +groups = ["hook-check-django-migrations"] dependencies = [ "grpcio>=1.58.0", "protobuf<5.0dev,>=4.21.6", @@ -1738,6 +1840,7 @@ name = "h11" version = "0.14.0" requires_python = ">=3.7" summary = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +groups = ["hook-check-django-migrations"] files = [ {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, @@ -1748,6 +1851,7 @@ name = "h2" version = "4.1.0" requires_python = ">=3.6.1" summary = "HTTP/2 State-Machine based protocol implementation" +groups = ["hook-check-django-migrations"] dependencies = [ "hpack<5,>=4.0", "hyperframe<7,>=6.0", @@ -1762,6 +1866,7 @@ name = "halo" version = "0.0.31" requires_python = ">=3.4" summary = "Beautiful terminal spinners in Python" +groups = ["hook-check-django-migrations"] dependencies = [ "colorama>=0.3.9", "log-symbols>=0.0.14", @@ -1778,6 +1883,7 @@ name = "hpack" version = "4.0.0" requires_python = ">=3.6.1" summary = "Pure-Python HPACK header compression" +groups = ["hook-check-django-migrations"] files = [ {file = "hpack-4.0.0-py3-none-any.whl", hash = "sha256:84a076fad3dc9a9f8063ccb8041ef100867b1878b25ef0ee63847a5d53818a6c"}, {file = "hpack-4.0.0.tar.gz", hash = "sha256:fc41de0c63e687ebffde81187a948221294896f6bdc0ae2312708df339430095"}, @@ -1788,6 +1894,7 @@ name = "httpcore" version = "0.17.3" requires_python = ">=3.7" summary = "A minimal low-level HTTP client." +groups = ["hook-check-django-migrations"] dependencies = [ "anyio<5.0,>=3.0", "certifi", @@ -1804,6 +1911,7 @@ name = "httplib2" version = "0.22.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "A comprehensive HTTP client library." +groups = ["hook-check-django-migrations"] dependencies = [ "pyparsing!=3.0.0,!=3.0.1,!=3.0.2,!=3.0.3,<4,>=2.4.2; python_version > \"3.0\"", ] @@ -1817,6 +1925,7 @@ name = "httpx" version = "0.24.1" requires_python = ">=3.7" summary = "The next generation HTTP client." +groups = ["hook-check-django-migrations"] dependencies = [ "certifi", "httpcore<0.18.0,>=0.15.0", @@ -1834,6 +1943,7 @@ version = "0.24.1" extras = ["http2"] requires_python = ">=3.7" summary = "The next generation HTTP client." +groups = ["hook-check-django-migrations"] dependencies = [ "h2<5,>=3", "httpx==0.24.1", @@ -1847,6 +1957,7 @@ files = [ name = "huggingface" version = "0.0.1" summary = "HuggingFace is a single library comprising the main HuggingFace libraries." +groups = ["hook-check-django-migrations"] files = [ {file = "huggingface-0.0.1-py3-none-any.whl", hash = "sha256:98a3409537557cd2fd768997ef94cab08529f86c5e106e6d54bbabdd5ee03910"}, {file = "huggingface-0.0.1.tar.gz", hash = "sha256:0a2f228fd956801d68b7c6a8bef478dfa60c4b7d7eba572ea7de39ecf87e505a"}, @@ -1857,6 +1968,7 @@ name = "huggingface-hub" version = "0.19.4" requires_python = ">=3.8.0" summary = "Client library to download and publish models, datasets and other repos on the huggingface.co hub" +groups = ["hook-check-django-migrations"] dependencies = [ "filelock", "fsspec>=2023.5.0", @@ -1876,6 +1988,7 @@ name = "humanfriendly" version = "10.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Human friendly output for text interfaces using Python" +groups = ["hook-check-django-migrations"] dependencies = [ "pyreadline3; sys_platform == \"win32\" and python_version >= \"3.8\"", ] @@ -1889,6 +2002,7 @@ name = "humanize" version = "4.9.0" requires_python = ">=3.8" summary = "Python humanize utilities" +groups = ["hook-check-django-migrations"] files = [ {file = "humanize-4.9.0-py3-none-any.whl", hash = "sha256:ce284a76d5b1377fd8836733b983bfb0b76f1aa1c090de2566fcf008d7f6ab16"}, {file = "humanize-4.9.0.tar.gz", hash = "sha256:582a265c931c683a7e9b8ed9559089dea7edcf6cc95be39a3cbc2c5d5ac2bcfa"}, @@ -1899,6 +2013,7 @@ name = "hyperframe" version = "6.0.1" requires_python = ">=3.6.1" summary = "HTTP/2 framing layer for Python" +groups = ["hook-check-django-migrations"] files = [ {file = "hyperframe-6.0.1-py3-none-any.whl", hash = "sha256:0ec6bafd80d8ad2195c4f03aacba3a8265e57bc4cff261e802bf39970ed02a15"}, {file = "hyperframe-6.0.1.tar.gz", hash = "sha256:ae510046231dc8e9ecb1a6586f63d2347bf4c8905914aa84ba585ae85f28a914"}, @@ -1909,6 +2024,7 @@ name = "identify" version = "2.5.35" requires_python = ">=3.8" summary = "File identification library for Python" +groups = ["lint"] files = [ {file = "identify-2.5.35-py2.py3-none-any.whl", hash = "sha256:c4de0081837b211594f8e877a6b4fad7ca32bbfc1a9307fdd61c28bfe923f13e"}, {file = "identify-2.5.35.tar.gz", hash = "sha256:10a7ca245cfcd756a554a7288159f72ff105ad233c7c4b9c6f0f4d108f5f6791"}, @@ -1919,6 +2035,7 @@ name = "idna" version = "3.6" requires_python = ">=3.5" summary = "Internationalized Domain Names in Applications (IDNA)" +groups = ["hook-check-django-migrations"] files = [ {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"}, {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, @@ -1929,6 +2046,7 @@ name = "inflection" version = "0.5.1" requires_python = ">=3.5" summary = "A port of Ruby on Rails inflector to Python" +groups = ["hook-check-django-migrations"] files = [ {file = "inflection-0.5.1-py2.py3-none-any.whl", hash = "sha256:f38b2b640938a4f35ade69ac3d053042959b62a0f1076a5bbaa1b9526605a8a2"}, {file = "inflection-0.5.1.tar.gz", hash = "sha256:1a29730d366e996aaacffb2f1f1cb9593dc38e2ddd30c91250c6dde09ea9b417"}, @@ -1939,6 +2057,7 @@ name = "isort" version = "5.12.0" requires_python = ">=3.8.0" summary = "A Python utility / library to sort Python imports." +groups = ["lint"] files = [ {file = "isort-5.12.0-py3-none-any.whl", hash = "sha256:f84c2818376e66cf843d497486ea8fed8700b340f308f076c6fb1229dff318b6"}, {file = "isort-5.12.0.tar.gz", hash = "sha256:8bef7dde241278824a6d83f44a544709b065191b95b6e50894bdc722fcba0504"}, @@ -1949,6 +2068,7 @@ name = "jmespath" version = "1.0.1" requires_python = ">=3.7" summary = "JSON Matching Expressions" +groups = ["hook-check-django-migrations"] files = [ {file = "jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980"}, {file = "jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe"}, @@ -1959,6 +2079,7 @@ name = "joblib" version = "1.3.2" requires_python = ">=3.7" summary = "Lightweight pipelining with Python functions" +groups = ["hook-check-django-migrations"] files = [ {file = "joblib-1.3.2-py3-none-any.whl", hash = "sha256:ef4331c65f239985f3f2220ecc87db222f08fd22097a3dd5698f693875f8cbb9"}, {file = "joblib-1.3.2.tar.gz", hash = "sha256:92f865e621e17784e7955080b6d042489e3b8e294949cc44c6eac304f59772b1"}, @@ -1969,6 +2090,7 @@ name = "jsonpatch" version = "1.33" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" summary = "Apply JSON-Patches (RFC 6902) " +groups = ["hook-check-django-migrations"] dependencies = [ "jsonpointer>=1.9", ] @@ -1982,6 +2104,7 @@ name = "jsonpointer" version = "2.4" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" summary = "Identify specific nodes in a JSON document (RFC 6901) " +groups = ["hook-check-django-migrations"] files = [ {file = "jsonpointer-2.4-py2.py3-none-any.whl", hash = "sha256:15d51bba20eea3165644553647711d150376234112651b4f1811022aecad7d7a"}, {file = "jsonpointer-2.4.tar.gz", hash = "sha256:585cee82b70211fa9e6043b7bb89db6e1aa49524340dde8ad6b63206ea689d88"}, @@ -1992,6 +2115,7 @@ name = "jsonschema" version = "4.18.6" requires_python = ">=3.8" summary = "An implementation of JSON Schema validation for Python" +groups = ["hook-check-django-migrations"] dependencies = [ "attrs>=22.2.0", "jsonschema-specifications>=2023.03.6", @@ -2008,6 +2132,7 @@ name = "jsonschema-specifications" version = "2023.12.1" requires_python = ">=3.8" summary = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +groups = ["hook-check-django-migrations"] dependencies = [ "referencing>=0.31.0", ] @@ -2021,6 +2146,7 @@ name = "kombu" version = "5.3.5" requires_python = ">=3.8" summary = "Messaging library for Python." +groups = ["hook-check-django-migrations"] dependencies = [ "amqp<6.0.0,>=5.1.1", "typing-extensions; python_version < \"3.10\"", @@ -2036,6 +2162,7 @@ name = "llama-index" version = "0.9.28" requires_python = ">=3.8.1,<4.0" summary = "Interface between LLMs and your data" +groups = ["hook-check-django-migrations"] dependencies = [ "SQLAlchemy[asyncio]>=1.4.49", "aiohttp<4.0.0,>=3.8.6", @@ -2066,6 +2193,7 @@ files = [ name = "log-symbols" version = "0.0.14" summary = "Colored symbols for various log levels for Python" +groups = ["hook-check-django-migrations"] dependencies = [ "colorama>=0.3.9", ] @@ -2079,6 +2207,7 @@ name = "loguru" version = "0.7.2" requires_python = ">=3.5" summary = "Python logging made (stupidly) simple" +groups = ["hook-check-django-migrations"] dependencies = [ "colorama>=0.3.4; sys_platform == \"win32\"", "win32-setctime>=1.0.0; sys_platform == \"win32\"", @@ -2093,6 +2222,7 @@ name = "markdown-it-py" version = "3.0.0" requires_python = ">=3.8" summary = "Python port of markdown-it. Markdown parsing, done right!" +groups = ["hook-check-django-migrations"] dependencies = [ "mdurl~=0.1", ] @@ -2103,15 +2233,16 @@ files = [ [[package]] name = "marshmallow" -version = "3.20.2" +version = "3.21.0" requires_python = ">=3.8" summary = "A lightweight library for converting complex datatypes to and from native Python datatypes." +groups = ["hook-check-django-migrations"] dependencies = [ "packaging>=17.0", ] files = [ - {file = "marshmallow-3.20.2-py3-none-any.whl", hash = "sha256:c21d4b98fee747c130e6bc8f45c4b3199ea66bc00c12ee1f639f0aeca034d5e9"}, - {file = "marshmallow-3.20.2.tar.gz", hash = "sha256:4c1daff273513dc5eb24b219a8035559dc573c8f322558ef85f5438ddd1236dd"}, + {file = "marshmallow-3.21.0-py3-none-any.whl", hash = "sha256:e7997f83571c7fd476042c2c188e4ee8a78900ca5e74bd9c8097afa56624e9bd"}, + {file = "marshmallow-3.21.0.tar.gz", hash = "sha256:20f53be28c6e374a711a16165fb22a8dc6003e3f7cda1285e3ca777b9193885b"}, ] [[package]] @@ -2119,6 +2250,7 @@ name = "mccabe" version = "0.7.0" requires_python = ">=3.6" summary = "McCabe checker, plugin for flake8" +groups = ["lint"] files = [ {file = "mccabe-0.7.0-py2.py3-none-any.whl", hash = "sha256:6c2d30ab6be0e4a46919781807b4f0d834ebdd6c6e3dca0bda5a15f863427b6e"}, {file = "mccabe-0.7.0.tar.gz", hash = "sha256:348e0240c33b60bbdf4e523192ef919f28cb2c3d7d5c7794f74009290f236325"}, @@ -2129,6 +2261,7 @@ name = "mdurl" version = "0.1.2" requires_python = ">=3.7" summary = "Markdown URL utilities" +groups = ["hook-check-django-migrations"] files = [ {file = "mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8"}, {file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"}, @@ -2138,6 +2271,7 @@ files = [ name = "minio" version = "7.2.4" summary = "MinIO Python SDK for Amazon S3 Compatible Cloud Storage" +groups = ["hook-check-django-migrations"] dependencies = [ "argon2-cffi", "certifi", @@ -2155,6 +2289,7 @@ name = "mistralai" version = "0.0.8" requires_python = ">=3.8,<4.0" summary = "" +groups = ["hook-check-django-migrations"] dependencies = [ "aiohttp<4.0.0,>=3.9.1", "backoff<3.0.0,>=2.2.1", @@ -2171,6 +2306,7 @@ files = [ name = "mpmath" version = "1.3.0" summary = "Python library for arbitrary-precision floating-point arithmetic" +groups = ["hook-check-django-migrations"] files = [ {file = "mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c"}, {file = "mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f"}, @@ -2181,6 +2317,7 @@ name = "multidict" version = "6.0.5" requires_python = ">=3.7" summary = "multidict implementation" +groups = ["hook-check-django-migrations"] files = [ {file = "multidict-6.0.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9"}, {file = "multidict-6.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604"}, @@ -2236,6 +2373,7 @@ name = "mypy" version = "1.2.0" requires_python = ">=3.7" summary = "Optional static typing for Python" +groups = ["lint"] dependencies = [ "mypy-extensions>=1.0.0", "tomli>=1.1.0; python_version < \"3.11\"", @@ -2266,6 +2404,7 @@ name = "mypy-extensions" version = "1.0.0" requires_python = ">=3.5" summary = "Type system extensions for programs checked with the mypy type checker." +groups = ["hook-check-django-migrations", "lint"] files = [ {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, @@ -2276,6 +2415,7 @@ name = "nest-asyncio" version = "1.6.0" requires_python = ">=3.5" summary = "Patch asyncio to allow nested event loops" +groups = ["hook-check-django-migrations"] files = [ {file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"}, {file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"}, @@ -2286,6 +2426,7 @@ name = "networkx" version = "3.2.1" requires_python = ">=3.9" summary = "Python package for creating and manipulating graphs and networks" +groups = ["hook-check-django-migrations"] files = [ {file = "networkx-3.2.1-py3-none-any.whl", hash = "sha256:f18c69adc97877c42332c170849c96cefa91881c99a7cb3e95b7c659ebdc1ec2"}, {file = "networkx-3.2.1.tar.gz", hash = "sha256:9f1bb5cf3409bf324e0a722c20bdb4c20ee39bf1c30ce8ae499c8502b0b5e0c6"}, @@ -2296,6 +2437,7 @@ name = "nltk" version = "3.8.1" requires_python = ">=3.7" summary = "Natural Language Toolkit" +groups = ["hook-check-django-migrations"] dependencies = [ "click", "joblib", @@ -2312,6 +2454,7 @@ name = "nodeenv" version = "1.8.0" requires_python = ">=2.7,!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*" summary = "Node.js virtual environment builder" +groups = ["lint"] dependencies = [ "setuptools", ] @@ -2325,6 +2468,7 @@ name = "numpy" version = "1.26.4" requires_python = ">=3.9" summary = "Fundamental package for array computing in Python" +groups = ["hook-check-django-migrations"] files = [ {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, @@ -2360,6 +2504,7 @@ files = [ name = "oauth2client" version = "4.1.3" summary = "OAuth 2.0 client library" +groups = ["hook-check-django-migrations"] dependencies = [ "httplib2>=0.9.1", "pyasn1-modules>=0.0.5", @@ -2377,6 +2522,7 @@ name = "oauthlib" version = "3.2.2" requires_python = ">=3.6" summary = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic" +groups = ["hook-check-django-migrations"] files = [ {file = "oauthlib-3.2.2-py3-none-any.whl", hash = "sha256:8139f29aac13e25d502680e9e19963e83f16838d48a0d71c287fe40e7067fbca"}, {file = "oauthlib-3.2.2.tar.gz", hash = "sha256:9859c40929662bec5d64f34d01c99e093149682a3f38915dc0655d5a633dd918"}, @@ -2387,6 +2533,7 @@ name = "onnx" version = "1.15.0" requires_python = ">=3.8" summary = "Open Neural Network Exchange" +groups = ["hook-check-django-migrations"] dependencies = [ "numpy", "protobuf>=3.20.2", @@ -2415,8 +2562,9 @@ files = [ [[package]] name = "onnxruntime" -version = "1.17.0" +version = "1.17.1" summary = "ONNX Runtime is a runtime accelerator for Machine Learning models" +groups = ["hook-check-django-migrations"] dependencies = [ "coloredlogs", "flatbuffers", @@ -2426,21 +2574,21 @@ dependencies = [ "sympy", ] files = [ - {file = "onnxruntime-1.17.0-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:d2b22a25a94109cc983443116da8d9805ced0256eb215c5e6bc6dcbabefeab96"}, - {file = "onnxruntime-1.17.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b4c87d83c6f58d1af2675fc99e3dc810f2dbdb844bcefd0c1b7573632661f6fc"}, - {file = "onnxruntime-1.17.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dba55723bf9b835e358f48c98a814b41692c393eb11f51e02ece0625c756b797"}, - {file = "onnxruntime-1.17.0-cp310-cp310-win32.whl", hash = "sha256:ee48422349cc500273beea7607e33c2237909f58468ae1d6cccfc4aecd158565"}, - {file = "onnxruntime-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:f34cc46553359293854e38bdae2ab1be59543aad78a6317e7746d30e311110c3"}, - {file = "onnxruntime-1.17.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:16d26badd092c8c257fa57c458bb600d96dc15282c647ccad0ed7b2732e6c03b"}, - {file = "onnxruntime-1.17.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6f1273bebcdb47ed932d076c85eb9488bc4768fcea16d5f2747ca692fad4f9d3"}, - {file = "onnxruntime-1.17.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cb60fd3c2c1acd684752eb9680e89ae223e9801a9b0e0dc7b28adabe45a2e380"}, - {file = "onnxruntime-1.17.0-cp311-cp311-win32.whl", hash = "sha256:4b038324586bc905299e435f7c00007e6242389c856b82fe9357fdc3b1ef2bdc"}, - {file = "onnxruntime-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:93d39b3fa1ee01f034f098e1c7769a811a21365b4883f05f96c14a2b60c6028b"}, - {file = "onnxruntime-1.17.0-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:5a06ab84eaa350bf64b1d747b33ccf10da64221ed1f38f7287f15eccbec81603"}, - {file = "onnxruntime-1.17.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d3d11db2c8242766212a68d0b139745157da7ce53bd96ba349a5c65e5a02357"}, - {file = "onnxruntime-1.17.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5632077c3ab8b0cd4f74b0af9c4e924be012b1a7bcd7daa845763c6c6bf14b7d"}, - {file = "onnxruntime-1.17.0-cp39-cp39-win32.whl", hash = "sha256:61a12732cba869b3ad2d4e29ab6cb62c7a96f61b8c213f7fcb961ba412b70b37"}, - {file = "onnxruntime-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:461fa0fc7d9c392c352b6cccdedf44d818430f3d6eacd924bb804fdea2dcfd02"}, + {file = "onnxruntime-1.17.1-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:d43ac17ac4fa3c9096ad3c0e5255bb41fd134560212dc124e7f52c3159af5d21"}, + {file = "onnxruntime-1.17.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:55b5e92a4c76a23981c998078b9bf6145e4fb0b016321a8274b1607bd3c6bd35"}, + {file = "onnxruntime-1.17.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ebbcd2bc3a066cf54e6f18c75708eb4d309ef42be54606d22e5bdd78afc5b0d7"}, + {file = "onnxruntime-1.17.1-cp310-cp310-win32.whl", hash = "sha256:5e3716b5eec9092e29a8d17aab55e737480487deabfca7eac3cd3ed952b6ada9"}, + {file = "onnxruntime-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:fbb98cced6782ae1bb799cc74ddcbbeeae8819f3ad1d942a74d88e72b6511337"}, + {file = "onnxruntime-1.17.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:36fd6f87a1ecad87e9c652e42407a50fb305374f9a31d71293eb231caae18784"}, + {file = "onnxruntime-1.17.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:99a8bddeb538edabc524d468edb60ad4722cff8a49d66f4e280c39eace70500b"}, + {file = "onnxruntime-1.17.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fd7fddb4311deb5a7d3390cd8e9b3912d4d963efbe4dfe075edbaf18d01c024e"}, + {file = "onnxruntime-1.17.1-cp311-cp311-win32.whl", hash = "sha256:606a7cbfb6680202b0e4f1890881041ffc3ac6e41760a25763bd9fe146f0b335"}, + {file = "onnxruntime-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:53e4e06c0a541696ebdf96085fd9390304b7b04b748a19e02cf3b35c869a1e76"}, + {file = "onnxruntime-1.17.1-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:7a9539935fb2d78ebf2cf2693cad02d9930b0fb23cdd5cf37a7df813e977674d"}, + {file = "onnxruntime-1.17.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:45c6a384e9d9a29c78afff62032a46a993c477b280247a7e335df09372aedbe9"}, + {file = "onnxruntime-1.17.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4e19f966450f16863a1d6182a685ca33ae04d7772a76132303852d05b95411ea"}, + {file = "onnxruntime-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e2ae712d64a42aac29ed7a40a426cb1e624a08cfe9273dcfe681614aa65b07dc"}, + {file = "onnxruntime-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:f7e9f7fb049825cdddf4a923cfc7c649d84d63c0134315f8e0aa9e0c3004672c"}, ] [[package]] @@ -2448,6 +2596,7 @@ name = "openai" version = "1.3.9" requires_python = ">=3.7.1" summary = "The official Python library for the openai API" +groups = ["hook-check-django-migrations"] dependencies = [ "anyio<5,>=3.5.0", "distro<2,>=1.7.0", @@ -2464,41 +2613,42 @@ files = [ [[package]] name = "orjson" -version = "3.9.14" +version = "3.9.15" requires_python = ">=3.8" summary = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" -files = [ - {file = "orjson-3.9.14-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:793f6c9448ab6eb7d4974b4dde3f230345c08ca6c7995330fbceeb43a5c8aa5e"}, - {file = "orjson-3.9.14-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a6bc7928d161840096adc956703494b5c0193ede887346f028216cac0af87500"}, - {file = "orjson-3.9.14-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:58b36f54da759602d8e2f7dad958752d453dfe2c7122767bc7f765e17dc59959"}, - {file = "orjson-3.9.14-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:abcda41ecdc950399c05eff761c3de91485d9a70d8227cb599ad3a66afe93bcc"}, - {file = "orjson-3.9.14-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:df76ecd17b1b3627bddfd689faaf206380a1a38cc9f6c4075bd884eaedcf46c2"}, - {file = "orjson-3.9.14-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d450a8e0656efb5d0fcb062157b918ab02dcca73278975b4ee9ea49e2fcf5bd5"}, - {file = "orjson-3.9.14-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:95c03137b0cf66517c8baa65770507a756d3a89489d8ecf864ea92348e1beabe"}, - {file = "orjson-3.9.14-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:20837e10835c98973673406d6798e10f821e7744520633811a5a3d809762d8cc"}, - {file = "orjson-3.9.14-cp310-none-win32.whl", hash = "sha256:1f7b6f3ef10ae8e3558abb729873d033dbb5843507c66b1c0767e32502ba96bb"}, - {file = "orjson-3.9.14-cp310-none-win_amd64.whl", hash = "sha256:ea890e6dc1711aeec0a33b8520e395c2f3d59ead5b4351a788e06bf95fc7ba81"}, - {file = "orjson-3.9.14-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c19009ff37f033c70acd04b636380379499dac2cba27ae7dfc24f304deabbc81"}, - {file = "orjson-3.9.14-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19cdea0664aec0b7f385be84986d4defd3334e9c3c799407686ee1c26f7b8251"}, - {file = "orjson-3.9.14-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:135d518f73787ce323b1a5e21fb854fe22258d7a8ae562b81a49d6c7f826f2a3"}, - {file = "orjson-3.9.14-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d2cf1d0557c61c75e18cf7d69fb689b77896e95553e212c0cc64cf2087944b84"}, - {file = "orjson-3.9.14-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7c11667421df2d8b18b021223505dcc3ee51be518d54e4dc49161ac88ac2b87"}, - {file = "orjson-3.9.14-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2eefc41ba42e75ed88bc396d8fe997beb20477f3e7efa000cd7a47eda452fbb2"}, - {file = "orjson-3.9.14-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:917311d6a64d1c327c0dfda1e41f3966a7fb72b11ca7aa2e7a68fcccc7db35d9"}, - {file = "orjson-3.9.14-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4dc1c132259b38d12c6587d190cd09cd76e3b5273ce71fe1372437b4cbc65f6f"}, - {file = "orjson-3.9.14-cp311-none-win32.whl", hash = "sha256:6f39a10408478f4c05736a74da63727a1ae0e83e3533d07b19443400fe8591ca"}, - {file = "orjson-3.9.14-cp311-none-win_amd64.whl", hash = "sha256:26280a7fcb62d8257f634c16acebc3bec626454f9ab13558bbf7883b9140760e"}, - {file = "orjson-3.9.14-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:5bf597530544db27a8d76aced49cfc817ee9503e0a4ebf0109cd70331e7bbe0c"}, - {file = "orjson-3.9.14-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac650d49366fa41fe702e054cb560171a8634e2865537e91f09a8d05ea5b1d37"}, - {file = "orjson-3.9.14-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:236230433a9a4968ab895140514c308fdf9f607cb8bee178a04372b771123860"}, - {file = "orjson-3.9.14-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3014ccbda9be0b1b5f8ea895121df7e6524496b3908f4397ff02e923bcd8f6dd"}, - {file = "orjson-3.9.14-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ac0c7eae7ad3a223bde690565442f8a3d620056bd01196f191af8be58a5248e1"}, - {file = "orjson-3.9.14-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fca33fdd0b38839b01912c57546d4f412ba7bfa0faf9bf7453432219aec2df07"}, - {file = "orjson-3.9.14-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:f75823cc1674a840a151e999a7dfa0d86c911150dd6f951d0736ee9d383bf415"}, - {file = "orjson-3.9.14-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:6f52ac2eb49e99e7373f62e2a68428c6946cda52ce89aa8fe9f890c7278e2d3a"}, - {file = "orjson-3.9.14-cp39-none-win32.whl", hash = "sha256:0572f174f50b673b7df78680fb52cd0087a8585a6d06d295a5f790568e1064c6"}, - {file = "orjson-3.9.14-cp39-none-win_amd64.whl", hash = "sha256:ab90c02cb264250b8a58cedcc72ed78a4a257d956c8d3c8bebe9751b818dfad8"}, - {file = "orjson-3.9.14.tar.gz", hash = "sha256:06fb40f8e49088ecaa02f1162581d39e2cf3fd9dbbfe411eb2284147c99bad79"}, +groups = ["hook-check-django-migrations"] +files = [ + {file = "orjson-3.9.15-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:d61f7ce4727a9fa7680cd6f3986b0e2c732639f46a5e0156e550e35258aa313a"}, + {file = "orjson-3.9.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4feeb41882e8aa17634b589533baafdceb387e01e117b1ec65534ec724023d04"}, + {file = "orjson-3.9.15-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fbbeb3c9b2edb5fd044b2a070f127a0ac456ffd079cb82746fc84af01ef021a4"}, + {file = "orjson-3.9.15-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b66bcc5670e8a6b78f0313bcb74774c8291f6f8aeef10fe70e910b8040f3ab75"}, + {file = "orjson-3.9.15-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2973474811db7b35c30248d1129c64fd2bdf40d57d84beed2a9a379a6f57d0ab"}, + {file = "orjson-3.9.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9fe41b6f72f52d3da4db524c8653e46243c8c92df826ab5ffaece2dba9cccd58"}, + {file = "orjson-3.9.15-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:4228aace81781cc9d05a3ec3a6d2673a1ad0d8725b4e915f1089803e9efd2b99"}, + {file = "orjson-3.9.15-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:6f7b65bfaf69493c73423ce9db66cfe9138b2f9ef62897486417a8fcb0a92bfe"}, + {file = "orjson-3.9.15-cp310-none-win32.whl", hash = "sha256:2d99e3c4c13a7b0fb3792cc04c2829c9db07838fb6973e578b85c1745e7d0ce7"}, + {file = "orjson-3.9.15-cp310-none-win_amd64.whl", hash = "sha256:b725da33e6e58e4a5d27958568484aa766e825e93aa20c26c91168be58e08cbb"}, + {file = "orjson-3.9.15-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:c8e8fe01e435005d4421f183038fc70ca85d2c1e490f51fb972db92af6e047c2"}, + {file = "orjson-3.9.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:87f1097acb569dde17f246faa268759a71a2cb8c96dd392cd25c668b104cad2f"}, + {file = "orjson-3.9.15-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ff0f9913d82e1d1fadbd976424c316fbc4d9c525c81d047bbdd16bd27dd98cfc"}, + {file = "orjson-3.9.15-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8055ec598605b0077e29652ccfe9372247474375e0e3f5775c91d9434e12d6b1"}, + {file = "orjson-3.9.15-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d6768a327ea1ba44c9114dba5fdda4a214bdb70129065cd0807eb5f010bfcbb5"}, + {file = "orjson-3.9.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:12365576039b1a5a47df01aadb353b68223da413e2e7f98c02403061aad34bde"}, + {file = "orjson-3.9.15-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:71c6b009d431b3839d7c14c3af86788b3cfac41e969e3e1c22f8a6ea13139404"}, + {file = "orjson-3.9.15-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:e18668f1bd39e69b7fed19fa7cd1cd110a121ec25439328b5c89934e6d30d357"}, + {file = "orjson-3.9.15-cp311-none-win32.whl", hash = "sha256:62482873e0289cf7313461009bf62ac8b2e54bc6f00c6fabcde785709231a5d7"}, + {file = "orjson-3.9.15-cp311-none-win_amd64.whl", hash = "sha256:b3d336ed75d17c7b1af233a6561cf421dee41d9204aa3cfcc6c9c65cd5bb69a8"}, + {file = "orjson-3.9.15-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:6fc2fe4647927070df3d93f561d7e588a38865ea0040027662e3e541d592811e"}, + {file = "orjson-3.9.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:34cbcd216e7af5270f2ffa63a963346845eb71e174ea530867b7443892d77180"}, + {file = "orjson-3.9.15-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f541587f5c558abd93cb0de491ce99a9ef8d1ae29dd6ab4dbb5a13281ae04cbd"}, + {file = "orjson-3.9.15-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:92255879280ef9c3c0bcb327c5a1b8ed694c290d61a6a532458264f887f052cb"}, + {file = "orjson-3.9.15-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:05a1f57fb601c426635fcae9ddbe90dfc1ed42245eb4c75e4960440cac667262"}, + {file = "orjson-3.9.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ede0bde16cc6e9b96633df1631fbcd66491d1063667f260a4f2386a098393790"}, + {file = "orjson-3.9.15-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:e88b97ef13910e5f87bcbc4dd7979a7de9ba8702b54d3204ac587e83639c0c2b"}, + {file = "orjson-3.9.15-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:57d5d8cf9c27f7ef6bc56a5925c7fbc76b61288ab674eb352c26ac780caa5b10"}, + {file = "orjson-3.9.15-cp39-none-win32.whl", hash = "sha256:001f4eb0ecd8e9ebd295722d0cbedf0748680fb9998d3993abaed2f40587257a"}, + {file = "orjson-3.9.15-cp39-none-win_amd64.whl", hash = "sha256:ea0b183a5fe6b2b45f3b854b0d19c4e932d6f5934ae1f723b07cf9560edd4ec7"}, + {file = "orjson-3.9.15.tar.gz", hash = "sha256:95cae920959d772f30ab36d3b25f83bb0f3be671e986c72ce22f8fa700dae061"}, ] [[package]] @@ -2506,6 +2656,7 @@ name = "packaging" version = "23.2" requires_python = ">=3.7" summary = "Core utilities for Python packages" +groups = ["hook-check-django-migrations", "lint"] files = [ {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, @@ -2516,6 +2667,7 @@ name = "pandas" version = "2.1.4" requires_python = ">=3.9" summary = "Powerful data structures for data analysis, time series, and statistics" +groups = ["hook-check-django-migrations"] dependencies = [ "numpy<2,>=1.22.4; python_version < \"3.11\"", "numpy<2,>=1.23.2; python_version == \"3.11\"", @@ -2550,6 +2702,7 @@ name = "pathspec" version = "0.12.1" requires_python = ">=3.8" summary = "Utility library for gitignore style pattern matching of file paths." +groups = ["hook-check-django-migrations", "lint"] files = [ {file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"}, {file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"}, @@ -2560,6 +2713,7 @@ name = "pdfminer-six" version = "20221105" requires_python = ">=3.6" summary = "PDF parser and analyzer" +groups = ["hook-check-django-migrations"] dependencies = [ "charset-normalizer>=2.0.0", "cryptography>=36.0.0", @@ -2574,6 +2728,7 @@ name = "pdfplumber" version = "0.10.3" requires_python = ">=3.8" summary = "Plumb a PDF for detailed information about each char, rectangle, and line." +groups = ["hook-check-django-migrations"] dependencies = [ "Pillow>=9.1", "pdfminer-six==20221105", @@ -2589,6 +2744,7 @@ name = "pgvector" version = "0.1.8" requires_python = ">=3.6" summary = "pgvector support for Python" +groups = ["hook-check-django-migrations"] dependencies = [ "numpy", ] @@ -2601,6 +2757,7 @@ name = "pillow" version = "10.2.0" requires_python = ">=3.8" summary = "Python Imaging Library (Fork)" +groups = ["hook-check-django-migrations"] files = [ {file = "pillow-10.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:7823bdd049099efa16e4246bdf15e5a13dbb18a51b68fa06d6c1d4d8b99a796e"}, {file = "pillow-10.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:83b2021f2ade7d1ed556bc50a399127d7fb245e725aa0113ebd05cfe88aaf588"}, @@ -2656,6 +2813,7 @@ name = "pinecone-client" version = "2.2.4" requires_python = ">=3.8" summary = "Pinecone client and SDK" +groups = ["hook-check-django-migrations"] dependencies = [ "dnspython>=2.0.0", "loguru>=0.5.0", @@ -2677,6 +2835,7 @@ name = "platformdirs" version = "3.11.0" requires_python = ">=3.7" summary = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +groups = ["hook-check-django-migrations", "lint"] files = [ {file = "platformdirs-3.11.0-py3-none-any.whl", hash = "sha256:e9d171d00af68be50e9202731309c4e658fd8bc76f55c11c7dd760d023bda68e"}, {file = "platformdirs-3.11.0.tar.gz", hash = "sha256:cf8ee52a3afdb965072dcc652433e0c7e3e40cf5ea1477cd4b3b1d2eb75495b3"}, @@ -2686,6 +2845,7 @@ files = [ name = "ply" version = "3.11" summary = "Python Lex & Yacc" +groups = ["hook-check-django-migrations"] files = [ {file = "ply-3.11-py2.py3-none-any.whl", hash = "sha256:096f9b8350b65ebd2fd1346b12452efe5b9607f7482813ffca50c22722a807ce"}, {file = "ply-3.11.tar.gz", hash = "sha256:00c7c1aaa88358b9c765b6d3000c6eec0ba42abca5351b095321aef446081da3"}, @@ -2696,6 +2856,7 @@ name = "portalocker" version = "2.8.2" requires_python = ">=3.8" summary = "Wraps the portalocker recipe for easy usage" +groups = ["hook-check-django-migrations"] dependencies = [ "pywin32>=226; platform_system == \"Windows\"", ] @@ -2709,6 +2870,7 @@ name = "postgrest" version = "0.13.2" requires_python = ">=3.8,<4.0" summary = "PostgREST client for Python. This library provides an ORM interface to PostgREST." +groups = ["hook-check-django-migrations"] dependencies = [ "deprecation<3.0.0,>=2.1.0", "httpx<0.26,>=0.24", @@ -2725,6 +2887,7 @@ name = "pre-commit" version = "3.3.3" requires_python = ">=3.8" summary = "A framework for managing and maintaining multi-language pre-commit hooks." +groups = ["lint"] dependencies = [ "cfgv>=2.0.0", "identify>=1.0.0", @@ -2742,6 +2905,7 @@ name = "prompt-toolkit" version = "3.0.43" requires_python = ">=3.7.0" summary = "Library for building powerful interactive command lines in Python" +groups = ["hook-check-django-migrations"] dependencies = [ "wcwidth", ] @@ -2755,6 +2919,7 @@ name = "proto-plus" version = "1.23.0" requires_python = ">=3.6" summary = "Beautiful, Pythonic protocol buffers." +groups = ["hook-check-django-migrations"] dependencies = [ "protobuf<5.0.0dev,>=3.19.0", ] @@ -2768,6 +2933,7 @@ name = "protobuf" version = "4.25.3" requires_python = ">=3.8" summary = "" +groups = ["hook-check-django-migrations"] files = [ {file = "protobuf-4.25.3-cp310-abi3-win32.whl", hash = "sha256:d4198877797a83cbfe9bffa3803602bbe1625dc30d8a097365dbc762e5790faa"}, {file = "protobuf-4.25.3-cp310-abi3-win_amd64.whl", hash = "sha256:209ba4cc916bab46f64e56b85b090607a676f66b473e6b762e6f1d9d591eb2e8"}, @@ -2785,6 +2951,7 @@ name = "psycopg2-binary" version = "2.9.9" requires_python = ">=3.7" summary = "psycopg2 - Python-PostgreSQL Database Adapter" +groups = ["hook-check-django-migrations"] files = [ {file = "psycopg2-binary-2.9.9.tar.gz", hash = "sha256:7f01846810177d829c7692f1f5ada8096762d9172af1b1a28d4ab5b77c923c1c"}, {file = "psycopg2_binary-2.9.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c2470da5418b76232f02a2fcd2229537bb2d5a7096674ce61859c3229f2eb202"}, @@ -2830,6 +2997,7 @@ name = "pyarrow" version = "15.0.0" requires_python = ">=3.8" summary = "Python library for Apache Arrow" +groups = ["hook-check-django-migrations"] dependencies = [ "numpy<2,>=1.16.6", ] @@ -2863,6 +3031,7 @@ name = "pyasn1" version = "0.5.1" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" summary = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" +groups = ["hook-check-django-migrations"] files = [ {file = "pyasn1-0.5.1-py2.py3-none-any.whl", hash = "sha256:4439847c58d40b1d0a573d07e3856e95333f1976294494c325775aeca506eb58"}, {file = "pyasn1-0.5.1.tar.gz", hash = "sha256:6d391a96e59b23130a5cfa74d6fd7f388dbbe26cc8f1edf39fdddf08d9d6676c"}, @@ -2873,6 +3042,7 @@ name = "pyasn1-modules" version = "0.3.0" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" summary = "A collection of ASN.1-based protocols modules" +groups = ["hook-check-django-migrations"] dependencies = [ "pyasn1<0.6.0,>=0.4.6", ] @@ -2886,6 +3056,7 @@ name = "pycodestyle" version = "2.10.0" requires_python = ">=3.6" summary = "Python style guide checker" +groups = ["lint"] files = [ {file = "pycodestyle-2.10.0-py2.py3-none-any.whl", hash = "sha256:8a4eaf0d0495c7395bdab3589ac2db602797d76207242c17d470186815706610"}, {file = "pycodestyle-2.10.0.tar.gz", hash = "sha256:347187bdb476329d98f695c213d7295a846d1152ff4fe9bacb8a9590b8ee7053"}, @@ -2896,6 +3067,7 @@ name = "pycparser" version = "2.21" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "C parser in Python" +groups = ["hook-check-django-migrations", "lint"] files = [ {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, @@ -2906,6 +3078,7 @@ name = "pycryptodome" version = "3.20.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Cryptographic library for Python" +groups = ["hook-check-django-migrations"] files = [ {file = "pycryptodome-3.20.0-cp35-abi3-macosx_10_9_universal2.whl", hash = "sha256:ac1c7c0624a862f2e53438a15c9259d1655325fc2ec4392e66dc46cdae24d044"}, {file = "pycryptodome-3.20.0-cp35-abi3-macosx_10_9_x86_64.whl", hash = "sha256:76658f0d942051d12a9bd08ca1b6b34fd762a8ee4240984f7c06ddfb55eaf15a"}, @@ -2932,82 +3105,84 @@ files = [ [[package]] name = "pydantic" -version = "2.6.1" +version = "2.6.3" requires_python = ">=3.8" summary = "Data validation using Python type hints" +groups = ["hook-check-django-migrations"] dependencies = [ "annotated-types>=0.4.0", - "pydantic-core==2.16.2", + "pydantic-core==2.16.3", "typing-extensions>=4.6.1", ] files = [ - {file = "pydantic-2.6.1-py3-none-any.whl", hash = "sha256:0b6a909df3192245cb736509a92ff69e4fef76116feffec68e93a567347bae6f"}, - {file = "pydantic-2.6.1.tar.gz", hash = "sha256:4fd5c182a2488dc63e6d32737ff19937888001e2a6d86e94b3f233104a5d1fa9"}, + {file = "pydantic-2.6.3-py3-none-any.whl", hash = "sha256:72c6034df47f46ccdf81869fddb81aade68056003900a8724a4f160700016a2a"}, + {file = "pydantic-2.6.3.tar.gz", hash = "sha256:e07805c4c7f5c6826e33a1d4c9d47950d7eaf34868e2690f8594d2e30241f11f"}, ] [[package]] name = "pydantic-core" -version = "2.16.2" +version = "2.16.3" requires_python = ">=3.8" summary = "" +groups = ["hook-check-django-migrations"] dependencies = [ "typing-extensions!=4.7.0,>=4.6.0", ] files = [ - {file = "pydantic_core-2.16.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:3fab4e75b8c525a4776e7630b9ee48aea50107fea6ca9f593c98da3f4d11bf7c"}, - {file = "pydantic_core-2.16.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8bde5b48c65b8e807409e6f20baee5d2cd880e0fad00b1a811ebc43e39a00ab2"}, - {file = "pydantic_core-2.16.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2924b89b16420712e9bb8192396026a8fbd6d8726224f918353ac19c4c043d2a"}, - {file = "pydantic_core-2.16.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:16aa02e7a0f539098e215fc193c8926c897175d64c7926d00a36188917717a05"}, - {file = "pydantic_core-2.16.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:936a787f83db1f2115ee829dd615c4f684ee48ac4de5779ab4300994d8af325b"}, - {file = "pydantic_core-2.16.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:459d6be6134ce3b38e0ef76f8a672924460c455d45f1ad8fdade36796df1ddc8"}, - {file = "pydantic_core-2.16.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f9ee4febb249c591d07b2d4dd36ebcad0ccd128962aaa1801508320896575ef"}, - {file = "pydantic_core-2.16.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:40a0bd0bed96dae5712dab2aba7d334a6c67cbcac2ddfca7dbcc4a8176445990"}, - {file = "pydantic_core-2.16.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:870dbfa94de9b8866b37b867a2cb37a60c401d9deb4a9ea392abf11a1f98037b"}, - {file = "pydantic_core-2.16.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:308974fdf98046db28440eb3377abba274808bf66262e042c412eb2adf852731"}, - {file = "pydantic_core-2.16.2-cp310-none-win32.whl", hash = "sha256:a477932664d9611d7a0816cc3c0eb1f8856f8a42435488280dfbf4395e141485"}, - {file = "pydantic_core-2.16.2-cp310-none-win_amd64.whl", hash = "sha256:8f9142a6ed83d90c94a3efd7af8873bf7cefed2d3d44387bf848888482e2d25f"}, - {file = "pydantic_core-2.16.2-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:406fac1d09edc613020ce9cf3f2ccf1a1b2f57ab00552b4c18e3d5276c67eb11"}, - {file = "pydantic_core-2.16.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ce232a6170dd6532096cadbf6185271e4e8c70fc9217ebe105923ac105da9978"}, - {file = "pydantic_core-2.16.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a90fec23b4b05a09ad988e7a4f4e081711a90eb2a55b9c984d8b74597599180f"}, - {file = "pydantic_core-2.16.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8aafeedb6597a163a9c9727d8a8bd363a93277701b7bfd2749fbefee2396469e"}, - {file = "pydantic_core-2.16.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9957433c3a1b67bdd4c63717eaf174ebb749510d5ea612cd4e83f2d9142f3fc8"}, - {file = "pydantic_core-2.16.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0d7a9165167269758145756db43a133608a531b1e5bb6a626b9ee24bc38a8f7"}, - {file = "pydantic_core-2.16.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dffaf740fe2e147fedcb6b561353a16243e654f7fe8e701b1b9db148242e1272"}, - {file = "pydantic_core-2.16.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f8ed79883b4328b7f0bd142733d99c8e6b22703e908ec63d930b06be3a0e7113"}, - {file = "pydantic_core-2.16.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:cf903310a34e14651c9de056fcc12ce090560864d5a2bb0174b971685684e1d8"}, - {file = "pydantic_core-2.16.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:46b0d5520dbcafea9a8645a8164658777686c5c524d381d983317d29687cce97"}, - {file = "pydantic_core-2.16.2-cp311-none-win32.whl", hash = "sha256:70651ff6e663428cea902dac297066d5c6e5423fda345a4ca62430575364d62b"}, - {file = "pydantic_core-2.16.2-cp311-none-win_amd64.whl", hash = "sha256:98dc6f4f2095fc7ad277782a7c2c88296badcad92316b5a6e530930b1d475ebc"}, - {file = "pydantic_core-2.16.2-cp311-none-win_arm64.whl", hash = "sha256:ef6113cd31411eaf9b39fc5a8848e71c72656fd418882488598758b2c8c6dfa0"}, - {file = "pydantic_core-2.16.2-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:55749f745ebf154c0d63d46c8c58594d8894b161928aa41adbb0709c1fe78b77"}, - {file = "pydantic_core-2.16.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:b30b0dd58a4509c3bd7eefddf6338565c4905406aee0c6e4a5293841411a1286"}, - {file = "pydantic_core-2.16.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18de31781cdc7e7b28678df7c2d7882f9692ad060bc6ee3c94eb15a5d733f8f7"}, - {file = "pydantic_core-2.16.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5864b0242f74b9dd0b78fd39db1768bc3f00d1ffc14e596fd3e3f2ce43436a33"}, - {file = "pydantic_core-2.16.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b8f9186ca45aee030dc8234118b9c0784ad91a0bb27fc4e7d9d6608a5e3d386c"}, - {file = "pydantic_core-2.16.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:cc6f6c9be0ab6da37bc77c2dda5f14b1d532d5dbef00311ee6e13357a418e646"}, - {file = "pydantic_core-2.16.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:aa057095f621dad24a1e906747179a69780ef45cc8f69e97463692adbcdae878"}, - {file = "pydantic_core-2.16.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:6ad84731a26bcfb299f9eab56c7932d46f9cad51c52768cace09e92a19e4cf55"}, - {file = "pydantic_core-2.16.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:3b052c753c4babf2d1edc034c97851f867c87d6f3ea63a12e2700f159f5c41c3"}, - {file = "pydantic_core-2.16.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e0f686549e32ccdb02ae6f25eee40cc33900910085de6aa3790effd391ae10c2"}, - {file = "pydantic_core-2.16.2-cp39-none-win32.whl", hash = "sha256:7afb844041e707ac9ad9acad2188a90bffce2c770e6dc2318be0c9916aef1469"}, - {file = "pydantic_core-2.16.2-cp39-none-win_amd64.whl", hash = "sha256:9da90d393a8227d717c19f5397688a38635afec89f2e2d7af0df037f3249c39a"}, - {file = "pydantic_core-2.16.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5f60f920691a620b03082692c378661947d09415743e437a7478c309eb0e4f82"}, - {file = "pydantic_core-2.16.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:47924039e785a04d4a4fa49455e51b4eb3422d6eaacfde9fc9abf8fdef164e8a"}, - {file = "pydantic_core-2.16.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e6294e76b0380bb7a61eb8a39273c40b20beb35e8c87ee101062834ced19c545"}, - {file = "pydantic_core-2.16.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe56851c3f1d6f5384b3051c536cc81b3a93a73faf931f404fef95217cf1e10d"}, - {file = "pydantic_core-2.16.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9d776d30cde7e541b8180103c3f294ef7c1862fd45d81738d156d00551005784"}, - {file = "pydantic_core-2.16.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:72f7919af5de5ecfaf1eba47bf9a5d8aa089a3340277276e5636d16ee97614d7"}, - {file = "pydantic_core-2.16.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:4bfcbde6e06c56b30668a0c872d75a7ef3025dc3c1823a13cf29a0e9b33f67e8"}, - {file = "pydantic_core-2.16.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ff7c97eb7a29aba230389a2661edf2e9e06ce616c7e35aa764879b6894a44b25"}, - {file = "pydantic_core-2.16.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:9b5f13857da99325dcabe1cc4e9e6a3d7b2e2c726248ba5dd4be3e8e4a0b6d0e"}, - {file = "pydantic_core-2.16.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:a7e41e3ada4cca5f22b478c08e973c930e5e6c7ba3588fb8e35f2398cdcc1545"}, - {file = "pydantic_core-2.16.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:60eb8ceaa40a41540b9acae6ae7c1f0a67d233c40dc4359c256ad2ad85bdf5e5"}, - {file = "pydantic_core-2.16.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7beec26729d496a12fd23cf8da9944ee338c8b8a17035a560b585c36fe81af20"}, - {file = "pydantic_core-2.16.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:22c5f022799f3cd6741e24f0443ead92ef42be93ffda0d29b2597208c94c3753"}, - {file = "pydantic_core-2.16.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:eca58e319f4fd6df004762419612122b2c7e7d95ffafc37e890252f869f3fb2a"}, - {file = "pydantic_core-2.16.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ed957db4c33bc99895f3a1672eca7e80e8cda8bd1e29a80536b4ec2153fa9804"}, - {file = "pydantic_core-2.16.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:459c0d338cc55d099798618f714b21b7ece17eb1a87879f2da20a3ff4c7628e2"}, - {file = "pydantic_core-2.16.2.tar.gz", hash = "sha256:0ba503850d8b8dcc18391f10de896ae51d37fe5fe43dbfb6a35c5c5cad271a06"}, + {file = "pydantic_core-2.16.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:75b81e678d1c1ede0785c7f46690621e4c6e63ccd9192af1f0bd9d504bbb6bf4"}, + {file = "pydantic_core-2.16.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9c865a7ee6f93783bd5d781af5a4c43dadc37053a5b42f7d18dc019f8c9d2bd1"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:162e498303d2b1c036b957a1278fa0899d02b2842f1ff901b6395104c5554a45"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2f583bd01bbfbff4eaee0868e6fc607efdfcc2b03c1c766b06a707abbc856187"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b926dd38db1519ed3043a4de50214e0d600d404099c3392f098a7f9d75029ff8"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:716b542728d4c742353448765aa7cdaa519a7b82f9564130e2b3f6766018c9ec"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fc4ad7f7ee1a13d9cb49d8198cd7d7e3aa93e425f371a68235f784e99741561f"}, + {file = "pydantic_core-2.16.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bd87f48924f360e5d1c5f770d6155ce0e7d83f7b4e10c2f9ec001c73cf475c99"}, + {file = "pydantic_core-2.16.3-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0df446663464884297c793874573549229f9eca73b59360878f382a0fc085979"}, + {file = "pydantic_core-2.16.3-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:4df8a199d9f6afc5ae9a65f8f95ee52cae389a8c6b20163762bde0426275b7db"}, + {file = "pydantic_core-2.16.3-cp310-none-win32.whl", hash = "sha256:456855f57b413f077dff513a5a28ed838dbbb15082ba00f80750377eed23d132"}, + {file = "pydantic_core-2.16.3-cp310-none-win_amd64.whl", hash = "sha256:732da3243e1b8d3eab8c6ae23ae6a58548849d2e4a4e03a1924c8ddf71a387cb"}, + {file = "pydantic_core-2.16.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:519ae0312616026bf4cedc0fe459e982734f3ca82ee8c7246c19b650b60a5ee4"}, + {file = "pydantic_core-2.16.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:b3992a322a5617ded0a9f23fd06dbc1e4bd7cf39bc4ccf344b10f80af58beacd"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8d62da299c6ecb04df729e4b5c52dc0d53f4f8430b4492b93aa8de1f541c4aac"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:2acca2be4bb2f2147ada8cac612f8a98fc09f41c89f87add7256ad27332c2fda"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1b662180108c55dfbf1280d865b2d116633d436cfc0bba82323554873967b340"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e7c6ed0dc9d8e65f24f5824291550139fe6f37fac03788d4580da0d33bc00c97"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a6b1bb0827f56654b4437955555dc3aeeebeddc47c2d7ed575477f082622c49e"}, + {file = "pydantic_core-2.16.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e56f8186d6210ac7ece503193ec84104da7ceb98f68ce18c07282fcc2452e76f"}, + {file = "pydantic_core-2.16.3-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:936e5db01dd49476fa8f4383c259b8b1303d5dd5fb34c97de194560698cc2c5e"}, + {file = "pydantic_core-2.16.3-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:33809aebac276089b78db106ee692bdc9044710e26f24a9a2eaa35a0f9fa70ba"}, + {file = "pydantic_core-2.16.3-cp311-none-win32.whl", hash = "sha256:ded1c35f15c9dea16ead9bffcde9bb5c7c031bff076355dc58dcb1cb436c4721"}, + {file = "pydantic_core-2.16.3-cp311-none-win_amd64.whl", hash = "sha256:d89ca19cdd0dd5f31606a9329e309d4fcbb3df860960acec32630297d61820df"}, + {file = "pydantic_core-2.16.3-cp311-none-win_arm64.whl", hash = "sha256:6162f8d2dc27ba21027f261e4fa26f8bcb3cf9784b7f9499466a311ac284b5b9"}, + {file = "pydantic_core-2.16.3-cp39-cp39-macosx_10_12_x86_64.whl", hash = "sha256:bda1ee3e08252b8d41fa5537413ffdddd58fa73107171a126d3b9ff001b9b820"}, + {file = "pydantic_core-2.16.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:21b888c973e4f26b7a96491c0965a8a312e13be108022ee510248fe379a5fa23"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:be0ec334369316fa73448cc8c982c01e5d2a81c95969d58b8f6e272884df0074"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:b5b6079cc452a7c53dd378c6f881ac528246b3ac9aae0f8eef98498a75657805"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7ee8d5f878dccb6d499ba4d30d757111847b6849ae07acdd1205fffa1fc1253c"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7233d65d9d651242a68801159763d09e9ec96e8a158dbf118dc090cd77a104c9"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c6119dc90483a5cb50a1306adb8d52c66e447da88ea44f323e0ae1a5fcb14256"}, + {file = "pydantic_core-2.16.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:578114bc803a4c1ff9946d977c221e4376620a46cf78da267d946397dc9514a8"}, + {file = "pydantic_core-2.16.3-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:d8f99b147ff3fcf6b3cc60cb0c39ea443884d5559a30b1481e92495f2310ff2b"}, + {file = "pydantic_core-2.16.3-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:4ac6b4ce1e7283d715c4b729d8f9dab9627586dafce81d9eaa009dd7f25dd972"}, + {file = "pydantic_core-2.16.3-cp39-none-win32.whl", hash = "sha256:e7774b570e61cb998490c5235740d475413a1f6de823169b4cf94e2fe9e9f6b2"}, + {file = "pydantic_core-2.16.3-cp39-none-win_amd64.whl", hash = "sha256:9091632a25b8b87b9a605ec0e61f241c456e9248bfdcf7abdf344fdb169c81cf"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:36fa178aacbc277bc6b62a2c3da95226520da4f4e9e206fdf076484363895d2c"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:dcca5d2bf65c6fb591fff92da03f94cd4f315972f97c21975398bd4bd046854a"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2a72fb9963cba4cd5793854fd12f4cfee731e86df140f59ff52a49b3552db241"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b60cc1a081f80a2105a59385b92d82278b15d80ebb3adb200542ae165cd7d183"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:cbcc558401de90a746d02ef330c528f2e668c83350f045833543cd57ecead1ad"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:fee427241c2d9fb7192b658190f9f5fd6dfe41e02f3c1489d2ec1e6a5ab1e04a"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:f4cb85f693044e0f71f394ff76c98ddc1bc0953e48c061725e540396d5c8a2e1"}, + {file = "pydantic_core-2.16.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:b29eeb887aa931c2fcef5aa515d9d176d25006794610c264ddc114c053bf96fe"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a425479ee40ff021f8216c9d07a6a3b54b31c8267c6e17aa88b70d7ebd0e5e5b"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:5c5cbc703168d1b7a838668998308018a2718c2130595e8e190220238addc96f"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:99b6add4c0b39a513d323d3b93bc173dac663c27b99860dd5bf491b240d26137"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75f76ee558751746d6a38f89d60b6228fa174e5172d143886af0f85aa306fd89"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:00ee1c97b5364b84cb0bd82e9bbf645d5e2871fb8c58059d158412fee2d33d8a"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl", hash = "sha256:287073c66748f624be4cef893ef9174e3eb88fe0b8a78dc22e88eca4bc357ca6"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl", hash = "sha256:ed25e1835c00a332cb10c683cd39da96a719ab1dfc08427d476bce41b92531fc"}, + {file = "pydantic_core-2.16.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:86b3d0033580bd6bbe07590152007275bd7af95f98eaa5bd36f3da219dcd93da"}, + {file = "pydantic_core-2.16.3.tar.gz", hash = "sha256:1cac689f80a3abab2d3c0048b29eea5751114054f032a941a32de4c852c59cad"}, ] [[package]] @@ -3015,6 +3190,7 @@ name = "pydrive2" version = "1.15.4" requires_python = ">=3.7" summary = "Google Drive API made easy. Maintained fork of PyDrive." +groups = ["hook-check-django-migrations"] dependencies = [ "PyYAML>=3.0", "google-api-python-client>=1.12.5", @@ -3032,6 +3208,7 @@ version = "1.15.4" extras = ["fsspec"] requires_python = ">=3.7" summary = "Google Drive API made easy. Maintained fork of PyDrive." +groups = ["hook-check-django-migrations"] dependencies = [ "PyDrive2==1.15.4", "appdirs>=1.4.3", @@ -3049,6 +3226,7 @@ name = "pyflakes" version = "3.0.1" requires_python = ">=3.6" summary = "passive checker of Python programs" +groups = ["lint"] files = [ {file = "pyflakes-3.0.1-py2.py3-none-any.whl", hash = "sha256:ec55bf7fe21fff7f1ad2f7da62363d749e2a470500eab1b555334b67aa1ef8cf"}, {file = "pyflakes-3.0.1.tar.gz", hash = "sha256:ec8b276a6b60bd80defed25add7e439881c19e64850afd9b346283d4165fd0fd"}, @@ -3059,6 +3237,7 @@ name = "pygments" version = "2.17.2" requires_python = ">=3.7" summary = "Pygments is a syntax highlighting package written in Python." +groups = ["hook-check-django-migrations"] files = [ {file = "pygments-2.17.2-py3-none-any.whl", hash = "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c"}, {file = "pygments-2.17.2.tar.gz", hash = "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367"}, @@ -3069,6 +3248,7 @@ name = "pyjwt" version = "2.8.0" requires_python = ">=3.7" summary = "JSON Web Token implementation in Python" +groups = ["hook-check-django-migrations"] files = [ {file = "PyJWT-2.8.0-py3-none-any.whl", hash = "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320"}, {file = "PyJWT-2.8.0.tar.gz", hash = "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de"}, @@ -3079,6 +3259,7 @@ name = "pymilvus" version = "2.3.4" requires_python = ">=3.7" summary = "Python Sdk for Milvus" +groups = ["hook-check-django-migrations"] dependencies = [ "environs<=9.5.0", "grpcio<=1.58.0,>=1.49.1", @@ -3098,6 +3279,7 @@ files = [ name = "pymssql" version = "2.2.8" summary = "DB-API interface to Microsoft SQL Server for Python. (new Cython-based version)" +groups = ["hook-check-django-migrations"] files = [ {file = "pymssql-2.2.8-cp310-cp310-macosx_11_0_x86_64.whl", hash = "sha256:30bfd7b8edef78097ccd3f52ac3f3a5c3cf0019f8a280f306cacbbb165caaf63"}, {file = "pymssql-2.2.8-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:049f2e3de919e8e02504780a21ebbf235e21ca8ed5c7538c5b6e705aa6c43d8c"}, @@ -3122,6 +3304,7 @@ name = "pymysql" version = "1.1.0" requires_python = ">=3.7" summary = "Pure Python MySQL Driver" +groups = ["hook-check-django-migrations"] files = [ {file = "PyMySQL-1.1.0-py3-none-any.whl", hash = "sha256:8969ec6d763c856f7073c4c64662882675702efcb114b4bcbb955aea3a069fa7"}, {file = "PyMySQL-1.1.0.tar.gz", hash = "sha256:4f13a7df8bf36a51e81dd9f3605fede45a4878fe02f9236349fd82a3f0612f96"}, @@ -3132,6 +3315,7 @@ name = "pyopenssl" version = "23.3.0" requires_python = ">=3.7" summary = "Python wrapper module around the OpenSSL library" +groups = ["hook-check-django-migrations"] dependencies = [ "cryptography<42,>=41.0.5", ] @@ -3145,6 +3329,8 @@ name = "pyparsing" version = "3.1.1" requires_python = ">=3.6.8" summary = "pyparsing module - Classes and methods to define and execute parsing grammars" +groups = ["hook-check-django-migrations"] +marker = "python_version > \"3.0\"" files = [ {file = "pyparsing-3.1.1-py3-none-any.whl", hash = "sha256:32c7c0b711493c72ff18a981d24f28aaf9c1fb7ed5e9667c9e84e3db623bdbfb"}, {file = "pyparsing-3.1.1.tar.gz", hash = "sha256:ede28a1a32462f5a9705e07aea48001a08f7cf81a021585011deba701581a0db"}, @@ -3155,6 +3341,7 @@ name = "pypdfium2" version = "4.27.0" requires_python = ">= 3.6" summary = "Python bindings to PDFium" +groups = ["hook-check-django-migrations"] files = [ {file = "pypdfium2-4.27.0-py3-none-macosx_10_13_x86_64.whl", hash = "sha256:2938f423c79b49df9057993f747e537a05b71bc2c847801ac743f27c3220d363"}, {file = "pypdfium2-4.27.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:f396941e070bf6c245890f2ffb2cb04f39585e3cda93ebb1648f1ed0e99b921f"}, @@ -3175,6 +3362,8 @@ files = [ name = "pyreadline3" version = "3.4.1" summary = "A python implementation of GNU readline." +groups = ["hook-check-django-migrations"] +marker = "sys_platform == \"win32\" and python_version >= \"3.8\"" files = [ {file = "pyreadline3-3.4.1-py3-none-any.whl", hash = "sha256:b0efb6516fd4fb07b45949053826a62fa4cb353db5be2bbb4a7aa1fdd1e345fb"}, {file = "pyreadline3-3.4.1.tar.gz", hash = "sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae"}, @@ -3185,6 +3374,7 @@ name = "pytesseract" version = "0.3.10" requires_python = ">=3.7" summary = "Python-tesseract is a python wrapper for Google's Tesseract-OCR" +groups = ["hook-check-django-migrations"] dependencies = [ "Pillow>=8.0.0", "packaging>=21.3", @@ -3198,6 +3388,7 @@ files = [ name = "python-crontab" version = "3.0.0" summary = "Python Crontab API" +groups = ["hook-check-django-migrations"] dependencies = [ "python-dateutil", ] @@ -3211,6 +3402,7 @@ name = "python-dateutil" version = "2.8.2" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" summary = "Extensions to the standard Python datetime module" +groups = ["hook-check-django-migrations"] dependencies = [ "six>=1.5", ] @@ -3224,6 +3416,7 @@ name = "python-dotenv" version = "1.0.0" requires_python = ">=3.8" summary = "Read key-value pairs from a .env file and set them as environment variables" +groups = ["hook-check-django-migrations"] files = [ {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, @@ -3234,6 +3427,7 @@ name = "python-magic" version = "0.4.27" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "File type identification using libmagic" +groups = ["hook-check-django-migrations"] files = [ {file = "python-magic-0.4.27.tar.gz", hash = "sha256:c1ba14b08e4a5f5c31a302b7721239695b2f0f058d125bd5ce1ee36b9d9d3c3b"}, {file = "python_magic-0.4.27-py2.py3-none-any.whl", hash = "sha256:c212960ad306f700aa0d01e5d7a325d20548ff97eb9920dcd29513174f0294d3"}, @@ -3243,6 +3437,7 @@ files = [ name = "python3-openid" version = "3.2.0" summary = "OpenID support for modern servers and consumers." +groups = ["hook-check-django-migrations"] dependencies = [ "defusedxml", ] @@ -3255,6 +3450,7 @@ files = [ name = "pytz" version = "2024.1" summary = "World timezone definitions, modern and historical" +groups = ["hook-check-django-migrations"] files = [ {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, @@ -3264,6 +3460,8 @@ files = [ name = "pywin32" version = "306" summary = "Python for Window Extensions" +groups = ["hook-check-django-migrations"] +marker = "sys_platform == \"win32\" or platform_system == \"Windows\"" files = [ {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, @@ -3279,6 +3477,7 @@ name = "pyyaml" version = "6.0.1" requires_python = ">=3.6" summary = "YAML parser and emitter for Python" +groups = ["hook-check-django-migrations", "lint"] files = [ {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, @@ -3312,6 +3511,7 @@ name = "qdrant-client" version = "1.7.0" requires_python = ">=3.8,<3.13" summary = "Client library for the Qdrant vector search engine" +groups = ["hook-check-django-migrations"] dependencies = [ "grpcio-tools>=1.41.0", "grpcio>=1.41.0", @@ -3331,6 +3531,7 @@ name = "realtime" version = "1.0.2" requires_python = ">=3.8,<4.0" summary = "" +groups = ["hook-check-django-migrations"] dependencies = [ "python-dateutil<3.0.0,>=2.8.1", "typing-extensions<5.0.0,>=4.2.0", @@ -3346,6 +3547,7 @@ name = "redis" version = "5.0.1" requires_python = ">=3.7" summary = "Python client for Redis database and key-value store" +groups = ["hook-check-django-migrations"] dependencies = [ "async-timeout>=4.0.2; python_full_version <= \"3.11.2\"", ] @@ -3359,6 +3561,7 @@ name = "referencing" version = "0.33.0" requires_python = ">=3.8" summary = "JSON Referencing + Python" +groups = ["hook-check-django-migrations"] dependencies = [ "attrs>=22.2.0", "rpds-py>=0.7.0", @@ -3373,6 +3576,7 @@ name = "regex" version = "2023.12.25" requires_python = ">=3.7" summary = "Alternative regular expression module, to replace re." +groups = ["hook-check-django-migrations"] files = [ {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0694219a1d54336fd0445ea382d49d36882415c0134ee1e8332afd1529f0baa5"}, {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b014333bd0217ad3d54c143de9d4b9a3ca1c5a29a6d0d554952ea071cff0f1f8"}, @@ -3429,6 +3633,7 @@ name = "replicate" version = "0.22.0" requires_python = ">=3.8" summary = "Python client for Replicate" +groups = ["hook-check-django-migrations"] dependencies = [ "httpx<1,>=0.21.0", "packaging", @@ -3445,6 +3650,7 @@ name = "requests" version = "2.31.0" requires_python = ">=3.7" summary = "Python HTTP for Humans." +groups = ["hook-check-django-migrations"] dependencies = [ "certifi>=2017.4.17", "charset-normalizer<4,>=2", @@ -3461,6 +3667,7 @@ name = "requests-oauthlib" version = "1.3.1" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "OAuthlib authentication support for Requests." +groups = ["hook-check-django-migrations"] dependencies = [ "oauthlib>=3.0.0", "requests>=2.0.0", @@ -3475,6 +3682,7 @@ name = "requests-toolbelt" version = "1.0.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "A utility belt for advanced users of python-requests" +groups = ["hook-check-django-migrations"] dependencies = [ "requests<3.0.0,>=2.0.1", ] @@ -3488,6 +3696,7 @@ name = "rich" version = "13.7.0" requires_python = ">=3.7.0" summary = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" +groups = ["hook-check-django-migrations"] dependencies = [ "markdown-it-py>=2.2.0", "pygments<3.0.0,>=2.13.0", @@ -3502,6 +3711,7 @@ name = "rpds-py" version = "0.18.0" requires_python = ">=3.8" summary = "Python bindings to Rust's persistent data structures (rpds)" +groups = ["hook-check-django-migrations"] files = [ {file = "rpds_py-0.18.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:5b4e7d8d6c9b2e8ee2d55c90b59c707ca59bc30058269b3db7b1f8df5763557e"}, {file = "rpds_py-0.18.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c463ed05f9dfb9baebef68048aed8dcdc94411e4bf3d33a39ba97e271624f8f7"}, @@ -3583,6 +3793,7 @@ name = "rsa" version = "4.9" requires_python = ">=3.6,<4" summary = "Pure-Python RSA implementation" +groups = ["hook-check-django-migrations"] dependencies = [ "pyasn1>=0.1.3", ] @@ -3596,6 +3807,7 @@ name = "s3fs" version = "2023.6.0" requires_python = ">= 3.8" summary = "Convenient Filesystem interface over S3" +groups = ["hook-check-django-migrations"] dependencies = [ "aiobotocore~=2.5.0", "aiohttp!=4.0.0a0,!=4.0.0a1", @@ -3612,6 +3824,7 @@ version = "2023.6.0" extras = ["boto3"] requires_python = ">= 3.8" summary = "Convenient Filesystem interface over S3" +groups = ["hook-check-django-migrations"] dependencies = [ "aiobotocore[boto3]~=2.5.0", "s3fs==2023.6.0", @@ -3626,6 +3839,7 @@ name = "s3transfer" version = "0.6.2" requires_python = ">= 3.7" summary = "An Amazon S3 Transfer Manager" +groups = ["hook-check-django-migrations"] dependencies = [ "botocore<2.0a.0,>=1.12.36", ] @@ -3639,6 +3853,7 @@ name = "safetensors" version = "0.4.2" requires_python = ">=3.7" summary = "" +groups = ["hook-check-django-migrations"] files = [ {file = "safetensors-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:69d8bb8384dc2cb5b72c36c4d6980771b293d1a1377b378763f5e37b6bb8d133"}, {file = "safetensors-0.4.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3d420e19fcef96d0067f4de4699682b4bbd85fc8fea0bd45fcd961fdf3e8c82c"}, @@ -3708,12 +3923,13 @@ files = [ [[package]] name = "setuptools" -version = "69.1.0" +version = "69.1.1" requires_python = ">=3.8" summary = "Easily download, build, install, upgrade, and uninstall Python packages" +groups = ["hook-check-django-migrations", "lint"] files = [ - {file = "setuptools-69.1.0-py3-none-any.whl", hash = "sha256:c054629b81b946d63a9c6e732bc8b2513a7c3ea645f11d0139a2191d735c60c6"}, - {file = "setuptools-69.1.0.tar.gz", hash = "sha256:850894c4195f09c4ed30dba56213bf7c3f21d86ed6bdaafb5df5972593bfc401"}, + {file = "setuptools-69.1.1-py3-none-any.whl", hash = "sha256:02fa291a0471b3a18b2b2481ed902af520c69e8ae0919c13da936542754b4c56"}, + {file = "setuptools-69.1.1.tar.gz", hash = "sha256:5c0806c7d9af348e6dd3777b4f4dbb42c7ad85b190104837488eab9a7c945cf8"}, ] [[package]] @@ -3721,6 +3937,7 @@ name = "shapely" version = "2.0.3" requires_python = ">=3.7" summary = "Manipulation and analysis of geometric objects" +groups = ["hook-check-django-migrations"] dependencies = [ "numpy<2,>=1.14", ] @@ -3754,6 +3971,7 @@ name = "six" version = "1.16.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" summary = "Python 2 and 3 compatibility utilities" +groups = ["hook-check-django-migrations"] files = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, @@ -3761,12 +3979,16 @@ files = [ [[package]] name = "smart-open" -version = "6.4.0" +version = "7.0.1" requires_python = ">=3.6,<4.0" summary = "Utils for streaming large files (S3, HDFS, GCS, Azure Blob Storage, gzip, bz2...)" +groups = ["hook-check-django-migrations"] +dependencies = [ + "wrapt", +] files = [ - {file = "smart_open-6.4.0-py3-none-any.whl", hash = "sha256:8d3ef7e6997e8e42dd55c74166ed21e6ac70664caa32dd940b26d54a8f6b4142"}, - {file = "smart_open-6.4.0.tar.gz", hash = "sha256:be3c92c246fbe80ebce8fbacb180494a481a77fcdcb7c1aadb2ea5b9c2bee8b9"}, + {file = "smart_open-7.0.1-py3-none-any.whl", hash = "sha256:9507e38b43d1fd515c2085b9db2e41b592bb754b0e31395a085eb0d61d2410e5"}, + {file = "smart_open-7.0.1.tar.gz", hash = "sha256:c03d00e49483d8e5375720d4d6c1402107f23584bf96505db0b4e17f92339e56"}, ] [[package]] @@ -3774,6 +3996,7 @@ name = "smmap" version = "5.0.1" requires_python = ">=3.7" summary = "A pure Python implementation of a sliding window memory map manager" +groups = ["hook-check-django-migrations"] files = [ {file = "smmap-5.0.1-py3-none-any.whl", hash = "sha256:e6d8668fa5f93e706934a62d7b4db19c8d9eb8cf2adbb75ef1b675aa332b69da"}, {file = "smmap-5.0.1.tar.gz", hash = "sha256:dceeb6c0028fdb6734471eb07c0cd2aae706ccaecab45965ee83f11c8d3b1f62"}, @@ -3781,12 +4004,13 @@ files = [ [[package]] name = "sniffio" -version = "1.3.0" +version = "1.3.1" requires_python = ">=3.7" summary = "Sniff out which async library your code is running under" +groups = ["hook-check-django-migrations"] files = [ - {file = "sniffio-1.3.0-py3-none-any.whl", hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384"}, - {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, + {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, + {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, ] [[package]] @@ -3794,6 +4018,7 @@ name = "snowflake-connector-python" version = "3.6.0" requires_python = ">=3.8" summary = "Snowflake Connector for Python" +groups = ["hook-check-django-migrations"] dependencies = [ "asn1crypto<2.0.0,>0.24.0", "certifi>=2017.4.17", @@ -3838,6 +4063,7 @@ version = "3.6.0" extras = ["pandas"] requires_python = ">=3.8" summary = "Snowflake Connector for Python" +groups = ["hook-check-django-migrations"] dependencies = [ "pandas<2.2.0,>=1.0.0", "pyarrow", @@ -3867,6 +4093,7 @@ name = "social-auth-app-django" version = "5.3.0" requires_python = ">=3.7" summary = "Python Social Authentication, Django integration." +groups = ["hook-check-django-migrations"] dependencies = [ "Django>=3.2", "social-auth-core>=4.4.1", @@ -3881,6 +4108,7 @@ name = "social-auth-core" version = "4.5.3" requires_python = ">=3.8" summary = "Python social authentication made simple." +groups = ["hook-check-django-migrations"] dependencies = [ "PyJWT>=2.7.0", "cryptography>=1.4", @@ -3899,6 +4127,7 @@ files = [ name = "sortedcontainers" version = "2.4.0" summary = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" +groups = ["hook-check-django-migrations"] files = [ {file = "sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0"}, {file = "sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88"}, @@ -3909,6 +4138,7 @@ name = "soupsieve" version = "2.5" requires_python = ">=3.8" summary = "A modern CSS selector implementation for Beautiful Soup." +groups = ["hook-check-django-migrations"] files = [ {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"}, {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"}, @@ -3918,6 +4148,7 @@ files = [ name = "spinners" version = "0.0.24" summary = "Spinners for terminals" +groups = ["hook-check-django-migrations"] files = [ {file = "spinners-0.0.24-py3-none-any.whl", hash = "sha256:2fa30d0b72c9650ad12bbe031c9943b8d441e41b4f5602b0ec977a19f3290e98"}, {file = "spinners-0.0.24.tar.gz", hash = "sha256:1eb6aeb4781d72ab42ed8a01dcf20f3002bf50740d7154d12fb8c9769bf9e27f"}, @@ -3928,8 +4159,9 @@ name = "sqlalchemy" version = "2.0.26" requires_python = ">=3.7" summary = "Database Abstraction Library" +groups = ["hook-check-django-migrations"] dependencies = [ - "greenlet!=0.4.17; platform_machine == \"aarch64\" or (platform_machine == \"ppc64le\" or (platform_machine == \"x86_64\" or (platform_machine == \"amd64\" or (platform_machine == \"AMD64\" or (platform_machine == \"win32\" or platform_machine == \"WIN32\")))))", + "greenlet!=0.4.17; platform_machine == \"win32\" or platform_machine == \"WIN32\" or platform_machine == \"AMD64\" or platform_machine == \"amd64\" or platform_machine == \"x86_64\" or platform_machine == \"ppc64le\" or platform_machine == \"aarch64\"", "typing-extensions>=4.6.0", ] files = [ @@ -3967,6 +4199,7 @@ version = "2.0.26" extras = ["asyncio"] requires_python = ">=3.7" summary = "Database Abstraction Library" +groups = ["hook-check-django-migrations"] dependencies = [ "SQLAlchemy==2.0.26", "greenlet!=0.4.17", @@ -4005,6 +4238,7 @@ name = "sqlparse" version = "0.4.4" requires_python = ">=3.5" summary = "A non-validating SQL parser." +groups = ["hook-check-django-migrations"] files = [ {file = "sqlparse-0.4.4-py3-none-any.whl", hash = "sha256:5430a4fe2ac7d0f93e66f1efc6e1338a41884b7ddf2a350cedd20ccc4d9d28f3"}, {file = "sqlparse-0.4.4.tar.gz", hash = "sha256:d446183e84b8349fa3061f0fe7f06ca94ba65b426946ffebe6e3e8295332420c"}, @@ -4014,6 +4248,7 @@ files = [ name = "stone" version = "3.3.1" summary = "Stone is an interface description language (IDL) for APIs." +groups = ["hook-check-django-migrations"] dependencies = [ "ply>=3.4", "six>=1.12.0", @@ -4028,6 +4263,7 @@ name = "storage3" version = "0.7.0" requires_python = ">=3.8,<4.0" summary = "Supabase Storage client for Python." +groups = ["hook-check-django-migrations"] dependencies = [ "httpx<0.26,>=0.24", "python-dateutil<3.0.0,>=2.8.2", @@ -4042,6 +4278,7 @@ files = [ name = "strenum" version = "0.4.15" summary = "An Enum that inherits from str." +groups = ["hook-check-django-migrations"] files = [ {file = "StrEnum-0.4.15-py3-none-any.whl", hash = "sha256:a30cda4af7cc6b5bf52c8055bc4bf4b2b6b14a93b574626da33df53cf7740659"}, {file = "StrEnum-0.4.15.tar.gz", hash = "sha256:878fb5ab705442070e4dd1929bb5e2249511c0bcf2b0eeacf3bcd80875c82eff"}, @@ -4052,6 +4289,7 @@ name = "supabase" version = "2.2.1" requires_python = ">=3.8,<4.0" summary = "Supabase client for Python." +groups = ["hook-check-django-migrations"] dependencies = [ "gotrue<3.0,>=1.3", "httpx<0.25.0,>=0.24.0", @@ -4070,6 +4308,7 @@ name = "supafunc" version = "0.3.3" requires_python = ">=3.8,<4.0" summary = "Library for Supabase Functions" +groups = ["hook-check-django-migrations"] dependencies = [ "httpx<0.26,>=0.24", ] @@ -4083,6 +4322,7 @@ name = "sympy" version = "1.12" requires_python = ">=3.8" summary = "Computer algebra system (CAS) in Python" +groups = ["hook-check-django-migrations"] dependencies = [ "mpmath>=0.19", ] @@ -4096,6 +4336,7 @@ name = "tabulate" version = "0.9.0" requires_python = ">=3.7" summary = "Pretty-print tabular data" +groups = ["hook-check-django-migrations"] files = [ {file = "tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f"}, {file = "tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c"}, @@ -4106,6 +4347,7 @@ name = "tenacity" version = "8.2.3" requires_python = ">=3.7" summary = "Retry code until it succeeds" +groups = ["hook-check-django-migrations"] files = [ {file = "tenacity-8.2.3-py3-none-any.whl", hash = "sha256:ce510e327a630c9e1beaf17d42e6ffacc88185044ad85cf74c0a8887c6a0f88c"}, {file = "tenacity-8.2.3.tar.gz", hash = "sha256:5398ef0d78e63f40007c1fb4c0bff96e1911394d2fa8d194f77619c05ff6cc8a"}, @@ -4116,6 +4358,8 @@ name = "tensorrt-llm" version = "0.7.1" requires_python = ">=3.7, <4" summary = "" +groups = ["hook-check-django-migrations"] +marker = "python_version == \"3.10\"" files = [ {file = "tensorrt-llm-0.7.1.tar.gz", hash = "sha256:10275e2585484f138b43576acddba42ebee073fbb1665fe0954032e421e26e08"}, ] @@ -4125,6 +4369,7 @@ name = "termcolor" version = "2.4.0" requires_python = ">=3.8" summary = "ANSI color formatting for output in terminal" +groups = ["hook-check-django-migrations"] files = [ {file = "termcolor-2.4.0-py3-none-any.whl", hash = "sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63"}, {file = "termcolor-2.4.0.tar.gz", hash = "sha256:aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a"}, @@ -4135,6 +4380,7 @@ name = "tiktoken" version = "0.4.0" requires_python = ">=3.8" summary = "tiktoken is a fast BPE tokeniser for use with OpenAI's models" +groups = ["hook-check-django-migrations"] dependencies = [ "regex>=2022.1.18", "requests>=2.26.0", @@ -4169,6 +4415,7 @@ name = "tokenizers" version = "0.15.2" requires_python = ">=3.7" summary = "" +groups = ["hook-check-django-migrations"] dependencies = [ "huggingface-hub<1.0,>=0.16.4", ] @@ -4244,6 +4491,8 @@ name = "tomli" version = "2.0.1" requires_python = ">=3.7" summary = "A lil' TOML parser" +groups = ["lint"] +marker = "python_version < \"3.11\"" files = [ {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, @@ -4251,12 +4500,13 @@ files = [ [[package]] name = "tomlkit" -version = "0.12.3" +version = "0.12.4" requires_python = ">=3.7" summary = "Style preserving TOML library" +groups = ["hook-check-django-migrations"] files = [ - {file = "tomlkit-0.12.3-py3-none-any.whl", hash = "sha256:b0a645a9156dc7cb5d3a1f0d4bab66db287fcb8e0430bdd4664a095ea16414ba"}, - {file = "tomlkit-0.12.3.tar.gz", hash = "sha256:75baf5012d06501f07bee5bf8e801b9f343e7aac5a92581f20f80ce632e6b5a4"}, + {file = "tomlkit-0.12.4-py3-none-any.whl", hash = "sha256:5cd82d48a3dd89dee1f9d64420aa20ae65cfbd00668d6f094d7578a78efbb77b"}, + {file = "tomlkit-0.12.4.tar.gz", hash = "sha256:7ca1cfc12232806517a8515047ba66a19369e71edf2439d0f5824f91032b6cc3"}, ] [[package]] @@ -4264,6 +4514,7 @@ name = "tqdm" version = "4.66.2" requires_python = ">=3.7" summary = "Fast, Extensible Progress Meter" +groups = ["hook-check-django-migrations"] dependencies = [ "colorama; platform_system == \"Windows\"", ] @@ -4277,6 +4528,7 @@ name = "transformers" version = "4.37.0" requires_python = ">=3.8.0" summary = "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow" +groups = ["hook-check-django-migrations"] dependencies = [ "filelock", "huggingface-hub<1.0,>=0.19.3", @@ -4298,6 +4550,7 @@ files = [ name = "types-pymysql" version = "1.1.0.1" summary = "Typing stubs for PyMySQL" +groups = ["lint"] files = [ {file = "types-PyMySQL-1.1.0.1.tar.gz", hash = "sha256:72bdaecb88de4a30bc3e1842e1d4522ceb3c4b2e883a6a2a7a7162775dd27b93"}, {file = "types_PyMySQL-1.1.0.1-py3-none-any.whl", hash = "sha256:9aec9ee0453314d477ef26e5832b4a992bc4cc3557358d62b0fe4af760a7728f"}, @@ -4307,6 +4560,7 @@ files = [ name = "types-pyopenssl" version = "23.2.0.2" summary = "Typing stubs for pyOpenSSL" +groups = ["lint"] dependencies = [ "cryptography>=35.0.0", ] @@ -4320,6 +4574,7 @@ name = "types-pytz" version = "2024.1.0.20240203" requires_python = ">=3.8" summary = "Typing stubs for pytz" +groups = ["lint"] files = [ {file = "types-pytz-2024.1.0.20240203.tar.gz", hash = "sha256:c93751ee20dfc6e054a0148f8f5227b9a00b79c90a4d3c9f464711a73179c89e"}, {file = "types_pytz-2024.1.0.20240203-py3-none-any.whl", hash = "sha256:9679eef0365db3af91ef7722c199dbb75ee5c1b67e3c4dd7bfbeb1b8a71c21a3"}, @@ -4329,6 +4584,7 @@ files = [ name = "types-pyyaml" version = "6.0.12.12" summary = "Typing stubs for PyYAML" +groups = ["lint"] files = [ {file = "types-PyYAML-6.0.12.12.tar.gz", hash = "sha256:334373d392fde0fdf95af5c3f1661885fa10c52167b14593eb856289e1855062"}, {file = "types_PyYAML-6.0.12.12-py3-none-any.whl", hash = "sha256:c05bc6c158facb0676674b7f11fe3960db4f389718e19e62bd2b84d6205cfd24"}, @@ -4339,6 +4595,7 @@ name = "types-redis" version = "4.6.0.20240218" requires_python = ">=3.8" summary = "Typing stubs for redis" +groups = ["lint"] dependencies = [ "cryptography>=35.0.0", "types-pyOpenSSL", @@ -4353,6 +4610,7 @@ name = "types-requests" version = "2.31.0.6" requires_python = ">=3.7" summary = "Typing stubs for requests" +groups = ["lint"] dependencies = [ "types-urllib3", ] @@ -4366,6 +4624,7 @@ name = "types-tzlocal" version = "5.1.0.1" requires_python = ">=3.7" summary = "Typing stubs for tzlocal" +groups = ["lint"] dependencies = [ "types-pytz", ] @@ -4378,6 +4637,7 @@ files = [ name = "types-urllib3" version = "1.26.25.14" summary = "Typing stubs for urllib3" +groups = ["lint"] files = [ {file = "types-urllib3-1.26.25.14.tar.gz", hash = "sha256:229b7f577c951b8c1b92c1bc2b2fdb0b49847bd2af6d1cc2a2e3dd340f3bda8f"}, {file = "types_urllib3-1.26.25.14-py3-none-any.whl", hash = "sha256:9683bbb7fb72e32bfe9d2be6e04875fbe1b3eeec3cbb4ea231435aa7fd6b4f0e"}, @@ -4385,18 +4645,20 @@ files = [ [[package]] name = "typing-extensions" -version = "4.9.0" +version = "4.10.0" requires_python = ">=3.8" summary = "Backported and Experimental Type Hints for Python 3.8+" +groups = ["hook-check-django-migrations", "lint"] files = [ - {file = "typing_extensions-4.9.0-py3-none-any.whl", hash = "sha256:af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd"}, - {file = "typing_extensions-4.9.0.tar.gz", hash = "sha256:23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783"}, + {file = "typing_extensions-4.10.0-py3-none-any.whl", hash = "sha256:69b1a937c3a517342112fb4c6df7e72fc39a38e7891a5730ed4985b5214b5475"}, + {file = "typing_extensions-4.10.0.tar.gz", hash = "sha256:b0abd7c89e8fb96f98db18d86106ff1d90ab692004eb746cf6eda2682f91b3cb"}, ] [[package]] name = "typing-inspect" version = "0.9.0" summary = "Runtime inspection utilities for typing module." +groups = ["hook-check-django-migrations"] dependencies = [ "mypy-extensions>=0.3.0", "typing-extensions>=3.7.4", @@ -4411,6 +4673,7 @@ name = "tzdata" version = "2024.1" requires_python = ">=2" summary = "Provider of IANA time zone data" +groups = ["hook-check-django-migrations"] files = [ {file = "tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252"}, {file = "tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd"}, @@ -4421,6 +4684,7 @@ name = "tzlocal" version = "5.2" requires_python = ">=3.8" summary = "tzinfo object for the local timezone" +groups = ["hook-check-django-migrations"] dependencies = [ "tzdata; platform_system == \"Windows\"", ] @@ -4434,6 +4698,7 @@ name = "ujson" version = "5.9.0" requires_python = ">=3.8" summary = "Ultra fast JSON encoder and decoder for Python" +groups = ["hook-check-django-migrations"] files = [ {file = "ujson-5.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ab71bf27b002eaf7d047c54a68e60230fbd5cd9da60de7ca0aa87d0bccead8fa"}, {file = "ujson-5.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7a365eac66f5aa7a7fdf57e5066ada6226700884fc7dce2ba5483538bc16c8c5"}, @@ -4487,6 +4752,7 @@ name = "unstract-adapters" version = "0.2.2" requires_python = "<3.12,>=3.9" summary = "Unstract Adapters" +groups = ["hook-check-django-migrations"] dependencies = [ "SQLAlchemy==2.0.26", "anthropic==0.7.8", @@ -4522,6 +4788,7 @@ requires_python = ">=3.9" editable = true path = "./unstract/connectors" summary = "All connectors that are part of the Unstract platform" +groups = ["hook-check-django-migrations"] dependencies = [ "PyDrive2[fsspec]==1.15.4", "PyMySQL==1.1.0", @@ -4545,6 +4812,7 @@ requires_python = ">=3.9,<3.11.1" editable = true path = "./unstract/core" summary = "Core library that helps with executing workflows." +groups = ["hook-check-django-migrations"] dependencies = [ "boto3~=1.28.17", "botocore~=1.31.17", @@ -4560,6 +4828,7 @@ requires_python = ">=3.9" editable = true path = "./unstract/flags" summary = "Unstract's feature flags package." +groups = ["hook-check-django-migrations"] dependencies = [ "grpcio-tools<=1.58.0", "grpcio<=1.58.0", @@ -4570,6 +4839,7 @@ name = "unstract-sdk" version = "0.11.2" requires_python = "<3.11.1,>=3.9" summary = "A framework for writing Unstract Tools/Apps" +groups = ["hook-check-django-migrations"] dependencies = [ "filetype==1.2.0", "jsonschema~=4.18.2", @@ -4594,6 +4864,7 @@ requires_python = ">=3.9,<3.11.1" editable = true path = "./unstract/tool-registry" summary = "Unstract's registry of tools to be used in workflows." +groups = ["hook-check-django-migrations"] dependencies = [ "PyYAML~=6.0.1", "docker~=6.1.3", @@ -4609,6 +4880,7 @@ requires_python = ">=3.9" editable = true path = "./unstract/tool-sandbox" summary = "Unstract Tool Sandbox is a package to communicate with tool worker" +groups = ["hook-check-django-migrations"] dependencies = [ "requests==2.31.0", ] @@ -4620,6 +4892,7 @@ requires_python = ">=3.9" editable = true path = "./unstract/workflow-execution" summary = "Unstract workflow execution package" +groups = ["hook-check-django-migrations"] dependencies = [ "unstract-tool-registry", "unstract-tool-sandbox", @@ -4630,6 +4903,7 @@ name = "uritemplate" version = "4.1.1" requires_python = ">=3.6" summary = "Implementation of RFC 6570 URI Templates" +groups = ["hook-check-django-migrations"] files = [ {file = "uritemplate-4.1.1-py2.py3-none-any.whl", hash = "sha256:830c08b8d99bdd312ea4ead05994a38e8936266f84b9a7878232db50b044e02e"}, {file = "uritemplate-4.1.1.tar.gz", hash = "sha256:4346edfc5c3b79f694bccd6d6099a322bbeb628dbf2cd86eea55a456ce5124f0"}, @@ -4640,6 +4914,7 @@ name = "urllib3" version = "1.26.18" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" summary = "HTTP library with thread-safe connection pooling, file post, and more." +groups = ["hook-check-django-migrations"] files = [ {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, @@ -4650,6 +4925,7 @@ name = "validators" version = "0.22.0" requires_python = ">=3.8" summary = "Python Data Validation for Humans™" +groups = ["hook-check-django-migrations"] files = [ {file = "validators-0.22.0-py3-none-any.whl", hash = "sha256:61cf7d4a62bbae559f2e54aed3b000cea9ff3e2fdbe463f51179b92c58c9585a"}, {file = "validators-0.22.0.tar.gz", hash = "sha256:77b2689b172eeeb600d9605ab86194641670cdb73b60afd577142a9397873370"}, @@ -4659,6 +4935,7 @@ files = [ name = "vecs" version = "0.1.0" summary = "pgvector client" +groups = ["hook-check-django-migrations"] dependencies = [ "pgvector==0.1.*", "sqlalchemy==2.*", @@ -4672,6 +4949,7 @@ name = "vine" version = "5.1.0" requires_python = ">=3.6" summary = "Python promises." +groups = ["hook-check-django-migrations"] files = [ {file = "vine-5.1.0-py3-none-any.whl", hash = "sha256:40fdf3c48b2cfe1c38a49e9ae2da6fda88e4794c810050a728bd7413811fb1dc"}, {file = "vine-5.1.0.tar.gz", hash = "sha256:8b62e981d35c41049211cf62a0a1242d8c1ee9bd15bb196ce38aefd6799e61e0"}, @@ -4679,23 +4957,25 @@ files = [ [[package]] name = "virtualenv" -version = "20.25.0" +version = "20.25.1" requires_python = ">=3.7" summary = "Virtual Python Environment builder" +groups = ["lint"] dependencies = [ "distlib<1,>=0.3.7", "filelock<4,>=3.12.2", "platformdirs<5,>=3.9.1", ] files = [ - {file = "virtualenv-20.25.0-py3-none-any.whl", hash = "sha256:4238949c5ffe6876362d9c0180fc6c3a824a7b12b80604eeb8085f2ed7460de3"}, - {file = "virtualenv-20.25.0.tar.gz", hash = "sha256:bf51c0d9c7dd63ea8e44086fa1e4fb1093a31e963b86959257378aef020e1f1b"}, + {file = "virtualenv-20.25.1-py3-none-any.whl", hash = "sha256:961c026ac520bac5f69acb8ea063e8a4f071bcc9457b9c1f28f6b085c511583a"}, + {file = "virtualenv-20.25.1.tar.gz", hash = "sha256:e08e13ecdca7a0bd53798f356d5831434afa5b07b93f0abdf0797b7a06ffe197"}, ] [[package]] name = "wcwidth" version = "0.2.13" summary = "Measures the displayed width of unicode strings in a terminal" +groups = ["hook-check-django-migrations"] files = [ {file = "wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859"}, {file = "wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5"}, @@ -4706,6 +4986,7 @@ name = "weaviate-client" version = "3.25.3" requires_python = ">=3.8" summary = "A python native Weaviate client" +groups = ["hook-check-django-migrations"] dependencies = [ "authlib<2.0.0,>=1.2.1", "requests<3.0.0,>=2.30.0", @@ -4721,6 +5002,7 @@ name = "websocket-client" version = "1.7.0" requires_python = ">=3.8" summary = "WebSocket client for Python with low level API options" +groups = ["hook-check-django-migrations"] files = [ {file = "websocket-client-1.7.0.tar.gz", hash = "sha256:10e511ea3a8c744631d3bd77e61eb17ed09304c413ad42cf6ddfa4c7787e8fe6"}, {file = "websocket_client-1.7.0-py3-none-any.whl", hash = "sha256:f4c3d22fec12a2461427a29957ff07d35098ee2d976d3ba244e688b8b4057588"}, @@ -4731,6 +5013,7 @@ name = "websockets" version = "11.0.3" requires_python = ">=3.7" summary = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" +groups = ["hook-check-django-migrations"] files = [ {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3ccc8a0c387629aec40f2fc9fdcb4b9d5431954f934da3eaf16cdc94f67dbfac"}, {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d67ac60a307f760c6e65dad586f556dde58e683fab03323221a4e530ead6f74d"}, @@ -4789,6 +5072,8 @@ name = "win32-setctime" version = "1.1.0" requires_python = ">=3.5" summary = "A small Python utility to set file creation time on Windows" +groups = ["hook-check-django-migrations"] +marker = "sys_platform == \"win32\"" files = [ {file = "win32_setctime-1.1.0-py3-none-any.whl", hash = "sha256:231db239e959c2fe7eb1d7dc129f11172354f98361c4fa2d6d2d7e278baa8aad"}, {file = "win32_setctime-1.1.0.tar.gz", hash = "sha256:15cf5750465118d6929ae4de4eb46e8edae9a5634350c01ba582df868e932cb2"}, @@ -4799,6 +5084,7 @@ name = "wrapt" version = "1.16.0" requires_python = ">=3.6" summary = "Module for decorators, wrappers and monkey patching." +groups = ["hook-check-django-migrations"] files = [ {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, @@ -4839,6 +5125,7 @@ name = "yamllint" version = "1.35.1" requires_python = ">=3.8" summary = "A linter for YAML files." +groups = ["lint"] dependencies = [ "pathspec>=0.5.3", "pyyaml", @@ -4853,6 +5140,7 @@ name = "yarl" version = "1.9.4" requires_python = ">=3.7" summary = "Yet another URL library" +groups = ["hook-check-django-migrations"] dependencies = [ "idna>=2.0", "multidict>=4.0", diff --git a/prompt-service/pdm.lock b/prompt-service/pdm.lock index 760460d8d6..82dec09a07 100644 --- a/prompt-service/pdm.lock +++ b/prompt-service/pdm.lock @@ -3,8 +3,8 @@ [metadata] groups = ["default", "deploy"] -strategy = ["cross_platform"] -lock_version = "4.4" +strategy = ["cross_platform", "inherit_metadata"] +lock_version = "4.4.1" content_hash = "sha256:c02615c1fe1a21cddaa8ee726e7d3166446a694f45debed47272c2d8ee1504e0" [[package]] @@ -12,6 +12,7 @@ name = "aiohttp" version = "3.9.3" requires_python = ">=3.8" summary = "Async http client/server framework (asyncio)" +groups = ["default"] dependencies = [ "aiosignal>=1.1.2", "async-timeout<5.0,>=4.0; python_version < \"3.11\"", @@ -74,6 +75,7 @@ name = "aiosignal" version = "1.3.1" requires_python = ">=3.7" summary = "aiosignal: a list of registered asynchronous callbacks" +groups = ["default"] dependencies = [ "frozenlist>=1.1.0", ] @@ -87,6 +89,7 @@ name = "annotated-types" version = "0.6.0" requires_python = ">=3.8" summary = "Reusable constraint types to use with typing.Annotated" +groups = ["default"] files = [ {file = "annotated_types-0.6.0-py3-none-any.whl", hash = "sha256:0641064de18ba7a25dee8f96403ebc39113d0cb953a01429249d5c7564666a43"}, {file = "annotated_types-0.6.0.tar.gz", hash = "sha256:563339e807e53ffd9c267e99fc6d9ea23eb8443c08f112651963e24e22f84a5d"}, @@ -97,6 +100,7 @@ name = "anthropic" version = "0.7.8" requires_python = ">=3.7" summary = "The official Python library for the anthropic API" +groups = ["default"] dependencies = [ "anyio<5,>=3.5.0", "distro<2,>=1.7.0", @@ -116,6 +120,7 @@ name = "anyio" version = "4.3.0" requires_python = ">=3.8" summary = "High level compatibility layer for multiple asynchronous event loop implementations" +groups = ["default"] dependencies = [ "exceptiongroup>=1.0.2; python_version < \"3.11\"", "idna>=2.8", @@ -131,6 +136,7 @@ files = [ name = "anyscale" version = "0.5.165" summary = "Command Line Interface for Anyscale" +groups = ["default"] dependencies = [ "Click>=7.0", "GitPython", @@ -170,6 +176,7 @@ name = "argon2-cffi" version = "23.1.0" requires_python = ">=3.7" summary = "Argon2 for Python" +groups = ["default"] dependencies = [ "argon2-cffi-bindings", ] @@ -183,6 +190,7 @@ name = "argon2-cffi-bindings" version = "21.2.0" requires_python = ">=3.6" summary = "Low-level CFFI bindings for Argon2" +groups = ["default"] dependencies = [ "cffi>=1.0.1", ] @@ -215,6 +223,8 @@ name = "async-timeout" version = "4.0.3" requires_python = ">=3.7" summary = "Timeout context manager for asyncio programs" +groups = ["default"] +marker = "python_version < \"3.12.0\"" files = [ {file = "async-timeout-4.0.3.tar.gz", hash = "sha256:4640d96be84d82d02ed59ea2b7105a0f7b33abe8703703cd0ab0bf87c427522f"}, {file = "async_timeout-4.0.3-py3-none-any.whl", hash = "sha256:7405140ff1230c310e51dc27b3145b9092d659ce68ff733fb0cefe3ee42be028"}, @@ -225,6 +235,7 @@ name = "asyncpg" version = "0.29.0" requires_python = ">=3.8.0" summary = "An asyncio PostgreSQL driver" +groups = ["default"] dependencies = [ "async-timeout>=4.0.3; python_version < \"3.12.0\"", ] @@ -261,6 +272,7 @@ name = "attrs" version = "23.2.0" requires_python = ">=3.7" summary = "Classes Without Boilerplate" +groups = ["default"] files = [ {file = "attrs-23.2.0-py3-none-any.whl", hash = "sha256:99b87a485a5820b23b879f04c2305b44b951b502fd64be915879d77a7e8fc6f1"}, {file = "attrs-23.2.0.tar.gz", hash = "sha256:935dc3b529c262f6cf76e50877d35a4bd3c1de194fd41f47a2b7ae8f19971f30"}, @@ -271,6 +283,7 @@ name = "authlib" version = "1.3.0" requires_python = ">=3.8" summary = "The ultimate Python library in building OAuth and OpenID Connect servers and clients." +groups = ["default"] dependencies = [ "cryptography", ] @@ -284,6 +297,7 @@ name = "backoff" version = "2.2.1" requires_python = ">=3.7,<4.0" summary = "Function decoration for backoff and retry" +groups = ["default"] files = [ {file = "backoff-2.2.1-py3-none-any.whl", hash = "sha256:63579f9a0628e06278f7e47b7d7d5b6ce20dc65c5e96a6f3ca99a6adca0396e8"}, {file = "backoff-2.2.1.tar.gz", hash = "sha256:03f829f5bb1923180821643f8753b0502c3b682293992485b0eef2807afa5cba"}, @@ -294,6 +308,7 @@ name = "beautifulsoup4" version = "4.12.3" requires_python = ">=3.6.0" summary = "Screen-scraping library" +groups = ["default"] dependencies = [ "soupsieve>1.2", ] @@ -307,6 +322,7 @@ name = "blinker" version = "1.7.0" requires_python = ">=3.8" summary = "Fast, simple object-to-object and broadcast signaling" +groups = ["default"] files = [ {file = "blinker-1.7.0-py3-none-any.whl", hash = "sha256:c3f865d4d54db7abc53758a01601cf343fe55b84c1de4e3fa910e420b438d5b9"}, {file = "blinker-1.7.0.tar.gz", hash = "sha256:e6820ff6fa4e4d1d8e2747c2283749c3f547e4fee112b98555cdcdae32996182"}, @@ -314,24 +330,26 @@ files = [ [[package]] name = "boto3" -version = "1.34.49" +version = "1.34.51" requires_python = ">= 3.8" summary = "The AWS SDK for Python" +groups = ["default"] dependencies = [ - "botocore<1.35.0,>=1.34.49", + "botocore<1.35.0,>=1.34.51", "jmespath<2.0.0,>=0.7.1", "s3transfer<0.11.0,>=0.10.0", ] files = [ - {file = "boto3-1.34.49-py3-none-any.whl", hash = "sha256:ce8d1de03024f52a1810e8d71ad4dba3a5b9bb48b35567191500e3432a9130b4"}, - {file = "boto3-1.34.49.tar.gz", hash = "sha256:96b9dc85ce8d52619b56ca7b1ac1423eaf0af5ce132904bcc8aa81396eec2abf"}, + {file = "boto3-1.34.51-py3-none-any.whl", hash = "sha256:67732634dc7d0afda879bd9a5e2d0818a2c14a98bef766b95a3e253ea5104cb9"}, + {file = "boto3-1.34.51.tar.gz", hash = "sha256:2cd9463e738a184cbce8a6824027c22163c5f73e277a35ff5aa0fb0e845b4301"}, ] [[package]] name = "botocore" -version = "1.34.49" +version = "1.34.51" requires_python = ">= 3.8" summary = "Low-level, data-driven core of boto 3." +groups = ["default"] dependencies = [ "jmespath<2.0.0,>=0.7.1", "python-dateutil<3.0.0,>=2.1", @@ -339,18 +357,19 @@ dependencies = [ "urllib3<2.1,>=1.25.4; python_version >= \"3.10\"", ] files = [ - {file = "botocore-1.34.49-py3-none-any.whl", hash = "sha256:4ed9d7603a04b5bb5bd5de63b513bc2c8a7e8b1cd0088229c5ceb461161f43b6"}, - {file = "botocore-1.34.49.tar.gz", hash = "sha256:d89410bc60673eaff1699f3f1fdcb0e3a5e1f7a6a048c0d88c3ce5c3549433ec"}, + {file = "botocore-1.34.51-py3-none-any.whl", hash = "sha256:01d5156247f991b3466a8404e3d7460a9ecbd9b214f9992d6ba797d9ddc6f120"}, + {file = "botocore-1.34.51.tar.gz", hash = "sha256:5086217442e67dd9de36ec7e87a0c663f76b7790d5fb6a12de565af95e87e319"}, ] [[package]] name = "cachetools" -version = "5.3.2" +version = "5.3.3" requires_python = ">=3.7" summary = "Extensible memoizing collections and decorators" +groups = ["default"] files = [ - {file = "cachetools-5.3.2-py3-none-any.whl", hash = "sha256:861f35a13a451f94e301ce2bec7cac63e881232ccce7ed67fab9b5df4d3beaa1"}, - {file = "cachetools-5.3.2.tar.gz", hash = "sha256:086ee420196f7b2ab9ca2db2520aca326318b68fe5ba8bc4d49cca91add450f2"}, + {file = "cachetools-5.3.3-py3-none-any.whl", hash = "sha256:0abad1021d3f8325b2fc1d2e9c8b9c9d57b04c3932657a72465447332c24d945"}, + {file = "cachetools-5.3.3.tar.gz", hash = "sha256:ba29e2dfa0b8b556606f097407ed1aa62080ee108ab0dc5ec9d6a723a007d105"}, ] [[package]] @@ -358,6 +377,7 @@ name = "certifi" version = "2024.2.2" requires_python = ">=3.6" summary = "Python package for providing Mozilla's CA Bundle." +groups = ["default"] files = [ {file = "certifi-2024.2.2-py3-none-any.whl", hash = "sha256:dc383c07b76109f368f6106eee2b593b04a011ea4d55f652c6ca24a754d1cdd1"}, {file = "certifi-2024.2.2.tar.gz", hash = "sha256:0569859f95fc761b18b45ef421b1290a0f65f147e92a1e5eb3e635f9a5e4e66f"}, @@ -368,6 +388,7 @@ name = "cffi" version = "1.16.0" requires_python = ">=3.8" summary = "Foreign Function Interface for Python calling C code." +groups = ["default"] dependencies = [ "pycparser", ] @@ -413,6 +434,7 @@ name = "charset-normalizer" version = "3.3.2" requires_python = ">=3.7.0" summary = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +groups = ["default"] files = [ {file = "charset-normalizer-3.3.2.tar.gz", hash = "sha256:f30c3cb33b24454a82faecaf01b19c18562b1e89558fb6c56de4d9118a032fd5"}, {file = "charset_normalizer-3.3.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:25baf083bf6f6b341f4121c2f3c548875ee6f5339300e08be3f2b2ba1721cdd3"}, @@ -468,6 +490,7 @@ name = "click" version = "8.1.7" requires_python = ">=3.7" summary = "Composable command line interface toolkit" +groups = ["default"] dependencies = [ "colorama; platform_system == \"Windows\"", ] @@ -481,6 +504,7 @@ name = "colorama" version = "0.4.6" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" summary = "Cross-platform colored terminal text." +groups = ["default"] files = [ {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, @@ -491,6 +515,7 @@ name = "coloredlogs" version = "15.0.1" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Colored terminal output for Python's logging module" +groups = ["default"] dependencies = [ "humanfriendly>=9.1", ] @@ -504,6 +529,7 @@ name = "cryptography" version = "42.0.5" requires_python = ">=3.7" summary = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +groups = ["default"] dependencies = [ "cffi>=1.12; platform_python_implementation != \"PyPy\"", ] @@ -547,6 +573,7 @@ name = "dataclasses-json" version = "0.6.4" requires_python = ">=3.7,<4.0" summary = "Easily serialize dataclasses to and from JSON." +groups = ["default"] dependencies = [ "marshmallow<4.0.0,>=3.18.0", "typing-inspect<1,>=0.4.0", @@ -561,6 +588,7 @@ name = "deprecated" version = "1.2.14" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "Python @deprecated decorator to deprecate old python classes, functions or methods." +groups = ["default"] dependencies = [ "wrapt<2,>=1.10", ] @@ -573,6 +601,7 @@ files = [ name = "deprecation" version = "2.1.0" summary = "A library to handle automated deprecations" +groups = ["default"] dependencies = [ "packaging", ] @@ -586,6 +615,7 @@ name = "distro" version = "1.9.0" requires_python = ">=3.6" summary = "Distro - an OS platform information API" +groups = ["default"] files = [ {file = "distro-1.9.0-py3-none-any.whl", hash = "sha256:7bffd925d65168f85027d8da9af6bddab658135b840670a223589bc0c8ef02b2"}, {file = "distro-1.9.0.tar.gz", hash = "sha256:2fa77c6fd8940f116ee1d6b94a2f90b13b5ea8d019b98bc8bafdcabcdd9bdbed"}, @@ -596,6 +626,7 @@ name = "dnspython" version = "2.6.1" requires_python = ">=3.8" summary = "DNS toolkit" +groups = ["default"] files = [ {file = "dnspython-2.6.1-py3-none-any.whl", hash = "sha256:5ef3b9680161f6fa89daf8ad451b5f1a33b18ae8a1c6778cdf4b43f08c0a6e50"}, {file = "dnspython-2.6.1.tar.gz", hash = "sha256:e8f0f9c23a7b7cb99ded64e6c3a6f3e701d78f50c55e002b839dea7225cff7cc"}, @@ -606,6 +637,7 @@ name = "environs" version = "9.5.0" requires_python = ">=3.6" summary = "simplified environment variable parsing" +groups = ["default"] dependencies = [ "marshmallow>=3.0.0", "python-dotenv", @@ -620,6 +652,8 @@ name = "exceptiongroup" version = "1.2.0" requires_python = ">=3.7" summary = "Backport of PEP 654 (exception groups)" +groups = ["default"] +marker = "python_version < \"3.11\"" files = [ {file = "exceptiongroup-1.2.0-py3-none-any.whl", hash = "sha256:4bfd3996ac73b41e9b9628b04e079f193850720ea5945fc96a08633c66912f14"}, {file = "exceptiongroup-1.2.0.tar.gz", hash = "sha256:91f5c769735f051a4290d52edd0858999b57e5876e9f85937691bd4c9fa3ed68"}, @@ -630,6 +664,7 @@ name = "fastembed" version = "0.1.3" requires_python = ">=3.8.0,<3.12" summary = "Fast, light, accurate library built for retrieval embedding generation" +groups = ["default"] dependencies = [ "huggingface-hub==0.19.4", "onnx<2.0,>=1.11", @@ -648,6 +683,7 @@ name = "filelock" version = "3.13.1" requires_python = ">=3.8" summary = "A platform independent file lock." +groups = ["default"] files = [ {file = "filelock-3.13.1-py3-none-any.whl", hash = "sha256:57dbda9b35157b05fb3e58ee91448612eb674172fab98ee235ccb0b5bee19a1c"}, {file = "filelock-3.13.1.tar.gz", hash = "sha256:521f5f56c50f8426f5e03ad3b281b490a87ef15bc6c526f168290f0c7148d44e"}, @@ -657,6 +693,7 @@ files = [ name = "filetype" version = "1.2.0" summary = "Infer file type and MIME type of any file/buffer. No external dependencies." +groups = ["default"] files = [ {file = "filetype-1.2.0-py2.py3-none-any.whl", hash = "sha256:7ce71b6880181241cf7ac8697a2f1eb6a8bd9b429f7ad6d27b8db9ba5f1c2d25"}, {file = "filetype-1.2.0.tar.gz", hash = "sha256:66b56cd6474bf41d8c54660347d37afcc3f7d1970648de365c102ef77548aadb"}, @@ -667,6 +704,7 @@ name = "flask" version = "3.0.2" requires_python = ">=3.8" summary = "A simple framework for building complex web applications." +groups = ["default"] dependencies = [ "Jinja2>=3.1.2", "Werkzeug>=3.0.0", @@ -684,6 +722,7 @@ files = [ name = "flatbuffers" version = "23.5.26" summary = "The FlatBuffers serialization format for Python" +groups = ["default"] files = [ {file = "flatbuffers-23.5.26-py2.py3-none-any.whl", hash = "sha256:c0ff356da363087b915fde4b8b45bdda73432fc17cddb3c8157472eab1422ad1"}, {file = "flatbuffers-23.5.26.tar.gz", hash = "sha256:9ea1144cac05ce5d86e2859f431c6cd5e66cd9c78c558317c7955fb8d4c78d89"}, @@ -693,6 +732,7 @@ files = [ name = "flupy" version = "1.2.0" summary = "Method chaining built on generators" +groups = ["default"] dependencies = [ "typing-extensions", ] @@ -705,6 +745,7 @@ name = "frozenlist" version = "1.4.1" requires_python = ">=3.8" summary = "A list-like structure which implements collections.abc.MutableSequence" +groups = ["default"] files = [ {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:f9aa1878d1083b276b0196f2dfbe00c9b7e752475ed3b682025ff20c1c1f51ac"}, {file = "frozenlist-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29acab3f66f0f24674b7dc4736477bcd4bc3ad4b896f5f45379a67bce8b96868"}, @@ -760,6 +801,7 @@ name = "fsspec" version = "2024.2.0" requires_python = ">=3.8" summary = "File-system specification" +groups = ["default"] files = [ {file = "fsspec-2024.2.0-py3-none-any.whl", hash = "sha256:817f969556fa5916bc682e02ca2045f96ff7f586d45110fcb76022063ad2c7d8"}, {file = "fsspec-2024.2.0.tar.gz", hash = "sha256:b6ad1a679f760dda52b1168c859d01b7b80648ea6f7f7c7f5a8a91dc3f3ecb84"}, @@ -770,6 +812,7 @@ name = "gitdb" version = "4.0.11" requires_python = ">=3.7" summary = "Git Object Database" +groups = ["default"] dependencies = [ "smmap<6,>=3.0.1", ] @@ -783,6 +826,7 @@ name = "gitpython" version = "3.1.42" requires_python = ">=3.7" summary = "GitPython is a Python library used to interact with Git repositories" +groups = ["default"] dependencies = [ "gitdb<5,>=4.0.1", ] @@ -796,6 +840,7 @@ name = "google-ai-generativelanguage" version = "0.4.0" requires_python = ">=3.7" summary = "Google Ai Generativelanguage API client library" +groups = ["default"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.0", "proto-plus<2.0.0dev,>=1.22.3", @@ -811,6 +856,7 @@ name = "google-api-core" version = "2.17.1" requires_python = ">=3.7" summary = "Google API client core library" +groups = ["default"] dependencies = [ "google-auth<3.0.dev0,>=2.14.1", "googleapis-common-protos<2.0.dev0,>=1.56.2", @@ -828,6 +874,7 @@ version = "2.17.1" extras = ["grpc"] requires_python = ">=3.7" summary = "Google API client core library" +groups = ["default"] dependencies = [ "google-api-core==2.17.1", "grpcio-status<2.0.dev0,>=1.33.2", @@ -845,6 +892,7 @@ name = "google-auth" version = "2.28.1" requires_python = ">=3.7" summary = "Google Authentication Library" +groups = ["default"] dependencies = [ "cachetools<6.0,>=2.0.0", "pyasn1-modules>=0.2.1", @@ -860,6 +908,7 @@ name = "google-cloud-aiplatform" version = "1.40.0" requires_python = ">=3.8" summary = "Vertex AI API client library" +groups = ["default"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,<3.0.0dev,>=1.32.0", "google-cloud-bigquery<4.0.0dev,>=1.15.0", @@ -880,6 +929,7 @@ name = "google-cloud-bigquery" version = "3.17.2" requires_python = ">=3.7" summary = "Google BigQuery API client library" +groups = ["default"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5", "google-cloud-core<3.0.0dev,>=1.6.0", @@ -898,6 +948,7 @@ name = "google-cloud-core" version = "2.4.1" requires_python = ">=3.7" summary = "Google Cloud API client core library" +groups = ["default"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.6", "google-auth<3.0dev,>=1.25.0", @@ -912,6 +963,7 @@ name = "google-cloud-resource-manager" version = "1.12.2" requires_python = ">=3.7" summary = "Google Cloud Resource Manager API client library" +groups = ["default"] dependencies = [ "google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0dev,>=1.34.1", "google-auth<3.0.0dev,>=2.14.1", @@ -929,6 +981,7 @@ name = "google-cloud-storage" version = "2.14.0" requires_python = ">=3.7" summary = "Google Cloud Storage API client library" +groups = ["default"] dependencies = [ "google-api-core!=2.0.*,!=2.1.*,!=2.2.*,!=2.3.0,<3.0.0dev,>=1.31.5", "google-auth<3.0dev,>=2.23.3", @@ -947,6 +1000,7 @@ name = "google-crc32c" version = "1.5.0" requires_python = ">=3.7" summary = "A python wrapper of the C library 'Google CRC32C'" +groups = ["default"] files = [ {file = "google-crc32c-1.5.0.tar.gz", hash = "sha256:89284716bc6a5a415d4eaa11b1726d2d60a0cd12aadf5439828353662ede9dd7"}, {file = "google_crc32c-1.5.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:596d1f98fc70232fcb6590c439f43b350cb762fb5d61ce7b0e9db4539654cc13"}, @@ -1002,6 +1056,7 @@ name = "google-generativeai" version = "0.3.1" requires_python = ">=3.9" summary = "Google Generative AI High level API client library and tools." +groups = ["default"] dependencies = [ "google-ai-generativelanguage==0.4.0", "google-api-core", @@ -1018,6 +1073,7 @@ name = "google-resumable-media" version = "2.7.0" requires_python = ">= 3.7" summary = "Utilities for Google Media Downloads and Resumable Uploads" +groups = ["default"] dependencies = [ "google-crc32c<2.0dev,>=1.0", ] @@ -1031,6 +1087,7 @@ name = "googleapis-common-protos" version = "1.62.0" requires_python = ">=3.7" summary = "Common protobufs used in Google APIs" +groups = ["default"] dependencies = [ "protobuf!=3.20.0,!=3.20.1,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<5.0.0.dev0,>=3.19.5", ] @@ -1045,6 +1102,7 @@ version = "1.62.0" extras = ["grpc"] requires_python = ">=3.7" summary = "Common protobufs used in Google APIs" +groups = ["default"] dependencies = [ "googleapis-common-protos==1.62.0", "grpcio<2.0.0.dev0,>=1.44.0", @@ -1059,6 +1117,7 @@ name = "gotrue" version = "2.1.0" requires_python = ">=3.8,<4.0" summary = "Python Client Library for GoTrue" +groups = ["default"] dependencies = [ "httpx<0.26,>=0.23", "pydantic<3,>=1.10", @@ -1073,6 +1132,7 @@ name = "greenlet" version = "3.0.3" requires_python = ">=3.7" summary = "Lightweight in-process concurrent programming" +groups = ["default"] files = [ {file = "greenlet-3.0.3-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:9da2bd29ed9e4f15955dd1595ad7bc9320308a3b766ef7f837e23ad4b4aac31a"}, {file = "greenlet-3.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d353cadd6083fdb056bb46ed07e4340b0869c305c8ca54ef9da3421acbdf6881"}, @@ -1110,6 +1170,7 @@ name = "grpc-google-iam-v1" version = "0.13.0" requires_python = ">=3.7" summary = "IAM API client library" +groups = ["default"] dependencies = [ "googleapis-common-protos[grpc]<2.0.0dev,>=1.56.0", "grpcio<2.0.0dev,>=1.44.0", @@ -1125,6 +1186,7 @@ name = "grpcio" version = "1.58.0" requires_python = ">=3.7" summary = "HTTP/2-based RPC framework" +groups = ["default"] files = [ {file = "grpcio-1.58.0-cp310-cp310-linux_armv7l.whl", hash = "sha256:3e6bebf1dfdbeb22afd95650e4f019219fef3ab86d3fca8ebade52e4bc39389a"}, {file = "grpcio-1.58.0-cp310-cp310-macosx_12_0_universal2.whl", hash = "sha256:cde11577d5b6fd73a00e6bfa3cf5f428f3f33c2d2878982369b5372bbc4acc60"}, @@ -1161,6 +1223,7 @@ name = "grpcio-status" version = "1.58.0" requires_python = ">=3.6" summary = "Status proto mapping for gRPC" +groups = ["default"] dependencies = [ "googleapis-common-protos>=1.5.5", "grpcio>=1.58.0", @@ -1176,6 +1239,7 @@ name = "grpcio-tools" version = "1.58.0" requires_python = ">=3.7" summary = "Protobuf code generator for gRPC" +groups = ["default"] dependencies = [ "grpcio>=1.58.0", "protobuf<5.0dev,>=4.21.6", @@ -1217,6 +1281,7 @@ name = "gunicorn" version = "21.2.0" requires_python = ">=3.5" summary = "WSGI HTTP Server for UNIX" +groups = ["deploy"] dependencies = [ "packaging", ] @@ -1230,6 +1295,7 @@ name = "h11" version = "0.14.0" requires_python = ">=3.7" summary = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +groups = ["default"] files = [ {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, @@ -1240,6 +1306,7 @@ name = "h2" version = "4.1.0" requires_python = ">=3.6.1" summary = "HTTP/2 State-Machine based protocol implementation" +groups = ["default"] dependencies = [ "hpack<5,>=4.0", "hyperframe<7,>=6.0", @@ -1254,6 +1321,7 @@ name = "halo" version = "0.0.31" requires_python = ">=3.4" summary = "Beautiful terminal spinners in Python" +groups = ["default"] dependencies = [ "colorama>=0.3.9", "log-symbols>=0.0.14", @@ -1270,6 +1338,7 @@ name = "hpack" version = "4.0.0" requires_python = ">=3.6.1" summary = "Pure-Python HPACK header compression" +groups = ["default"] files = [ {file = "hpack-4.0.0-py3-none-any.whl", hash = "sha256:84a076fad3dc9a9f8063ccb8041ef100867b1878b25ef0ee63847a5d53818a6c"}, {file = "hpack-4.0.0.tar.gz", hash = "sha256:fc41de0c63e687ebffde81187a948221294896f6bdc0ae2312708df339430095"}, @@ -1280,6 +1349,7 @@ name = "httpcore" version = "0.17.3" requires_python = ">=3.7" summary = "A minimal low-level HTTP client." +groups = ["default"] dependencies = [ "anyio<5.0,>=3.0", "certifi", @@ -1296,6 +1366,7 @@ name = "httplib2" version = "0.22.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "A comprehensive HTTP client library." +groups = ["default"] dependencies = [ "pyparsing!=3.0.0,!=3.0.1,!=3.0.2,!=3.0.3,<4,>=2.4.2; python_version > \"3.0\"", ] @@ -1309,6 +1380,7 @@ name = "httpx" version = "0.24.1" requires_python = ">=3.7" summary = "The next generation HTTP client." +groups = ["default"] dependencies = [ "certifi", "httpcore<0.18.0,>=0.15.0", @@ -1326,6 +1398,7 @@ version = "0.24.1" extras = ["http2"] requires_python = ">=3.7" summary = "The next generation HTTP client." +groups = ["default"] dependencies = [ "h2<5,>=3", "httpx==0.24.1", @@ -1339,6 +1412,7 @@ files = [ name = "huggingface" version = "0.0.1" summary = "HuggingFace is a single library comprising the main HuggingFace libraries." +groups = ["default"] files = [ {file = "huggingface-0.0.1-py3-none-any.whl", hash = "sha256:98a3409537557cd2fd768997ef94cab08529f86c5e106e6d54bbabdd5ee03910"}, {file = "huggingface-0.0.1.tar.gz", hash = "sha256:0a2f228fd956801d68b7c6a8bef478dfa60c4b7d7eba572ea7de39ecf87e505a"}, @@ -1349,6 +1423,7 @@ name = "huggingface-hub" version = "0.19.4" requires_python = ">=3.8.0" summary = "Client library to download and publish models, datasets and other repos on the huggingface.co hub" +groups = ["default"] dependencies = [ "filelock", "fsspec>=2023.5.0", @@ -1368,6 +1443,7 @@ name = "humanfriendly" version = "10.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Human friendly output for text interfaces using Python" +groups = ["default"] dependencies = [ "pyreadline3; sys_platform == \"win32\" and python_version >= \"3.8\"", ] @@ -1381,6 +1457,7 @@ name = "humanize" version = "4.9.0" requires_python = ">=3.8" summary = "Python humanize utilities" +groups = ["default"] files = [ {file = "humanize-4.9.0-py3-none-any.whl", hash = "sha256:ce284a76d5b1377fd8836733b983bfb0b76f1aa1c090de2566fcf008d7f6ab16"}, {file = "humanize-4.9.0.tar.gz", hash = "sha256:582a265c931c683a7e9b8ed9559089dea7edcf6cc95be39a3cbc2c5d5ac2bcfa"}, @@ -1391,6 +1468,7 @@ name = "hyperframe" version = "6.0.1" requires_python = ">=3.6.1" summary = "HTTP/2 framing layer for Python" +groups = ["default"] files = [ {file = "hyperframe-6.0.1-py3-none-any.whl", hash = "sha256:0ec6bafd80d8ad2195c4f03aacba3a8265e57bc4cff261e802bf39970ed02a15"}, {file = "hyperframe-6.0.1.tar.gz", hash = "sha256:ae510046231dc8e9ecb1a6586f63d2347bf4c8905914aa84ba585ae85f28a914"}, @@ -1401,6 +1479,7 @@ name = "idna" version = "3.6" requires_python = ">=3.5" summary = "Internationalized Domain Names in Applications (IDNA)" +groups = ["default"] files = [ {file = "idna-3.6-py3-none-any.whl", hash = "sha256:c05567e9c24a6b9faaa835c4821bad0590fbb9d5779e7caa6e1cc4978e7eb24f"}, {file = "idna-3.6.tar.gz", hash = "sha256:9ecdbbd083b06798ae1e86adcbfe8ab1479cf864e4ee30fe4e46a003d12491ca"}, @@ -1411,6 +1490,8 @@ name = "importlib-metadata" version = "7.0.1" requires_python = ">=3.8" summary = "Read metadata from Python packages" +groups = ["default"] +marker = "python_version < \"3.10\"" dependencies = [ "zipp>=0.5", ] @@ -1424,6 +1505,7 @@ name = "itsdangerous" version = "2.1.2" requires_python = ">=3.7" summary = "Safely pass data to untrusted environments and back." +groups = ["default"] files = [ {file = "itsdangerous-2.1.2-py3-none-any.whl", hash = "sha256:2c2349112351b88699d8d4b6b075022c0808887cb7ad10069318a8b0bc88db44"}, {file = "itsdangerous-2.1.2.tar.gz", hash = "sha256:5dbbc68b317e5e42f327f9021763545dc3fc3bfe22e6deb96aaf1fc38874156a"}, @@ -1434,6 +1516,7 @@ name = "jinja2" version = "3.1.3" requires_python = ">=3.7" summary = "A very fast and expressive template engine." +groups = ["default"] dependencies = [ "MarkupSafe>=2.0", ] @@ -1447,6 +1530,7 @@ name = "jmespath" version = "1.0.1" requires_python = ">=3.7" summary = "JSON Matching Expressions" +groups = ["default"] files = [ {file = "jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980"}, {file = "jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe"}, @@ -1457,6 +1541,7 @@ name = "joblib" version = "1.3.2" requires_python = ">=3.7" summary = "Lightweight pipelining with Python functions" +groups = ["default"] files = [ {file = "joblib-1.3.2-py3-none-any.whl", hash = "sha256:ef4331c65f239985f3f2220ecc87db222f08fd22097a3dd5698f693875f8cbb9"}, {file = "joblib-1.3.2.tar.gz", hash = "sha256:92f865e621e17784e7955080b6d042489e3b8e294949cc44c6eac304f59772b1"}, @@ -1467,6 +1552,7 @@ name = "jsonpatch" version = "1.33" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" summary = "Apply JSON-Patches (RFC 6902) " +groups = ["default"] dependencies = [ "jsonpointer>=1.9", ] @@ -1480,6 +1566,7 @@ name = "jsonpointer" version = "2.4" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*" summary = "Identify specific nodes in a JSON document (RFC 6901) " +groups = ["default"] files = [ {file = "jsonpointer-2.4-py2.py3-none-any.whl", hash = "sha256:15d51bba20eea3165644553647711d150376234112651b4f1811022aecad7d7a"}, {file = "jsonpointer-2.4.tar.gz", hash = "sha256:585cee82b70211fa9e6043b7bb89db6e1aa49524340dde8ad6b63206ea689d88"}, @@ -1490,6 +1577,7 @@ name = "jsonschema" version = "4.18.6" requires_python = ">=3.8" summary = "An implementation of JSON Schema validation for Python" +groups = ["default"] dependencies = [ "attrs>=22.2.0", "jsonschema-specifications>=2023.03.6", @@ -1506,6 +1594,7 @@ name = "jsonschema-specifications" version = "2023.12.1" requires_python = ">=3.8" summary = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +groups = ["default"] dependencies = [ "referencing>=0.31.0", ] @@ -1519,6 +1608,7 @@ name = "llama-index" version = "0.9.28" requires_python = ">=3.8.1,<4.0" summary = "Interface between LLMs and your data" +groups = ["default"] dependencies = [ "SQLAlchemy[asyncio]>=1.4.49", "aiohttp<4.0.0,>=3.8.6", @@ -1549,6 +1639,7 @@ files = [ name = "log-symbols" version = "0.0.14" summary = "Colored symbols for various log levels for Python" +groups = ["default"] dependencies = [ "colorama>=0.3.9", ] @@ -1562,6 +1653,7 @@ name = "loguru" version = "0.7.2" requires_python = ">=3.5" summary = "Python logging made (stupidly) simple" +groups = ["default"] dependencies = [ "colorama>=0.3.4; sys_platform == \"win32\"", "win32-setctime>=1.0.0; sys_platform == \"win32\"", @@ -1576,6 +1668,7 @@ name = "markdown-it-py" version = "3.0.0" requires_python = ">=3.8" summary = "Python port of markdown-it. Markdown parsing, done right!" +groups = ["default"] dependencies = [ "mdurl~=0.1", ] @@ -1589,6 +1682,7 @@ name = "markupsafe" version = "2.1.5" requires_python = ">=3.7" summary = "Safely add untrusted strings to HTML/XML markup." +groups = ["default"] files = [ {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a17a92de5231666cfbe003f0e4b9b3a7ae3afb1ec2845aadc2bacc93ff85febc"}, {file = "MarkupSafe-2.1.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:72b6be590cc35924b02c78ef34b467da4ba07e4e0f0454a2c5907f473fc50ce5"}, @@ -1625,15 +1719,16 @@ files = [ [[package]] name = "marshmallow" -version = "3.20.2" +version = "3.21.0" requires_python = ">=3.8" summary = "A lightweight library for converting complex datatypes to and from native Python datatypes." +groups = ["default"] dependencies = [ "packaging>=17.0", ] files = [ - {file = "marshmallow-3.20.2-py3-none-any.whl", hash = "sha256:c21d4b98fee747c130e6bc8f45c4b3199ea66bc00c12ee1f639f0aeca034d5e9"}, - {file = "marshmallow-3.20.2.tar.gz", hash = "sha256:4c1daff273513dc5eb24b219a8035559dc573c8f322558ef85f5438ddd1236dd"}, + {file = "marshmallow-3.21.0-py3-none-any.whl", hash = "sha256:e7997f83571c7fd476042c2c188e4ee8a78900ca5e74bd9c8097afa56624e9bd"}, + {file = "marshmallow-3.21.0.tar.gz", hash = "sha256:20f53be28c6e374a711a16165fb22a8dc6003e3f7cda1285e3ca777b9193885b"}, ] [[package]] @@ -1641,6 +1736,7 @@ name = "mdurl" version = "0.1.2" requires_python = ">=3.7" summary = "Markdown URL utilities" +groups = ["default"] files = [ {file = "mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8"}, {file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"}, @@ -1650,6 +1746,7 @@ files = [ name = "minio" version = "7.2.4" summary = "MinIO Python SDK for Amazon S3 Compatible Cloud Storage" +groups = ["default"] dependencies = [ "argon2-cffi", "certifi", @@ -1667,6 +1764,7 @@ name = "mistralai" version = "0.0.8" requires_python = ">=3.8,<4.0" summary = "" +groups = ["default"] dependencies = [ "aiohttp<4.0.0,>=3.9.1", "backoff<3.0.0,>=2.2.1", @@ -1683,6 +1781,7 @@ files = [ name = "mpmath" version = "1.3.0" summary = "Python library for arbitrary-precision floating-point arithmetic" +groups = ["default"] files = [ {file = "mpmath-1.3.0-py3-none-any.whl", hash = "sha256:a0b2b9fe80bbcd81a6647ff13108738cfb482d481d826cc0e02f5b35e5c88d2c"}, {file = "mpmath-1.3.0.tar.gz", hash = "sha256:7a28eb2a9774d00c7bc92411c19a89209d5da7c4c9a9e227be8330a23a25b91f"}, @@ -1693,6 +1792,7 @@ name = "multidict" version = "6.0.5" requires_python = ">=3.7" summary = "multidict implementation" +groups = ["default"] files = [ {file = "multidict-6.0.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:228b644ae063c10e7f324ab1ab6b548bdf6f8b47f3ec234fef1093bc2735e5f9"}, {file = "multidict-6.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:896ebdcf62683551312c30e20614305f53125750803b614e9e6ce74a96232604"}, @@ -1748,6 +1848,7 @@ name = "mypy-extensions" version = "1.0.0" requires_python = ">=3.5" summary = "Type system extensions for programs checked with the mypy type checker." +groups = ["default"] files = [ {file = "mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d"}, {file = "mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782"}, @@ -1758,6 +1859,7 @@ name = "nest-asyncio" version = "1.6.0" requires_python = ">=3.5" summary = "Patch asyncio to allow nested event loops" +groups = ["default"] files = [ {file = "nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c"}, {file = "nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe"}, @@ -1768,6 +1870,7 @@ name = "networkx" version = "3.2.1" requires_python = ">=3.9" summary = "Python package for creating and manipulating graphs and networks" +groups = ["default"] files = [ {file = "networkx-3.2.1-py3-none-any.whl", hash = "sha256:f18c69adc97877c42332c170849c96cefa91881c99a7cb3e95b7c659ebdc1ec2"}, {file = "networkx-3.2.1.tar.gz", hash = "sha256:9f1bb5cf3409bf324e0a722c20bdb4c20ee39bf1c30ce8ae499c8502b0b5e0c6"}, @@ -1778,6 +1881,7 @@ name = "nltk" version = "3.8.1" requires_python = ">=3.7" summary = "Natural Language Toolkit" +groups = ["default"] dependencies = [ "click", "joblib", @@ -1794,6 +1898,7 @@ name = "numpy" version = "1.26.4" requires_python = ">=3.9" summary = "Fundamental package for array computing in Python" +groups = ["default"] files = [ {file = "numpy-1.26.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9ff0f4f29c51e2803569d7a51c2304de5554655a60c5d776e35b4a41413830d0"}, {file = "numpy-1.26.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2e4ee3380d6de9c9ec04745830fd9e2eccb3e6cf790d39d7b98ffd19b0dd754a"}, @@ -1829,6 +1934,7 @@ files = [ name = "oauth2client" version = "4.1.3" summary = "OAuth 2.0 client library" +groups = ["default"] dependencies = [ "httplib2>=0.9.1", "pyasn1-modules>=0.0.5", @@ -1846,6 +1952,7 @@ name = "onnx" version = "1.15.0" requires_python = ">=3.8" summary = "Open Neural Network Exchange" +groups = ["default"] dependencies = [ "numpy", "protobuf>=3.20.2", @@ -1874,8 +1981,9 @@ files = [ [[package]] name = "onnxruntime" -version = "1.17.0" +version = "1.17.1" summary = "ONNX Runtime is a runtime accelerator for Machine Learning models" +groups = ["default"] dependencies = [ "coloredlogs", "flatbuffers", @@ -1885,21 +1993,21 @@ dependencies = [ "sympy", ] files = [ - {file = "onnxruntime-1.17.0-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:d2b22a25a94109cc983443116da8d9805ced0256eb215c5e6bc6dcbabefeab96"}, - {file = "onnxruntime-1.17.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:b4c87d83c6f58d1af2675fc99e3dc810f2dbdb844bcefd0c1b7573632661f6fc"}, - {file = "onnxruntime-1.17.0-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:dba55723bf9b835e358f48c98a814b41692c393eb11f51e02ece0625c756b797"}, - {file = "onnxruntime-1.17.0-cp310-cp310-win32.whl", hash = "sha256:ee48422349cc500273beea7607e33c2237909f58468ae1d6cccfc4aecd158565"}, - {file = "onnxruntime-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:f34cc46553359293854e38bdae2ab1be59543aad78a6317e7746d30e311110c3"}, - {file = "onnxruntime-1.17.0-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:16d26badd092c8c257fa57c458bb600d96dc15282c647ccad0ed7b2732e6c03b"}, - {file = "onnxruntime-1.17.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:6f1273bebcdb47ed932d076c85eb9488bc4768fcea16d5f2747ca692fad4f9d3"}, - {file = "onnxruntime-1.17.0-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:cb60fd3c2c1acd684752eb9680e89ae223e9801a9b0e0dc7b28adabe45a2e380"}, - {file = "onnxruntime-1.17.0-cp311-cp311-win32.whl", hash = "sha256:4b038324586bc905299e435f7c00007e6242389c856b82fe9357fdc3b1ef2bdc"}, - {file = "onnxruntime-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:93d39b3fa1ee01f034f098e1c7769a811a21365b4883f05f96c14a2b60c6028b"}, - {file = "onnxruntime-1.17.0-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:5a06ab84eaa350bf64b1d747b33ccf10da64221ed1f38f7287f15eccbec81603"}, - {file = "onnxruntime-1.17.0-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:5d3d11db2c8242766212a68d0b139745157da7ce53bd96ba349a5c65e5a02357"}, - {file = "onnxruntime-1.17.0-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:5632077c3ab8b0cd4f74b0af9c4e924be012b1a7bcd7daa845763c6c6bf14b7d"}, - {file = "onnxruntime-1.17.0-cp39-cp39-win32.whl", hash = "sha256:61a12732cba869b3ad2d4e29ab6cb62c7a96f61b8c213f7fcb961ba412b70b37"}, - {file = "onnxruntime-1.17.0-cp39-cp39-win_amd64.whl", hash = "sha256:461fa0fc7d9c392c352b6cccdedf44d818430f3d6eacd924bb804fdea2dcfd02"}, + {file = "onnxruntime-1.17.1-cp310-cp310-macosx_11_0_universal2.whl", hash = "sha256:d43ac17ac4fa3c9096ad3c0e5255bb41fd134560212dc124e7f52c3159af5d21"}, + {file = "onnxruntime-1.17.1-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:55b5e92a4c76a23981c998078b9bf6145e4fb0b016321a8274b1607bd3c6bd35"}, + {file = "onnxruntime-1.17.1-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:ebbcd2bc3a066cf54e6f18c75708eb4d309ef42be54606d22e5bdd78afc5b0d7"}, + {file = "onnxruntime-1.17.1-cp310-cp310-win32.whl", hash = "sha256:5e3716b5eec9092e29a8d17aab55e737480487deabfca7eac3cd3ed952b6ada9"}, + {file = "onnxruntime-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:fbb98cced6782ae1bb799cc74ddcbbeeae8819f3ad1d942a74d88e72b6511337"}, + {file = "onnxruntime-1.17.1-cp311-cp311-macosx_11_0_universal2.whl", hash = "sha256:36fd6f87a1ecad87e9c652e42407a50fb305374f9a31d71293eb231caae18784"}, + {file = "onnxruntime-1.17.1-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:99a8bddeb538edabc524d468edb60ad4722cff8a49d66f4e280c39eace70500b"}, + {file = "onnxruntime-1.17.1-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:fd7fddb4311deb5a7d3390cd8e9b3912d4d963efbe4dfe075edbaf18d01c024e"}, + {file = "onnxruntime-1.17.1-cp311-cp311-win32.whl", hash = "sha256:606a7cbfb6680202b0e4f1890881041ffc3ac6e41760a25763bd9fe146f0b335"}, + {file = "onnxruntime-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:53e4e06c0a541696ebdf96085fd9390304b7b04b748a19e02cf3b35c869a1e76"}, + {file = "onnxruntime-1.17.1-cp39-cp39-macosx_11_0_universal2.whl", hash = "sha256:7a9539935fb2d78ebf2cf2693cad02d9930b0fb23cdd5cf37a7df813e977674d"}, + {file = "onnxruntime-1.17.1-cp39-cp39-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl", hash = "sha256:45c6a384e9d9a29c78afff62032a46a993c477b280247a7e335df09372aedbe9"}, + {file = "onnxruntime-1.17.1-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:4e19f966450f16863a1d6182a685ca33ae04d7772a76132303852d05b95411ea"}, + {file = "onnxruntime-1.17.1-cp39-cp39-win32.whl", hash = "sha256:e2ae712d64a42aac29ed7a40a426cb1e624a08cfe9273dcfe681614aa65b07dc"}, + {file = "onnxruntime-1.17.1-cp39-cp39-win_amd64.whl", hash = "sha256:f7e9f7fb049825cdddf4a923cfc7c649d84d63c0134315f8e0aa9e0c3004672c"}, ] [[package]] @@ -1907,6 +2015,7 @@ name = "openai" version = "1.3.9" requires_python = ">=3.7.1" summary = "The official Python library for the openai API" +groups = ["default"] dependencies = [ "anyio<5,>=3.5.0", "distro<2,>=1.7.0", @@ -1926,6 +2035,7 @@ name = "orjson" version = "3.9.15" requires_python = ">=3.8" summary = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" +groups = ["default"] files = [ {file = "orjson-3.9.15-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:d61f7ce4727a9fa7680cd6f3986b0e2c732639f46a5e0156e550e35258aa313a"}, {file = "orjson-3.9.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4feeb41882e8aa17634b589533baafdceb387e01e117b1ec65534ec724023d04"}, @@ -1965,6 +2075,7 @@ name = "packaging" version = "23.2" requires_python = ">=3.7" summary = "Core utilities for Python packages" +groups = ["default", "deploy"] files = [ {file = "packaging-23.2-py3-none-any.whl", hash = "sha256:8c491190033a9af7e1d931d0b5dacc2ef47509b34dd0de67ed209b5203fc88c7"}, {file = "packaging-23.2.tar.gz", hash = "sha256:048fb0e9405036518eaaf48a55953c750c11e1a1b68e0dd1a9d62ed0c092cfc5"}, @@ -1975,6 +2086,7 @@ name = "pandas" version = "2.2.1" requires_python = ">=3.9" summary = "Powerful data structures for data analysis, time series, and statistics" +groups = ["default"] dependencies = [ "numpy<2,>=1.22.4; python_version < \"3.11\"", "numpy<2,>=1.23.2; python_version == \"3.11\"", @@ -2012,6 +2124,7 @@ name = "pathspec" version = "0.12.1" requires_python = ">=3.8" summary = "Utility library for gitignore style pattern matching of file paths." +groups = ["default"] files = [ {file = "pathspec-0.12.1-py3-none-any.whl", hash = "sha256:a0d503e138a4c123b27490a4f7beda6a01c6f288df0e4a8b79c7eb0dc7b4cc08"}, {file = "pathspec-0.12.1.tar.gz", hash = "sha256:a482d51503a1ab33b1c67a6c3813a26953dbdc71c31dacaef9a838c4e29f5712"}, @@ -2022,6 +2135,7 @@ name = "pdfminer-six" version = "20221105" requires_python = ">=3.6" summary = "PDF parser and analyzer" +groups = ["default"] dependencies = [ "charset-normalizer>=2.0.0", "cryptography>=36.0.0", @@ -2036,6 +2150,7 @@ name = "pdfplumber" version = "0.10.3" requires_python = ">=3.8" summary = "Plumb a PDF for detailed information about each char, rectangle, and line." +groups = ["default"] dependencies = [ "Pillow>=9.1", "pdfminer-six==20221105", @@ -2050,6 +2165,7 @@ files = [ name = "peewee" version = "3.17.1" summary = "a little orm" +groups = ["default"] files = [ {file = "peewee-3.17.1.tar.gz", hash = "sha256:e009ac4227c4fdc0058a56e822ad5987684f0a1fbb20fed577200785102581c3"}, ] @@ -2059,6 +2175,7 @@ name = "pgvector" version = "0.1.8" requires_python = ">=3.6" summary = "pgvector support for Python" +groups = ["default"] dependencies = [ "numpy", ] @@ -2071,6 +2188,7 @@ name = "pillow" version = "10.2.0" requires_python = ">=3.8" summary = "Python Imaging Library (Fork)" +groups = ["default"] files = [ {file = "pillow-10.2.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:7823bdd049099efa16e4246bdf15e5a13dbb18a51b68fa06d6c1d4d8b99a796e"}, {file = "pillow-10.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:83b2021f2ade7d1ed556bc50a399127d7fb245e725aa0113ebd05cfe88aaf588"}, @@ -2126,6 +2244,7 @@ name = "pinecone-client" version = "2.2.4" requires_python = ">=3.8" summary = "Pinecone client and SDK" +groups = ["default"] dependencies = [ "dnspython>=2.0.0", "loguru>=0.5.0", @@ -2147,6 +2266,7 @@ name = "portalocker" version = "2.8.2" requires_python = ">=3.8" summary = "Wraps the portalocker recipe for easy usage" +groups = ["default"] dependencies = [ "pywin32>=226; platform_system == \"Windows\"", ] @@ -2160,6 +2280,7 @@ name = "postgrest" version = "0.13.2" requires_python = ">=3.8,<4.0" summary = "PostgREST client for Python. This library provides an ORM interface to PostgREST." +groups = ["default"] dependencies = [ "deprecation<3.0.0,>=2.1.0", "httpx<0.26,>=0.24", @@ -2176,6 +2297,7 @@ name = "proto-plus" version = "1.23.0" requires_python = ">=3.6" summary = "Beautiful, Pythonic protocol buffers." +groups = ["default"] dependencies = [ "protobuf<5.0.0dev,>=3.19.0", ] @@ -2189,6 +2311,7 @@ name = "protobuf" version = "4.25.3" requires_python = ">=3.8" summary = "" +groups = ["default"] files = [ {file = "protobuf-4.25.3-cp310-abi3-win32.whl", hash = "sha256:d4198877797a83cbfe9bffa3803602bbe1625dc30d8a097365dbc762e5790faa"}, {file = "protobuf-4.25.3-cp310-abi3-win_amd64.whl", hash = "sha256:209ba4cc916bab46f64e56b85b090607a676f66b473e6b762e6f1d9d591eb2e8"}, @@ -2206,6 +2329,7 @@ name = "psycopg2-binary" version = "2.9.9" requires_python = ">=3.7" summary = "psycopg2 - Python-PostgreSQL Database Adapter" +groups = ["default"] files = [ {file = "psycopg2-binary-2.9.9.tar.gz", hash = "sha256:7f01846810177d829c7692f1f5ada8096762d9172af1b1a28d4ab5b77c923c1c"}, {file = "psycopg2_binary-2.9.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c2470da5418b76232f02a2fcd2229537bb2d5a7096674ce61859c3229f2eb202"}, @@ -2251,6 +2375,7 @@ name = "pyarrow" version = "15.0.0" requires_python = ">=3.8" summary = "Python library for Apache Arrow" +groups = ["default"] dependencies = [ "numpy<2,>=1.16.6", ] @@ -2284,6 +2409,7 @@ name = "pyasn1" version = "0.5.1" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" summary = "Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208)" +groups = ["default"] files = [ {file = "pyasn1-0.5.1-py2.py3-none-any.whl", hash = "sha256:4439847c58d40b1d0a573d07e3856e95333f1976294494c325775aeca506eb58"}, {file = "pyasn1-0.5.1.tar.gz", hash = "sha256:6d391a96e59b23130a5cfa74d6fd7f388dbbe26cc8f1edf39fdddf08d9d6676c"}, @@ -2294,6 +2420,7 @@ name = "pyasn1-modules" version = "0.3.0" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,>=2.7" summary = "A collection of ASN.1-based protocols modules" +groups = ["default"] dependencies = [ "pyasn1<0.6.0,>=0.4.6", ] @@ -2307,6 +2434,7 @@ name = "pycparser" version = "2.21" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" summary = "C parser in Python" +groups = ["default"] files = [ {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, @@ -2317,6 +2445,7 @@ name = "pycryptodome" version = "3.20.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "Cryptographic library for Python" +groups = ["default"] files = [ {file = "pycryptodome-3.20.0-cp35-abi3-macosx_10_9_universal2.whl", hash = "sha256:ac1c7c0624a862f2e53438a15c9259d1655325fc2ec4392e66dc46cdae24d044"}, {file = "pycryptodome-3.20.0-cp35-abi3-macosx_10_9_x86_64.whl", hash = "sha256:76658f0d942051d12a9bd08ca1b6b34fd762a8ee4240984f7c06ddfb55eaf15a"}, @@ -2343,17 +2472,18 @@ files = [ [[package]] name = "pydantic" -version = "2.6.2" +version = "2.6.3" requires_python = ">=3.8" summary = "Data validation using Python type hints" +groups = ["default"] dependencies = [ "annotated-types>=0.4.0", "pydantic-core==2.16.3", "typing-extensions>=4.6.1", ] files = [ - {file = "pydantic-2.6.2-py3-none-any.whl", hash = "sha256:37a5432e54b12fecaa1049c5195f3d860a10e01bdfd24f1840ef14bd0d3aeab3"}, - {file = "pydantic-2.6.2.tar.gz", hash = "sha256:a09be1c3d28f3abe37f8a78af58284b236a92ce520105ddc91a6d29ea1176ba7"}, + {file = "pydantic-2.6.3-py3-none-any.whl", hash = "sha256:72c6034df47f46ccdf81869fddb81aade68056003900a8724a4f160700016a2a"}, + {file = "pydantic-2.6.3.tar.gz", hash = "sha256:e07805c4c7f5c6826e33a1d4c9d47950d7eaf34868e2690f8594d2e30241f11f"}, ] [[package]] @@ -2361,6 +2491,7 @@ name = "pydantic-core" version = "2.16.3" requires_python = ">=3.8" summary = "" +groups = ["default"] dependencies = [ "typing-extensions!=4.7.0,>=4.6.0", ] @@ -2426,6 +2557,7 @@ name = "pygments" version = "2.17.2" requires_python = ">=3.7" summary = "Pygments is a syntax highlighting package written in Python." +groups = ["default"] files = [ {file = "pygments-2.17.2-py3-none-any.whl", hash = "sha256:b27c2826c47d0f3219f29554824c30c5e8945175d888647acd804ddd04af846c"}, {file = "pygments-2.17.2.tar.gz", hash = "sha256:da46cec9fd2de5be3a8a784f434e4c4ab670b4ff54d605c4c2717e9d49c4c367"}, @@ -2436,6 +2568,7 @@ name = "pymilvus" version = "2.3.4" requires_python = ">=3.7" summary = "Python Sdk for Milvus" +groups = ["default"] dependencies = [ "environs<=9.5.0", "grpcio<=1.58.0,>=1.49.1", @@ -2456,6 +2589,8 @@ name = "pyparsing" version = "3.1.1" requires_python = ">=3.6.8" summary = "pyparsing module - Classes and methods to define and execute parsing grammars" +groups = ["default"] +marker = "python_version > \"3.0\"" files = [ {file = "pyparsing-3.1.1-py3-none-any.whl", hash = "sha256:32c7c0b711493c72ff18a981d24f28aaf9c1fb7ed5e9667c9e84e3db623bdbfb"}, {file = "pyparsing-3.1.1.tar.gz", hash = "sha256:ede28a1a32462f5a9705e07aea48001a08f7cf81a021585011deba701581a0db"}, @@ -2466,6 +2601,7 @@ name = "pypdfium2" version = "4.27.0" requires_python = ">= 3.6" summary = "Python bindings to PDFium" +groups = ["default"] files = [ {file = "pypdfium2-4.27.0-py3-none-macosx_10_13_x86_64.whl", hash = "sha256:2938f423c79b49df9057993f747e537a05b71bc2c847801ac743f27c3220d363"}, {file = "pypdfium2-4.27.0-py3-none-macosx_11_0_arm64.whl", hash = "sha256:f396941e070bf6c245890f2ffb2cb04f39585e3cda93ebb1648f1ed0e99b921f"}, @@ -2486,6 +2622,8 @@ files = [ name = "pyreadline3" version = "3.4.1" summary = "A python implementation of GNU readline." +groups = ["default"] +marker = "sys_platform == \"win32\" and python_version >= \"3.8\"" files = [ {file = "pyreadline3-3.4.1-py3-none-any.whl", hash = "sha256:b0efb6516fd4fb07b45949053826a62fa4cb353db5be2bbb4a7aa1fdd1e345fb"}, {file = "pyreadline3-3.4.1.tar.gz", hash = "sha256:6f3d1f7b8a31ba32b73917cefc1f28cc660562f39aea8646d30bd6eff21f7bae"}, @@ -2496,6 +2634,7 @@ name = "pytesseract" version = "0.3.10" requires_python = ">=3.7" summary = "Python-tesseract is a python wrapper for Google's Tesseract-OCR" +groups = ["default"] dependencies = [ "Pillow>=8.0.0", "packaging>=21.3", @@ -2510,6 +2649,7 @@ name = "python-dateutil" version = "2.8.2" requires_python = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" summary = "Extensions to the standard Python datetime module" +groups = ["default"] dependencies = [ "six>=1.5", ] @@ -2523,6 +2663,7 @@ name = "python-dotenv" version = "1.0.0" requires_python = ">=3.8" summary = "Read key-value pairs from a .env file and set them as environment variables" +groups = ["default"] files = [ {file = "python-dotenv-1.0.0.tar.gz", hash = "sha256:a8df96034aae6d2d50a4ebe8216326c61c3eb64836776504fcca410e5937a3ba"}, {file = "python_dotenv-1.0.0-py3-none-any.whl", hash = "sha256:f5971a9226b701070a4bf2c38c89e5a3f0d64de8debda981d1db98583009122a"}, @@ -2533,6 +2674,7 @@ name = "python-magic" version = "0.4.27" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" summary = "File type identification using libmagic" +groups = ["default"] files = [ {file = "python-magic-0.4.27.tar.gz", hash = "sha256:c1ba14b08e4a5f5c31a302b7721239695b2f0f058d125bd5ce1ee36b9d9d3c3b"}, {file = "python_magic-0.4.27-py2.py3-none-any.whl", hash = "sha256:c212960ad306f700aa0d01e5d7a325d20548ff97eb9920dcd29513174f0294d3"}, @@ -2542,6 +2684,7 @@ files = [ name = "pytz" version = "2024.1" summary = "World timezone definitions, modern and historical" +groups = ["default"] files = [ {file = "pytz-2024.1-py2.py3-none-any.whl", hash = "sha256:328171f4e3623139da4983451950b28e95ac706e13f3f2630a879749e7a8b319"}, {file = "pytz-2024.1.tar.gz", hash = "sha256:2a29735ea9c18baf14b448846bde5a48030ed267578472d8955cd0e7443a9812"}, @@ -2551,6 +2694,8 @@ files = [ name = "pywin32" version = "306" summary = "Python for Window Extensions" +groups = ["default"] +marker = "platform_system == \"Windows\"" files = [ {file = "pywin32-306-cp310-cp310-win32.whl", hash = "sha256:06d3420a5155ba65f0b72f2699b5bacf3109f36acbe8923765c22938a69dfc8d"}, {file = "pywin32-306-cp310-cp310-win_amd64.whl", hash = "sha256:84f4471dbca1887ea3803d8848a1616429ac94a4a8d05f4bc9c5dcfd42ca99c8"}, @@ -2566,6 +2711,7 @@ name = "pyyaml" version = "6.0.1" requires_python = ">=3.6" summary = "YAML parser and emitter for Python" +groups = ["default"] files = [ {file = "PyYAML-6.0.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d858aa552c999bc8a8d57426ed01e40bef403cd8ccdd0fc5f6f04a00414cac2a"}, {file = "PyYAML-6.0.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:fd66fc5d0da6d9815ba2cebeb4205f95818ff4b79c3ebe268e75d961704af52f"}, @@ -2599,6 +2745,7 @@ name = "qdrant-client" version = "1.7.0" requires_python = ">=3.8,<3.13" summary = "Client library for the Qdrant vector search engine" +groups = ["default"] dependencies = [ "grpcio-tools>=1.41.0", "grpcio>=1.41.0", @@ -2618,6 +2765,7 @@ name = "realtime" version = "1.0.2" requires_python = ">=3.8,<4.0" summary = "" +groups = ["default"] dependencies = [ "python-dateutil<3.0.0,>=2.8.1", "typing-extensions<5.0.0,>=4.2.0", @@ -2633,6 +2781,7 @@ name = "referencing" version = "0.33.0" requires_python = ">=3.8" summary = "JSON Referencing + Python" +groups = ["default"] dependencies = [ "attrs>=22.2.0", "rpds-py>=0.7.0", @@ -2647,6 +2796,7 @@ name = "regex" version = "2023.12.25" requires_python = ">=3.7" summary = "Alternative regular expression module, to replace re." +groups = ["default"] files = [ {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0694219a1d54336fd0445ea382d49d36882415c0134ee1e8332afd1529f0baa5"}, {file = "regex-2023.12.25-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b014333bd0217ad3d54c143de9d4b9a3ca1c5a29a6d0d554952ea071cff0f1f8"}, @@ -2703,6 +2853,7 @@ name = "replicate" version = "0.22.0" requires_python = ">=3.8" summary = "Python client for Replicate" +groups = ["default"] dependencies = [ "httpx<1,>=0.21.0", "packaging", @@ -2719,6 +2870,7 @@ name = "requests" version = "2.31.0" requires_python = ">=3.7" summary = "Python HTTP for Humans." +groups = ["default"] dependencies = [ "certifi>=2017.4.17", "charset-normalizer<4,>=2", @@ -2735,6 +2887,7 @@ name = "rich" version = "13.7.0" requires_python = ">=3.7.0" summary = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" +groups = ["default"] dependencies = [ "markdown-it-py>=2.2.0", "pygments<3.0.0,>=2.13.0", @@ -2749,6 +2902,7 @@ name = "rpds-py" version = "0.18.0" requires_python = ">=3.8" summary = "Python bindings to Rust's persistent data structures (rpds)" +groups = ["default"] files = [ {file = "rpds_py-0.18.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:5b4e7d8d6c9b2e8ee2d55c90b59c707ca59bc30058269b3db7b1f8df5763557e"}, {file = "rpds_py-0.18.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c463ed05f9dfb9baebef68048aed8dcdc94411e4bf3d33a39ba97e271624f8f7"}, @@ -2830,6 +2984,7 @@ name = "rsa" version = "4.9" requires_python = ">=3.6,<4" summary = "Pure-Python RSA implementation" +groups = ["default"] dependencies = [ "pyasn1>=0.1.3", ] @@ -2843,6 +2998,7 @@ name = "s3transfer" version = "0.10.0" requires_python = ">= 3.8" summary = "An Amazon S3 Transfer Manager" +groups = ["default"] dependencies = [ "botocore<2.0a.0,>=1.33.2", ] @@ -2856,6 +3012,7 @@ name = "safetensors" version = "0.4.2" requires_python = ">=3.7" summary = "" +groups = ["default"] files = [ {file = "safetensors-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:69d8bb8384dc2cb5b72c36c4d6980771b293d1a1377b378763f5e37b6bb8d133"}, {file = "safetensors-0.4.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:3d420e19fcef96d0067f4de4699682b4bbd85fc8fea0bd45fcd961fdf3e8c82c"}, @@ -2928,6 +3085,7 @@ name = "setuptools" version = "69.1.1" requires_python = ">=3.8" summary = "Easily download, build, install, upgrade, and uninstall Python packages" +groups = ["default"] files = [ {file = "setuptools-69.1.1-py3-none-any.whl", hash = "sha256:02fa291a0471b3a18b2b2481ed902af520c69e8ae0919c13da936542754b4c56"}, {file = "setuptools-69.1.1.tar.gz", hash = "sha256:5c0806c7d9af348e6dd3777b4f4dbb42c7ad85b190104837488eab9a7c945cf8"}, @@ -2938,6 +3096,7 @@ name = "shapely" version = "2.0.3" requires_python = ">=3.7" summary = "Manipulation and analysis of geometric objects" +groups = ["default"] dependencies = [ "numpy<2,>=1.14", ] @@ -2971,6 +3130,7 @@ name = "six" version = "1.16.0" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" summary = "Python 2 and 3 compatibility utilities" +groups = ["default"] files = [ {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, @@ -2978,12 +3138,16 @@ files = [ [[package]] name = "smart-open" -version = "6.4.0" +version = "7.0.1" requires_python = ">=3.6,<4.0" summary = "Utils for streaming large files (S3, HDFS, GCS, Azure Blob Storage, gzip, bz2...)" +groups = ["default"] +dependencies = [ + "wrapt", +] files = [ - {file = "smart_open-6.4.0-py3-none-any.whl", hash = "sha256:8d3ef7e6997e8e42dd55c74166ed21e6ac70664caa32dd940b26d54a8f6b4142"}, - {file = "smart_open-6.4.0.tar.gz", hash = "sha256:be3c92c246fbe80ebce8fbacb180494a481a77fcdcb7c1aadb2ea5b9c2bee8b9"}, + {file = "smart_open-7.0.1-py3-none-any.whl", hash = "sha256:9507e38b43d1fd515c2085b9db2e41b592bb754b0e31395a085eb0d61d2410e5"}, + {file = "smart_open-7.0.1.tar.gz", hash = "sha256:c03d00e49483d8e5375720d4d6c1402107f23584bf96505db0b4e17f92339e56"}, ] [[package]] @@ -2991,6 +3155,7 @@ name = "smmap" version = "5.0.1" requires_python = ">=3.7" summary = "A pure Python implementation of a sliding window memory map manager" +groups = ["default"] files = [ {file = "smmap-5.0.1-py3-none-any.whl", hash = "sha256:e6d8668fa5f93e706934a62d7b4db19c8d9eb8cf2adbb75ef1b675aa332b69da"}, {file = "smmap-5.0.1.tar.gz", hash = "sha256:dceeb6c0028fdb6734471eb07c0cd2aae706ccaecab45965ee83f11c8d3b1f62"}, @@ -2998,12 +3163,13 @@ files = [ [[package]] name = "sniffio" -version = "1.3.0" +version = "1.3.1" requires_python = ">=3.7" summary = "Sniff out which async library your code is running under" +groups = ["default"] files = [ - {file = "sniffio-1.3.0-py3-none-any.whl", hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384"}, - {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, + {file = "sniffio-1.3.1-py3-none-any.whl", hash = "sha256:2f6da418d1f1e0fddd844478f41680e794e6051915791a034ff65e5f100525a2"}, + {file = "sniffio-1.3.1.tar.gz", hash = "sha256:f4324edc670a0f49750a81b895f35c3adb843cca46f0530f79fc1babb23789dc"}, ] [[package]] @@ -3011,6 +3177,7 @@ name = "soupsieve" version = "2.5" requires_python = ">=3.8" summary = "A modern CSS selector implementation for Beautiful Soup." +groups = ["default"] files = [ {file = "soupsieve-2.5-py3-none-any.whl", hash = "sha256:eaa337ff55a1579b6549dc679565eac1e3d000563bcb1c8ab0d0fefbc0c2cdc7"}, {file = "soupsieve-2.5.tar.gz", hash = "sha256:5663d5a7b3bfaeee0bc4372e7fc48f9cff4940b3eec54a6451cc5299f1097690"}, @@ -3020,6 +3187,7 @@ files = [ name = "spinners" version = "0.0.24" summary = "Spinners for terminals" +groups = ["default"] files = [ {file = "spinners-0.0.24-py3-none-any.whl", hash = "sha256:2fa30d0b72c9650ad12bbe031c9943b8d441e41b4f5602b0ec977a19f3290e98"}, {file = "spinners-0.0.24.tar.gz", hash = "sha256:1eb6aeb4781d72ab42ed8a01dcf20f3002bf50740d7154d12fb8c9769bf9e27f"}, @@ -3030,8 +3198,9 @@ name = "sqlalchemy" version = "2.0.26" requires_python = ">=3.7" summary = "Database Abstraction Library" +groups = ["default"] dependencies = [ - "greenlet!=0.4.17; platform_machine == \"aarch64\" or (platform_machine == \"ppc64le\" or (platform_machine == \"x86_64\" or (platform_machine == \"amd64\" or (platform_machine == \"AMD64\" or (platform_machine == \"win32\" or platform_machine == \"WIN32\")))))", + "greenlet!=0.4.17; platform_machine == \"win32\" or platform_machine == \"WIN32\" or platform_machine == \"AMD64\" or platform_machine == \"amd64\" or platform_machine == \"x86_64\" or platform_machine == \"ppc64le\" or platform_machine == \"aarch64\"", "typing-extensions>=4.6.0", ] files = [ @@ -3069,6 +3238,7 @@ version = "2.0.26" extras = ["asyncio"] requires_python = ">=3.7" summary = "Database Abstraction Library" +groups = ["default"] dependencies = [ "SQLAlchemy==2.0.26", "greenlet!=0.4.17", @@ -3107,6 +3277,7 @@ name = "storage3" version = "0.7.0" requires_python = ">=3.8,<4.0" summary = "Supabase Storage client for Python." +groups = ["default"] dependencies = [ "httpx<0.26,>=0.24", "python-dateutil<3.0.0,>=2.8.2", @@ -3121,6 +3292,7 @@ files = [ name = "strenum" version = "0.4.15" summary = "An Enum that inherits from str." +groups = ["default"] files = [ {file = "StrEnum-0.4.15-py3-none-any.whl", hash = "sha256:a30cda4af7cc6b5bf52c8055bc4bf4b2b6b14a93b574626da33df53cf7740659"}, {file = "StrEnum-0.4.15.tar.gz", hash = "sha256:878fb5ab705442070e4dd1929bb5e2249511c0bcf2b0eeacf3bcd80875c82eff"}, @@ -3131,6 +3303,7 @@ name = "supabase" version = "2.2.1" requires_python = ">=3.8,<4.0" summary = "Supabase client for Python." +groups = ["default"] dependencies = [ "gotrue<3.0,>=1.3", "httpx<0.25.0,>=0.24.0", @@ -3149,6 +3322,7 @@ name = "supafunc" version = "0.3.3" requires_python = ">=3.8,<4.0" summary = "Library for Supabase Functions" +groups = ["default"] dependencies = [ "httpx<0.26,>=0.24", ] @@ -3162,6 +3336,7 @@ name = "sympy" version = "1.12" requires_python = ">=3.8" summary = "Computer algebra system (CAS) in Python" +groups = ["default"] dependencies = [ "mpmath>=0.19", ] @@ -3175,6 +3350,7 @@ name = "tabulate" version = "0.9.0" requires_python = ">=3.7" summary = "Pretty-print tabular data" +groups = ["default"] files = [ {file = "tabulate-0.9.0-py3-none-any.whl", hash = "sha256:024ca478df22e9340661486f85298cff5f6dcdba14f3813e8830015b9ed1948f"}, {file = "tabulate-0.9.0.tar.gz", hash = "sha256:0095b12bf5966de529c0feb1fa08671671b3368eec77d7ef7ab114be2c068b3c"}, @@ -3185,6 +3361,7 @@ name = "tenacity" version = "8.2.3" requires_python = ">=3.7" summary = "Retry code until it succeeds" +groups = ["default"] files = [ {file = "tenacity-8.2.3-py3-none-any.whl", hash = "sha256:ce510e327a630c9e1beaf17d42e6ffacc88185044ad85cf74c0a8887c6a0f88c"}, {file = "tenacity-8.2.3.tar.gz", hash = "sha256:5398ef0d78e63f40007c1fb4c0bff96e1911394d2fa8d194f77619c05ff6cc8a"}, @@ -3195,6 +3372,8 @@ name = "tensorrt-llm" version = "0.7.1" requires_python = ">=3.7, <4" summary = "" +groups = ["default"] +marker = "python_version == \"3.10\"" files = [ {file = "tensorrt-llm-0.7.1.tar.gz", hash = "sha256:10275e2585484f138b43576acddba42ebee073fbb1665fe0954032e421e26e08"}, ] @@ -3204,6 +3383,7 @@ name = "termcolor" version = "2.4.0" requires_python = ">=3.8" summary = "ANSI color formatting for output in terminal" +groups = ["default"] files = [ {file = "termcolor-2.4.0-py3-none-any.whl", hash = "sha256:9297c0df9c99445c2412e832e882a7884038a25617c60cea2ad69488d4040d63"}, {file = "termcolor-2.4.0.tar.gz", hash = "sha256:aab9e56047c8ac41ed798fa36d892a37aca6b3e9159f3e0c24bc64a9b3ac7b7a"}, @@ -3214,6 +3394,7 @@ name = "tiktoken" version = "0.4.0" requires_python = ">=3.8" summary = "tiktoken is a fast BPE tokeniser for use with OpenAI's models" +groups = ["default"] dependencies = [ "regex>=2022.1.18", "requests>=2.26.0", @@ -3248,6 +3429,7 @@ name = "tokenizers" version = "0.15.2" requires_python = ">=3.7" summary = "" +groups = ["default"] dependencies = [ "huggingface-hub<1.0,>=0.16.4", ] @@ -3323,6 +3505,7 @@ name = "tqdm" version = "4.66.2" requires_python = ">=3.7" summary = "Fast, Extensible Progress Meter" +groups = ["default"] dependencies = [ "colorama; platform_system == \"Windows\"", ] @@ -3336,6 +3519,7 @@ name = "transformers" version = "4.37.0" requires_python = ">=3.8.0" summary = "State-of-the-art Machine Learning for JAX, PyTorch and TensorFlow" +groups = ["default"] dependencies = [ "filelock", "huggingface-hub<1.0,>=0.19.3", @@ -3355,18 +3539,20 @@ files = [ [[package]] name = "typing-extensions" -version = "4.9.0" +version = "4.10.0" requires_python = ">=3.8" summary = "Backported and Experimental Type Hints for Python 3.8+" +groups = ["default"] files = [ - {file = "typing_extensions-4.9.0-py3-none-any.whl", hash = "sha256:af72aea155e91adfc61c3ae9e0e342dbc0cba726d6cba4b6c72c1f34e47291cd"}, - {file = "typing_extensions-4.9.0.tar.gz", hash = "sha256:23478f88c37f27d76ac8aee6c905017a143b0b1b886c3c9f66bc2fd94f9f5783"}, + {file = "typing_extensions-4.10.0-py3-none-any.whl", hash = "sha256:69b1a937c3a517342112fb4c6df7e72fc39a38e7891a5730ed4985b5214b5475"}, + {file = "typing_extensions-4.10.0.tar.gz", hash = "sha256:b0abd7c89e8fb96f98db18d86106ff1d90ab692004eb746cf6eda2682f91b3cb"}, ] [[package]] name = "typing-inspect" version = "0.9.0" summary = "Runtime inspection utilities for typing module." +groups = ["default"] dependencies = [ "mypy-extensions>=0.3.0", "typing-extensions>=3.7.4", @@ -3381,6 +3567,7 @@ name = "tzdata" version = "2024.1" requires_python = ">=2" summary = "Provider of IANA time zone data" +groups = ["default"] files = [ {file = "tzdata-2024.1-py2.py3-none-any.whl", hash = "sha256:9068bc196136463f5245e51efda838afa15aaeca9903f49050dfa2679db4d252"}, {file = "tzdata-2024.1.tar.gz", hash = "sha256:2674120f8d891909751c38abcdfd386ac0a5a1127954fbc332af6b5ceae07efd"}, @@ -3391,6 +3578,7 @@ name = "tzlocal" version = "5.2" requires_python = ">=3.8" summary = "tzinfo object for the local timezone" +groups = ["default"] dependencies = [ "tzdata; platform_system == \"Windows\"", ] @@ -3404,6 +3592,7 @@ name = "ujson" version = "5.9.0" requires_python = ">=3.8" summary = "Ultra fast JSON encoder and decoder for Python" +groups = ["default"] files = [ {file = "ujson-5.9.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ab71bf27b002eaf7d047c54a68e60230fbd5cd9da60de7ca0aa87d0bccead8fa"}, {file = "ujson-5.9.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7a365eac66f5aa7a7fdf57e5066ada6226700884fc7dce2ba5483538bc16c8c5"}, @@ -3457,6 +3646,7 @@ name = "unstract-adapters" version = "0.2.2" requires_python = "<3.12,>=3.9" summary = "Unstract Adapters" +groups = ["default"] dependencies = [ "SQLAlchemy==2.0.26", "anthropic==0.7.8", @@ -3490,6 +3680,7 @@ name = "unstract-sdk" version = "0.11.2" requires_python = "<3.11.1,>=3.9" summary = "A framework for writing Unstract Tools/Apps" +groups = ["default"] dependencies = [ "filetype==1.2.0", "jsonschema~=4.18.2", @@ -3512,6 +3703,7 @@ name = "urllib3" version = "1.26.18" requires_python = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*" summary = "HTTP library with thread-safe connection pooling, file post, and more." +groups = ["default"] files = [ {file = "urllib3-1.26.18-py2.py3-none-any.whl", hash = "sha256:34b97092d7e0a3a8cf7cd10e386f401b3737364026c45e622aa02903dffe0f07"}, {file = "urllib3-1.26.18.tar.gz", hash = "sha256:f8ecc1bba5667413457c529ab955bf8c67b45db799d159066261719e328580a0"}, @@ -3522,6 +3714,7 @@ name = "validators" version = "0.22.0" requires_python = ">=3.8" summary = "Python Data Validation for Humans™" +groups = ["default"] files = [ {file = "validators-0.22.0-py3-none-any.whl", hash = "sha256:61cf7d4a62bbae559f2e54aed3b000cea9ff3e2fdbe463f51179b92c58c9585a"}, {file = "validators-0.22.0.tar.gz", hash = "sha256:77b2689b172eeeb600d9605ab86194641670cdb73b60afd577142a9397873370"}, @@ -3531,6 +3724,7 @@ files = [ name = "vecs" version = "0.1.0" summary = "pgvector client" +groups = ["default"] dependencies = [ "pgvector==0.1.*", "sqlalchemy==2.*", @@ -3544,6 +3738,7 @@ name = "weaviate-client" version = "3.25.3" requires_python = ">=3.8" summary = "A python native Weaviate client" +groups = ["default"] dependencies = [ "authlib<2.0.0,>=1.2.1", "requests<3.0.0,>=2.30.0", @@ -3559,6 +3754,7 @@ name = "websockets" version = "11.0.3" requires_python = ">=3.7" summary = "An implementation of the WebSocket Protocol (RFC 6455 & 7692)" +groups = ["default"] files = [ {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3ccc8a0c387629aec40f2fc9fdcb4b9d5431954f934da3eaf16cdc94f67dbfac"}, {file = "websockets-11.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d67ac60a307f760c6e65dad586f556dde58e683fab03323221a4e530ead6f74d"}, @@ -3617,6 +3813,7 @@ name = "werkzeug" version = "3.0.1" requires_python = ">=3.8" summary = "The comprehensive WSGI web application library." +groups = ["default"] dependencies = [ "MarkupSafe>=2.1.1", ] @@ -3630,6 +3827,8 @@ name = "win32-setctime" version = "1.1.0" requires_python = ">=3.5" summary = "A small Python utility to set file creation time on Windows" +groups = ["default"] +marker = "sys_platform == \"win32\"" files = [ {file = "win32_setctime-1.1.0-py3-none-any.whl", hash = "sha256:231db239e959c2fe7eb1d7dc129f11172354f98361c4fa2d6d2d7e278baa8aad"}, {file = "win32_setctime-1.1.0.tar.gz", hash = "sha256:15cf5750465118d6929ae4de4eb46e8edae9a5634350c01ba582df868e932cb2"}, @@ -3640,6 +3839,7 @@ name = "wrapt" version = "1.16.0" requires_python = ">=3.6" summary = "Module for decorators, wrappers and monkey patching." +groups = ["default"] files = [ {file = "wrapt-1.16.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ffa565331890b90056c01db69c0fe634a776f8019c143a5ae265f9c6bc4bd6d4"}, {file = "wrapt-1.16.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4fdb9275308292e880dcbeb12546df7f3e0f96c6b41197e0cf37d2826359020"}, @@ -3680,6 +3880,7 @@ name = "yarl" version = "1.9.4" requires_python = ">=3.7" summary = "Yet another URL library" +groups = ["default"] dependencies = [ "idna>=2.0", "multidict>=4.0", @@ -3739,6 +3940,8 @@ name = "zipp" version = "3.17.0" requires_python = ">=3.8" summary = "Backport of pathlib-compatible object wrapper for zip files" +groups = ["default"] +marker = "python_version < \"3.10\"" files = [ {file = "zipp-3.17.0-py3-none-any.whl", hash = "sha256:0e923e726174922dce09c53c59ad483ff7bbb8e572e00c7f7c46b88556409f31"}, {file = "zipp-3.17.0.tar.gz", hash = "sha256:84e64a1c28cf7e91ed2078bb8cc8c259cb19b76942096c8d7b84947690cabaf0"},