hash
stringlengths
40
40
authorName
stringclasses
42 values
authorEmail
stringclasses
41 values
date
timestamp[ms]date
2021-07-26 09:52:55
2025-07-18 10:19:56
subject
stringlengths
11
116
diff
stringlengths
0
987k
1d17211189944957940e8c616a02658eb279d689
Andrea Francis Soria Jimenez
2023-08-04T16:23:43
Increase chart version because of new job (#1624)
diff --git a/chart/Chart.yaml b/chart/Chart.yaml index fbb83507..c0705ae7 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -21 +21 @@ type: application -version: 1.15.3 +version: 1.16.0
91bd4dfc9cbed882c007899d8e707f41fe7c73d8
Andrea Francis Soria Jimenez
2023-08-04T16:16:15
Enable every 10 minutes (#1623)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index dfb51464..e84fd7ed 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -191,0 +192,4 @@ backfill: +deleteIndexes: + schedule: "*/10 * * * *" + # every ten minutes + diff --git a/chart/env/staging.yaml b/chart/env/staging.yaml index 18e30b9d..e1cf0e12 100644 --- a/chart/env/staging.yaml +++ b/chart/env/staging.yaml @@ -150,0 +151,4 @@ backfill: +deleteIndexes: + schedule: "*/10 * * * *" + # every ten minutes +
f4cff008d50e32127648596bcf5efdb586c76789
Andrea Francis Soria Jimenez
2023-08-04T16:02:59
K8s job to periodically remove indexes (#1536)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 28827aaf..dfb51464 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -139,0 +140 @@ duckDBIndex: + expiredTimeIntervalSeconds: 259_200 # 3 days diff --git a/chart/templates/_common/_helpers.tpl b/chart/templates/_common/_helpers.tpl index dd6ad00b..f710be22 100644 --- a/chart/templates/_common/_helpers.tpl +++ b/chart/templates/_common/_helpers.tpl @@ -102,0 +103,5 @@ app.kubernetes.io/component: "{{ include "name" . }}-backfill" +{{- define "labels.deleteIndexes" -}} +{{ include "hf.labels.commons" . }} +app.kubernetes.io/component: "{{ include "name" . }}-deleteIndexes" +{{- end -}} + diff --git a/chart/templates/cron-jobs/delete-indexes/_container.tpl b/chart/templates/cron-jobs/delete-indexes/_container.tpl new file mode 100644 index 00000000..de503196 --- /dev/null +++ b/chart/templates/cron-jobs/delete-indexes/_container.tpl @@ -0,0 +1,24 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +{{- define "containerDeleteIndexes" -}} +- name: "{{ include "name" . }}-delete-indexes" + image: {{ include "jobs.cacheMaintenance.image" . }} + imagePullPolicy: {{ .Values.images.pullPolicy }} + securityContext: + allowPrivilegeEscalation: false + resources: {{ toYaml .Values.deleteIndexes.resources | nindent 4 }} + env: + {{ include "envCache" . | nindent 2 }} + {{ include "envQueue" . | nindent 2 }} + {{ include "envCommon" . | nindent 2 }} + {{ include "envMetrics" . | nindent 2 }} + - name: CACHE_MAINTENANCE_ACTION + value: {{ .Values.deleteIndexes.action | quote }} + - name: LOG_LEVEL + value: {{ .Values.deleteIndexes.log.level | quote }} + - name: DUCKDB_INDEX_CACHE_DIRECTORY + value: {{ .Values.duckDBIndex.cacheDirectory}} + - name: DUCKDB_INDEX_EXPIRED_TIME_INTERVAL_SECONDS + value: {{ .Values.duckDBIndex.expiredTimeIntervalSeconds}} +{{- end -}} diff --git a/chart/templates/cron-jobs/delete-indexes/job.yaml b/chart/templates/cron-jobs/delete-indexes/job.yaml new file mode 100644 index 00000000..dc5dd496 --- /dev/null +++ b/chart/templates/cron-jobs/delete-indexes/job.yaml @@ -0,0 +1,24 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2022 The HuggingFace Authors. + +{{- if and .Values.images.jobs.cacheMaintenance .Values.deleteIndexes.enabled }} +apiVersion: batch/v1 +kind: CronJob +metadata: + labels: {{ include "labels.deleteIndexes" . | nindent 4 }} + name: "{{ include "name" . }}-job-delete-indexes" + namespace: {{ .Release.Namespace }} +spec: + schedule: {{ .Values.deleteIndexes.schedule | quote }} + jobTemplate: + spec: + ttlSecondsAfterFinished: 180 + template: + spec: + restartPolicy: OnFailure + {{- include "image.imagePullSecrets" . | nindent 6 }} + nodeSelector: {{ toYaml .Values.deleteIndexes.nodeSelector | nindent 12 }} + tolerations: {{ toYaml .Values.deleteIndexes.tolerations | nindent 12 }} + containers: {{ include "containerDeleteIndexes" . | nindent 12 }} + securityContext: {{ include "securityContext" . | nindent 12 }} +{{- end}} diff --git a/chart/templates/services/search/_container.tpl b/chart/templates/services/search/_container.tpl index 0e33c156..b9b3776d 100644 --- a/chart/templates/services/search/_container.tpl +++ b/chart/templates/services/search/_container.tpl @@ -50 +50 @@ - - name: DUCKDB_INDEX_STORAGE_DIRECTORY + - name: DUCKDB_INDEX_CACHE_DIRECTORY diff --git a/chart/values.yaml b/chart/values.yaml index ab17fe84..fb164c9e 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -263,0 +264,2 @@ duckDBIndex: + # the time interval at which a downloaded index will be considered as expired and will be deleted + expiredTimeIntervalSeconds: 600 @@ -323,0 +326,17 @@ backfill: +deleteIndexes: + enabled: true + log: + level: "info" + action: "delete-indexes" + error_codes_to_retry: "" + schedule: "0 0 * * *" + # at 00:00 + nodeSelector: {} + resources: + requests: + cpu: 0 + limits: + cpu: 0 + tolerations: [] + + diff --git a/jobs/cache_maintenance/src/cache_maintenance/config.py b/jobs/cache_maintenance/src/cache_maintenance/config.py index 79a75ec5..010aa074 100644 --- a/jobs/cache_maintenance/src/cache_maintenance/config.py +++ b/jobs/cache_maintenance/src/cache_maintenance/config.py @@ -32,0 +33,27 @@ class BackfillConfig: +DUCKDB_INDEX_CACHE_DIRECTORY = None +DUCKDB_INDEX_SUBDIRECTORY = "downloads" +DUCKDB_INDEX_EXPIRED_TIME_INTERVAL_SECONDS = 10 * 60 # 10 minutes +DUCKDB_INDEX_FILE_EXTENSION = ".duckdb" + + +@dataclass(frozen=True) +class DuckDbConfig: + cache_directory: Optional[str] = DUCKDB_INDEX_CACHE_DIRECTORY + subdirectory: str = DUCKDB_INDEX_SUBDIRECTORY + expired_time_interval_seconds: int = DUCKDB_INDEX_EXPIRED_TIME_INTERVAL_SECONDS + file_extension: str = DUCKDB_INDEX_FILE_EXTENSION + + @classmethod + def from_env(cls) -> "DuckDbConfig": + env = Env(expand_vars=True) + with env.prefixed("DUCKDB_INDEX_"): + return cls( + cache_directory=env.str(name="CACHE_DIRECTORY", default=DUCKDB_INDEX_CACHE_DIRECTORY), + subdirectory=env.str(name="SUBDIRECTORY", default=DUCKDB_INDEX_SUBDIRECTORY), + expired_time_interval_seconds=env.int( + name="EXPIRED_TIME_INTERVAL_SECONDS", default=DUCKDB_INDEX_EXPIRED_TIME_INTERVAL_SECONDS + ), + file_extension=env.str(name="FILE_EXTENSION", default=DUCKDB_INDEX_FILE_EXTENSION), + ) + + @@ -44,0 +72 @@ class JobConfig: + duckdb: DuckDbConfig = field(default_factory=DuckDbConfig) @@ -58,0 +87 @@ class JobConfig: + duckdb=DuckDbConfig.from_env(), diff --git a/jobs/cache_maintenance/src/cache_maintenance/delete_indexes.py b/jobs/cache_maintenance/src/cache_maintenance/delete_indexes.py new file mode 100644 index 00000000..7761a341 --- /dev/null +++ b/jobs/cache_maintenance/src/cache_maintenance/delete_indexes.py @@ -0,0 +1,24 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +import glob +import logging +import os +from datetime import datetime, timedelta + +from libcommon.storage import StrPath + + +def delete_indexes( + duckdb_index_cache_directory: StrPath, subdirectory: str, file_extension: str, expired_time_interval_seconds: int +) -> None: + logging.info("delete indexes") + indexes_folder = f"{duckdb_index_cache_directory}/{subdirectory}/**/*{file_extension}" + logging.info(f"looking for all files with pattern {indexes_folder}") + now = datetime.now().replace(tzinfo=None) + for path in glob.glob(indexes_folder, recursive=True): + last_access_time_value = os.path.getatime(path) + last_access_datetime = datetime.fromtimestamp(last_access_time_value).replace(tzinfo=None) + if last_access_datetime + timedelta(seconds=expired_time_interval_seconds) <= now: + logging.info(f"deleting file {path=} {last_access_datetime=}") + os.remove(path) diff --git a/jobs/cache_maintenance/src/cache_maintenance/main.py b/jobs/cache_maintenance/src/cache_maintenance/main.py index a6926853..29673e9c 100644 --- a/jobs/cache_maintenance/src/cache_maintenance/main.py +++ b/jobs/cache_maintenance/src/cache_maintenance/main.py @@ -14,0 +15 @@ from libcommon.resources import ( +from libcommon.storage import init_duckdb_index_cache_dir @@ -17,0 +19 @@ from cache_maintenance.config import JobConfig +from cache_maintenance.delete_indexes import delete_indexes @@ -24 +26 @@ def run_job() -> None: - supported_actions = ["backfill", "collect-metrics", "skip"] + supported_actions = ["backfill", "collect-metrics", "delete-indexes", "skip"] @@ -34 +36 @@ def run_job() -> None: - + duckdb_index_cache_directory = init_duckdb_index_cache_dir(directory=job_config.duckdb.cache_directory) @@ -58 +59,0 @@ def run_job() -> None: - @@ -68,0 +70,7 @@ def run_job() -> None: + elif action == "delete-indexes": + delete_indexes( + duckdb_index_cache_directory=duckdb_index_cache_directory, + subdirectory=job_config.duckdb.subdirectory, + expired_time_interval_seconds=job_config.duckdb.expired_time_interval_seconds, + file_extension=job_config.duckdb.file_extension, + ) diff --git a/jobs/cache_maintenance/tests/test_delete_indexes.py b/jobs/cache_maintenance/tests/test_delete_indexes.py new file mode 100644 index 00000000..dfa0c49a --- /dev/null +++ b/jobs/cache_maintenance/tests/test_delete_indexes.py @@ -0,0 +1,34 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +import os +import time +from pathlib import Path + +from cache_maintenance.delete_indexes import delete_indexes + + +def test_delete_indexes() -> None: + duckdb_index_cache_directory = "/tmp" + subdirectory = "download" + file_extension = ".duckdb" + expired_time_interval_seconds = 2 + os.mkdir(f"{duckdb_index_cache_directory}/{subdirectory}") + + index_file = Path(f"{duckdb_index_cache_directory}/{subdirectory}/index{file_extension}") + index_file.touch() + + # ensure file exists + assert index_file.is_file() + + # try to delete it inmediatly after creation, it should remain + delete_indexes(duckdb_index_cache_directory, subdirectory, file_extension, expired_time_interval_seconds) + assert index_file.is_file() + + # try to delete it after more that time interval, it should be deleted + index_file.touch() + time.sleep(expired_time_interval_seconds + 2) + delete_indexes(duckdb_index_cache_directory, subdirectory, file_extension, expired_time_interval_seconds) + assert not index_file.is_file() + + os.rmdir(f"{duckdb_index_cache_directory}/{subdirectory}") diff --git a/services/search/README.md b/services/search/README.md index 6d692bb8..3103e1e8 100644 --- a/services/search/README.md +++ b/services/search/README.md @@ -10 +10 @@ The service can be configured using environment variables. They are grouped by s -- `DUCKDB_INDEX_STORAGE_DIRECTORY`: directory where the temporal duckdb index files are downloaded. Defaults to empty. +- `DUCKDB_INDEX_CACHE_DIRECTORY`: directory where the temporal duckdb index files are downloaded. Defaults to empty. diff --git a/services/search/src/search/app.py b/services/search/src/search/app.py index e77fc190..ba71f39a 100644 --- a/services/search/src/search/app.py +++ b/services/search/src/search/app.py @@ -40 +40 @@ def create_app_with_config(app_config: AppConfig) -> Starlette: - duckdb_index_cache_directory = init_duckdb_index_cache_dir(directory=app_config.duckdb_index.storage_directory) + duckdb_index_cache_directory = init_duckdb_index_cache_dir(directory=app_config.duckdb_index.cache_directory) @@ -42 +42 @@ def create_app_with_config(app_config: AppConfig) -> Starlette: - raise RuntimeError("The duckdb_index storage directory could not be accessed. Exiting.") + raise RuntimeError("The duckdb_index cache directory could not be accessed. Exiting.") diff --git a/services/search/src/search/config.py b/services/search/src/search/config.py index 68201ff7..8c714d49 100644 --- a/services/search/src/search/config.py +++ b/services/search/src/search/config.py @@ -18 +18 @@ from libcommon.config import ( -DUCKDB_INDEX_STORAGE_DIRECTORY = None +DUCKDB_INDEX_CACHE_DIRECTORY = None @@ -24 +24 @@ class DuckDbIndexConfig: - storage_directory: Optional[str] = DUCKDB_INDEX_STORAGE_DIRECTORY + cache_directory: Optional[str] = DUCKDB_INDEX_CACHE_DIRECTORY @@ -32 +32 @@ class DuckDbIndexConfig: - storage_directory=env.str(name="STORAGE_DIRECTORY", default=DUCKDB_INDEX_STORAGE_DIRECTORY), + cache_directory=env.str(name="CACHE_DIRECTORY", default=DUCKDB_INDEX_CACHE_DIRECTORY), diff --git a/services/search/tests/conftest.py b/services/search/tests/conftest.py index 11ff97fb..f4db7e0f 100644 --- a/services/search/tests/conftest.py +++ b/services/search/tests/conftest.py @@ -97 +97 @@ def duckdb_index_cache_directory(app_config: AppConfig) -> StrPath: - return init_duckdb_index_cache_dir(app_config.duckdb_index.storage_directory) + return init_duckdb_index_cache_dir(app_config.duckdb_index.cache_directory) diff --git a/tools/docker-compose-datasets-server.yml b/tools/docker-compose-datasets-server.yml index e0fffcf6..ad056681 100644 --- a/tools/docker-compose-datasets-server.yml +++ b/tools/docker-compose-datasets-server.yml @@ -127 +127 @@ services: - - duckdb-index:${DUCKDB_INDEX_STORAGE_DIRECTORY-/duckdb-index} + - duckdb-index:${DUCKDB_INDEX_CACHE_DIRECTORY-/duckdb-index} @@ -135 +135 @@ services: - DUCKDB_INDEX_STORAGE_DIRECTORY: ${DUCKDB_INDEX_STORAGE_DIRECTORY-/duckdb-index} + DUCKDB_INDEX_CACHE_DIRECTORY: ${DUCKDB_INDEX_CACHE_DIRECTORY-/duckdb-index} diff --git a/tools/docker-compose-dev-datasets-server.yml b/tools/docker-compose-dev-datasets-server.yml index 222d4756..f2d798cb 100644 --- a/tools/docker-compose-dev-datasets-server.yml +++ b/tools/docker-compose-dev-datasets-server.yml @@ -130 +130 @@ services: - - duckdb-index:${DUCKDB_INDEX_STORAGE_DIRECTORY-/duckdb-index} + - duckdb-index:${DUCKDB_INDEX_CACHE_DIRECTORY-/duckdb-index} @@ -138 +138 @@ services: - DUCKDB_INDEX_STORAGE_DIRECTORY: ${DUCKDB_INDEX_STORAGE_DIRECTORY-/duckdb-index} + DUCKDB_INDEX_CACHE_DIRECTORY: ${DUCKDB_INDEX_CACHE_DIRECTORY-/duckdb-index}
7bc51e3c18d3817f1a6c3f9e5604faa4f0d0f372
Albert Villanova del Moral
2023-08-04T11:40:53
Fix e2e test_16_statistics (#1622)
diff --git a/e2e/tests/test_16_statistics.py b/e2e/tests/test_16_statistics.py index 2d69b09d..f6ad8f73 100644 --- a/e2e/tests/test_16_statistics.py +++ b/e2e/tests/test_16_statistics.py @@ -16 +16,2 @@ def test_statistics_endpoint( - dataset, config, split = get_default_config_split(hf_public_dataset_repo_csv_data) + dataset = hf_public_dataset_repo_csv_data + config, split = get_default_config_split()
067bc934df3eaf043c5d1d130212001be2367811
Albert Villanova del Moral
2023-08-04T10:55:43
Fix authentication with DownloadConfig (#1620)
diff --git a/services/worker/src/worker/job_runners/config/parquet_and_info.py b/services/worker/src/worker/job_runners/config/parquet_and_info.py index 57ce8f2c..206e04cf 100644 --- a/services/worker/src/worker/job_runners/config/parquet_and_info.py +++ b/services/worker/src/worker/job_runners/config/parquet_and_info.py @@ -1257 +1257 @@ def compute_config_parquet_and_info_response( - download_config = DownloadConfig(delete_extracted=True) + download_config = DownloadConfig(delete_extracted=True, token=hf_token) diff --git a/services/worker/src/worker/job_runners/config/split_names_from_streaming.py b/services/worker/src/worker/job_runners/config/split_names_from_streaming.py index 8c300c26..a327922d 100644 --- a/services/worker/src/worker/job_runners/config/split_names_from_streaming.py +++ b/services/worker/src/worker/job_runners/config/split_names_from_streaming.py @@ -5 +5 @@ import logging -from typing import List, Optional, Union +from typing import List, Optional @@ -7 +7 @@ from typing import List, Optional, Union -from datasets import get_dataset_split_names +from datasets import DownloadConfig, get_dataset_split_names @@ -61,2 +60,0 @@ def compute_split_names_from_streaming_response( - use_auth_token: Union[bool, str, None] = hf_token if hf_token is not None else False - @@ -66 +64,3 @@ def compute_split_names_from_streaming_response( - for split in get_dataset_split_names(path=dataset, config_name=config, use_auth_token=use_auth_token) + for split in get_dataset_split_names( + path=dataset, config_name=config, download_config=DownloadConfig(token=hf_token) + ) diff --git a/services/worker/src/worker/job_runners/split/first_rows_from_streaming.py b/services/worker/src/worker/job_runners/split/first_rows_from_streaming.py index 7954cd3e..546dc8f9 100644 --- a/services/worker/src/worker/job_runners/split/first_rows_from_streaming.py +++ b/services/worker/src/worker/job_runners/split/first_rows_from_streaming.py @@ -9,0 +10 @@ from datasets import ( + DownloadConfig, @@ -151 +152 @@ def compute_first_rows_response( - use_auth_token=use_auth_token, + download_config=DownloadConfig(token=hf_token), @@ -165,0 +167 @@ def compute_first_rows_response( + download_config=DownloadConfig(token=hf_token), diff --git a/services/worker/src/worker/utils.py b/services/worker/src/worker/utils.py index 0d5087e4..5fbd3443 100644 --- a/services/worker/src/worker/utils.py +++ b/services/worker/src/worker/utils.py @@ -224 +224 @@ def get_rows( - download_config = DownloadConfig(delete_extracted=True) + download_config = DownloadConfig(delete_extracted=True, token=use_auth_token)
0bfb1cb2ed01e4e17b07eabd70624b0ed0b1fbb0
Albert Villanova del Moral
2023-08-04T09:36:40
Fix HfFileSystem (#1619)
diff --git a/services/worker/src/worker/job_runners/config/parquet_and_info.py b/services/worker/src/worker/job_runners/config/parquet_and_info.py index 8ca98eef..57ce8f2c 100644 --- a/services/worker/src/worker/job_runners/config/parquet_and_info.py +++ b/services/worker/src/worker/job_runners/config/parquet_and_info.py @@ -38 +37,0 @@ from datasets.data_files import EmptyDatasetError as _EmptyDatasetError -from datasets.data_files import Url @@ -49 +47,0 @@ from datasets.utils.py_utils import asdict, map_nested -from fsspec.implementations.http import HTTPFileSystem @@ -56,0 +55 @@ from huggingface_hub.hf_api import CommitInfo, DatasetInfo, HfApi, RepoFile +from huggingface_hub.hf_file_system import HfFileSystem @@ -220 +219 @@ def raise_if_blocked( -def is_parquet_builder_with_hub_files(builder: DatasetBuilder, hf_endpoint: str) -> bool: +def is_parquet_builder_with_hub_files(builder: DatasetBuilder) -> bool: @@ -225,3 +224 @@ def is_parquet_builder_with_hub_files(builder: DatasetBuilder, hf_endpoint: str) - if not isinstance(data_file, Url): - return False - if not data_file.startswith(hf_endpoint + "/datasets/" + str(builder.repo_id) + "/"): + if not data_file.startswith(f"hf://datasets/{builder.repo_id}@"): @@ -614,3 +611 @@ def copy_parquet_files(builder: DatasetBuilder) -> List[CommitOperationCopy]: - src_revision, src_path_in_repo = data_file.split("/datasets/" + builder.repo_id + "/resolve/", 1)[1].split( - "/", 1 - ) + src_revision, src_path_in_repo = data_file.split("@")[1].split("/", 1) @@ -648,3 +643,3 @@ class TooBigRowGroupsError(ParquetValidationError): -def get_parquet_file_and_size(url: str, fs: HTTPFileSystem, hf_token: Optional[str]) -> Tuple[pq.ParquetFile, int]: - headers = get_authentication_headers_for_url(url, use_auth_token=hf_token) - f = fs.open(url, headers=headers) +def get_parquet_file_and_size(url: str, hf_endpoint: str, hf_token: Optional[str]) -> Tuple[pq.ParquetFile, int]: + fs = HfFileSystem(endpoint=hf_endpoint, token=hf_token) + f = fs.open(url) @@ -655 +650 @@ def retry_and_validate_get_parquet_file_and_size( - url: str, fs: HTTPFileSystem, hf_token: Optional[str], validate: Optional[Callable[[pq.ParquetFile], None]] + url: str, hf_endpoint: str, hf_token: Optional[str], validate: Optional[Callable[[pq.ParquetFile], None]] @@ -659 +654 @@ def retry_and_validate_get_parquet_file_and_size( - pf, size = retry(on=[pa.ArrowInvalid], sleeps=sleeps)(get_parquet_file_and_size)(url, fs, hf_token) + pf, size = retry(on=[pa.ArrowInvalid], sleeps=sleeps)(get_parquet_file_and_size)(url, hf_endpoint, hf_token) @@ -705 +700,4 @@ def fill_builder_info( - builder: DatasetBuilder, hf_token: Optional[str], validate: Optional[Callable[[pq.ParquetFile], None]] + builder: DatasetBuilder, + hf_endpoint: str, + hf_token: Optional[str], + validate: Optional[Callable[[pq.ParquetFile], None]], @@ -711 +709,4 @@ def fill_builder_info( - fs = HTTPFileSystem() + builder.info.builder_name = builder.name + builder.info.dataset_name = builder.dataset_name + builder.info.config_name = builder.config.name + builder.info.version = builder.config.version @@ -720 +721,4 @@ def fill_builder_info( - retry_and_validate_get_parquet_file_and_size, fs=fs, hf_token=hf_token, validate=validate + retry_and_validate_get_parquet_file_and_size, + hf_endpoint=hf_endpoint, + hf_token=hf_token, + validate=validate, @@ -1268 +1272 @@ def compute_config_parquet_and_info_response( - if is_parquet_builder_with_hub_files(builder, hf_endpoint=hf_endpoint): + if is_parquet_builder_with_hub_files(builder): @@ -1272 +1276 @@ def compute_config_parquet_and_info_response( - fill_builder_info(builder, hf_token=hf_token, validate=validate) + fill_builder_info(builder, hf_endpoint=hf_endpoint, hf_token=hf_token, validate=validate) diff --git a/services/worker/tests/job_runners/config/test_parquet_and_info.py b/services/worker/tests/job_runners/config/test_parquet_and_info.py index 247f754e..5ed90f98 100644 --- a/services/worker/tests/job_runners/config/test_parquet_and_info.py +++ b/services/worker/tests/job_runners/config/test_parquet_and_info.py @@ -949,0 +950 @@ def test_fill_builder_info( + app_config: AppConfig, @@ -960 +961 @@ def test_fill_builder_info( - fill_builder_info(builder, hf_token=None, validate=validate) + fill_builder_info(builder, hf_endpoint=app_config.common.hf_endpoint, hf_token=None, validate=validate) @@ -965 +966 @@ def test_fill_builder_info( - fill_builder_info(builder, hf_token=None, validate=validate) + fill_builder_info(builder, hf_endpoint=app_config.common.hf_endpoint, hf_token=None, validate=validate)
5ddc915f75fa29cd7ac557be3e827111f8831df2
Albert Villanova del Moral
2023-08-04T06:55:53
Fix cached filenames (#1617)
diff --git a/services/worker/src/worker/job_runners/config/parquet_and_info.py b/services/worker/src/worker/job_runners/config/parquet_and_info.py index 68a6066a..8ca98eef 100644 --- a/services/worker/src/worker/job_runners/config/parquet_and_info.py +++ b/services/worker/src/worker/job_runners/config/parquet_and_info.py @@ -619,11 +619,2 @@ def copy_parquet_files(builder: DatasetBuilder) -> List[CommitOperationCopy]: - - # for forward compatibility with https://github.com/huggingface/datasets/pull/5331 - parquet_name = str(builder.dataset_name) if hasattr(builder, "dataset_name") else builder.name - - if num_shards > 1: - path_in_repo = ( - f"{builder.config.name}/{parquet_name}-{split}-{shard_idx:05d}-of-{num_shards:05d}.parquet" - ) - else: - path_in_repo = f"{builder.config.name}/{parquet_name}-{split}.parquet" - + filename_suffix = f"-{shard_idx:05d}-of-{num_shards:05d}" if num_shards > 1 else "" + path_in_repo = f"{builder.config.name}/{builder.dataset_name}-{split}{filename_suffix}.parquet" @@ -853,2 +844,2 @@ def list_generated_parquet_files(builder: DatasetBuilder, partial: bool = False) - # - {builder.name}-{split}.parquet if there is only one shard - # - {builder.name}-{split}-{shard_idx:05d}-of-{num_shards:05d}.parquet otherwise + # - {builder.dataset_name}-{split}.parquet if there is only one shard + # - {builder.dataset_name}-{split}-{shard_idx:05d}-of-{num_shards:05d}.parquet otherwise @@ -856 +847,2 @@ def list_generated_parquet_files(builder: DatasetBuilder, partial: bool = False) - fname_prefix = f"{builder.name}-{split}" + filename_suffix = "-{shard_idx:05d}-of-" + f"{num_shards:05d}" if num_shards > 1 else "" + filename = f"{builder.dataset_name}-{split}{filename_suffix}.parquet" @@ -862,2 +854 @@ def list_generated_parquet_files(builder: DatasetBuilder, partial: bool = False) - fname_prefix - + (f"-{shard_idx:05d}-of-{num_shards:05d}.parquet" if num_shards > 1 else ".parquet"), + filename.format(shard_idx=shard_idx), diff --git a/services/worker/tests/fixtures/hub.py b/services/worker/tests/fixtures/hub.py index afeed65e..b7d39441 100644 --- a/services/worker/tests/fixtures/hub.py +++ b/services/worker/tests/fixtures/hub.py @@ -359,0 +360 @@ def create_dataset_info_response_for_csv(dataset: str, config: str) -> Any: + dataset_name = dataset.split("/")[-1] @@ -367,0 +369 @@ def create_dataset_info_response_for_csv(dataset: str, config: str) -> Any: + "dataset_name": dataset_name, @@ -369 +371 @@ def create_dataset_info_response_for_csv(dataset: str, config: str) -> Any: - "splits": {"train": {"name": "train", "num_bytes": 96, "num_examples": 4, "dataset_name": "csv"}}, + "splits": {"train": {"name": "train", "num_bytes": 96, "num_examples": 4, "dataset_name": dataset_name}}, @@ -382 +384 @@ def create_dataset_info_response_for_csv(dataset: str, config: str) -> Any: -def create_dataset_info_response_for_partially_generated_big_csv(config: str) -> Any: +def create_dataset_info_response_for_partially_generated_big_csv(dataset: str, config: str) -> Any: @@ -385,0 +388 @@ def create_dataset_info_response_for_partially_generated_big_csv(config: str) -> + dataset_name = dataset.split("/")[-1] @@ -393,0 +397 @@ def create_dataset_info_response_for_partially_generated_big_csv(config: str) -> + "dataset_name": dataset_name, @@ -400 +404,2 @@ def create_dataset_info_response_for_partially_generated_big_csv(config: str) -> -def create_dataset_info_response_for_big_parquet() -> Any: +def create_dataset_info_response_for_big_parquet(dataset: str, config: str) -> Any: + dataset_name = dataset.split("/")[-1] @@ -406,0 +412,4 @@ def create_dataset_info_response_for_big_parquet() -> Any: + "builder_name": "parquet", + "config_name": config, + "dataset_name": dataset_name, + "version": {"version_str": "0.0.0", "major": 0, "minor": 0, "patch": 0}, @@ -430 +439,2 @@ def create_dataset_info_response_for_big_parquet_no_info() -> Any: -def create_dataset_info_response_for_audio() -> Any: +def create_dataset_info_response_for_audio(dataset: str, config: str) -> Any: + dataset_name = dataset.split("/")[-1] @@ -436,0 +447,4 @@ def create_dataset_info_response_for_audio() -> Any: + "builder_name": "parquet", + "config_name": config, + "dataset_name": dataset_name, + "version": {"version_str": "0.0.0", "major": 0, "minor": 0, "patch": 0}, @@ -449 +463 @@ def create_parquet_and_info_response( - + dataset_name = dataset.split("/")[-1] @@ -453 +467 @@ def create_parquet_and_info_response( - filename = "csv-train.parquet" if "csv" in data_type else "parquet-train.parquet" + filename = f"{dataset_name}-train.parquet" @@ -466 +480 @@ def create_parquet_and_info_response( - else create_dataset_info_response_for_partially_generated_big_csv(config) + else create_dataset_info_response_for_partially_generated_big_csv(dataset, config) @@ -468 +482 @@ def create_parquet_and_info_response( - else create_dataset_info_response_for_audio() + else create_dataset_info_response_for_audio(dataset, config) @@ -470 +484 @@ def create_parquet_and_info_response( - else create_dataset_info_response_for_big_parquet() + else create_dataset_info_response_for_big_parquet(dataset, config)
4ea6607eb5becd577923444e0299059095020e97
Albert Villanova del Moral
2023-08-03T19:46:18
Fix default config name (#1616)
diff --git a/e2e/tests/test_11_api.py b/e2e/tests/test_11_api.py index b3a43305..d380be47 100644 --- a/e2e/tests/test_11_api.py +++ b/e2e/tests/test_11_api.py @@ -35 +35 @@ def test_auth_e2e( - dataset, config, split = get_default_config_split(hf_dataset_repos_csv_data[type]) + dataset = hf_dataset_repos_csv_data[type] @@ -74 +74,2 @@ def test_endpoint( - dataset, config, split = get_default_config_split(hf_public_dataset_repo_csv_data) + dataset = hf_public_dataset_repo_csv_data + config, split = get_default_config_split() @@ -103 +104,2 @@ def test_rows_endpoint( - dataset, config, split = get_default_config_split(hf_public_dataset_repo_csv_data) + dataset = hf_public_dataset_repo_csv_data + config, split = get_default_config_split() diff --git a/e2e/tests/test_52_search.py b/e2e/tests/test_52_search.py index 98840903..cf36652c 100644 --- a/e2e/tests/test_52_search.py +++ b/e2e/tests/test_52_search.py @@ -16 +16,2 @@ def test_search_endpoint( - dataset, config, split = get_default_config_split(hf_public_dataset_repo_csv_data) + dataset = hf_public_dataset_repo_csv_data + config, split = get_default_config_split() diff --git a/e2e/tests/utils.py b/e2e/tests/utils.py index c475ff60..b426b188 100644 --- a/e2e/tests/utils.py +++ b/e2e/tests/utils.py @@ -100,2 +100,2 @@ def get_openapi_body_example(path: str, status: int, example_name: str) -> Any: -def get_default_config_split(dataset: str) -> Tuple[str, str, str]: - config = dataset.replace("/", "--") +def get_default_config_split() -> Tuple[str, str]: + config = "default" @@ -103 +103 @@ def get_default_config_split(dataset: str) -> Tuple[str, str, str]: - return dataset, config, split + return config, split diff --git a/services/worker/tests/fixtures/hub.py b/services/worker/tests/fixtures/hub.py index 30c03b2a..afeed65e 100644 --- a/services/worker/tests/fixtures/hub.py +++ b/services/worker/tests/fixtures/hub.py @@ -37,2 +37,2 @@ hf_api = HfApi(endpoint=CI_HUB_ENDPOINT) -def get_default_config_split(dataset: str) -> Tuple[str, str, str]: - config = dataset.replace("/", "--") +def get_default_config_split() -> Tuple[str, str]: + config = "default" @@ -40 +40 @@ def get_default_config_split(dataset: str) -> Tuple[str, str, str]: - return dataset, config, split + return config, split @@ -310 +310 @@ def create_config_names_response(dataset: str) -> Any: - dataset, config, _ = get_default_config_split(dataset) + config, _ = get_default_config_split() @@ -322 +322 @@ def create_splits_response(dataset: str) -> Any: - dataset, config, split = get_default_config_split(dataset) + config, split = get_default_config_split() @@ -335 +335 @@ def create_first_rows_response(dataset: str, cols: Mapping[str, Any], rows: List - dataset, config, split = get_default_config_split(dataset) + config, split = get_default_config_split() @@ -448 +448 @@ def create_parquet_and_info_response( - dataset, config, split = get_default_config_split(dataset) + config, split = get_default_config_split() @@ -533 +533 @@ def get_AUDIO_rows(dataset: str) -> Any: - dataset, config, split = get_default_config_split(dataset) + config, split = get_default_config_split() @@ -556 +556 @@ def get_IMAGE_rows(dataset: str) -> Any: - dataset, config, split = get_default_config_split(dataset) + config, split = get_default_config_split() @@ -574 +574 @@ def get_IMAGES_LIST_rows(dataset: str) -> Any: - dataset, config, split = get_default_config_split(dataset) + config, split = get_default_config_split() diff --git a/services/worker/tests/job_runners/config/test_split_names_from_streaming.py b/services/worker/tests/job_runners/config/test_split_names_from_streaming.py index ae9ca703..6db7b18c 100644 --- a/services/worker/tests/job_runners/config/test_split_names_from_streaming.py +++ b/services/worker/tests/job_runners/config/test_split_names_from_streaming.py @@ -69 +69,2 @@ def test_compute(app_config: AppConfig, get_job_runner: GetJobRunner, hub_public - dataset, config, _ = get_default_config_split(hub_public_csv) + dataset = hub_public_csv + config, _ = get_default_config_split() @@ -113 +114,2 @@ def test_compute_split_names_from_streaming_response( - dataset, config, _ = get_default_config_split(hub_datasets[name]["name"]) + dataset = hub_datasets[name]["name"] + config, _ = get_default_config_split() diff --git a/services/worker/tests/job_runners/split/test_first_rows_from_streaming.py b/services/worker/tests/job_runners/split/test_first_rows_from_streaming.py index 3ec75a0d..1cb702a2 100644 --- a/services/worker/tests/job_runners/split/test_first_rows_from_streaming.py +++ b/services/worker/tests/job_runners/split/test_first_rows_from_streaming.py @@ -77 +77,2 @@ def test_compute(app_config: AppConfig, get_job_runner: GetJobRunner, hub_public - dataset, config, split = get_default_config_split(hub_public_csv) + dataset = hub_public_csv + config, split = get_default_config_split() @@ -154 +155 @@ def test_number_rows( - dataset, config, split = get_default_config_split(dataset) + config, split = get_default_config_split() @@ -219 +220 @@ def test_truncation( - dataset, config, split = get_default_config_split(dataset) + config, split = get_default_config_split() diff --git a/services/worker/tests/job_runners/split/test_image_url_columns.py b/services/worker/tests/job_runners/split/test_image_url_columns.py index d49d4bd7..e1d82708 100644 --- a/services/worker/tests/job_runners/split/test_image_url_columns.py +++ b/services/worker/tests/job_runners/split/test_image_url_columns.py @@ -188 +188 @@ def test_compute( - dataset, config, split = get_default_config_split(dataset) + config, split = get_default_config_split() @@ -232 +232 @@ def test_compute_failed( - dataset, config, split = get_default_config_split(dataset) + config, split = get_default_config_split() diff --git a/services/worker/tests/job_runners/split/test_opt_in_out_urls_scan_from_streaming.py b/services/worker/tests/job_runners/split/test_opt_in_out_urls_scan_from_streaming.py index dbb8b8d5..49463062 100644 --- a/services/worker/tests/job_runners/split/test_opt_in_out_urls_scan_from_streaming.py +++ b/services/worker/tests/job_runners/split/test_opt_in_out_urls_scan_from_streaming.py @@ -187 +187,2 @@ def test_compute( - dataset, config, split = get_default_config_split(hub_datasets[name]["name"]) + dataset = hub_datasets[name]["name"] + config, split = get_default_config_split() @@ -251 +252 @@ def test_compute_failed( - dataset, config, split = get_default_config_split(dataset) + config, split = get_default_config_split() @@ -280 +281,2 @@ def test_compute_error_from_spawning( - dataset, config, split = get_default_config_split(hub_public_spawning_opt_in_out) + dataset = hub_public_spawning_opt_in_out + config, split = get_default_config_split() diff --git a/services/worker/tests/job_runners/test__job_runner_with_cache.py b/services/worker/tests/job_runners/test__job_runner_with_cache.py index 2ff25f6c..b631a130 100644 --- a/services/worker/tests/job_runners/test__job_runner_with_cache.py +++ b/services/worker/tests/job_runners/test__job_runner_with_cache.py @@ -111 +111,2 @@ def test_pre_compute_post_compute(app_config: AppConfig, get_job_runner: GetJobR - dataset, config, split = get_default_config_split("user/dataset") + dataset = "user/dataset" + config, split = get_default_config_split() diff --git a/services/worker/tests/job_runners/test__job_runner_with_datasets_cache.py b/services/worker/tests/job_runners/test__job_runner_with_datasets_cache.py index afb25020..1d8e59fb 100644 --- a/services/worker/tests/job_runners/test__job_runner_with_datasets_cache.py +++ b/services/worker/tests/job_runners/test__job_runner_with_datasets_cache.py @@ -84 +84,2 @@ def test_set_datasets_cache(app_config: AppConfig, get_job_runner: GetJobRunner) - dataset, config, split = get_default_config_split("dataset") + dataset = "dataset" + config, split = get_default_config_split() @@ -93 +94,2 @@ def test_pre_compute_post_compute(app_config: AppConfig, get_job_runner: GetJobR - dataset, config, split = get_default_config_split("user/dataset") + dataset = "user/dataset" + config, split = get_default_config_split() diff --git a/services/worker/tests/test_job_manager.py b/services/worker/tests/test_job_manager.py index a01f4249..5ebc38f2 100644 --- a/services/worker/tests/test_job_manager.py +++ b/services/worker/tests/test_job_manager.py @@ -287 +287 @@ def test_doesnotexist(app_config: AppConfig) -> None: - dataset, config, split = get_default_config_split(dataset) + config, split = get_default_config_split()
2ef60e0261573d4a69fe98d9c2ef77ec5d45aaab
Albert Villanova del Moral
2023-08-03T16:18:54
Update datasets 2.14.3 (#1614)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index b8fef47f..67c60823 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. @@ -529 +529 @@ name = "datasets" -version = "2.13.1" +version = "2.14.3" @@ -533 +533 @@ optional = false -python-versions = ">=3.7.0" +python-versions = ">=3.8.0" @@ -535,2 +535,2 @@ files = [ - {file = "datasets-2.13.1-py3-none-any.whl", hash = "sha256:844d8dbc1759e0b6b8e5063af019dc95d6af07ea075002b03323a280bf8d53f6"}, - {file = "datasets-2.13.1.tar.gz", hash = "sha256:bacb7750b1a434417312b4281a55225a3f7e0163abdd12a2a3e2d700310d5221"}, + {file = "datasets-2.14.3-py3-none-any.whl", hash = "sha256:8da5868e55e7c1f0bf3356913a14a9926fe5eca66663691886b95bc9c9b065f0"}, + {file = "datasets-2.14.3.tar.gz", hash = "sha256:5fb20465a990cf7946f961884ba46fec19cdc95b1cd2cad2a7b87c8d183b02e1"}, @@ -541 +541 @@ aiohttp = "*" -dill = ">=0.3.0,<0.3.7" +dill = ">=0.3.0,<0.3.8" @@ -543 +543 @@ fsspec = {version = ">=2021.11.1", extras = ["http"]} -huggingface-hub = ">=0.11.0,<1.0.0" +huggingface-hub = ">=0.14.0,<1.0.0" @@ -560,3 +560,3 @@ audio = ["librosa", "soundfile (>=0.12.1)"] -benchmarks = ["numpy (==1.18.5)", "protobuf (==3.20.3)", "tensorflow (==2.3.0)", "torch (==1.7.1)", "transformers (==3.0.2)"] -dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] -docs = ["s3fs"] +benchmarks = ["tensorflow (==2.12.0)", "torch (==2.0.1)", "transformers (==4.30.1)"] +dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +docs = ["s3fs", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow-macos", "torch", "transformers"] @@ -569 +569 @@ tensorflow-gpu = ["tensorflow-gpu (>=2.2.0,!=2.6.0,!=2.6.1)"] -tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] @@ -1249 +1249 @@ appdirs = "^1.4.4" -datasets = {version = "^2.13.1", extras = ["audio", "vision"]} +datasets = {version = "^2.14.3", extras = ["audio", "vision"]} diff --git a/jobs/cache_maintenance/poetry.lock b/jobs/cache_maintenance/poetry.lock index e61523c4..68c240bb 100644 --- a/jobs/cache_maintenance/poetry.lock +++ b/jobs/cache_maintenance/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. @@ -579 +579 @@ name = "datasets" -version = "2.13.1" +version = "2.14.3" @@ -583 +583 @@ optional = false -python-versions = ">=3.7.0" +python-versions = ">=3.8.0" @@ -585,2 +585,2 @@ files = [ - {file = "datasets-2.13.1-py3-none-any.whl", hash = "sha256:844d8dbc1759e0b6b8e5063af019dc95d6af07ea075002b03323a280bf8d53f6"}, - {file = "datasets-2.13.1.tar.gz", hash = "sha256:bacb7750b1a434417312b4281a55225a3f7e0163abdd12a2a3e2d700310d5221"}, + {file = "datasets-2.14.3-py3-none-any.whl", hash = "sha256:8da5868e55e7c1f0bf3356913a14a9926fe5eca66663691886b95bc9c9b065f0"}, + {file = "datasets-2.14.3.tar.gz", hash = "sha256:5fb20465a990cf7946f961884ba46fec19cdc95b1cd2cad2a7b87c8d183b02e1"}, @@ -591 +591 @@ aiohttp = "*" -dill = ">=0.3.0,<0.3.7" +dill = ">=0.3.0,<0.3.8" @@ -593 +593 @@ fsspec = {version = ">=2021.11.1", extras = ["http"]} -huggingface-hub = ">=0.11.0,<1.0.0" +huggingface-hub = ">=0.14.0,<1.0.0" @@ -610,3 +610,3 @@ audio = ["librosa", "soundfile (>=0.12.1)"] -benchmarks = ["numpy (==1.18.5)", "protobuf (==3.20.3)", "tensorflow (==2.3.0)", "torch (==1.7.1)", "transformers (==3.0.2)"] -dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] -docs = ["s3fs"] +benchmarks = ["tensorflow (==2.12.0)", "torch (==2.0.1)", "transformers (==4.30.1)"] +dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +docs = ["s3fs", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow-macos", "torch", "transformers"] @@ -619 +619 @@ tensorflow-gpu = ["tensorflow-gpu (>=2.2.0,!=2.6.0,!=2.6.1)"] -tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] @@ -1027 +1027 @@ appdirs = "^1.4.4" -datasets = {version = "^2.13.1", extras = ["audio", "vision"]} +datasets = {version = "^2.14.3", extras = ["audio", "vision"]} diff --git a/jobs/mongodb_migration/poetry.lock b/jobs/mongodb_migration/poetry.lock index e61523c4..68c240bb 100644 --- a/jobs/mongodb_migration/poetry.lock +++ b/jobs/mongodb_migration/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. @@ -579 +579 @@ name = "datasets" -version = "2.13.1" +version = "2.14.3" @@ -583 +583 @@ optional = false -python-versions = ">=3.7.0" +python-versions = ">=3.8.0" @@ -585,2 +585,2 @@ files = [ - {file = "datasets-2.13.1-py3-none-any.whl", hash = "sha256:844d8dbc1759e0b6b8e5063af019dc95d6af07ea075002b03323a280bf8d53f6"}, - {file = "datasets-2.13.1.tar.gz", hash = "sha256:bacb7750b1a434417312b4281a55225a3f7e0163abdd12a2a3e2d700310d5221"}, + {file = "datasets-2.14.3-py3-none-any.whl", hash = "sha256:8da5868e55e7c1f0bf3356913a14a9926fe5eca66663691886b95bc9c9b065f0"}, + {file = "datasets-2.14.3.tar.gz", hash = "sha256:5fb20465a990cf7946f961884ba46fec19cdc95b1cd2cad2a7b87c8d183b02e1"}, @@ -591 +591 @@ aiohttp = "*" -dill = ">=0.3.0,<0.3.7" +dill = ">=0.3.0,<0.3.8" @@ -593 +593 @@ fsspec = {version = ">=2021.11.1", extras = ["http"]} -huggingface-hub = ">=0.11.0,<1.0.0" +huggingface-hub = ">=0.14.0,<1.0.0" @@ -610,3 +610,3 @@ audio = ["librosa", "soundfile (>=0.12.1)"] -benchmarks = ["numpy (==1.18.5)", "protobuf (==3.20.3)", "tensorflow (==2.3.0)", "torch (==1.7.1)", "transformers (==3.0.2)"] -dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] -docs = ["s3fs"] +benchmarks = ["tensorflow (==2.12.0)", "torch (==2.0.1)", "transformers (==4.30.1)"] +dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +docs = ["s3fs", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow-macos", "torch", "transformers"] @@ -619 +619 @@ tensorflow-gpu = ["tensorflow-gpu (>=2.2.0,!=2.6.0,!=2.6.1)"] -tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] @@ -1027 +1027 @@ appdirs = "^1.4.4" -datasets = {version = "^2.13.1", extras = ["audio", "vision"]} +datasets = {version = "^2.14.3", extras = ["audio", "vision"]} diff --git a/libs/libapi/poetry.lock b/libs/libapi/poetry.lock index e9f5f658..7cda531f 100644 --- a/libs/libapi/poetry.lock +++ b/libs/libapi/poetry.lock @@ -624 +624 @@ name = "datasets" -version = "2.13.1" +version = "2.14.3" @@ -628 +628 @@ optional = false -python-versions = ">=3.7.0" +python-versions = ">=3.8.0" @@ -630,2 +630,2 @@ files = [ - {file = "datasets-2.13.1-py3-none-any.whl", hash = "sha256:844d8dbc1759e0b6b8e5063af019dc95d6af07ea075002b03323a280bf8d53f6"}, - {file = "datasets-2.13.1.tar.gz", hash = "sha256:bacb7750b1a434417312b4281a55225a3f7e0163abdd12a2a3e2d700310d5221"}, + {file = "datasets-2.14.3-py3-none-any.whl", hash = "sha256:8da5868e55e7c1f0bf3356913a14a9926fe5eca66663691886b95bc9c9b065f0"}, + {file = "datasets-2.14.3.tar.gz", hash = "sha256:5fb20465a990cf7946f961884ba46fec19cdc95b1cd2cad2a7b87c8d183b02e1"}, @@ -636 +636 @@ aiohttp = "*" -dill = ">=0.3.0,<0.3.7" +dill = ">=0.3.0,<0.3.8" @@ -638 +638 @@ fsspec = {version = ">=2021.11.1", extras = ["http"]} -huggingface-hub = ">=0.11.0,<1.0.0" +huggingface-hub = ">=0.14.0,<1.0.0" @@ -655,3 +655,3 @@ audio = ["librosa", "soundfile (>=0.12.1)"] -benchmarks = ["numpy (==1.18.5)", "protobuf (==3.20.3)", "tensorflow (==2.3.0)", "torch (==1.7.1)", "transformers (==3.0.2)"] -dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] -docs = ["s3fs"] +benchmarks = ["tensorflow (==2.12.0)", "torch (==2.0.1)", "transformers (==4.30.1)"] +dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +docs = ["s3fs", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow-macos", "torch", "transformers"] @@ -664 +664 @@ tensorflow-gpu = ["tensorflow-gpu (>=2.2.0,!=2.6.0,!=2.6.1)"] -tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] @@ -1084 +1084 @@ appdirs = "^1.4.4" -datasets = {version = "^2.13.1", extras = ["audio", "vision"]} +datasets = {version = "^2.14.3", extras = ["audio", "vision"]} diff --git a/libs/libcommon/poetry.lock b/libs/libcommon/poetry.lock index a070ad0a..fc4917e9 100644 --- a/libs/libcommon/poetry.lock +++ b/libs/libcommon/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. @@ -579 +579 @@ name = "datasets" -version = "2.13.1" +version = "2.14.3" @@ -583 +583 @@ optional = false -python-versions = ">=3.7.0" +python-versions = ">=3.8.0" @@ -585,2 +585,2 @@ files = [ - {file = "datasets-2.13.1-py3-none-any.whl", hash = "sha256:844d8dbc1759e0b6b8e5063af019dc95d6af07ea075002b03323a280bf8d53f6"}, - {file = "datasets-2.13.1.tar.gz", hash = "sha256:bacb7750b1a434417312b4281a55225a3f7e0163abdd12a2a3e2d700310d5221"}, + {file = "datasets-2.14.3-py3-none-any.whl", hash = "sha256:8da5868e55e7c1f0bf3356913a14a9926fe5eca66663691886b95bc9c9b065f0"}, + {file = "datasets-2.14.3.tar.gz", hash = "sha256:5fb20465a990cf7946f961884ba46fec19cdc95b1cd2cad2a7b87c8d183b02e1"}, @@ -591 +591 @@ aiohttp = "*" -dill = ">=0.3.0,<0.3.7" +dill = ">=0.3.0,<0.3.8" @@ -593 +593 @@ fsspec = {version = ">=2021.11.1", extras = ["http"]} -huggingface-hub = ">=0.11.0,<1.0.0" +huggingface-hub = ">=0.14.0,<1.0.0" @@ -610,3 +610,3 @@ audio = ["librosa", "soundfile (>=0.12.1)"] -benchmarks = ["numpy (==1.18.5)", "protobuf (==3.20.3)", "tensorflow (==2.3.0)", "torch (==1.7.1)", "transformers (==3.0.2)"] -dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] -docs = ["s3fs"] +benchmarks = ["tensorflow (==2.12.0)", "torch (==2.0.1)", "transformers (==4.30.1)"] +dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +docs = ["s3fs", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow-macos", "torch", "transformers"] @@ -619 +619 @@ tensorflow-gpu = ["tensorflow-gpu (>=2.2.0,!=2.6.0,!=2.6.1)"] -tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] @@ -3014 +3014 @@ python-versions = "3.9.15" -content-hash = "13edd58f1c9acd0ece1f9a251b35a17408486c1963188825c6b3f379eb7a8eb2" +content-hash = "182da244596a37965e340ccc74e8d96962a671992e6386b48f9dd6f71de5d06f" diff --git a/libs/libcommon/pyproject.toml b/libs/libcommon/pyproject.toml index 56244192..8da0eb7e 100644 --- a/libs/libcommon/pyproject.toml +++ b/libs/libcommon/pyproject.toml @@ -10 +10 @@ appdirs = "^1.4.4" -datasets = {version = "^2.13.1", extras = ["audio", "vision"]} +datasets = {version = "^2.14.3", extras = ["audio", "vision"]} diff --git a/services/admin/poetry.lock b/services/admin/poetry.lock index 9f3a1e44..f216681b 100644 --- a/services/admin/poetry.lock +++ b/services/admin/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. @@ -579 +579 @@ name = "datasets" -version = "2.13.1" +version = "2.14.3" @@ -583 +583 @@ optional = false -python-versions = ">=3.7.0" +python-versions = ">=3.8.0" @@ -585,2 +585,2 @@ files = [ - {file = "datasets-2.13.1-py3-none-any.whl", hash = "sha256:844d8dbc1759e0b6b8e5063af019dc95d6af07ea075002b03323a280bf8d53f6"}, - {file = "datasets-2.13.1.tar.gz", hash = "sha256:bacb7750b1a434417312b4281a55225a3f7e0163abdd12a2a3e2d700310d5221"}, + {file = "datasets-2.14.3-py3-none-any.whl", hash = "sha256:8da5868e55e7c1f0bf3356913a14a9926fe5eca66663691886b95bc9c9b065f0"}, + {file = "datasets-2.14.3.tar.gz", hash = "sha256:5fb20465a990cf7946f961884ba46fec19cdc95b1cd2cad2a7b87c8d183b02e1"}, @@ -591 +591 @@ aiohttp = "*" -dill = ">=0.3.0,<0.3.7" +dill = ">=0.3.0,<0.3.8" @@ -593 +593 @@ fsspec = {version = ">=2021.11.1", extras = ["http"]} -huggingface-hub = ">=0.11.0,<1.0.0" +huggingface-hub = ">=0.14.0,<1.0.0" @@ -610,3 +610,3 @@ audio = ["librosa", "soundfile (>=0.12.1)"] -benchmarks = ["numpy (==1.18.5)", "protobuf (==3.20.3)", "tensorflow (==2.3.0)", "torch (==1.7.1)", "transformers (==3.0.2)"] -dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] -docs = ["s3fs"] +benchmarks = ["tensorflow (==2.12.0)", "torch (==2.0.1)", "transformers (==4.30.1)"] +dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +docs = ["s3fs", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow-macos", "torch", "transformers"] @@ -619 +619 @@ tensorflow-gpu = ["tensorflow-gpu (>=2.2.0,!=2.6.0,!=2.6.1)"] -tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] @@ -1085 +1085 @@ appdirs = "^1.4.4" -datasets = {version = "^2.13.1", extras = ["audio", "vision"]} +datasets = {version = "^2.14.3", extras = ["audio", "vision"]} diff --git a/services/api/poetry.lock b/services/api/poetry.lock index 44f0a9f5..868f4d75 100644 --- a/services/api/poetry.lock +++ b/services/api/poetry.lock @@ -625 +625 @@ name = "datasets" -version = "2.13.1" +version = "2.14.3" @@ -629 +629 @@ optional = false -python-versions = ">=3.7.0" +python-versions = ">=3.8.0" @@ -631,2 +631,2 @@ files = [ - {file = "datasets-2.13.1-py3-none-any.whl", hash = "sha256:844d8dbc1759e0b6b8e5063af019dc95d6af07ea075002b03323a280bf8d53f6"}, - {file = "datasets-2.13.1.tar.gz", hash = "sha256:bacb7750b1a434417312b4281a55225a3f7e0163abdd12a2a3e2d700310d5221"}, + {file = "datasets-2.14.3-py3-none-any.whl", hash = "sha256:8da5868e55e7c1f0bf3356913a14a9926fe5eca66663691886b95bc9c9b065f0"}, + {file = "datasets-2.14.3.tar.gz", hash = "sha256:5fb20465a990cf7946f961884ba46fec19cdc95b1cd2cad2a7b87c8d183b02e1"}, @@ -637 +637 @@ aiohttp = "*" -dill = ">=0.3.0,<0.3.7" +dill = ">=0.3.0,<0.3.8" @@ -639 +639 @@ fsspec = {version = ">=2021.11.1", extras = ["http"]} -huggingface-hub = ">=0.11.0,<1.0.0" +huggingface-hub = ">=0.14.0,<1.0.0" @@ -656,3 +656,3 @@ audio = ["librosa", "soundfile (>=0.12.1)"] -benchmarks = ["numpy (==1.18.5)", "protobuf (==3.20.3)", "tensorflow (==2.3.0)", "torch (==1.7.1)", "transformers (==3.0.2)"] -dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] -docs = ["s3fs"] +benchmarks = ["tensorflow (==2.12.0)", "torch (==2.0.1)", "transformers (==4.30.1)"] +dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +docs = ["s3fs", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow-macos", "torch", "transformers"] @@ -665 +665 @@ tensorflow-gpu = ["tensorflow-gpu (>=2.2.0,!=2.6.0,!=2.6.1)"] -tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] @@ -1175 +1175 @@ appdirs = "^1.4.4" -datasets = {version = "^2.13.1", extras = ["audio", "vision"]} +datasets = {version = "^2.14.3", extras = ["audio", "vision"]} diff --git a/services/rows/poetry.lock b/services/rows/poetry.lock index bb29db8a..f0f09307 100644 --- a/services/rows/poetry.lock +++ b/services/rows/poetry.lock @@ -624 +624 @@ name = "datasets" -version = "2.13.1" +version = "2.14.3" @@ -628 +628 @@ optional = false -python-versions = ">=3.7.0" +python-versions = ">=3.8.0" @@ -630,2 +630,2 @@ files = [ - {file = "datasets-2.13.1-py3-none-any.whl", hash = "sha256:844d8dbc1759e0b6b8e5063af019dc95d6af07ea075002b03323a280bf8d53f6"}, - {file = "datasets-2.13.1.tar.gz", hash = "sha256:bacb7750b1a434417312b4281a55225a3f7e0163abdd12a2a3e2d700310d5221"}, + {file = "datasets-2.14.3-py3-none-any.whl", hash = "sha256:8da5868e55e7c1f0bf3356913a14a9926fe5eca66663691886b95bc9c9b065f0"}, + {file = "datasets-2.14.3.tar.gz", hash = "sha256:5fb20465a990cf7946f961884ba46fec19cdc95b1cd2cad2a7b87c8d183b02e1"}, @@ -636 +636 @@ aiohttp = "*" -dill = ">=0.3.0,<0.3.7" +dill = ">=0.3.0,<0.3.8" @@ -638 +638 @@ fsspec = {version = ">=2021.11.1", extras = ["http"]} -huggingface-hub = ">=0.11.0,<1.0.0" +huggingface-hub = ">=0.14.0,<1.0.0" @@ -655,3 +655,3 @@ audio = ["librosa", "soundfile (>=0.12.1)"] -benchmarks = ["numpy (==1.18.5)", "protobuf (==3.20.3)", "tensorflow (==2.3.0)", "torch (==1.7.1)", "transformers (==3.0.2)"] -dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] -docs = ["s3fs"] +benchmarks = ["tensorflow (==2.12.0)", "torch (==2.0.1)", "transformers (==4.30.1)"] +dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +docs = ["s3fs", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow-macos", "torch", "transformers"] @@ -664 +664 @@ tensorflow-gpu = ["tensorflow-gpu (>=2.2.0,!=2.6.0,!=2.6.1)"] -tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] @@ -1186 +1186 @@ appdirs = "^1.4.4" -datasets = {version = "^2.13.1", extras = ["audio", "vision"]} +datasets = {version = "^2.14.3", extras = ["audio", "vision"]} diff --git a/services/worker/poetry.lock b/services/worker/poetry.lock index 92a583b1..a40bd384 100644 --- a/services/worker/poetry.lock +++ b/services/worker/poetry.lock @@ -910 +910 @@ name = "datasets" -version = "2.13.1" +version = "2.14.3" @@ -914 +914 @@ optional = false -python-versions = ">=3.7.0" +python-versions = ">=3.8.0" @@ -916,2 +916,2 @@ files = [ - {file = "datasets-2.13.1-py3-none-any.whl", hash = "sha256:844d8dbc1759e0b6b8e5063af019dc95d6af07ea075002b03323a280bf8d53f6"}, - {file = "datasets-2.13.1.tar.gz", hash = "sha256:bacb7750b1a434417312b4281a55225a3f7e0163abdd12a2a3e2d700310d5221"}, + {file = "datasets-2.14.3-py3-none-any.whl", hash = "sha256:8da5868e55e7c1f0bf3356913a14a9926fe5eca66663691886b95bc9c9b065f0"}, + {file = "datasets-2.14.3.tar.gz", hash = "sha256:5fb20465a990cf7946f961884ba46fec19cdc95b1cd2cad2a7b87c8d183b02e1"}, @@ -922 +922 @@ aiohttp = "*" -dill = ">=0.3.0,<0.3.7" +dill = ">=0.3.0,<0.3.8" @@ -924 +924 @@ fsspec = {version = ">=2021.11.1", extras = ["http"]} -huggingface-hub = ">=0.11.0,<1.0.0" +huggingface-hub = ">=0.14.0,<1.0.0" @@ -941,3 +941,3 @@ audio = ["librosa", "soundfile (>=0.12.1)"] -benchmarks = ["numpy (==1.18.5)", "protobuf (==3.20.3)", "tensorflow (==2.3.0)", "torch (==1.7.1)", "transformers (==3.0.2)"] -dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] -docs = ["s3fs"] +benchmarks = ["tensorflow (==2.12.0)", "torch (==2.0.1)", "transformers (==4.30.1)"] +dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +docs = ["s3fs", "tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow-macos", "torch", "transformers"] @@ -950 +950 @@ tensorflow-gpu = ["tensorflow-gpu (>=2.2.0,!=2.6.0,!=2.6.1)"] -tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] @@ -1839 +1839 @@ appdirs = "^1.4.4" -datasets = {version = "^2.13.1", extras = ["audio", "vision"]} +datasets = {version = "^2.14.3", extras = ["audio", "vision"]}
22243e3abda85a259d4a6a34cffa7e544519b6f4
Andrea Francis Soria Jimenez
2023-08-03T15:37:54
Increase replicas for all worker (#1615)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 0e61243d..28827aaf 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -346 +346 @@ workers: - replicas: 60 + replicas: 100
3811de18e361a02298b1f34a9ff8353b6e0581fb
Andrea Francis Soria Jimenez
2023-08-03T15:12:24
test: add basic e2e for /statistics (#1612)
diff --git a/e2e/tests/test_16_statistics.py b/e2e/tests/test_16_statistics.py new file mode 100644 index 00000000..2d69b09d --- /dev/null +++ b/e2e/tests/test_16_statistics.py @@ -0,0 +1,73 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +from .fixtures.hub import AuthHeaders, AuthType +from .utils import get_default_config_split, poll_until_ready_and_assert + + +def test_statistics_endpoint( + auth_headers: AuthHeaders, + hf_public_dataset_repo_csv_data: str, +) -> None: + auth: AuthType = "none" + expected_status_code: int = 200 + expected_error_code = None + # TODO: add dataset with various splits, or various configs + dataset, config, split = get_default_config_split(hf_public_dataset_repo_csv_data) + headers = auth_headers[auth] + statistics_response = poll_until_ready_and_assert( + relative_url=f"/statistics?dataset={dataset}&config={config}&split={split}", + expected_status_code=expected_status_code, + expected_error_code=expected_error_code, + headers=headers, + check_x_revision=True, + ) + + content = statistics_response.json() + assert "num_examples" in content, statistics_response + assert "statistics" in content, statistics_response + statistics = content["statistics"] + num_examples = content["num_examples"] + + assert isinstance(statistics, list), statistics + assert len(statistics) == 2 + assert num_examples == 4 + + first_column = statistics[0] + assert "column_name" in first_column + assert "column_statistics" in first_column + assert "column_type" in first_column + assert first_column["column_name"] == "col_2" + assert first_column["column_type"] == "int" + assert isinstance(first_column["column_statistics"], dict) + assert first_column["column_statistics"] == { + "histogram": {"bin_edges": [0, 1, 2, 3, 3], "hist": [1, 1, 1, 1]}, + "max": 3, + "mean": 1.5, + "median": 1.5, + "min": 0, + "nan_count": 0, + "nan_proportion": 0.0, + "std": 1.29099, + } + + second_column = statistics[1] + assert "column_name" in second_column + assert "column_statistics" in second_column + assert "column_type" in second_column + assert second_column["column_name"] == "col_3" + assert second_column["column_type"] == "float" + assert isinstance(second_column["column_statistics"], dict) + assert second_column["column_statistics"] == { + "nan_count": 0, + "nan_proportion": 0.0, + "min": 0.0, + "max": 3.0, + "mean": 1.5, + "median": 1.5, + "std": 1.29099, + "histogram": { + "hist": [1, 0, 0, 1, 0, 0, 1, 0, 0, 1], + "bin_edges": [0.0, 0.3, 0.6, 0.9, 1.2, 1.5, 1.8, 2.1, 2.4, 2.7, 3.0], + }, + } diff --git a/e2e/tests/test_52_search.py b/e2e/tests/test_52_search.py index 55389e46..98840903 100644 --- a/e2e/tests/test_52_search.py +++ b/e2e/tests/test_52_search.py @@ -2 +2 @@ -# Copyright 2022 The HuggingFace Authors. +# Copyright 2023 The HuggingFace Authors.
128d7031d51ec4c9b23cdce568c020cb0f8bbd30
Andrea Francis Soria Jimenez
2023-08-02T21:27:37
Increase resources (#1611)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 514eb64a..0e61243d 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -346 +346 @@ workers: - replicas: 40 + replicas: 60 @@ -363 +363 @@ workers: - replicas: 15 + replicas: 25
41bfb3d7cafb616c4075f51ffe1f3251727bb211
Sylvain Lesage
2023-08-02T21:02:53
fix: 🐛 fix docker image name (#1610)
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index b3f5f7c3..698c6f38 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -121 +121 @@ jobs: - storage-admin: + storageAdmin:
244af936fbbce3441bf96d9119b363556b0d1bd7
Andrea Francis Soria Jimenez
2023-08-02T21:00:24
Set another cache directory because of permissions (#1608)
diff --git a/services/search/src/search/routes/search.py b/services/search/src/search/routes/search.py index 554b7316..79bea59f 100644 --- a/services/search/src/search/routes/search.py +++ b/services/search/src/search/routes/search.py @@ -67,0 +68 @@ REPO_TYPE = "dataset" +HUB_DOWNLOAD_CACHE_FOLDER = "cache" @@ -79,0 +81 @@ def download_index_file( + cache_folder: str, @@ -98,0 +101 @@ def download_index_file( + cache_dir=cache_folder, @@ -291 +294,8 @@ def create_search_endpoint( - download_index_file(index_folder, target_revision, dataset, repo_file_location, hf_token) + download_index_file( + cache_folder=f"{duckdb_index_file_directory}/{HUB_DOWNLOAD_CACHE_FOLDER}", + index_folder=index_folder, + target_revision=target_revision, + dataset=dataset, + repo_file_location=repo_file_location, + hf_token=hf_token, + )
e76e32f92d8e98e4fe96816a040746f84e804501
Sylvain Lesage
2023-08-02T20:51:56
feat: 🎸 build a Docker image for storageAdmin to have rsync (#1609)
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 73e8634a..b3f5f7c3 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -35,0 +36,2 @@ jobs: + - directory: services + project: storage-admin @@ -118,0 +121,2 @@ jobs: + storage-admin: + tag: sha-${{ steps.vars.outputs.sha_short }} diff --git a/.vscode/monorepo.code-workspace b/.vscode/monorepo.code-workspace index 4d93f7a1..6fe77b3d 100644 --- a/.vscode/monorepo.code-workspace +++ b/.vscode/monorepo.code-workspace @@ -34,0 +35,4 @@ + { + "name": "services/reverse-proxy", + "path": "../services/reverse-proxy" + }, @@ -44,2 +48,2 @@ - "name": "services/worker", - "path": "../services/worker" + "name": "services/storage-admin", + "path": "../services/storage-admin" @@ -48,2 +52,2 @@ - "name": "services/reverse-proxy", - "path": "../services/reverse-proxy" + "name": "services/worker", + "path": "../services/worker" diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 712abea1..514eb64a 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -56,0 +57,5 @@ images: + storageAdmin: + registry: huggingface + useGlobalRegistry: false + repository: datasets-server-services-storage-admin + tag: sha-fb3399a diff --git a/chart/env/staging.yaml b/chart/env/staging.yaml index e8c0ec4f..18e30b9d 100644 --- a/chart/env/staging.yaml +++ b/chart/env/staging.yaml @@ -52,0 +53,5 @@ images: + storageAdmin: + registry: huggingface + useGlobalRegistry: false + repository: datasets-server-services-storage-admin + tag: sha-fb3399a diff --git a/chart/templates/_common/_helpers.tpl b/chart/templates/_common/_helpers.tpl index e14ae75a..dd6ad00b 100644 --- a/chart/templates/_common/_helpers.tpl +++ b/chart/templates/_common/_helpers.tpl @@ -56,0 +57,4 @@ Docker image management +{{- define "services.storageAdmin.image" -}} +{{ include "hf.common.images.image" (dict "imageRoot" .Values.images.services.storageAdmin "global" .Values.global.huggingface) }} +{{- end -}} + diff --git a/chart/templates/storage-admin/_container.tpl b/chart/templates/storage-admin/_container.tpl index b6ae2de6..f776e8ff 100644 --- a/chart/templates/storage-admin/_container.tpl +++ b/chart/templates/storage-admin/_container.tpl @@ -6 +6 @@ - image: ubuntu:focal + image: {{ include "services.storageAdmin.image" . }} @@ -40,3 +39,0 @@ - command: - - 'sleep' - - 'infinity' diff --git a/chart/values.yaml b/chart/values.yaml index 6b7da3e8..ab17fe84 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -62,0 +63,5 @@ images: + storageAdmin: + registry: huggingface + useGlobalRegistry: false + repository: datasets-server-services-storage-admin + tag: sha-fb3399a diff --git a/services/storage-admin/Dockerfile b/services/storage-admin/Dockerfile new file mode 100644 index 00000000..9c9faaca --- /dev/null +++ b/services/storage-admin/Dockerfile @@ -0,0 +1,10 @@ +# build with +# docker build -t some_tag_storage-admin -f Dockerfile ../.. +FROM ubuntu:jammy + +# System deps: +RUN apt-get update \ + && apt-get install -y rsync unzip wget curl \ + && rm -rf /var/lib/apt/lists/* + +ENTRYPOINT ["sleep", "infinity"] diff --git a/services/storage-admin/README.md b/services/storage-admin/README.md new file mode 100644 index 00000000..1bf04f1f --- /dev/null +++ b/services/storage-admin/README.md @@ -0,0 +1,3 @@ +# Datasets server - storage admin + +> A Ubuntu machine to log into and manage the storage manually
6c5bc42396037c6e7038cea2fd73c0f437c42266
Sylvain Lesage
2023-08-02T19:51:41
feat: 🎸 mount EFS storage for parquet-metadata on storage-admin (#1607)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 43a3fbb5..712abea1 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -99 +99 @@ persistence: - parquet: + parquetMetadata: diff --git a/chart/env/staging.yaml b/chart/env/staging.yaml index 113ef89d..e8c0ec4f 100644 --- a/chart/env/staging.yaml +++ b/chart/env/staging.yaml @@ -95 +95 @@ persistence: - parquet: + parquetMetadata: diff --git a/chart/templates/_initContainers/_initContainerParquetMetadataNew.tpl b/chart/templates/_initContainers/_initContainerParquetMetadataNew.tpl new file mode 100644 index 00000000..8fe68431 --- /dev/null +++ b/chart/templates/_initContainers/_initContainerParquetMetadataNew.tpl @@ -0,0 +1,21 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +{{- define "initContainerParquetMetadataNew" -}} +- name: prepare-parquet-metadata-new + image: ubuntu:focal + imagePullPolicy: {{ .Values.images.pullPolicy }} + command: ["/bin/sh", "-c"] + args: + - chown {{ .Values.uid }}:{{ .Values.gid }} /mounted-path; + volumeMounts: + - mountPath: /mounted-path + mountPropagation: None + name: volume-parquet-metadata + subPath: "{{ include "parquetMetadata.subpath" . }}" + readOnly: false + securityContext: + runAsNonRoot: false + runAsUser: 0 + runAsGroup: 0 +{{- end -}} diff --git a/chart/templates/_volumeMounts/_volumeMountParquetMetadataNew.tpl b/chart/templates/_volumeMounts/_volumeMountParquetMetadataNew.tpl new file mode 100644 index 00000000..fd84f864 --- /dev/null +++ b/chart/templates/_volumeMounts/_volumeMountParquetMetadataNew.tpl @@ -0,0 +1,18 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +{{- define "volumeMountParquetMetadataNewRO" -}} +- mountPath: {{ .Values.parquetMetadata.storageDirectoryNew | quote }} + mountPropagation: None + name: volume-parquet-metadata + subPath: "{{ include "parquetMetadata.subpath" . }}" + readOnly: true +{{- end -}} + +{{- define "volumeMountParquetMetadataNewRW" -}} +- mountPath: {{ .Values.parquetMetadata.storageDirectoryNew | quote }} + mountPropagation: None + name: volume-parquet-metadata + subPath: "{{ include "parquetMetadata.subpath" . }}" + readOnly: false +{{- end -}} diff --git a/chart/templates/_volumes/_volumeParquetMetadata.tpl b/chart/templates/_volumes/_volumeParquetMetadata.tpl new file mode 100644 index 00000000..4b0890e4 --- /dev/null +++ b/chart/templates/_volumes/_volumeParquetMetadata.tpl @@ -0,0 +1,8 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2022 The HuggingFace Authors. + +{{- define "volumeParquetMetadata" -}} +- name: volume-parquet-metadata + persistentVolumeClaim: + claimName: {{ .Values.persistence.parquetMetadata.existingClaim | default (include "name" .) }} +{{- end -}} diff --git a/chart/templates/storage-admin/_container.tpl b/chart/templates/storage-admin/_container.tpl index a580cb73..b6ae2de6 100644 --- a/chart/templates/storage-admin/_container.tpl +++ b/chart/templates/storage-admin/_container.tpl @@ -9,0 +10,2 @@ + {{ include "volumeMountDescriptiveStatisticsRW" . | nindent 2 }} + {{ include "volumeMountDuckDBIndexRW" . | nindent 2 }} @@ -12,2 +14 @@ - {{ include "volumeMountDuckDBIndexRW" . | nindent 2 }} - {{ include "volumeMountDescriptiveStatisticsRW" . | nindent 2 }} + {{ include "volumeMountParquetMetadataNewRW" . | nindent 2 }} @@ -29,0 +31,4 @@ + - mountPath: /volumes/parquet-metadata + mountPropagation: None + name: volume-parquet-metadata + readOnly: false diff --git a/chart/templates/storage-admin/deployment.yaml b/chart/templates/storage-admin/deployment.yaml index 3fcfac7d..4888334a 100644 --- a/chart/templates/storage-admin/deployment.yaml +++ b/chart/templates/storage-admin/deployment.yaml @@ -21,0 +22,2 @@ spec: + {{ include "initContainerDescriptiveStatistics" . | nindent 8 }} + {{ include "initContainerDuckDBIndex" . | nindent 8 }} @@ -24,2 +26 @@ spec: - {{ include "initContainerDuckDBIndex" . | nindent 8 }} - {{ include "initContainerDescriptiveStatistics" . | nindent 8 }} + {{ include "initContainerParquetMetadataNew" . | nindent 8 }} @@ -29,0 +31,2 @@ spec: + {{ include "volumeDescriptiveStatistics" . | nindent 8 }} + {{ include "volumeDuckDBIndex" . | nindent 8 }} @@ -32,2 +35 @@ spec: - {{ include "volumeDuckDBIndex" . | nindent 8 }} - {{ include "volumeDescriptiveStatistics" . | nindent 8 }} + {{ include "volumeParquetMetadata" . | nindent 8 }} diff --git a/chart/values.yaml b/chart/values.yaml index 3a379ea2..6b7da3e8 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -120 +120 @@ persistence: - parquet: + parquetMetadata: @@ -244,0 +245,2 @@ parquetMetadata: + # Temporary - to synchronize the files from NFS to dedicated EFS + storageDirectoryNew: "/storage/parquet-metadata-new"
704b06123d2277967d0d3cee094336fd1c66c9a0
Andrea Francis Soria Jimenez
2023-08-02T18:52:46
feat: /search endpoint (#1516)
diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml index 25fccf99..7819cfeb 100644 --- a/.github/workflows/_e2e_tests.yml +++ b/.github/workflows/_e2e_tests.yml @@ -36,0 +37,2 @@ jobs: + SEARCH_UVICORN_NUM_WORKERS: "2" + SEARCH_UVICORN_PORT: "8083" @@ -42,0 +45 @@ jobs: + DUCKDB_INDEX_COMMITTER_HF_TOKEN: "hf_app_datasets-server-parquet-converter_token" @@ -74,0 +78,2 @@ jobs: + SEARCH_UVICORN_NUM_WORKERS: "2" + SEARCH_UVICORN_PORT: "8083" @@ -80,0 +86 @@ jobs: + DUCKDB_INDEX_COMMITTER_HF_TOKEN: "hf_app_datasets-server-parquet-converter_token" @@ -85 +91 @@ jobs: - poetry run python -m pytest -vv -x tests + poetry run python -m pytest -vv -s tests diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 770cf6e9..73e8634a 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -33,0 +34,2 @@ jobs: + - directory: services + project: search @@ -114,0 +117,2 @@ jobs: + search: + tag: sha-${{ steps.vars.outputs.sha_short }} diff --git a/.github/workflows/s-search.yml b/.github/workflows/s-search.yml new file mode 100644 index 00000000..5169ec50 --- /dev/null +++ b/.github/workflows/s-search.yml @@ -0,0 +1,35 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +name: services/search +on: + workflow_dispatch: + push: + branches: + - main + paths: + - "libs/libapi/**" + - "libs/libcommon/**" + - "services/search/**" + - ".github/workflows/s-search.yml" + - ".github/workflows/_quality-python.yml" + - ".github/workflows/_unit-tests-python.yml" + - "tools/docker-compose-mongo.yml" + pull_request: + paths: + - "libs/libapi/**" + - "libs/libcommon/**" + - "services/search/**" + - ".github/workflows/s-search.yml" + - ".github/workflows/_quality-python.yml" + - ".github/workflows/_unit-tests-python.yml" + - "tools/docker-compose-mongo.yml" +jobs: + quality: + uses: ./.github/workflows/_quality-python.yml + with: + working-directory: services/search + unit-tests: + uses: ./.github/workflows/_unit-tests-python.yml + with: + working-directory: services/search diff --git a/.vscode/monorepo.code-workspace b/.vscode/monorepo.code-workspace index b1be9dde..4d93f7a1 100644 --- a/.vscode/monorepo.code-workspace +++ b/.vscode/monorepo.code-workspace @@ -38,0 +39,4 @@ + { + "name": "services/search", + "path": "../services/search" + }, diff --git a/Makefile b/Makefile index 71571e13..380352bd 100644 --- a/Makefile +++ b/Makefile @@ -5,0 +6 @@ export PORT_ROWS := 8182 +export PORT_SEARCH := 8183 @@ -24 +25 @@ start: - MONGO_PORT=${MONGO_PORT} ADMIN_UVICORN_PORT=${PORT_ADMIN} API_UVICORN_PORT=${PORT_API} ROWS_UVICORN_PORT=${PORT_ROWS} PORT_REVERSE_PROXY=${PORT_REVERSE_PROXY} DOCKER_COMPOSE=${DOCKER_COMPOSE} $(MAKE) up + MONGO_PORT=${MONGO_PORT} ADMIN_UVICORN_PORT=${PORT_ADMIN} API_UVICORN_PORT=${PORT_API} ROWS_UVICORN_PORT=${PORT_ROWS} SEARCH_UVICORN_PORT=${PORT_SEARCH} PORT_REVERSE_PROXY=${PORT_REVERSE_PROXY} DOCKER_COMPOSE=${DOCKER_COMPOSE} $(MAKE) up @@ -28 +29 @@ stop: - MONGO_PORT=${MONGO_PORT} ADMIN_UVICORN_PORT=${PORT_ADMIN} API_UVICORN_PORT=${PORT_API} ROWS_UVICORN_PORT=${PORT_ROWS} PORT_REVERSE_PROXY=${PORT_REVERSE_PROXY} DOCKER_COMPOSE=${DOCKER_COMPOSE} $(MAKE) down + MONGO_PORT=${MONGO_PORT} ADMIN_UVICORN_PORT=${PORT_ADMIN} API_UVICORN_PORT=${PORT_API} ROWS_UVICORN_PORT=${PORT_ROWS} SEARCH_UVICORN_PORT=${PORT_SEARCH} PORT_REVERSE_PROXY=${PORT_REVERSE_PROXY} DOCKER_COMPOSE=${DOCKER_COMPOSE} $(MAKE) down @@ -32 +33 @@ dev-start: - MONGO_PORT=${MONGO_PORT} ADMIN_UVICORN_PORT=${PORT_ADMIN} API_UVICORN_PORT=${PORT_API} ROWS_UVICORN_PORT=${PORT_ROWS} PORT_REVERSE_PROXY=${PORT_REVERSE_PROXY} DOCKER_COMPOSE=${DOCKER_COMPOSE} $(MAKE) up + MONGO_PORT=${MONGO_PORT} ADMIN_UVICORN_PORT=${PORT_ADMIN} API_UVICORN_PORT=${PORT_API} ROWS_UVICORN_PORT=${PORT_ROWS} SEARCH_UVICORN_PORT=${PORT_SEARCH} PORT_REVERSE_PROXY=${PORT_REVERSE_PROXY} DOCKER_COMPOSE=${DOCKER_COMPOSE} $(MAKE) up @@ -36 +37 @@ dev-stop: - MONGO_PORT=${MONGO_PORT} ADMIN_UVICORN_PORT=${PORT_ADMIN} API_UVICORN_PORT=${PORT_API} ROWS_UVICORN_PORT=${PORT_ROWS} PORT_REVERSE_PROXY=${PORT_REVERSE_PROXY} DOCKER_COMPOSE=${DOCKER_COMPOSE} $(MAKE) down + MONGO_PORT=${MONGO_PORT} ADMIN_UVICORN_PORT=${PORT_ADMIN} API_UVICORN_PORT=${PORT_API} ROWS_UVICORN_PORT=${PORT_ROWS} SEARCH_UVICORN_PORT=${PORT_SEARCH} PORT_REVERSE_PROXY=${PORT_REVERSE_PROXY} DOCKER_COMPOSE=${DOCKER_COMPOSE} $(MAKE) down diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index c69cb76e..43a3fbb5 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -14,0 +15 @@ global: + search: 31372 @@ -50,0 +52,5 @@ images: + search: + registry: huggingface + useGlobalRegistry: false + repository: datasets-server-services-search + tag: sha-fb3399a @@ -267,0 +274,3 @@ admin: +hf: + timeoutSeconds: "1.5" + @@ -269,2 +277,0 @@ api: - # the timeout in seconds for the requests to the Hugging Face Hub. - hfTimeoutSeconds: "1.5" @@ -290,2 +296,0 @@ rows: - # the timeout in seconds for the requests to the Hugging Face Hub. - hfTimeoutSeconds: "1.5" @@ -308,0 +314,18 @@ rows: +search: + # Number of uvicorn workers for running the application + # (2 x $num_cores) + 1 + # https://docs.gunicorn.org/en/stable/design.html#how-many-workers + uvicornNumWorkers: "9" + nodeSelector: + role-datasets-server-search: "true" + replicas: 12 + service: + type: NodePort + resources: + requests: + cpu: 1 + memory: "4Gi" + limits: + cpu: 4 + memory: "8Gi" + diff --git a/chart/env/staging.yaml b/chart/env/staging.yaml index e23d2bcf..113ef89d 100644 --- a/chart/env/staging.yaml +++ b/chart/env/staging.yaml @@ -47,0 +48,5 @@ images: + search: + registry: huggingface + useGlobalRegistry: false + repository: datasets-server-services-search + tag: sha-fb3399a @@ -241,0 +247,13 @@ rows: +search: + uvicornNumWorkers: "1" + replicas: 1 + service: + type: NodePort + resources: + requests: + cpu: 100m + memory: "512Mi" + limits: + cpu: 1 + memory: "4Gi" + diff --git a/chart/nginx-templates/default.conf.template b/chart/nginx-templates/default.conf.template index 7efde8a0..56886a2e 100644 --- a/chart/nginx-templates/default.conf.template +++ b/chart/nginx-templates/default.conf.template @@ -58,0 +59,9 @@ server { + location /search { + proxy_pass ${URL_SEARCH}/search; + proxy_set_header Host $proxy_host; + proxy_set_header X-Real-IP $remote_addr; + proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; + proxy_set_header X-Forwarded-Proto $scheme; + proxy_http_version 1.1; + } + diff --git a/chart/templates/_common/_helpers.tpl b/chart/templates/_common/_helpers.tpl index 6ccf13e9..e14ae75a 100644 --- a/chart/templates/_common/_helpers.tpl +++ b/chart/templates/_common/_helpers.tpl @@ -52,0 +53,4 @@ Docker image management +{{- define "services.search.image" -}} +{{ include "hf.common.images.image" (dict "imageRoot" .Values.images.services.search "global" .Values.global.huggingface) }} +{{- end -}} + @@ -109,0 +114,5 @@ app.kubernetes.io/component: "{{ include "name" . }}-rows" +{{- define "labels.search" -}} +{{ include "hf.labels.commons" . }} +app.kubernetes.io/component: "{{ include "name" . }}-search" +{{- end -}} + @@ -182 +191 @@ The parquet-metadata/ subpath in the NFS -The duckdb-index/ subpath in the NFS +The duckdb-index/ subpath in EFS @@ -239,0 +249,8 @@ See https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#a-a +{{/* +The URL to access the search service from another container +See https://kubernetes.io/docs/concepts/services-networking/dns-pod-service/#a-aaaa-records +*/}} +{{- define "search.url" -}} +{{- printf "http://%s-search.%s.svc.cluster.local:80" ( include "name" . ) ( .Release.Namespace ) }} +{{- end }} + diff --git a/chart/templates/reverse-proxy/_container.tpl b/chart/templates/reverse-proxy/_container.tpl index 6ae0be54..794208e7 100644 --- a/chart/templates/reverse-proxy/_container.tpl +++ b/chart/templates/reverse-proxy/_container.tpl @@ -22,0 +23,2 @@ + - name: URL_SEARCH + value: {{ include "search.url" . | quote }} diff --git a/chart/templates/services/api/_container.tpl b/chart/templates/services/api/_container.tpl index 3740f4e4..f64b68c5 100644 --- a/chart/templates/services/api/_container.tpl +++ b/chart/templates/services/api/_container.tpl @@ -16 +16 @@ - value: {{ .Values.api.hfAuthPath | quote }} + value: {{ .Values.hf.authPath | quote }} @@ -18 +18 @@ - value: {{ .Values.api.hfJwtPublicKeyUrl | quote }} + value: {{ .Values.hf.jwtPublicKeyUrl | quote }} @@ -20 +20 @@ - value: {{ .Values.api.hfJwtAlgorithm | quote }} + value: {{ .Values.hf.jwtAlgorithm | quote }} @@ -22 +22 @@ - value: {{ .Values.api.hfTimeoutSeconds | quote }} + value: {{ .Values.hf.timeoutSeconds | quote }} diff --git a/chart/templates/services/rows/_container.tpl b/chart/templates/services/rows/_container.tpl index c8b242db..4787ff77 100644 --- a/chart/templates/services/rows/_container.tpl +++ b/chart/templates/services/rows/_container.tpl @@ -18 +18 @@ - value: {{ .Values.rows.hfAuthPath | quote }} + value: {{ .Values.hf.authPath | quote }} @@ -20 +20 @@ - value: {{ .Values.rows.hfJwtPublicKeyUrl | quote }} + value: {{ .Values.hf.jwtPublicKeyUrl | quote }} @@ -22 +22 @@ - value: {{ .Values.rows.hfJwtAlgorithm | quote }} + value: {{ .Values.hf.jwtAlgorithm | quote }} @@ -24 +24 @@ - value: {{ .Values.rows.hfTimeoutSeconds | quote }} + value: {{ .Values.hf.timeoutSeconds | quote }} diff --git a/chart/templates/services/search/_container.tpl b/chart/templates/services/search/_container.tpl new file mode 100644 index 00000000..0e33c156 --- /dev/null +++ b/chart/templates/services/search/_container.tpl @@ -0,0 +1,75 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +{{- define "containerSearch" -}} +- name: "{{ include "name" . }}-search" + image: {{ include "services.search.image" . }} + imagePullPolicy: {{ .Values.images.pullPolicy }} + env: + {{ include "envCachedAssets" . | nindent 2 }} + {{ include "envCache" . | nindent 2 }} + {{ include "envQueue" . | nindent 2 }} + {{ include "envCommon" . | nindent 2 }} + {{ include "envLog" . | nindent 2 }} + # service + - name: API_HF_AUTH_PATH + value: {{ .Values.hf.authPath | quote }} + - name: API_HF_JWT_PUBLIC_KEY_URL + value: {{ .Values.hf.jwtPublicKeyUrl | quote }} + - name: API_HF_JWT_ALGORITHM + value: {{ .Values.hf.jwtAlgorithm | quote }} + - name: API_HF_TIMEOUT_SECONDS + value: {{ .Values.hf.timeoutSeconds | quote }} + - name: API_HF_WEBHOOK_SECRET + {{- if .Values.secrets.hfWebhookSecret.fromSecret }} + valueFrom: + secretKeyRef: + name: {{ .Values.secrets.hfWebhookSecret.secretName | quote }} + key: WEBHOOK_SECRET + optional: false + {{- else }} + value: {{ .Values.secrets.hfWebhookSecret.value }} + {{- end }} + - name: API_MAX_AGE_LONG + value: {{ .Values.search.maxAgeLong | quote }} + - name: API_MAX_AGE_SHORT + value: {{ .Values.search.maxAgeShort | quote }} + # prometheus + - name: PROMETHEUS_MULTIPROC_DIR + value: {{ .Values.search.prometheusMultiprocDirectory | quote }} + # uvicorn + - name: API_UVICORN_HOSTNAME + value: {{ .Values.search.uvicornHostname | quote }} + - name: API_UVICORN_NUM_WORKERS + value: {{ .Values.search.uvicornNumWorkers | quote }} + - name: API_UVICORN_PORT + value: {{ .Values.search.uvicornPort | quote }} + # duckdb + - name: DUCKDB_INDEX_TARGET_REVISION + value: {{ .Values.duckDBIndex.targetRevision | quote }} + - name: DUCKDB_INDEX_STORAGE_DIRECTORY + value: {{ .Values.duckDBIndex.cacheDirectory | quote }} + volumeMounts: + {{ include "volumeMountCachedAssetsRW" . | nindent 2 }} + {{ include "volumeMountDuckDBIndexRW" . | nindent 2 }} + securityContext: + allowPrivilegeEscalation: false + readinessProbe: + failureThreshold: 30 + periodSeconds: 5 + httpGet: + path: /healthcheck + port: {{ .Values.search.uvicornPort }} + livenessProbe: + failureThreshold: 30 + periodSeconds: 5 + httpGet: + path: /healthcheck + port: {{ .Values.search.uvicornPort }} + ports: + - containerPort: {{ .Values.search.uvicornPort }} + name: http + protocol: TCP + resources: + {{ toYaml .Values.search.resources | nindent 4 }} +{{- end -}} diff --git a/chart/templates/services/search/deployment.yaml b/chart/templates/services/search/deployment.yaml new file mode 100644 index 00000000..3eacde5b --- /dev/null +++ b/chart/templates/services/search/deployment.yaml @@ -0,0 +1,36 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +apiVersion: apps/v1 +kind: Deployment +metadata: + labels: {{ include "labels.search" . | nindent 4 }} + name: "{{ include "name" . }}-search" + namespace: {{ .Release.Namespace }} +spec: + progressDeadlineSeconds: 600 + replicas: {{ .Values.search.replicas }} + revisionHistoryLimit: 10 + selector: + matchLabels: {{ include "labels.search" . | nindent 6 }} + strategy: + rollingUpdate: + maxSurge: 25% + maxUnavailable: 25% + type: RollingUpdate + template: + metadata: + labels: {{ include "labels.search" . | nindent 8 }} + spec: + {{- include "dnsConfig" . | nindent 6 }} + {{- include "image.imagePullSecrets" . | nindent 6 }} + initContainers: + {{ include "initContainerCachedAssets" . | nindent 8 }} + {{ include "initContainerDuckDBIndex" . | nindent 8 }} + containers: {{ include "containerSearch" . | nindent 8 }} + nodeSelector: {{ toYaml .Values.search.nodeSelector | nindent 8 }} + tolerations: {{ toYaml .Values.search.tolerations | nindent 8 }} + volumes: + {{ include "volumeNfs" . | nindent 8 }} + {{ include "volumeDuckDBIndex" . | nindent 8 }} + securityContext: {{ include "securityContext" . | nindent 8 }} diff --git a/chart/templates/services/search/pdb.yaml b/chart/templates/services/search/pdb.yaml new file mode 100644 index 00000000..75d48f55 --- /dev/null +++ b/chart/templates/services/search/pdb.yaml @@ -0,0 +1,13 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +apiVersion: policy/v1 +kind: PodDisruptionBudget +metadata: + labels: {{ include "labels.search" . | nindent 4 }} + name: "{{ include "name" . }}-search" + namespace: {{ .Release.Namespace }} +spec: + maxUnavailable: 1 + selector: + matchLabels: {{ include "labels.search" . | nindent 6 }} diff --git a/chart/templates/services/search/service.yaml b/chart/templates/services/search/service.yaml new file mode 100644 index 00000000..8ed00dfc --- /dev/null +++ b/chart/templates/services/search/service.yaml @@ -0,0 +1,22 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +{{ $serviceType := .Values.reverseProxy.service.type | default .Values.global.huggingface.service.type }} +apiVersion: v1 +kind: Service +metadata: + name: "{{ include "name" . }}-search" + annotations: {{ toYaml .Values.search.service.annotations | nindent 4 }} + namespace: {{ .Release.Namespace }} + labels: {{ include "labels.search" . | nindent 4 }} +spec: + ports: + - name: http + port: 80 + protocol: TCP + {{- if eq "NodePort" $serviceType }} + nodePort: {{ .Values.global.huggingface.service.ports.datasetsServer.search }} + {{- end }} + targetPort: {{ .Values.search.uvicornPort }} + selector: {{ include "labels.search" . | nindent 4 }} + type: {{ $serviceType }} diff --git a/chart/templates/services/search/servicemonitor.yaml b/chart/templates/services/search/servicemonitor.yaml new file mode 100644 index 00000000..196005f9 --- /dev/null +++ b/chart/templates/services/search/servicemonitor.yaml @@ -0,0 +1,20 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +{{- if .Values.monitoring.enabled }} +apiVersion: monitoring.coreos.com/v1 +kind: ServiceMonitor +metadata: + labels: {{ include "labels.search" . | nindent 4 }} + name: "{{ include "name" . }}-search" + namespace: {{ .Release.Namespace }} +spec: + endpoints: + - path: /metrics + port: http + namespaceSelector: + matchNames: + - {{ .Release.Namespace }} + selector: + matchLabels: {{ include "labels.search" . | nindent 6 }} +{{- end }} diff --git a/chart/values.yaml b/chart/values.yaml index 3c074a0f..3a379ea2 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -20,0 +21 @@ global: + search: 30024 @@ -56,0 +58,5 @@ images: + search: + registry: huggingface + useGlobalRegistry: false + repository: datasets-server-services-search + tag: sha-fb3399a @@ -402 +408 @@ admin: -api: +hf: @@ -405 +411 @@ api: - hfAuthPath: "/api/datasets/%s/auth-check" + authPath: "/api/datasets/%s/auth-check" @@ -409 +415 @@ api: - hfJwtPublicKeyUrl: "https://huggingface.co/api/keys/jwt" + jwtPublicKeyUrl: "https://huggingface.co/api/keys/jwt" @@ -411 +417 @@ api: - hfJwtAlgorithm: "EdDSA" + jwtAlgorithm: "EdDSA" @@ -413 +419,3 @@ api: - hfTimeoutSeconds: "0.2" + timeoutSeconds: "0.2" + +api: @@ -441,11 +448,0 @@ rows: - # the path of the external authentication service on the hub. - # The string must contain `%s` which will be replaced with the dataset name. - hfAuthPath: "/api/datasets/%s/auth-check" - # the URL where the "Hub JWT public key" is published. The "Hub JWT public key" must be in JWK format. - # It helps to decode a JWT sent by the Hugging Face Hub, for example, to bypass the external authentication - # check (JWT in the 'X-Api-Key' header). If not set, the JWT are ignored. - hfJwtPublicKeyUrl: "https://huggingface.co/api/keys/jwt" - # the algorithm used to encode the JWT. - hfJwtAlgorithm: "EdDSA" - # the timeout in seconds for the requests to the Hugging Face Hub. - hfTimeoutSeconds: "0.2" @@ -464 +461,28 @@ rows: - uvicornPort: 8082 + uvicornPort: 8080 + + nodeSelector: {} + replicas: 1 + resources: + requests: + cpu: 0 + limits: + cpu: 0 + service: + type: "" + annotations: {} + tolerations: [] + +search: + # Number of seconds to set in the `max-age` header on data endpoints + maxAgeLong: "120" + # Number of seconds to set in the `max-age` header on technical endpoints + maxAgeShort: "10" + # Directory where the uvicorn workers will write the prometheus metrics + # see https://github.com/prometheus/client_python#multiprocess-mode-eg-gunicorn + prometheusMultiprocDirectory: "/tmp" + # Hostname - it must not be set to localhost to work in Kube! + uvicornHostname: "0.0.0.0" + # Number of uvicorn workers for running the application + uvicornNumWorkers: "1" + # Application endpoint port + uvicornPort: 8080 diff --git a/e2e/Makefile b/e2e/Makefile index c1ac31e8..42598aaa 100644 --- a/e2e/Makefile +++ b/e2e/Makefile @@ -13,0 +14,2 @@ export ROWS_UVICORN_PORT := 9082 +export SEARCH_UVICORN_NUM_WORKERS := 2 +export SEARCH_UVICORN_PORT := 9083 @@ -20,0 +23 @@ export PARQUET_AND_INFO_COMMITTER_HF_TOKEN := hf_app_datasets-server-parquet-con +export DUCKDB_INDEX_COMMITTER_HF_TOKEN := hf_app_datasets-server-parquet-converter_token diff --git a/e2e/tests/fixtures/files.py b/e2e/tests/fixtures/files.py index 204b2081..e7c0f3d4 100644 --- a/e2e/tests/fixtures/files.py +++ b/e2e/tests/fixtures/files.py @@ -10,4 +10,4 @@ DATA = [ - {"col_1": "0", "col_2": 0, "col_3": 0.0}, - {"col_1": "1", "col_2": 1, "col_3": 1.0}, - {"col_1": "2", "col_2": 2, "col_3": 2.0}, - {"col_1": "3", "col_2": 3, "col_3": 3.0}, + {"col_1": "There goes another one.", "col_2": 0, "col_3": 0.0}, + {"col_1": "Vader turns round and round in circles as his ship spins into space.", "col_2": 1, "col_3": 1.0}, + {"col_1": "We count thirty Rebel ships, Lord Vader.", "col_2": 2, "col_3": 2.0}, + {"col_1": "The wingman spots the pirateship coming at him and warns the Dark Lord", "col_2": 3, "col_3": 3.0}, diff --git a/e2e/tests/test_11_api.py b/e2e/tests/test_11_api.py index d40b8b68..b3a43305 100644 --- a/e2e/tests/test_11_api.py +++ b/e2e/tests/test_11_api.py @@ -124 +124,9 @@ def test_rows_endpoint( - assert rows[0] == {"row_idx": 1, "row": {"col_1": 1, "col_2": 1, "col_3": 1.0}, "truncated_cells": []}, rows[0] + assert rows[0] == { + "row_idx": 1, + "row": { + "col_1": "Vader turns round and round in circles as his ship spins into space.", + "col_2": 1, + "col_3": 1.0, + }, + "truncated_cells": [], + }, rows[0] @@ -126 +134 @@ def test_rows_endpoint( - {"feature_idx": 0, "name": "col_1", "type": {"dtype": "int64", "_type": "Value"}}, + {"feature_idx": 0, "name": "col_1", "type": {"dtype": "string", "_type": "Value"}}, diff --git a/e2e/tests/test_50_search_healthcheck.py b/e2e/tests/test_50_search_healthcheck.py new file mode 100644 index 00000000..90c0576c --- /dev/null +++ b/e2e/tests/test_50_search_healthcheck.py @@ -0,0 +1,11 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +from .utils import SEARCH_URL, poll + + +def test_healthcheck() -> None: + # this tests ensures the /healthcheck and the /metrics endpoints are hidden + response = poll("/healthcheck", expected_code=200, url=SEARCH_URL) + assert response.status_code == 200, f"{response.status_code} - {response.text}" + assert "ok" in response.text, response.text diff --git a/e2e/tests/test_51_search_metrics.py b/e2e/tests/test_51_search_metrics.py new file mode 100644 index 00000000..d0fbc06c --- /dev/null +++ b/e2e/tests/test_51_search_metrics.py @@ -0,0 +1,49 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +import os +import re +from typing import Mapping + +from .utils import SEARCH_URL, get + + +def has_metric(name: str, labels: Mapping[str, str], metric_names: set[str]) -> bool: + label_str = ",".join([f'{k}="{v}"' for k, v in labels.items()]) + s = name + "{" + label_str + "}" + return any(re.match(s, metric_name) is not None for metric_name in metric_names) + + +def test_metrics() -> None: + assert "PROMETHEUS_MULTIPROC_DIR" in os.environ + response = get("/metrics", url=SEARCH_URL) + assert response.status_code == 200, f"{response.status_code} - {response.text}" + content = response.text + lines = content.split("\n") + # examples: + # starlette_requests_total{method="GET",path_template="/metrics"} 1.0 + # method_steps_processing_time_seconds_sum{method="healthcheck_endpoint",step="all"} 1.6772013623267412e-05 + metrics = { + parts[0]: float(parts[1]) for line in lines if line and line[0] != "#" and (parts := line.rsplit(" ", 1)) + } + # see https://github.com/prometheus/client_python#multiprocess-mode-eg-gunicorn + assert "process_start_time_seconds" not in metrics + + # the middleware should have recorded the request + name = 'starlette_requests_total{method="GET",path_template="/metrics"}' + assert name in metrics, metrics + assert metrics[name] > 0, metrics + + metric_names = set(metrics.keys()) + for endpoint in ["/search"]: + # these metrics are only available in the admin API + assert not has_metric( + name="queue_jobs_total", + labels={"pid": "[0-9]*", "queue": endpoint, "status": "started"}, + metric_names=metric_names, + ), f"queue_jobs_total - endpoint={endpoint} found in {metrics}" + assert not has_metric( + name="responses_in_cache_total", + labels={"error_code": "None", "http_status": "200", "path": endpoint, "pid": "[0-9]*"}, + metric_names=metric_names, + ), f"responses_in_cache_total - endpoint {endpoint} found in {metrics}" diff --git a/e2e/tests/test_52_search.py b/e2e/tests/test_52_search.py new file mode 100644 index 00000000..55389e46 --- /dev/null +++ b/e2e/tests/test_52_search.py @@ -0,0 +1,60 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2022 The HuggingFace Authors. + +from .fixtures.hub import AuthHeaders, AuthType +from .utils import get_default_config_split, poll_until_ready_and_assert + + +def test_search_endpoint( + auth_headers: AuthHeaders, + hf_public_dataset_repo_csv_data: str, +) -> None: + auth: AuthType = "none" + expected_status_code: int = 200 + expected_error_code = None + # TODO: add dataset with various splits, or various configs + dataset, config, split = get_default_config_split(hf_public_dataset_repo_csv_data) + headers = auth_headers[auth] + # ensure the /search endpoint works as well + offset = 1 + length = 2 + query = "Lord Vader" + search_response = poll_until_ready_and_assert( + relative_url=( + f"/search?dataset={dataset}&config={config}&split={split}&offset={offset}&length={length}&query={query}" + ), + expected_status_code=expected_status_code, + expected_error_code=expected_error_code, + headers=headers, + check_x_revision=True, + ) + if not expected_error_code: + content = search_response.json() + assert "rows" in content, search_response + assert "features" in content, search_response + assert "num_total_rows" in content, search_response + rows = content["rows"] + features = content["features"] + num_total_rows = content["num_total_rows"] + assert isinstance(rows, list), rows + assert isinstance(features, list), features + assert num_total_rows == 3 + assert rows[0] == { + "row_idx": 2, + "row": {"col_1": "We count thirty Rebel ships, Lord Vader.", "col_2": 2, "col_3": 2.0}, + "truncated_cells": [], + }, rows[0] + assert rows[1] == { + "row_idx": 3, + "row": { + "col_1": "The wingman spots the pirateship coming at him and warns the Dark Lord", + "col_2": 3, + "col_3": 3.0, + }, + "truncated_cells": [], + }, rows[1] + assert features == [ + {"feature_idx": 0, "name": "col_1", "type": {"dtype": "string", "_type": "Value"}}, + {"feature_idx": 1, "name": "col_2", "type": {"dtype": "int64", "_type": "Value"}}, + {"feature_idx": 2, "name": "col_3", "type": {"dtype": "float64", "_type": "Value"}}, + ], features diff --git a/e2e/tests/utils.py b/e2e/tests/utils.py index 681aa72a..c475ff60 100644 --- a/e2e/tests/utils.py +++ b/e2e/tests/utils.py @@ -16,0 +17 @@ ROWS_UVICORN_PORT = os.environ.get("ROWS_UVICORN_PORT", "8082") +SEARCH_UVICORN_PORT = os.environ.get("SEARCH_UVICORN_PORT", "8083") @@ -23,0 +25 @@ ROWS_URL = f"http://localhost:{ROWS_UVICORN_PORT}" +SEARCH_URL = f"http://localhost:{SEARCH_UVICORN_PORT}" diff --git a/libs/libapi/src/libapi/utils.py b/libs/libapi/src/libapi/utils.py index b616ee8c..68053db4 100644 --- a/libs/libapi/src/libapi/utils.py +++ b/libs/libapi/src/libapi/utils.py @@ -4,0 +5,2 @@ import logging +import os +import shutil @@ -5,0 +8 @@ from http import HTTPStatus +from itertools import islice @@ -16,0 +20 @@ from libcommon.utils import Priority, RowItem, orjson_dumps +from libcommon.viewer_utils.asset import glob_rows_in_assets_dir @@ -141,0 +146 @@ def to_rows_list( + row_idx_column: Optional[str] = None, @@ -157,0 +163 @@ def to_rows_list( + row_idx_column=row_idx_column, @@ -165 +171 @@ def to_rows_list( - "row_idx": idx + offset, + "row_idx": idx + offset if row_idx_column is None else row.pop(row_idx_column), @@ -170,0 +177,63 @@ def to_rows_list( + + +def _greater_or_equal(row_dir_name: str, row_idx: int, on_error: bool) -> bool: + try: + return int(row_dir_name) >= row_idx + except ValueError: + return on_error + + +def clean_cached_assets( + dataset: str, + cached_assets_directory: StrPath, + keep_first_rows_number: int, + keep_most_recent_rows_number: int, + max_cleaned_rows_number: int, +) -> None: + """ + The cached assets directory is cleaned to save disk space using this simple (?) heuristic: + + 1. it takes a big sample of rows from the cache using glob (max `max_cleaned_rows_number`) + 2. it keeps the most recent ones (max `keep_most_recent_rows_number`) + 3. it keeps the rows below a certain index (max `keep_first_rows_number`) + 4. it discards the rest + + To check for the most recent rows, it looks at the "last modified time" of rows directories. + This time is updated every time a row is accessed using `update_last_modified_date_of_rows_in_assets_dir()`. + + Args: + dataset (`str`): + Dataset name e.g `squad` or `lhoestq/demo1`. + Rows are cleaned in any dataset configuration or split of this dataset. + cached_assets_directory (`str`): + Directory containing the cached image and audio files + keep_first_rows_number (`int`): + Keep the rows with an index below a certain number + keep_most_recent_rows_number (`int`): + Keep the most recently accessed rows. + max_cleaned_rows_number (`int`): + Maximum number of rows to discard. + """ + if keep_first_rows_number < 0 or keep_most_recent_rows_number < 0 or max_cleaned_rows_number < 0: + raise ValueError( + "Failed to run cached assets cleaning. Make sure all of keep_first_rows_number," + f" keep_most_recent_rows_number and max_cleaned_rows_number are set (got {keep_first_rows_number}," + f" {keep_most_recent_rows_number} and {max_cleaned_rows_number})" + ) + row_directories = glob_rows_in_assets_dir(dataset, cached_assets_directory) + row_directories_sample = list( + islice( + ( + row_dir + for row_dir in row_directories + if _greater_or_equal(row_dir.name, keep_first_rows_number, on_error=True) + ), + max_cleaned_rows_number + keep_most_recent_rows_number, + ) + ) + if len(row_directories_sample) > keep_most_recent_rows_number: + row_dirs_to_delete = sorted(row_directories_sample, key=os.path.getmtime, reverse=True)[ + keep_most_recent_rows_number: + ] + for row_dir_to_delete in row_dirs_to_delete: + shutil.rmtree(row_dir_to_delete, ignore_errors=True) diff --git a/libs/libapi/tests/test_utils.py b/libs/libapi/tests/test_utils.py new file mode 100644 index 00000000..5496a835 --- /dev/null +++ b/libs/libapi/tests/test_utils.py @@ -0,0 +1,57 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +import os +import time +from pathlib import Path +from typing import List +from unittest.mock import patch + +import pytest +from libcommon.storage import StrPath + +from libapi.utils import clean_cached_assets + + [email protected]( + "n_rows,keep_most_recent_rows_number,keep_first_rows_number,max_cleaned_rows_number,expected_remaining_rows", + [ + (8, 1, 1, 100, [0, 7]), + (8, 2, 2, 100, [0, 1, 6, 7]), + (8, 1, 1, 3, [0, 4, 5, 6, 7]), + ], +) +def test_clean_cached_assets( + tmp_path: Path, + n_rows: int, + keep_most_recent_rows_number: int, + keep_first_rows_number: int, + max_cleaned_rows_number: int, + expected_remaining_rows: list[int], +) -> None: + cached_assets_directory = tmp_path / "cached-assets" + split_dir = cached_assets_directory / "ds/--/plain_text/train" + split_dir.mkdir(parents=True) + for i in range(n_rows): + (split_dir / str(i)).mkdir() + time.sleep(0.01) + + def deterministic_glob_rows_in_assets_dir( + dataset: str, + assets_directory: StrPath, + ) -> List[Path]: + return sorted( + list(Path(assets_directory).resolve().glob(os.path.join(dataset, "--", "*", "*", "*"))), + key=lambda p: int(p.name), + ) + + with patch("libapi.utils.glob_rows_in_assets_dir", deterministic_glob_rows_in_assets_dir): + clean_cached_assets( + "ds", + cached_assets_directory, + keep_most_recent_rows_number=keep_most_recent_rows_number, + keep_first_rows_number=keep_first_rows_number, + max_cleaned_rows_number=max_cleaned_rows_number, + ) + remaining_rows = sorted(int(row_dir.name) for row_dir in split_dir.glob("*")) + assert remaining_rows == expected_remaining_rows diff --git a/libs/libcommon/src/libcommon/parquet_utils.py b/libs/libcommon/src/libcommon/parquet_utils.py index 58d4eed1..c80e8a1c 100644 --- a/libs/libcommon/src/libcommon/parquet_utils.py +++ b/libs/libcommon/src/libcommon/parquet_utils.py @@ -6 +6 @@ from functools import lru_cache, partial -from typing import Callable, List, Literal, Optional, Tuple, TypedDict, Union +from typing import Callable, List, Literal, Optional, TypedDict, Union @@ -11,2 +11,2 @@ import pyarrow.parquet as pq -from datasets import Features, Value -from datasets.features.features import FeatureType, _visit +from datasets import Features +from datasets.features.features import FeatureType @@ -19,0 +20 @@ from libcommon.storage import StrPath +from libcommon.viewer_utils.features import get_supported_unsupported_columns @@ -45,27 +45,0 @@ class ParquetFileMetadataItem(TypedDict): -def get_supported_unsupported_columns( - features: Features, - unsupported_features: List[FeatureType] = [], -) -> Tuple[List[str], List[str]]: - supported_columns, unsupported_columns = [], [] - - for column, feature in features.items(): - str_column = str(column) - supported = True - - def classify(feature: FeatureType) -> None: - nonlocal supported - for unsupported_feature in unsupported_features: - if type(unsupported_feature) == type(feature) == Value: - if unsupported_feature.dtype == feature.dtype: - supported = False - elif type(unsupported_feature) == type(feature): - supported = False - - _visit(feature, classify) - if supported: - supported_columns.append(str_column) - else: - unsupported_columns.append(str_column) - return supported_columns, unsupported_columns - - diff --git a/libs/libcommon/src/libcommon/rows_utils.py b/libs/libcommon/src/libcommon/rows_utils.py index 4dac9c80..af05f1a7 100644 --- a/libs/libcommon/src/libcommon/rows_utils.py +++ b/libs/libcommon/src/libcommon/rows_utils.py @@ -4 +4 @@ -from typing import List +from typing import List, Optional @@ -21,0 +22 @@ def transform_rows( + row_idx_column: Optional[str], @@ -29 +30 @@ def transform_rows( - row_idx=offset + row_idx, + row_idx=offset + row_idx if row_idx_column is None else row[row_idx_column], diff --git a/libs/libcommon/src/libcommon/utils.py b/libs/libcommon/src/libcommon/utils.py index 2e5af029..30f21d02 100644 --- a/libs/libcommon/src/libcommon/utils.py +++ b/libs/libcommon/src/libcommon/utils.py @@ -9 +9 @@ from http import HTTPStatus -from typing import Any, List, Mapping, Optional, TypedDict +from typing import Any, Dict, List, Mapping, Optional, TypedDict @@ -85 +85 @@ class RowItem(TypedDict): -Row = Mapping[str, Any] +Row = Dict[str, Any] @@ -93,0 +94,6 @@ class FeatureItem(TypedDict): +class PaginatedResponse(TypedDict): + features: List[FeatureItem] + rows: Any + num_total_rows: int + + diff --git a/libs/libcommon/src/libcommon/viewer_utils/features.py b/libs/libcommon/src/libcommon/viewer_utils/features.py index c85eb38e..6a0dfe6a 100644 --- a/libs/libcommon/src/libcommon/viewer_utils/features.py +++ b/libs/libcommon/src/libcommon/viewer_utils/features.py @@ -6 +6 @@ from io import BytesIO -from typing import Any, List, Optional, Union +from typing import Any, List, Optional, Tuple, Union @@ -22,0 +23 @@ from datasets import ( +from datasets.features.features import FeatureType, _visit @@ -300,0 +302,27 @@ def to_features_list(features: Features) -> List[FeatureItem]: + + +def get_supported_unsupported_columns( + features: Features, + unsupported_features: List[FeatureType] = [], +) -> Tuple[List[str], List[str]]: + supported_columns, unsupported_columns = [], [] + + for column, feature in features.items(): + str_column = str(column) + supported = True + + def classify(feature: FeatureType) -> None: + nonlocal supported + for unsupported_feature in unsupported_features: + if type(unsupported_feature) == type(feature) == Value: + if unsupported_feature.dtype == feature.dtype: + supported = False + elif type(unsupported_feature) == type(feature): + supported = False + + _visit(feature, classify) + if supported: + supported_columns.append(str_column) + else: + unsupported_columns.append(str_column) + return supported_columns, unsupported_columns diff --git a/libs/libcommon/tests/viewer_utils/test_features.py b/libs/libcommon/tests/viewer_utils/test_features.py index 1d716bd3..50f62a9b 100644 --- a/libs/libcommon/tests/viewer_utils/test_features.py +++ b/libs/libcommon/tests/viewer_utils/test_features.py @@ -10 +10 @@ import pytest -from datasets import Audio, Dataset, Image, Value +from datasets import Audio, Dataset, Features, Image, Value @@ -13 +13,4 @@ from libcommon.storage import StrPath -from libcommon.viewer_utils.features import get_cell_value +from libcommon.viewer_utils.features import ( + get_cell_value, + get_supported_unsupported_columns, +) @@ -319,0 +323,19 @@ def test_others( + + +def test_get_supported_unsupported_columns() -> None: + features = Features( + { + "audio1": Audio(), + "audio2": Audio(sampling_rate=16_000), + "audio3": [Audio()], + "image1": Image(), + "image2": Image(decode=False), + "image3": [Image()], + "string": Value("string"), + "binary": Value("binary"), + } + ) + unsupported_features = [Value("binary"), Audio()] + supported_columns, unsupported_columns = get_supported_unsupported_columns(features, unsupported_features) + assert supported_columns == ["image1", "image2", "image3", "string"] + assert unsupported_columns == ["audio1", "audio2", "audio3", "binary"] diff --git a/services/reverse-proxy/README.md b/services/reverse-proxy/README.md index 2fc6a99b..f0881b1f 100644 --- a/services/reverse-proxy/README.md +++ b/services/reverse-proxy/README.md @@ -22,0 +23 @@ It takes various environment variables, all of them are mandatory: +- `URL_SEARCH`= URL of the search service, eg `http://search:8083` diff --git a/services/rows/src/rows/routes/rows.py b/services/rows/src/rows/routes/rows.py index 830315d9..30a83e95 100644 --- a/services/rows/src/rows/routes/rows.py +++ b/services/rows/src/rows/routes/rows.py @@ -5 +4,0 @@ import logging -import os @@ -7,2 +5,0 @@ import random -import shutil -from itertools import islice @@ -23,0 +21 @@ from libapi.utils import ( + clean_cached_assets, @@ -34,4 +32 @@ from libcommon.storage import StrPath -from libcommon.viewer_utils.asset import ( - glob_rows_in_assets_dir, - update_last_modified_date_of_rows_in_assets_dir, -) +from libcommon.viewer_utils.asset import update_last_modified_date_of_rows_in_assets_dir @@ -54,63 +48,0 @@ UNSUPPORTED_FEATURES = [Value("binary"), Audio()] -def _greater_or_equal(row_dir_name: str, row_idx: int, on_error: bool) -> bool: - try: - return int(row_dir_name) >= row_idx - except ValueError: - return on_error - - -def clean_cached_assets( - dataset: str, - cached_assets_directory: StrPath, - keep_first_rows_number: int, - keep_most_recent_rows_number: int, - max_cleaned_rows_number: int, -) -> None: - """ - The cached assets directory is cleaned to save disk space using this simple (?) heuristic: - - 1. it takes a big sample of rows from the cache using glob (max `max_cleaned_rows_number`) - 2. it keeps the most recent ones (max `keep_most_recent_rows_number`) - 3. it keeps the rows below a certain index (max `keep_first_rows_number`) - 4. it discards the rest - - To check for the most recent rows, it looks at the "last modified time" of rows directories. - This time is updated every time a row is accessed using `update_last_modified_date_of_rows_in_assets_dir()`. - - Args: - dataset (`str`): - Dataset name e.g `squad` or `lhoestq/demo1`. - Rows are cleaned in any dataset configuration or split of this dataset. - cached_assets_directory (`str`): - Directory containing the cached image and audio files - keep_first_rows_number (`int`): - Keep the rows with an index below a certain number - keep_most_recent_rows_number (`int`): - Keep the most recently accessed rows. - max_cleaned_rows_number (`int`): - Maximum number of rows to discard. - """ - if keep_first_rows_number < 0 or keep_most_recent_rows_number < 0 or max_cleaned_rows_number < 0: - raise ValueError( - "Failed to run cached assets cleaning. Make sure all of keep_first_rows_number," - f" keep_most_recent_rows_number and max_cleaned_rows_number are set (got {keep_first_rows_number}," - f" {keep_most_recent_rows_number} and {max_cleaned_rows_number})" - ) - row_directories = glob_rows_in_assets_dir(dataset, cached_assets_directory) - row_directories_sample = list( - islice( - ( - row_dir - for row_dir in row_directories - if _greater_or_equal(row_dir.name, keep_first_rows_number, on_error=True) - ), - max_cleaned_rows_number + keep_most_recent_rows_number, - ) - ) - if len(row_directories_sample) > keep_most_recent_rows_number: - row_dirs_to_delete = sorted(row_directories_sample, key=os.path.getmtime, reverse=True)[ - keep_most_recent_rows_number: - ] - for row_dir_to_delete in row_dirs_to_delete: - shutil.rmtree(row_dir_to_delete, ignore_errors=True) - - diff --git a/services/rows/tests/routes/test_rows.py b/services/rows/tests/routes/test_rows.py index 1ca6672e..673b93de 100644 --- a/services/rows/tests/routes/test_rows.py +++ b/services/rows/tests/routes/test_rows.py @@ -9 +9 @@ from pathlib import Path -from typing import Any, Generator, List +from typing import Any, Generator @@ -14 +14 @@ import pytest -from datasets import Audio, Dataset, Features, Image, Value, concatenate_datasets +from datasets import Dataset, Image, concatenate_datasets @@ -18,6 +18 @@ from fsspec.implementations.http import HTTPFileSystem -from libcommon.parquet_utils import ( - Indexer, - ParquetIndexWithMetadata, - RowsIndex, - get_supported_unsupported_columns, -) +from libcommon.parquet_utils import Indexer, ParquetIndexWithMetadata, RowsIndex @@ -30 +25 @@ from rows.config import AppConfig -from rows.routes.rows import clean_cached_assets, create_response +from rows.routes.rows import create_response @@ -382,44 +376,0 @@ def test_create_response_with_image( [email protected]( - "n_rows,keep_most_recent_rows_number,keep_first_rows_number,max_cleaned_rows_number,expected_remaining_rows", - [ - (8, 1, 1, 100, [0, 7]), - (8, 2, 2, 100, [0, 1, 6, 7]), - (8, 1, 1, 3, [0, 4, 5, 6, 7]), - ], -) -def test_clean_cached_assets( - tmp_path: Path, - n_rows: int, - keep_most_recent_rows_number: int, - keep_first_rows_number: int, - max_cleaned_rows_number: int, - expected_remaining_rows: list[int], -) -> None: - cached_assets_directory = tmp_path / "cached-assets" - split_dir = cached_assets_directory / "ds/--/plain_text/train" - split_dir.mkdir(parents=True) - for i in range(n_rows): - (split_dir / str(i)).mkdir() - time.sleep(0.01) - - def deterministic_glob_rows_in_assets_dir( - dataset: str, - assets_directory: StrPath, - ) -> List[Path]: - return sorted( - list(Path(assets_directory).resolve().glob(os.path.join(dataset, "--", "*", "*", "*"))), - key=lambda p: int(p.name), - ) - - with patch("rows.routes.rows.glob_rows_in_assets_dir", deterministic_glob_rows_in_assets_dir): - clean_cached_assets( - "ds", - cached_assets_directory, - keep_most_recent_rows_number=keep_most_recent_rows_number, - keep_first_rows_number=keep_first_rows_number, - max_cleaned_rows_number=max_cleaned_rows_number, - ) - remaining_rows = sorted(int(row_dir.name) for row_dir in split_dir.glob("*")) - assert remaining_rows == expected_remaining_rows - - @@ -446,19 +396,0 @@ def test_update_last_modified_date_of_rows_in_assets_dir(tmp_path: Path) -> None - - -def test_get_supported_unsupported_columns() -> None: - features = Features( - { - "audio1": Audio(), - "audio2": Audio(sampling_rate=16_000), - "audio3": [Audio()], - "image1": Image(), - "image2": Image(decode=False), - "image3": [Image()], - "string": Value("string"), - "binary": Value("binary"), - } - ) - unsupported_features = [Value("binary"), Audio()] - supported_columns, unsupported_columns = get_supported_unsupported_columns(features, unsupported_features) - assert supported_columns == ["image1", "image2", "image3", "string"] - assert unsupported_columns == ["audio1", "audio2", "audio3", "binary"] diff --git a/services/search/.flake8 b/services/search/.flake8 new file mode 100644 index 00000000..f7d6157c --- /dev/null +++ b/services/search/.flake8 @@ -0,0 +1,5 @@ +[flake8] +# Recommend matching the black line length (119), +# rather than using the flake8 default of 79: +max-line-length = 119 +extend-ignore = "E203" diff --git a/services/search/.python-version b/services/search/.python-version new file mode 100644 index 00000000..b326afbc --- /dev/null +++ b/services/search/.python-version @@ -0,0 +1 @@ +3.9.15 diff --git a/services/search/Dockerfile b/services/search/Dockerfile new file mode 100644 index 00000000..9bc89d44 --- /dev/null +++ b/services/search/Dockerfile @@ -0,0 +1,35 @@ +# build with +# docker build -t some_tag_search -f Dockerfile ../.. +FROM python:3.9.15-slim + +ENV PYTHONFAULTHANDLER=1 \ + PYTHONUNBUFFERED=1 \ + PYTHONHASHSEED=random \ + PIP_NO_CACHE_DIR=1 \ + PIP_DISABLE_PIP_VERSION_CHECK=on \ + PIP_DEFAULT_TIMEOUT=100 \ + POETRY_NO_INTERACTION=1 \ + # Versions: + POETRY_VERSION=1.4.2 \ + POETRY_VIRTUALENVS_IN_PROJECT=true \ + PATH="$PATH:/root/.local/bin" + +# System deps: +RUN apt-get update \ + && apt-get install -y build-essential unzip wget \ + libicu-dev ffmpeg libavcodec-extra libsndfile1 llvm pkg-config \ + && rm -rf /var/lib/apt/lists/* +RUN pip install -U pip +RUN pip install "poetry==$POETRY_VERSION" + +WORKDIR /src +COPY services/search/poetry.lock ./services/search/poetry.lock +COPY services/search/pyproject.toml ./services/search/pyproject.toml +COPY libs/libcommon ./libs/libcommon +COPY libs/libapi ./libs/libapi +WORKDIR /src/services/search/ +RUN poetry install --no-cache +COPY services/search/src ./src +RUN poetry install --no-cache + +ENTRYPOINT ["poetry", "run", "python", "src/search/main.py"] diff --git a/services/search/Makefile b/services/search/Makefile new file mode 100644 index 00000000..fca7fabc --- /dev/null +++ b/services/search/Makefile @@ -0,0 +1,37 @@ +# environment variables for the commands (docker compose, poetry) +export COMPOSE_PROJECT_NAME := search +export MONGO_PORT := 27033 +export CACHE_MONGO_URL := mongodb://localhost:${MONGO_PORT} +export QUEUE_MONGO_URL := mongodb://localhost:${MONGO_PORT} +# makefile variables +DOCKER_COMPOSE := ../../tools/docker-compose-mongo.yml +TEST_PATH ?= tests + +include ../../tools/Python.mk +include ../../tools/Docker.mk + +.PHONY: run +run: + poetry run python src/search/main.py + +.PHONY: watch +watch: + poetry run watchmedo auto-restart -d src/search -p "*.py" -R python src/search/main.py + +# override the default test target to test prometheus depending on the environment +# we cannot set the env var with pytest.MonkeyPatch, it's too late +.PHONY: test +test: + $(MAKE) up + poetry run python -m pytest -vv -x ${ADDOPTS} $(TEST_PATH) + rm -rf /tmp/search.prometheus + mkdir /tmp/search.prometheus + PROMETHEUS_MULTIPROC_DIR=/tmp/search.prometheus poetry run python -m pytest -vv -x -k "test_metrics" ${ADDOPTS} $(TEST_PATH) + rm -rf /tmp/search.prometheus + $(MAKE) down + +.PHONY: coverage +coverage: + $(MAKE) up + poetry run python -m pytest -s --cov --cov-report xml:coverage.xml --cov-report=term $(TEST_PATH) + $(MAKE) down diff --git a/services/search/README.md b/services/search/README.md new file mode 100644 index 00000000..6d692bb8 --- /dev/null +++ b/services/search/README.md @@ -0,0 +1,27 @@ +# Datasets server API - search endpoint + +> /search endpoint + +## Configuration + +The service can be configured using environment variables. They are grouped by scope. + +### Duckdb index full text search +- `DUCKDB_INDEX_STORAGE_DIRECTORY`: directory where the temporal duckdb index files are downloaded. Defaults to empty. +- `DUCKDB_INDEX_TARGET_REVISION`: the git revision of the dataset where the index file is stored in the dataset repository. + +### API service + +See [../../libs/libapi/README.md](../../libs/libapi/README.md) for more information about the API configuration. + +### Common + +See [../../libs/libcommon/README.md](../../libs/libcommon/README.md) for more information about the common configuration. + +## Endpoints + +See https://huggingface.co/docs/datasets-server + +- /healthcheck: ensure the app is running +- /metrics: return a list of metrics in the Prometheus format +- /search: get a slice of a search result over a dataset split diff --git a/services/search/dev.Dockerfile b/services/search/dev.Dockerfile new file mode 100644 index 00000000..3deea940 --- /dev/null +++ b/services/search/dev.Dockerfile @@ -0,0 +1,50 @@ +# build with +# docker build -t some_tag_search -f Dockerfile ../.. +FROM python:3.9.15-slim + +ENV PYTHONFAULTHANDLER=1 \ + PYTHONUNBUFFERED=1 \ + PYTHONHASHSEED=random \ + PIP_NO_CACHE_DIR=1 \ + PIP_DISABLE_PIP_VERSION_CHECK=on \ + PIP_DEFAULT_TIMEOUT=100 \ + POETRY_NO_INTERACTION=1 \ + # Versions: + POETRY_VERSION=1.4.2 \ + POETRY_VIRTUALENVS_IN_PROJECT=true \ + PATH="$PATH:/root/.local/bin" + +# System deps: +RUN apt-get update \ + && apt-get install -y build-essential unzip wget \ + libicu-dev ffmpeg libavcodec-extra libsndfile1 llvm pkg-config \ + && rm -rf /var/lib/apt/lists/* +RUN pip install -U pip +RUN pip install "poetry==$POETRY_VERSION" + +WORKDIR /src +COPY libs/libcommon/poetry.lock ./libs/libcommon/poetry.lock +COPY libs/libcommon/pyproject.toml ./libs/libcommon/pyproject.toml +COPY libs/libapi/poetry.lock ./libs/libapi/poetry.lock +COPY libs/libapi/pyproject.toml ./libs/libapi/pyproject.toml +COPY services/search/poetry.lock ./services/search/poetry.lock +COPY services/search/pyproject.toml ./services/search/pyproject.toml + +# FOR LOCAL DEVELOPMENT ENVIRONMENT +# Initialize an empty libcommon +# Mapping a volume to ./libs/libcommon/src is required when running this image. +RUN mkdir ./libs/libcommon/src && mkdir ./libs/libcommon/src/libcommon && touch ./libs/libcommon/src/libcommon/__init__.py +# Initialize an empty libapi +# Mapping a volume to ./libs/libapi/src is required when running this image. +RUN mkdir ./libs/libapi/src && mkdir ./libs/libapi/src/libapi && touch ./libs/libapi/src/libapi/__init__.py + +# Install dependencies +WORKDIR /src/services/search/ +RUN --mount=type=cache,target=/home/.cache/pypoetry/cache \ + --mount=type=cache,target=/home/.cache/pypoetry/artifacts \ + poetry install --no-root + +# FOR LOCAL DEVELOPMENT ENVIRONMENT +# Install the search package. +# Mapping a volume to ./services/search/src is required when running this image. +ENTRYPOINT ["/bin/sh", "-c" , "poetry install --only-root && poetry run python src/search/main.py"] diff --git a/services/search/poetry.lock b/services/search/poetry.lock new file mode 100644 index 00000000..2c7489e7 --- /dev/null +++ b/services/search/poetry.lock @@ -0,0 +1,3516 @@ +# This file is automatically @generated by Poetry and should not be changed by hand. + +[[package]] +name = "aiohttp" +version = "3.8.5" +description = "Async http client/server framework (asyncio)" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a94159871304770da4dd371f4291b20cac04e8c94f11bdea1c3478e557fbe0d8"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:13bf85afc99ce6f9ee3567b04501f18f9f8dbbb2ea11ed1a2e079670403a7c84"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ce2ac5708501afc4847221a521f7e4b245abf5178cf5ddae9d5b3856ddb2f3a"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96943e5dcc37a6529d18766597c491798b7eb7a61d48878611298afc1fca946c"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ad5c3c4590bb3cc28b4382f031f3783f25ec223557124c68754a2231d989e2b"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c413c633d0512df4dc7fd2373ec06cc6a815b7b6d6c2f208ada7e9e93a5061d"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df72ac063b97837a80d80dec8d54c241af059cc9bb42c4de68bd5b61ceb37caa"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c48c5c0271149cfe467c0ff8eb941279fd6e3f65c9a388c984e0e6cf57538e14"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:368a42363c4d70ab52c2c6420a57f190ed3dfaca6a1b19afda8165ee16416a82"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7607ec3ce4993464368505888af5beb446845a014bc676d349efec0e05085905"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0d21c684808288a98914e5aaf2a7c6a3179d4df11d249799c32d1808e79503b5"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:312fcfbacc7880a8da0ae8b6abc6cc7d752e9caa0051a53d217a650b25e9a691"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ad093e823df03bb3fd37e7dec9d4670c34f9e24aeace76808fc20a507cace825"}, + {file = "aiohttp-3.8.5-cp310-cp310-win32.whl", hash = "sha256:33279701c04351a2914e1100b62b2a7fdb9a25995c4a104259f9a5ead7ed4802"}, + {file = "aiohttp-3.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:6e4a280e4b975a2e7745573e3fc9c9ba0d1194a3738ce1cbaa80626cc9b4f4df"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ae871a964e1987a943d83d6709d20ec6103ca1eaf52f7e0d36ee1b5bebb8b9b9"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:461908b2578955045efde733719d62f2b649c404189a09a632d245b445c9c975"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72a860c215e26192379f57cae5ab12b168b75db8271f111019509a1196dfc780"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc14be025665dba6202b6a71cfcdb53210cc498e50068bc088076624471f8bb9"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8af740fc2711ad85f1a5c034a435782fbd5b5f8314c9a3ef071424a8158d7f6b"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:841cd8233cbd2111a0ef0a522ce016357c5e3aff8a8ce92bcfa14cef890d698f"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed1c46fb119f1b59304b5ec89f834f07124cd23ae5b74288e364477641060ff"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84f8ae3e09a34f35c18fa57f015cc394bd1389bce02503fb30c394d04ee6b938"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62360cb771707cb70a6fd114b9871d20d7dd2163a0feafe43fd115cfe4fe845e"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23fb25a9f0a1ca1f24c0a371523546366bb642397c94ab45ad3aedf2941cec6a"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0ba0d15164eae3d878260d4c4df859bbdc6466e9e6689c344a13334f988bb53"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5d20003b635fc6ae3f96d7260281dfaf1894fc3aa24d1888a9b2628e97c241e5"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0175d745d9e85c40dcc51c8f88c74bfbaef9e7afeeeb9d03c37977270303064c"}, + {file = "aiohttp-3.8.5-cp311-cp311-win32.whl", hash = "sha256:2e1b1e51b0774408f091d268648e3d57f7260c1682e7d3a63cb00d22d71bb945"}, + {file = "aiohttp-3.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:043d2299f6dfdc92f0ac5e995dfc56668e1587cea7f9aa9d8a78a1b6554e5755"}, + {file = "aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cae533195e8122584ec87531d6df000ad07737eaa3c81209e85c928854d2195c"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f21e83f355643c345177a5d1d8079f9f28b5133bcd154193b799d380331d5d3"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a7a75ef35f2df54ad55dbf4b73fe1da96f370e51b10c91f08b19603c64004acc"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e2e9839e14dd5308ee773c97115f1e0a1cb1d75cbeeee9f33824fa5144c7634"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44e65da1de4403d0576473e2344828ef9c4c6244d65cf4b75549bb46d40b8dd"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d847e4cde6ecc19125ccbc9bfac4a7ab37c234dd88fbb3c5c524e8e14da543"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:c7a815258e5895d8900aec4454f38dca9aed71085f227537208057853f9d13f2"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:8b929b9bd7cd7c3939f8bcfffa92fae7480bd1aa425279d51a89327d600c704d"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5db3a5b833764280ed7618393832e0853e40f3d3e9aa128ac0ba0f8278d08649"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:a0215ce6041d501f3155dc219712bc41252d0ab76474615b9700d63d4d9292af"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fd1ed388ea7fbed22c4968dd64bab0198de60750a25fe8c0c9d4bef5abe13824"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win32.whl", hash = "sha256:6e6783bcc45f397fdebc118d772103d751b54cddf5b60fbcc958382d7dd64f3e"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win_amd64.whl", hash = "sha256:b5411d82cddd212644cf9360879eb5080f0d5f7d809d03262c50dad02f01421a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:01d4c0c874aa4ddfb8098e85d10b5e875a70adc63db91f1ae65a4b04d3344cda"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5980a746d547a6ba173fd5ee85ce9077e72d118758db05d229044b469d9029a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a482e6da906d5e6e653be079b29bc173a48e381600161c9932d89dfae5942ef"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80bd372b8d0715c66c974cf57fe363621a02f359f1ec81cba97366948c7fc873"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1161b345c0a444ebcf46bf0a740ba5dcf50612fd3d0528883fdc0eff578006a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd56db019015b6acfaaf92e1ac40eb8434847d9bf88b4be4efe5bfd260aee692"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:153c2549f6c004d2754cc60603d4668899c9895b8a89397444a9c4efa282aaf4"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4a01951fabc4ce26ab791da5f3f24dca6d9a6f24121746eb19756416ff2d881b"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bfb9162dcf01f615462b995a516ba03e769de0789de1cadc0f916265c257e5d8"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:7dde0009408969a43b04c16cbbe252c4f5ef4574ac226bc8815cd7342d2028b6"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4149d34c32f9638f38f544b3977a4c24052042affa895352d3636fa8bffd030a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win32.whl", hash = "sha256:68c5a82c8779bdfc6367c967a4a1b2aa52cd3595388bf5961a62158ee8a59e22"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2cf57fb50be5f52bda004b8893e63b48530ed9f0d6c96c84620dc92fe3cd9b9d"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:eca4bf3734c541dc4f374ad6010a68ff6c6748f00451707f39857f429ca36ced"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1274477e4c71ce8cfe6c1ec2f806d57c015ebf84d83373676036e256bc55d690"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28c543e54710d6158fc6f439296c7865b29e0b616629767e685a7185fab4a6b9"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:910bec0c49637d213f5d9877105d26e0c4a4de2f8b1b29405ff37e9fc0ad52b8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5443910d662db951b2e58eb70b0fbe6b6e2ae613477129a5805d0b66c54b6cb7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e460be6978fc24e3df83193dc0cc4de46c9909ed92dd47d349a452ef49325b7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1558def481d84f03b45888473fc5a1f35747b5f334ef4e7a571bc0dfcb11f8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34dd0c107799dcbbf7d48b53be761a013c0adf5571bf50c4ecad5643fe9cfcd0"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aa1990247f02a54185dc0dff92a6904521172a22664c863a03ff64c42f9b5410"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0e584a10f204a617d71d359fe383406305a4b595b333721fa50b867b4a0a1548"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a3cf433f127efa43fee6b90ea4c6edf6c4a17109d1d037d1a52abec84d8f2e42"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:c11f5b099adafb18e65c2c997d57108b5bbeaa9eeee64a84302c0978b1ec948b"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:84de26ddf621d7ac4c975dbea4c945860e08cccde492269db4e1538a6a6f3c35"}, + {file = "aiohttp-3.8.5-cp38-cp38-win32.whl", hash = "sha256:ab88bafedc57dd0aab55fa728ea10c1911f7e4d8b43e1d838a1739f33712921c"}, + {file = "aiohttp-3.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:5798a9aad1879f626589f3df0f8b79b3608a92e9beab10e5fda02c8a2c60db2e"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a6ce61195c6a19c785df04e71a4537e29eaa2c50fe745b732aa937c0c77169f3"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:773dd01706d4db536335fcfae6ea2440a70ceb03dd3e7378f3e815b03c97ab51"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f83a552443a526ea38d064588613aca983d0ee0038801bc93c0c916428310c28"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f7372f7341fcc16f57b2caded43e81ddd18df53320b6f9f042acad41f8e049a"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea353162f249c8097ea63c2169dd1aa55de1e8fecbe63412a9bc50816e87b761"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d47ae48db0b2dcf70bc8a3bc72b3de86e2a590fc299fdbbb15af320d2659de"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d827176898a2b0b09694fbd1088c7a31836d1a505c243811c87ae53a3f6273c1"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3562b06567c06439d8b447037bb655ef69786c590b1de86c7ab81efe1c9c15d8"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4e874cbf8caf8959d2adf572a78bba17cb0e9d7e51bb83d86a3697b686a0ab4d"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6809a00deaf3810e38c628e9a33271892f815b853605a936e2e9e5129762356c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:33776e945d89b29251b33a7e7d006ce86447b2cfd66db5e5ded4e5cd0340585c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eaeed7abfb5d64c539e2db173f63631455f1196c37d9d8d873fc316470dfbacd"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e91d635961bec2d8f19dfeb41a539eb94bd073f075ca6dae6c8dc0ee89ad6f91"}, + {file = "aiohttp-3.8.5-cp39-cp39-win32.whl", hash = "sha256:00ad4b6f185ec67f3e6562e8a1d2b69660be43070bd0ef6fcec5211154c7df67"}, + {file = "aiohttp-3.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:c0a9034379a37ae42dea7ac1e048352d96286626251862e448933c0f59cbd79c"}, + {file = "aiohttp-3.8.5.tar.gz", hash = "sha256:b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"}, +] + +[package.dependencies] +aiosignal = ">=1.1.2" +async-timeout = ">=4.0.0a3,<5.0" +attrs = ">=17.3.0" +charset-normalizer = ">=2.0,<4.0" +frozenlist = ">=1.1.1" +multidict = ">=4.5,<7.0" +yarl = ">=1.0,<2.0" + +[package.extras] +speedups = ["Brotli", "aiodns", "cchardet"] + +[[package]] +name = "aiosignal" +version = "1.3.1" +description = "aiosignal: a list of registered asynchronous callbacks" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "aiosignal-1.3.1-py3-none-any.whl", hash = "sha256:f8376fb07dd1e86a584e4fcdec80b36b7f81aac666ebc724e2c090300dd83b17"}, + {file = "aiosignal-1.3.1.tar.gz", hash = "sha256:54cd96e15e1649b75d6c87526a6ff0b6c1b0dd3459f43d9ca11d48c339b68cfc"}, +] + +[package.dependencies] +frozenlist = ">=1.1.0" + +[[package]] +name = "anyio" +version = "3.7.1" +description = "High level compatibility layer for multiple asynchronous event loop implementations" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "anyio-3.7.1-py3-none-any.whl", hash = "sha256:91dee416e570e92c64041bd18b900d1d6fa78dff7048769ce5ac5ddad004fbb5"}, + {file = "anyio-3.7.1.tar.gz", hash = "sha256:44a3c9aba0f5defa43261a8b3efb97891f2bd7d804e0e1f56419befa1adfc780"}, +] + +[package.dependencies] +exceptiongroup = {version = "*", markers = "python_version < \"3.11\""} +idna = ">=2.8" +sniffio = ">=1.1" + +[package.extras] +doc = ["Sphinx", "packaging", "sphinx-autodoc-typehints (>=1.2.0)", "sphinx-rtd-theme (>=1.2.2)", "sphinxcontrib-jquery"] +test = ["anyio[trio]", "coverage[toml] (>=4.5)", "hypothesis (>=4.0)", "mock (>=4)", "psutil (>=5.9)", "pytest (>=7.0)", "pytest-mock (>=3.6.1)", "trustme", "uvloop (>=0.17)"] +trio = ["trio (<0.22)"] + +[[package]] +name = "appdirs" +version = "1.4.4" +description = "A small Python module for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "appdirs-1.4.4-py2.py3-none-any.whl", hash = "sha256:a841dacd6b99318a741b166adb07e19ee71a274450e68237b4650ca1055ab128"}, + {file = "appdirs-1.4.4.tar.gz", hash = "sha256:7d5d0167b2b1ba821647616af46a749d1c653740dd0d2415100fe26e27afdf41"}, +] + +[[package]] +name = "async-timeout" +version = "4.0.2" +description = "Timeout context manager for asyncio programs" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "async-timeout-4.0.2.tar.gz", hash = "sha256:2163e1640ddb52b7a8c80d0a67a08587e5d245cc9c553a74a847056bc2976b15"}, + {file = "async_timeout-4.0.2-py3-none-any.whl", hash = "sha256:8ca1e4fcf50d07413d66d1a5e416e42cfdf5851c981d679a09851a6853383b3c"}, +] + +[[package]] +name = "attrs" +version = "23.1.0" +description = "Classes Without Boilerplate" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "attrs-23.1.0-py3-none-any.whl", hash = "sha256:1f28b4522cdc2fb4256ac1a020c78acf9cba2c6b461ccd2c126f3aa8e8335d04"}, + {file = "attrs-23.1.0.tar.gz", hash = "sha256:6279836d581513a26f1bf235f9acd333bc9115683f14f7e8fae46c98fc50e015"}, +] + +[package.extras] +cov = ["attrs[tests]", "coverage[toml] (>=5.3)"] +dev = ["attrs[docs,tests]", "pre-commit"] +docs = ["furo", "myst-parser", "sphinx", "sphinx-notfound-page", "sphinxcontrib-towncrier", "towncrier", "zope-interface"] +tests = ["attrs[tests-no-zope]", "zope-interface"] +tests-no-zope = ["cloudpickle", "hypothesis", "mypy (>=1.1.1)", "pympler", "pytest (>=4.3.0)", "pytest-mypy-plugins", "pytest-xdist[psutil]"] + +[[package]] +name = "audioread" +version = "3.0.0" +description = "multi-library, cross-platform audio decoding" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "audioread-3.0.0.tar.gz", hash = "sha256:121995bd207eb1fda3d566beb851d3534275925bc35a4fb6da0cb11de0f7251a"}, +] + +[[package]] +name = "bandit" +version = "1.7.5" +description = "Security oriented static analyser for python code." +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "bandit-1.7.5-py3-none-any.whl", hash = "sha256:75665181dc1e0096369112541a056c59d1c5f66f9bb74a8d686c3c362b83f549"}, + {file = "bandit-1.7.5.tar.gz", hash = "sha256:bdfc739baa03b880c2d15d0431b31c658ffc348e907fe197e54e0389dd59e11e"}, +] + +[package.dependencies] +colorama = {version = ">=0.3.9", markers = "platform_system == \"Windows\""} +GitPython = ">=1.0.1" +PyYAML = ">=5.3.1" +rich = "*" +stevedore = ">=1.20.0" + +[package.extras] +test = ["beautifulsoup4 (>=4.8.0)", "coverage (>=4.5.4)", "fixtures (>=3.0.0)", "flake8 (>=4.0.0)", "pylint (==1.9.4)", "stestr (>=2.5.0)", "testscenarios (>=0.5.0)", "testtools (>=2.3.0)", "tomli (>=1.1.0)"] +toml = ["tomli (>=1.1.0)"] +yaml = ["PyYAML"] + +[[package]] +name = "black" +version = "22.12.0" +description = "The uncompromising code formatter." +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "black-22.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9eedd20838bd5d75b80c9f5487dbcb06836a43833a37846cf1d8c1cc01cef59d"}, + {file = "black-22.12.0-cp310-cp310-win_amd64.whl", hash = "sha256:159a46a4947f73387b4d83e87ea006dbb2337eab6c879620a3ba52699b1f4351"}, + {file = "black-22.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d30b212bffeb1e252b31dd269dfae69dd17e06d92b87ad26e23890f3efea366f"}, + {file = "black-22.12.0-cp311-cp311-win_amd64.whl", hash = "sha256:7412e75863aa5c5411886804678b7d083c7c28421210180d67dfd8cf1221e1f4"}, + {file = "black-22.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c116eed0efb9ff870ded8b62fe9f28dd61ef6e9ddd28d83d7d264a38417dcee2"}, + {file = "black-22.12.0-cp37-cp37m-win_amd64.whl", hash = "sha256:1f58cbe16dfe8c12b7434e50ff889fa479072096d79f0a7f25e4ab8e94cd8350"}, + {file = "black-22.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:77d86c9f3db9b1bf6761244bc0b3572a546f5fe37917a044e02f3166d5aafa7d"}, + {file = "black-22.12.0-cp38-cp38-win_amd64.whl", hash = "sha256:82d9fe8fee3401e02e79767016b4907820a7dc28d70d137eb397b92ef3cc5bfc"}, + {file = "black-22.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:101c69b23df9b44247bd88e1d7e90154336ac4992502d4197bdac35dd7ee3320"}, + {file = "black-22.12.0-cp39-cp39-win_amd64.whl", hash = "sha256:559c7a1ba9a006226f09e4916060982fd27334ae1998e7a38b3f33a37f7a2148"}, + {file = "black-22.12.0-py3-none-any.whl", hash = "sha256:436cc9167dd28040ad90d3b404aec22cedf24a6e4d7de221bec2730ec0c97bcf"}, + {file = "black-22.12.0.tar.gz", hash = "sha256:229351e5a18ca30f447bf724d007f890f97e13af070bb6ad4c0a441cd7596a2f"}, +] + +[package.dependencies] +click = ">=8.0.0" +mypy-extensions = ">=0.4.3" +pathspec = ">=0.9.0" +platformdirs = ">=2" +tomli = {version = ">=1.1.0", markers = "python_full_version < \"3.11.0a7\""} +typing-extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""} + +[package.extras] +colorama = ["colorama (>=0.4.3)"] +d = ["aiohttp (>=3.7.4)"] +jupyter = ["ipython (>=7.8.0)", "tokenize-rt (>=3.2.0)"] +uvloop = ["uvloop (>=0.15.2)"] + +[[package]] +name = "cachecontrol" +version = "0.13.1" +description = "httplib2 caching for requests" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "cachecontrol-0.13.1-py3-none-any.whl", hash = "sha256:95dedbec849f46dda3137866dc28b9d133fc9af55f5b805ab1291833e4457aa4"}, + {file = "cachecontrol-0.13.1.tar.gz", hash = "sha256:f012366b79d2243a6118309ce73151bf52a38d4a5dac8ea57f09bd29087e506b"}, +] + +[package.dependencies] +filelock = {version = ">=3.8.0", optional = true, markers = "extra == \"filecache\""} +msgpack = ">=0.5.2" +requests = ">=2.16.0" + +[package.extras] +dev = ["CacheControl[filecache,redis]", "black", "build", "cherrypy", "mypy", "pytest", "pytest-cov", "sphinx", "tox", "types-redis", "types-requests"] +filecache = ["filelock (>=3.8.0)"] +redis = ["redis (>=2.10.5)"] + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "cffi" +version = "1.15.1" +description = "Foreign Function Interface for Python calling C code." +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "cffi-1.15.1-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:a66d3508133af6e8548451b25058d5812812ec3798c886bf38ed24a98216fab2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:470c103ae716238bbe698d67ad020e1db9d9dba34fa5a899b5e21577e6d52ed2"}, + {file = "cffi-1.15.1-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9ad5db27f9cabae298d151c85cf2bad1d359a1b9c686a275df03385758e2f914"}, + {file = "cffi-1.15.1-cp27-cp27m-win32.whl", hash = "sha256:b3bbeb01c2b273cca1e1e0c5df57f12dce9a4dd331b4fa1635b8bec26350bde3"}, + {file = "cffi-1.15.1-cp27-cp27m-win_amd64.whl", hash = "sha256:e00b098126fd45523dd056d2efba6c5a63b71ffe9f2bbe1a4fe1716e1d0c331e"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:d61f4695e6c866a23a21acab0509af1cdfd2c013cf256bbf5b6b5e2695827162"}, + {file = "cffi-1.15.1-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:ed9cb427ba5504c1dc15ede7d516b84757c3e3d7868ccc85121d9310d27eed0b"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d39875251ca8f612b6f33e6b1195af86d1b3e60086068be9cc053aa4376e21"}, + {file = "cffi-1.15.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:285d29981935eb726a4399badae8f0ffdff4f5050eaa6d0cfc3f64b857b77185"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3eb6971dcff08619f8d91607cfc726518b6fa2a9eba42856be181c6d0d9515fd"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:21157295583fe8943475029ed5abdcf71eb3911894724e360acff1d61c1d54bc"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5635bd9cb9731e6d4a1132a498dd34f764034a8ce60cef4f5319c0541159392f"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2012c72d854c2d03e45d06ae57f40d78e5770d252f195b93f581acf3ba44496e"}, + {file = "cffi-1.15.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd86c085fae2efd48ac91dd7ccffcfc0571387fe1193d33b6394db7ef31fe2a4"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:fa6693661a4c91757f4412306191b6dc88c1703f780c8234035eac011922bc01"}, + {file = "cffi-1.15.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:59c0b02d0a6c384d453fece7566d1c7e6b7bae4fc5874ef2ef46d56776d61c9e"}, + {file = "cffi-1.15.1-cp310-cp310-win32.whl", hash = "sha256:cba9d6b9a7d64d4bd46167096fc9d2f835e25d7e4c121fb2ddfc6528fb0413b2"}, + {file = "cffi-1.15.1-cp310-cp310-win_amd64.whl", hash = "sha256:ce4bcc037df4fc5e3d184794f27bdaab018943698f4ca31630bc7f84a7b69c6d"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3d08afd128ddaa624a48cf2b859afef385b720bb4b43df214f85616922e6a5ac"}, + {file = "cffi-1.15.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3799aecf2e17cf585d977b780ce79ff0dc9b78d799fc694221ce814c2c19db83"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a591fe9e525846e4d154205572a029f653ada1a78b93697f3b5a8f1f2bc055b9"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3548db281cd7d2561c9ad9984681c95f7b0e38881201e157833a2342c30d5e8c"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:91fc98adde3d7881af9b59ed0294046f3806221863722ba7d8d120c575314325"}, + {file = "cffi-1.15.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:94411f22c3985acaec6f83c6df553f2dbe17b698cc7f8ae751ff2237d96b9e3c"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:03425bdae262c76aad70202debd780501fabeaca237cdfddc008987c0e0f59ef"}, + {file = "cffi-1.15.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc4d65aeeaa04136a12677d3dd0b1c0c94dc43abac5860ab33cceb42b801c1e8"}, + {file = "cffi-1.15.1-cp311-cp311-win32.whl", hash = "sha256:a0f100c8912c114ff53e1202d0078b425bee3649ae34d7b070e9697f93c5d52d"}, + {file = "cffi-1.15.1-cp311-cp311-win_amd64.whl", hash = "sha256:04ed324bda3cda42b9b695d51bb7d54b680b9719cfab04227cdd1e04e5de3104"}, + {file = "cffi-1.15.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50a74364d85fd319352182ef59c5c790484a336f6db772c1a9231f1c3ed0cbd7"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e263d77ee3dd201c3a142934a086a4450861778baaeeb45db4591ef65550b0a6"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:cec7d9412a9102bdc577382c3929b337320c4c4c4849f2c5cdd14d7368c5562d"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4289fc34b2f5316fbb762d75362931e351941fa95fa18789191b33fc4cf9504a"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:173379135477dc8cac4bc58f45db08ab45d228b3363adb7af79436135d028405"}, + {file = "cffi-1.15.1-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:6975a3fac6bc83c4a65c9f9fcab9e47019a11d3d2cf7f3c0d03431bf145a941e"}, + {file = "cffi-1.15.1-cp36-cp36m-win32.whl", hash = "sha256:2470043b93ff09bf8fb1d46d1cb756ce6132c54826661a32d4e4d132e1977adf"}, + {file = "cffi-1.15.1-cp36-cp36m-win_amd64.whl", hash = "sha256:30d78fbc8ebf9c92c9b7823ee18eb92f2e6ef79b45ac84db507f52fbe3ec4497"}, + {file = "cffi-1.15.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:198caafb44239b60e252492445da556afafc7d1e3ab7a1fb3f0584ef6d742375"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5ef34d190326c3b1f822a5b7a45f6c4535e2f47ed06fec77d3d799c450b2651e"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8102eaf27e1e448db915d08afa8b41d6c7ca7a04b7d73af6514df10a3e74bd82"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5df2768244d19ab7f60546d0c7c63ce1581f7af8b5de3eb3004b9b6fc8a9f84b"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a8c4917bd7ad33e8eb21e9a5bbba979b49d9a97acb3a803092cbc1133e20343c"}, + {file = "cffi-1.15.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0e2642fe3142e4cc4af0799748233ad6da94c62a8bec3a6648bf8ee68b1c7426"}, + {file = "cffi-1.15.1-cp37-cp37m-win32.whl", hash = "sha256:e229a521186c75c8ad9490854fd8bbdd9a0c9aa3a524326b55be83b54d4e0ad9"}, + {file = "cffi-1.15.1-cp37-cp37m-win_amd64.whl", hash = "sha256:a0b71b1b8fbf2b96e41c4d990244165e2c9be83d54962a9a1d118fd8657d2045"}, + {file = "cffi-1.15.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:320dab6e7cb2eacdf0e658569d2575c4dad258c0fcc794f46215e1e39f90f2c3"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e74c6b51a9ed6589199c787bf5f9875612ca4a8a0785fb2d4a84429badaf22a"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a5c84c68147988265e60416b57fc83425a78058853509c1b0629c180094904a5"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3b926aa83d1edb5aa5b427b4053dc420ec295a08e40911296b9eb1b6170f6cca"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:87c450779d0914f2861b8526e035c5e6da0a3199d8f1add1a665e1cbc6fc6d02"}, + {file = "cffi-1.15.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4f2c9f67e9821cad2e5f480bc8d83b8742896f1242dba247911072d4fa94c192"}, + {file = "cffi-1.15.1-cp38-cp38-win32.whl", hash = "sha256:8b7ee99e510d7b66cdb6c593f21c043c248537a32e0bedf02e01e9553a172314"}, + {file = "cffi-1.15.1-cp38-cp38-win_amd64.whl", hash = "sha256:00a9ed42e88df81ffae7a8ab6d9356b371399b91dbdf0c3cb1e84c03a13aceb5"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:54a2db7b78338edd780e7ef7f9f6c442500fb0d41a5a4ea24fff1c929d5af585"}, + {file = "cffi-1.15.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:fcd131dd944808b5bdb38e6f5b53013c5aa4f334c5cad0c72742f6eba4b73db0"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7473e861101c9e72452f9bf8acb984947aa1661a7704553a9f6e4baa5ba64415"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6c9a799e985904922a4d207a94eae35c78ebae90e128f0c4e521ce339396be9d"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3bcde07039e586f91b45c88f8583ea7cf7a0770df3a1649627bf598332cb6984"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:33ab79603146aace82c2427da5ca6e58f2b3f2fb5da893ceac0c42218a40be35"}, + {file = "cffi-1.15.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5d598b938678ebf3c67377cdd45e09d431369c3b1a5b331058c338e201f12b27"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:db0fbb9c62743ce59a9ff687eb5f4afbe77e5e8403d6697f7446e5f609976f76"}, + {file = "cffi-1.15.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:98d85c6a2bef81588d9227dde12db8a7f47f639f4a17c9ae08e773aa9c697bf3"}, + {file = "cffi-1.15.1-cp39-cp39-win32.whl", hash = "sha256:40f4774f5a9d4f5e344f31a32b5096977b5d48560c5592e2f3d2c4374bd543ee"}, + {file = "cffi-1.15.1-cp39-cp39-win_amd64.whl", hash = "sha256:70df4e3b545a17496c9b3f41f5115e69a4f2e77e94e1d2a8e1070bc0c38c8a3c"}, + {file = "cffi-1.15.1.tar.gz", hash = "sha256:d400bfb9a37b1351253cb402671cea7e89bdecc294e8016a707f6d1d8ac934f9"}, +] + +[package.dependencies] +pycparser = "*" + +[[package]] +name = "charset-normalizer" +version = "3.2.0" +description = "The Real First Universal Charset Detector. Open, modern and actively maintained alternative to Chardet." +category = "main" +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "charset-normalizer-3.2.0.tar.gz", hash = "sha256:3bb3d25a8e6c0aedd251753a79ae98a093c7e7b471faa3aa9a93a81431987ace"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b87549028f680ca955556e3bd57013ab47474c3124dc069faa0b6545b6c9710"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:7c70087bfee18a42b4040bb9ec1ca15a08242cf5867c58726530bdf3945672ed"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a103b3a7069b62f5d4890ae1b8f0597618f628b286b03d4bc9195230b154bfa9"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:94aea8eff76ee6d1cdacb07dd2123a68283cb5569e0250feab1240058f53b623"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:db901e2ac34c931d73054d9797383d0f8009991e723dab15109740a63e7f902a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0dac0ff919ba34d4df1b6131f59ce95b08b9065233446be7e459f95554c0dc8"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:193cbc708ea3aca45e7221ae58f0fd63f933753a9bfb498a3b474878f12caaad"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:09393e1b2a9461950b1c9a45d5fd251dc7c6f228acab64da1c9c0165d9c7765c"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:baacc6aee0b2ef6f3d308e197b5d7a81c0e70b06beae1f1fcacffdbd124fe0e3"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:bf420121d4c8dce6b889f0e8e4ec0ca34b7f40186203f06a946fa0276ba54029"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:c04a46716adde8d927adb9457bbe39cf473e1e2c2f5d0a16ceb837e5d841ad4f"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:aaf63899c94de41fe3cf934601b0f7ccb6b428c6e4eeb80da72c58eab077b19a"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62e51710986674142526ab9f78663ca2b0726066ae26b78b22e0f5e571238dd"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win32.whl", hash = "sha256:04e57ab9fbf9607b77f7d057974694b4f6b142da9ed4a199859d9d4d5c63fe96"}, + {file = "charset_normalizer-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:48021783bdf96e3d6de03a6e39a1171ed5bd7e8bb93fc84cc649d11490f87cea"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:4957669ef390f0e6719db3613ab3a7631e68424604a7b448f079bee145da6e09"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:46fb8c61d794b78ec7134a715a3e564aafc8f6b5e338417cb19fe9f57a5a9bf2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f779d3ad205f108d14e99bb3859aa7dd8e9c68874617c72354d7ecaec2a054ac"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f25c229a6ba38a35ae6e25ca1264621cc25d4d38dca2942a7fce0b67a4efe918"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2efb1bd13885392adfda4614c33d3b68dee4921fd0ac1d3988f8cbb7d589e72a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1f30b48dd7fa1474554b0b0f3fdfdd4c13b5c737a3c6284d3cdc424ec0ffff3a"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:246de67b99b6851627d945db38147d1b209a899311b1305dd84916f2b88526c6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:9bd9b3b31adcb054116447ea22caa61a285d92e94d710aa5ec97992ff5eb7cf3"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:8c2f5e83493748286002f9369f3e6607c565a6a90425a3a1fef5ae32a36d749d"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:3170c9399da12c9dc66366e9d14da8bf7147e1e9d9ea566067bbce7bb74bd9c2"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7a4826ad2bd6b07ca615c74ab91f32f6c96d08f6fcc3902ceeedaec8cdc3bcd6"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:3b1613dd5aee995ec6d4c69f00378bbd07614702a315a2cf6c1d21461fe17c23"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:9e608aafdb55eb9f255034709e20d5a83b6d60c054df0802fa9c9883d0a937aa"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win32.whl", hash = "sha256:f2a1d0fd4242bd8643ce6f98927cf9c04540af6efa92323e9d3124f57727bfc1"}, + {file = "charset_normalizer-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:681eb3d7e02e3c3655d1b16059fbfb605ac464c834a0c629048a30fad2b27489"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:c57921cda3a80d0f2b8aec7e25c8aa14479ea92b5b51b6876d975d925a2ea346"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:41b25eaa7d15909cf3ac4c96088c1f266a9a93ec44f87f1d13d4a0e86c81b982"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f058f6963fd82eb143c692cecdc89e075fa0828db2e5b291070485390b2f1c9c"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a7647ebdfb9682b7bb97e2a5e7cb6ae735b1c25008a70b906aecca294ee96cf4"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:eef9df1eefada2c09a5e7a40991b9fc6ac6ef20b1372abd48d2794a316dc0449"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e03b8895a6990c9ab2cdcd0f2fe44088ca1c65ae592b8f795c3294af00a461c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:ee4006268ed33370957f55bf2e6f4d263eaf4dc3cfc473d1d90baff6ed36ce4a"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c4983bf937209c57240cff65906b18bb35e64ae872da6a0db937d7b4af845dd7"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:3bb7fda7260735efe66d5107fb7e6af6a7c04c7fce9b2514e04b7a74b06bf5dd"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:72814c01533f51d68702802d74f77ea026b5ec52793c791e2da806a3844a46c3"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:70c610f6cbe4b9fce272c407dd9d07e33e6bf7b4aa1b7ffb6f6ded8e634e3592"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:a401b4598e5d3f4a9a811f3daf42ee2291790c7f9d74b18d75d6e21dda98a1a1"}, + {file = "charset_normalizer-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:c0b21078a4b56965e2b12f247467b234734491897e99c1d51cee628da9786959"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:95eb302ff792e12aba9a8b8f8474ab229a83c103d74a750ec0bd1c1eea32e669"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1a100c6d595a7f316f1b6f01d20815d916e75ff98c27a01ae817439ea7726329"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:6339d047dab2780cc6220f46306628e04d9750f02f983ddb37439ca47ced7149"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4b749b9cc6ee664a3300bb3a273c1ca8068c46be705b6c31cf5d276f8628a94"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a38856a971c602f98472050165cea2cdc97709240373041b69030be15047691f"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f87f746ee241d30d6ed93969de31e5ffd09a2961a051e60ae6bddde9ec3583aa"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89f1b185a01fe560bc8ae5f619e924407efca2191b56ce749ec84982fc59a32a"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e1c8a2f4c69e08e89632defbfabec2feb8a8d99edc9f89ce33c4b9e36ab63037"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:2f4ac36d8e2b4cc1aa71df3dd84ff8efbe3bfb97ac41242fbcfc053c67434f46"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a386ebe437176aab38c041de1260cd3ea459c6ce5263594399880bbc398225b2"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:ccd16eb18a849fd8dcb23e23380e2f0a354e8daa0c984b8a732d9cfaba3a776d"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:e6a5bf2cba5ae1bb80b154ed68a3cfa2fa00fde979a7f50d6598d3e17d9ac20c"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:45de3f87179c1823e6d9e32156fb14c1927fcc9aba21433f088fdfb555b77c10"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1000fba1057b92a65daec275aec30586c3de2401ccdcd41f8a5c1e2c87078706"}, + {file = "charset_normalizer-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:8b2c760cfc7042b27ebdb4a43a4453bd829a5742503599144d54a032c5dc7e9e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:855eafa5d5a2034b4621c74925d89c5efef61418570e5ef9b37717d9c796419c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:203f0c8871d5a7987be20c72442488a0b8cfd0f43b7973771640fc593f56321f"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e857a2232ba53ae940d3456f7533ce6ca98b81917d47adc3c7fd55dad8fab858"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e86d77b090dbddbe78867a0275cb4df08ea195e660f1f7f13435a4649e954e5"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4fb39a81950ec280984b3a44f5bd12819953dc5fa3a7e6fa7a80db5ee853952"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2dee8e57f052ef5353cf608e0b4c871aee320dd1b87d351c28764fc0ca55f9f4"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8700f06d0ce6f128de3ccdbc1acaea1ee264d2caa9ca05daaf492fde7c2a7200"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1920d4ff15ce893210c1f0c0e9d19bfbecb7983c76b33f046c13a8ffbd570252"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c1c76a1743432b4b60ab3358c937a3fe1341c828ae6194108a94c69028247f22"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:f7560358a6811e52e9c4d142d497f1a6e10103d3a6881f18d04dbce3729c0e2c"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:c8063cf17b19661471ecbdb3df1c84f24ad2e389e326ccaf89e3fb2484d8dd7e"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:cd6dbe0238f7743d0efe563ab46294f54f9bc8f4b9bcf57c3c666cc5bc9d1299"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:1249cbbf3d3b04902ff081ffbb33ce3377fa6e4c7356f759f3cd076cc138d020"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win32.whl", hash = "sha256:6c409c0deba34f147f77efaa67b8e4bb83d2f11c8806405f76397ae5b8c0d1c9"}, + {file = "charset_normalizer-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:7095f6fbfaa55defb6b733cfeb14efaae7a29f0b59d8cf213be4e7ca0b857b80"}, + {file = "charset_normalizer-3.2.0-py3-none-any.whl", hash = "sha256:8e098148dd37b4ce3baca71fb394c81dc5d9c7728c95df695d2dca218edf40e6"}, +] + +[[package]] +name = "click" +version = "8.1.6" +description = "Composable command line interface toolkit" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "click-8.1.6-py3-none-any.whl", hash = "sha256:fa244bb30b3b5ee2cae3da8f55c9e5e0c0e86093306301fb418eb9dc40fbded5"}, + {file = "click-8.1.6.tar.gz", hash = "sha256:48ee849951919527a045bfe3bf7baa8a959c423134e1a5b98c05c20ba75a1cbd"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[[package]] +name = "colorama" +version = "0.4.6" +description = "Cross-platform colored terminal text." +category = "main" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,!=3.5.*,!=3.6.*,>=2.7" +files = [ + {file = "colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6"}, + {file = "colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44"}, +] + +[[package]] +name = "coverage" +version = "7.2.7" +description = "Code coverage measurement for Python" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "coverage-7.2.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d39b5b4f2a66ccae8b7263ac3c8170994b65266797fb96cbbfd3fb5b23921db8"}, + {file = "coverage-7.2.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6d040ef7c9859bb11dfeb056ff5b3872436e3b5e401817d87a31e1750b9ae2fb"}, + {file = "coverage-7.2.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba90a9563ba44a72fda2e85302c3abc71c5589cea608ca16c22b9804262aaeb6"}, + {file = "coverage-7.2.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7d9405291c6928619403db1d10bd07888888ec1abcbd9748fdaa971d7d661b2"}, + {file = "coverage-7.2.7-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:31563e97dae5598556600466ad9beea39fb04e0229e61c12eaa206e0aa202063"}, + {file = "coverage-7.2.7-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:ebba1cd308ef115925421d3e6a586e655ca5a77b5bf41e02eb0e4562a111f2d1"}, + {file = "coverage-7.2.7-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:cb017fd1b2603ef59e374ba2063f593abe0fc45f2ad9abdde5b4d83bd922a353"}, + {file = "coverage-7.2.7-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d62a5c7dad11015c66fbb9d881bc4caa5b12f16292f857842d9d1871595f4495"}, + {file = "coverage-7.2.7-cp310-cp310-win32.whl", hash = "sha256:ee57190f24fba796e36bb6d3aa8a8783c643d8fa9760c89f7a98ab5455fbf818"}, + {file = "coverage-7.2.7-cp310-cp310-win_amd64.whl", hash = "sha256:f75f7168ab25dd93110c8a8117a22450c19976afbc44234cbf71481094c1b850"}, + {file = "coverage-7.2.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:06a9a2be0b5b576c3f18f1a241f0473575c4a26021b52b2a85263a00f034d51f"}, + {file = "coverage-7.2.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5baa06420f837184130752b7c5ea0808762083bf3487b5038d68b012e5937dbe"}, + {file = "coverage-7.2.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fdec9e8cbf13a5bf63290fc6013d216a4c7232efb51548594ca3631a7f13c3a3"}, + {file = "coverage-7.2.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:52edc1a60c0d34afa421c9c37078817b2e67a392cab17d97283b64c5833f427f"}, + {file = "coverage-7.2.7-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:63426706118b7f5cf6bb6c895dc215d8a418d5952544042c8a2d9fe87fcf09cb"}, + {file = "coverage-7.2.7-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:afb17f84d56068a7c29f5fa37bfd38d5aba69e3304af08ee94da8ed5b0865833"}, + {file = "coverage-7.2.7-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:48c19d2159d433ccc99e729ceae7d5293fbffa0bdb94952d3579983d1c8c9d97"}, + {file = "coverage-7.2.7-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0e1f928eaf5469c11e886fe0885ad2bf1ec606434e79842a879277895a50942a"}, + {file = "coverage-7.2.7-cp311-cp311-win32.whl", hash = "sha256:33d6d3ea29d5b3a1a632b3c4e4f4ecae24ef170b0b9ee493883f2df10039959a"}, + {file = "coverage-7.2.7-cp311-cp311-win_amd64.whl", hash = "sha256:5b7540161790b2f28143191f5f8ec02fb132660ff175b7747b95dcb77ac26562"}, + {file = "coverage-7.2.7-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:f2f67fe12b22cd130d34d0ef79206061bfb5eda52feb6ce0dba0644e20a03cf4"}, + {file = "coverage-7.2.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a342242fe22407f3c17f4b499276a02b01e80f861f1682ad1d95b04018e0c0d4"}, + {file = "coverage-7.2.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:171717c7cb6b453aebac9a2ef603699da237f341b38eebfee9be75d27dc38e01"}, + {file = "coverage-7.2.7-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:49969a9f7ffa086d973d91cec8d2e31080436ef0fb4a359cae927e742abfaaa6"}, + {file = "coverage-7.2.7-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:b46517c02ccd08092f4fa99f24c3b83d8f92f739b4657b0f146246a0ca6a831d"}, + {file = "coverage-7.2.7-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:a3d33a6b3eae87ceaefa91ffdc130b5e8536182cd6dfdbfc1aa56b46ff8c86de"}, + {file = "coverage-7.2.7-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:976b9c42fb2a43ebf304fa7d4a310e5f16cc99992f33eced91ef6f908bd8f33d"}, + {file = "coverage-7.2.7-cp312-cp312-win32.whl", hash = "sha256:8de8bb0e5ad103888d65abef8bca41ab93721647590a3f740100cd65c3b00511"}, + {file = "coverage-7.2.7-cp312-cp312-win_amd64.whl", hash = "sha256:9e31cb64d7de6b6f09702bb27c02d1904b3aebfca610c12772452c4e6c21a0d3"}, + {file = "coverage-7.2.7-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:58c2ccc2f00ecb51253cbe5d8d7122a34590fac9646a960d1430d5b15321d95f"}, + {file = "coverage-7.2.7-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d22656368f0e6189e24722214ed8d66b8022db19d182927b9a248a2a8a2f67eb"}, + {file = "coverage-7.2.7-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a895fcc7b15c3fc72beb43cdcbdf0ddb7d2ebc959edac9cef390b0d14f39f8a9"}, + {file = "coverage-7.2.7-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e84606b74eb7de6ff581a7915e2dab7a28a0517fbe1c9239eb227e1354064dcd"}, + {file = "coverage-7.2.7-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:0a5f9e1dbd7fbe30196578ca36f3fba75376fb99888c395c5880b355e2875f8a"}, + {file = "coverage-7.2.7-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:419bfd2caae268623dd469eff96d510a920c90928b60f2073d79f8fe2bbc5959"}, + {file = "coverage-7.2.7-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:2aee274c46590717f38ae5e4650988d1af340fe06167546cc32fe2f58ed05b02"}, + {file = "coverage-7.2.7-cp37-cp37m-win32.whl", hash = "sha256:61b9a528fb348373c433e8966535074b802c7a5d7f23c4f421e6c6e2f1697a6f"}, + {file = "coverage-7.2.7-cp37-cp37m-win_amd64.whl", hash = "sha256:b1c546aca0ca4d028901d825015dc8e4d56aac4b541877690eb76490f1dc8ed0"}, + {file = "coverage-7.2.7-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:54b896376ab563bd38453cecb813c295cf347cf5906e8b41d340b0321a5433e5"}, + {file = "coverage-7.2.7-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3d376df58cc111dc8e21e3b6e24606b5bb5dee6024f46a5abca99124b2229ef5"}, + {file = "coverage-7.2.7-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5e330fc79bd7207e46c7d7fd2bb4af2963f5f635703925543a70b99574b0fea9"}, + {file = "coverage-7.2.7-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e9d683426464e4a252bf70c3498756055016f99ddaec3774bf368e76bbe02b6"}, + {file = "coverage-7.2.7-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8d13c64ee2d33eccf7437961b6ea7ad8673e2be040b4f7fd4fd4d4d28d9ccb1e"}, + {file = "coverage-7.2.7-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:b7aa5f8a41217360e600da646004f878250a0d6738bcdc11a0a39928d7dc2050"}, + {file = "coverage-7.2.7-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:8fa03bce9bfbeeef9f3b160a8bed39a221d82308b4152b27d82d8daa7041fee5"}, + {file = "coverage-7.2.7-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:245167dd26180ab4c91d5e1496a30be4cd721a5cf2abf52974f965f10f11419f"}, + {file = "coverage-7.2.7-cp38-cp38-win32.whl", hash = "sha256:d2c2db7fd82e9b72937969bceac4d6ca89660db0a0967614ce2481e81a0b771e"}, + {file = "coverage-7.2.7-cp38-cp38-win_amd64.whl", hash = "sha256:2e07b54284e381531c87f785f613b833569c14ecacdcb85d56b25c4622c16c3c"}, + {file = "coverage-7.2.7-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:537891ae8ce59ef63d0123f7ac9e2ae0fc8b72c7ccbe5296fec45fd68967b6c9"}, + {file = "coverage-7.2.7-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:06fb182e69f33f6cd1d39a6c597294cff3143554b64b9825d1dc69d18cc2fff2"}, + {file = "coverage-7.2.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:201e7389591af40950a6480bd9edfa8ed04346ff80002cec1a66cac4549c1ad7"}, + {file = "coverage-7.2.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f6951407391b639504e3b3be51b7ba5f3528adbf1a8ac3302b687ecababf929e"}, + {file = "coverage-7.2.7-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f48351d66575f535669306aa7d6d6f71bc43372473b54a832222803eb956fd1"}, + {file = "coverage-7.2.7-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:b29019c76039dc3c0fd815c41392a044ce555d9bcdd38b0fb60fb4cd8e475ba9"}, + {file = "coverage-7.2.7-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:81c13a1fc7468c40f13420732805a4c38a105d89848b7c10af65a90beff25250"}, + {file = "coverage-7.2.7-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:975d70ab7e3c80a3fe86001d8751f6778905ec723f5b110aed1e450da9d4b7f2"}, + {file = "coverage-7.2.7-cp39-cp39-win32.whl", hash = "sha256:7ee7d9d4822c8acc74a5e26c50604dff824710bc8de424904c0982e25c39c6cb"}, + {file = "coverage-7.2.7-cp39-cp39-win_amd64.whl", hash = "sha256:eb393e5ebc85245347950143969b241d08b52b88a3dc39479822e073a1a8eb27"}, + {file = "coverage-7.2.7-pp37.pp38.pp39-none-any.whl", hash = "sha256:b7b4c971f05e6ae490fef852c218b0e79d4e52f79ef0c8475566584a8fb3e01d"}, + {file = "coverage-7.2.7.tar.gz", hash = "sha256:924d94291ca674905fe9481f12294eb11f2d3d3fd1adb20314ba89e94f44ed59"}, +] + +[package.extras] +toml = ["tomli"] + +[[package]] +name = "cryptography" +version = "41.0.3" +description = "cryptography is a package which provides cryptographic recipes and primitives to Python developers." +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "cryptography-41.0.3-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:652627a055cb52a84f8c448185922241dd5217443ca194d5739b44612c5e6507"}, + {file = "cryptography-41.0.3-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:8f09daa483aedea50d249ef98ed500569841d6498aa9c9f4b0531b9964658922"}, + {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4fd871184321100fb400d759ad0cddddf284c4b696568204d281c902fc7b0d81"}, + {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84537453d57f55a50a5b6835622ee405816999a7113267739a1b4581f83535bd"}, + {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:3fb248989b6363906827284cd20cca63bb1a757e0a2864d4c1682a985e3dca47"}, + {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:42cb413e01a5d36da9929baa9d70ca90d90b969269e5a12d39c1e0d475010116"}, + {file = "cryptography-41.0.3-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:aeb57c421b34af8f9fe830e1955bf493a86a7996cc1338fe41b30047d16e962c"}, + {file = "cryptography-41.0.3-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:6af1c6387c531cd364b72c28daa29232162010d952ceb7e5ca8e2827526aceae"}, + {file = "cryptography-41.0.3-cp37-abi3-win32.whl", hash = "sha256:0d09fb5356f975974dbcb595ad2d178305e5050656affb7890a1583f5e02a306"}, + {file = "cryptography-41.0.3-cp37-abi3-win_amd64.whl", hash = "sha256:a983e441a00a9d57a4d7c91b3116a37ae602907a7618b882c8013b5762e80574"}, + {file = "cryptography-41.0.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5259cb659aa43005eb55a0e4ff2c825ca111a0da1814202c64d28a985d33b087"}, + {file = "cryptography-41.0.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:67e120e9a577c64fe1f611e53b30b3e69744e5910ff3b6e97e935aeb96005858"}, + {file = "cryptography-41.0.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:7efe8041897fe7a50863e51b77789b657a133c75c3b094e51b5e4b5cec7bf906"}, + {file = "cryptography-41.0.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ce785cf81a7bdade534297ef9e490ddff800d956625020ab2ec2780a556c313e"}, + {file = "cryptography-41.0.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:57a51b89f954f216a81c9d057bf1a24e2f36e764a1ca9a501a6964eb4a6800dd"}, + {file = "cryptography-41.0.3-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:4c2f0d35703d61002a2bbdcf15548ebb701cfdd83cdc12471d2bae80878a4207"}, + {file = "cryptography-41.0.3-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:23c2d778cf829f7d0ae180600b17e9fceea3c2ef8b31a99e3c694cbbf3a24b84"}, + {file = "cryptography-41.0.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:95dd7f261bb76948b52a5330ba5202b91a26fbac13ad0e9fc8a3ac04752058c7"}, + {file = "cryptography-41.0.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:41d7aa7cdfded09b3d73a47f429c298e80796c8e825ddfadc84c8a7f12df212d"}, + {file = "cryptography-41.0.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:d0d651aa754ef58d75cec6edfbd21259d93810b73f6ec246436a21b7841908de"}, + {file = "cryptography-41.0.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:ab8de0d091acbf778f74286f4989cf3d1528336af1b59f3e5d2ebca8b5fe49e1"}, + {file = "cryptography-41.0.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a74fbcdb2a0d46fe00504f571a2a540532f4c188e6ccf26f1f178480117b33c4"}, + {file = "cryptography-41.0.3.tar.gz", hash = "sha256:6d192741113ef5e30d89dcb5b956ef4e1578f304708701b8b73d38e3e1461f34"}, +] + +[package.dependencies] +cffi = ">=1.12" + +[package.extras] +docs = ["sphinx (>=5.3.0)", "sphinx-rtd-theme (>=1.1.1)"] +docstest = ["pyenchant (>=1.6.11)", "sphinxcontrib-spelling (>=4.0.1)", "twine (>=1.12.0)"] +nox = ["nox"] +pep8test = ["black", "check-sdist", "mypy", "ruff"] +sdist = ["build"] +ssh = ["bcrypt (>=3.1.5)"] +test = ["pretend", "pytest (>=6.2.0)", "pytest-benchmark", "pytest-cov", "pytest-xdist"] +test-randomorder = ["pytest-randomly"] + +[[package]] +name = "cyclonedx-python-lib" +version = "4.0.1" +description = "A library for producing CycloneDX SBOM (Software Bill of Materials) files." +category = "dev" +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "cyclonedx_python_lib-4.0.1-py3-none-any.whl", hash = "sha256:907b64f00df85d727a425de86604768b248cf19285993729e04f17bec767f692"}, + {file = "cyclonedx_python_lib-4.0.1.tar.gz", hash = "sha256:878e33b8e0080c786f6cbd4c6f87ad610db65d6a3a686a5698415d9cfcd8925d"}, +] + +[package.dependencies] +packageurl-python = ">=0.11" +py-serializable = ">=0.11.1,<0.12.0" +sortedcontainers = ">=2.4.0,<3.0.0" + +[[package]] +name = "datasets" +version = "2.14.0" +description = "HuggingFace community-driven open-source library of datasets" +category = "main" +optional = false +python-versions = ">=3.8.0" +files = [ + {file = "datasets-2.14.0-py3-none-any.whl", hash = "sha256:93081cc3d9d0ce860c81f950a3ba23d24704da2eacbe2722092ef4f6ae0ada96"}, + {file = "datasets-2.14.0.tar.gz", hash = "sha256:1bb3d1c992a593949a8d3e445b358ac1db4ead00e6619ea2e5e7b6dfc222dde1"}, +] + +[package.dependencies] +aiohttp = "*" +dill = ">=0.3.0,<0.3.8" +fsspec = {version = ">=2021.11.1", extras = ["http"]} +huggingface-hub = ">=0.14.0,<1.0.0" +librosa = {version = "*", optional = true, markers = "extra == \"audio\""} +multiprocess = "*" +numpy = ">=1.17" +packaging = "*" +pandas = "*" +Pillow = {version = ">=6.2.1", optional = true, markers = "extra == \"vision\""} +pyarrow = ">=8.0.0" +pyyaml = ">=5.1" +requests = ">=2.19.0" +soundfile = {version = ">=0.12.1", optional = true, markers = "extra == \"audio\""} +tqdm = ">=4.62.1" +xxhash = "*" + +[package.extras] +apache-beam = ["apache-beam (>=2.26.0,<2.44.0)"] +audio = ["librosa", "soundfile (>=0.12.1)"] +benchmarks = ["tensorflow (==2.12.0)", "torch (==2.0.1)", "transformers (==4.30.1)"] +dev = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "black (>=23.1,<24.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "pyyaml (>=5.3.1)", "rarfile (>=4.0)", "ruff (>=0.0.241)", "s3fs", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +docs = ["s3fs"] +jax = ["jax (>=0.2.8,!=0.3.2,<=0.3.25)", "jaxlib (>=0.1.65,<=0.3.25)"] +metrics-tests = ["Werkzeug (>=1.0.1)", "accelerate", "bert-score (>=0.3.6)", "jiwer", "langdetect", "mauve-text", "nltk", "requests-file (>=1.5.1)", "rouge-score", "sacrebleu", "sacremoses", "scikit-learn", "scipy", "sentencepiece", "seqeval", "six (>=1.15.0,<1.16.0)", "spacy (>=3.0.0)", "texttable (>=1.6.3)", "tldextract", "tldextract (>=3.1.0)", "toml (>=0.10.1)", "typer (<0.5.0)"] +quality = ["black (>=23.1,<24.0)", "pyyaml (>=5.3.1)", "ruff (>=0.0.241)"] +s3 = ["s3fs"] +tensorflow = ["tensorflow (>=2.2.0,!=2.6.0,!=2.6.1)", "tensorflow-macos"] +tensorflow-gpu = ["tensorflow-gpu (>=2.2.0,!=2.6.0,!=2.6.1)"] +tests = ["Pillow (>=6.2.1)", "absl-py", "apache-beam (>=2.26.0,<2.44.0)", "elasticsearch (<8.0.0)", "faiss-cpu (>=1.6.4)", "joblib (<1.3.0)", "joblibspark", "librosa", "lz4", "py7zr", "pyspark (>=3.4)", "pytest", "pytest-datadir", "pytest-xdist", "rarfile (>=4.0)", "s3fs (>=2021.11.1)", "soundfile (>=0.12.1)", "sqlalchemy (<2.0.0)", "tensorflow (>=2.3,!=2.6.0,!=2.6.1)", "tensorflow-macos", "tiktoken", "torch", "transformers", "zstandard"] +torch = ["torch"] +vision = ["Pillow (>=6.2.1)"] + +[[package]] +name = "decorator" +version = "5.1.1" +description = "Decorators for Humans" +category = "main" +optional = false +python-versions = ">=3.5" +files = [ + {file = "decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186"}, + {file = "decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330"}, +] + +[[package]] +name = "defusedxml" +version = "0.7.1" +description = "XML bomb protection for Python stdlib modules" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61"}, + {file = "defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69"}, +] + +[[package]] +name = "dill" +version = "0.3.7" +description = "serialize all of Python" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "dill-0.3.7-py3-none-any.whl", hash = "sha256:76b122c08ef4ce2eedcd4d1abd8e641114bfc6c2867f49f3c41facf65bf19f5e"}, + {file = "dill-0.3.7.tar.gz", hash = "sha256:cc1c8b182eb3013e24bd475ff2e9295af86c1a38eb1aff128dac8962a9ce3c03"}, +] + +[package.extras] +graph = ["objgraph (>=1.7.2)"] + +[[package]] +name = "dnspython" +version = "1.16.0" +description = "DNS toolkit" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "dnspython-1.16.0-py2.py3-none-any.whl", hash = "sha256:f69c21288a962f4da86e56c4905b49d11aba7938d3d740e80d9e366ee4f1632d"}, + {file = "dnspython-1.16.0.zip", hash = "sha256:36c5e8e38d4369a08b6780b7f27d790a292b2b08eea01607865bf0936c558e01"}, +] + +[package.extras] +dnssec = ["ecdsa (>=0.13)", "pycryptodome"] +idna = ["idna (>=2.1)"] + +[[package]] +name = "duckdb" +version = "0.8.1" +description = "DuckDB embedded database" +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "duckdb-0.8.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:14781d21580ee72aba1f5dcae7734674c9b6c078dd60470a08b2b420d15b996d"}, + {file = "duckdb-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f13bf7ab0e56ddd2014ef762ae4ee5ea4df5a69545ce1191b8d7df8118ba3167"}, + {file = "duckdb-0.8.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e4032042d8363e55365bbca3faafc6dc336ed2aad088f10ae1a534ebc5bcc181"}, + {file = "duckdb-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:31a71bd8f0b0ca77c27fa89b99349ef22599ffefe1e7684ae2e1aa2904a08684"}, + {file = "duckdb-0.8.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:24568d6e48f3dbbf4a933109e323507a46b9399ed24c5d4388c4987ddc694fd0"}, + {file = "duckdb-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:297226c0dadaa07f7c5ae7cbdb9adba9567db7b16693dbd1b406b739ce0d7924"}, + {file = "duckdb-0.8.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:5792cf777ece2c0591194006b4d3e531f720186102492872cb32ddb9363919cf"}, + {file = "duckdb-0.8.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:12803f9f41582b68921d6b21f95ba7a51e1d8f36832b7d8006186f58c3d1b344"}, + {file = "duckdb-0.8.1-cp310-cp310-win32.whl", hash = "sha256:d0953d5a2355ddc49095e7aef1392b7f59c5be5cec8cdc98b9d9dc1f01e7ce2b"}, + {file = "duckdb-0.8.1-cp310-cp310-win_amd64.whl", hash = "sha256:6e6583c98a7d6637e83bcadfbd86e1f183917ea539f23b6b41178f32f813a5eb"}, + {file = "duckdb-0.8.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:fad7ed0d4415f633d955ac24717fa13a500012b600751d4edb050b75fb940c25"}, + {file = "duckdb-0.8.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:81ae602f34d38d9c48dd60f94b89f28df3ef346830978441b83c5b4eae131d08"}, + {file = "duckdb-0.8.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7d75cfe563aaa058d3b4ccaaa371c6271e00e3070df5de72361fd161b2fe6780"}, + {file = "duckdb-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8dbb55e7a3336f2462e5e916fc128c47fe1c03b6208d6bd413ac11ed95132aa0"}, + {file = "duckdb-0.8.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a6df53efd63b6fdf04657385a791a4e3c4fb94bfd5db181c4843e2c46b04fef5"}, + {file = "duckdb-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b188b80b70d1159b17c9baaf541c1799c1ce8b2af4add179a9eed8e2616be96"}, + {file = "duckdb-0.8.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:5ad481ee353f31250b45d64b4a104e53b21415577943aa8f84d0af266dc9af85"}, + {file = "duckdb-0.8.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d1d1b1729993611b1892509d21c21628917625cdbe824a61ce891baadf684b32"}, + {file = "duckdb-0.8.1-cp311-cp311-win32.whl", hash = "sha256:2d8f9cc301e8455a4f89aa1088b8a2d628f0c1f158d4cf9bc78971ed88d82eea"}, + {file = "duckdb-0.8.1-cp311-cp311-win_amd64.whl", hash = "sha256:07457a43605223f62d93d2a5a66b3f97731f79bbbe81fdd5b79954306122f612"}, + {file = "duckdb-0.8.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:d2c8062c3e978dbcd80d712ca3e307de8a06bd4f343aa457d7dd7294692a3842"}, + {file = "duckdb-0.8.1-cp36-cp36m-win32.whl", hash = "sha256:fad486c65ae944eae2de0d590a0a4fb91a9893df98411d66cab03359f9cba39b"}, + {file = "duckdb-0.8.1-cp36-cp36m-win_amd64.whl", hash = "sha256:86fa4506622c52d2df93089c8e7075f1c4d0ba56f4bf27faebde8725355edf32"}, + {file = "duckdb-0.8.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:60e07a62782f88420046e30cc0e3de842d0901c4fd5b8e4d28b73826ec0c3f5e"}, + {file = "duckdb-0.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f18563675977f8cbf03748efee0165b4c8ef64e0cbe48366f78e2914d82138bb"}, + {file = "duckdb-0.8.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:16e179443832bea8439ae4dff93cf1e42c545144ead7a4ef5f473e373eea925a"}, + {file = "duckdb-0.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a413d5267cb41a1afe69d30dd6d4842c588256a6fed7554c7e07dad251ede095"}, + {file = "duckdb-0.8.1-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:3784680df59eadd683b0a4c2375d451a64470ca54bd171c01e36951962b1d332"}, + {file = "duckdb-0.8.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:67a1725c2b01f9b53571ecf3f92959b652f60156c1c48fb35798302e39b3c1a2"}, + {file = "duckdb-0.8.1-cp37-cp37m-win32.whl", hash = "sha256:197d37e2588c5ad063e79819054eedb7550d43bf1a557d03ba8f8f67f71acc42"}, + {file = "duckdb-0.8.1-cp37-cp37m-win_amd64.whl", hash = "sha256:3843feb79edf100800f5037c32d5d5a5474fb94b32ace66c707b96605e7c16b2"}, + {file = "duckdb-0.8.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:624c889b0f2d656794757b3cc4fc58030d5e285f5ad2ef9fba1ea34a01dab7fb"}, + {file = "duckdb-0.8.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:fcbe3742d77eb5add2d617d487266d825e663270ef90253366137a47eaab9448"}, + {file = "duckdb-0.8.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:47516c9299d09e9dbba097b9fb339b389313c4941da5c54109df01df0f05e78c"}, + {file = "duckdb-0.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf1ba718b7522d34399446ebd5d4b9fcac0b56b6ac07bfebf618fd190ec37c1d"}, + {file = "duckdb-0.8.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e36e35d38a9ae798fe8cf6a839e81494d5b634af89f4ec9483f4d0a313fc6bdb"}, + {file = "duckdb-0.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:23493313f88ce6e708a512daacad13e83e6d1ea0be204b175df1348f7fc78671"}, + {file = "duckdb-0.8.1-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:1fb9bf0b6f63616c8a4b9a6a32789045e98c108df100e6bac783dc1e36073737"}, + {file = "duckdb-0.8.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:12fc13ecd5eddd28b203b9e3999040d3a7374a8f4b833b04bd26b8c5685c2635"}, + {file = "duckdb-0.8.1-cp38-cp38-win32.whl", hash = "sha256:a12bf4b18306c9cb2c9ba50520317e6cf2de861f121d6f0678505fa83468c627"}, + {file = "duckdb-0.8.1-cp38-cp38-win_amd64.whl", hash = "sha256:e4e809358b9559c00caac4233e0e2014f3f55cd753a31c4bcbbd1b55ad0d35e4"}, + {file = "duckdb-0.8.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:7acedfc00d97fbdb8c3d120418c41ef3cb86ef59367f3a9a30dff24470d38680"}, + {file = "duckdb-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:99bfe264059cdc1e318769103f656f98e819cd4e231cd76c1d1a0327f3e5cef8"}, + {file = "duckdb-0.8.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:538b225f361066231bc6cd66c04a5561de3eea56115a5dd773e99e5d47eb1b89"}, + {file = "duckdb-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ae0be3f71a18cd8492d05d0fc1bc67d01d5a9457b04822d025b0fc8ee6efe32e"}, + {file = "duckdb-0.8.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd82ba63b58672e46c8ec60bc9946aa4dd7b77f21c1ba09633d8847ad9eb0d7b"}, + {file = "duckdb-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:780a34559aaec8354e83aa4b7b31b3555f1b2cf75728bf5ce11b89a950f5cdd9"}, + {file = "duckdb-0.8.1-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:01f0d4e9f7103523672bda8d3f77f440b3e0155dd3b2f24997bc0c77f8deb460"}, + {file = "duckdb-0.8.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:31f692decb98c2d57891da27180201d9e93bb470a3051fcf413e8da65bca37a5"}, + {file = "duckdb-0.8.1-cp39-cp39-win32.whl", hash = "sha256:e7fe93449cd309bbc67d1bf6f6392a6118e94a9a4479ab8a80518742e855370a"}, + {file = "duckdb-0.8.1-cp39-cp39-win_amd64.whl", hash = "sha256:81d670bc6807672f038332d9bf587037aabdd741b0810de191984325ed307abd"}, + {file = "duckdb-0.8.1.tar.gz", hash = "sha256:a54d37f4abc2afc4f92314aaa56ecf215a411f40af4bffe1e86bd25e62aceee9"}, +] + +[[package]] +name = "environs" +version = "9.5.0" +description = "simplified environment variable parsing" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "environs-9.5.0-py2.py3-none-any.whl", hash = "sha256:1e549569a3de49c05f856f40bce86979e7d5ffbbc4398e7f338574c220189124"}, + {file = "environs-9.5.0.tar.gz", hash = "sha256:a76307b36fbe856bdca7ee9161e6c466fd7fcffc297109a118c59b54e27e30c9"}, +] + +[package.dependencies] +marshmallow = ">=3.0.0" +python-dotenv = "*" + +[package.extras] +dev = ["dj-database-url", "dj-email-url", "django-cache-url", "flake8 (==4.0.1)", "flake8-bugbear (==21.9.2)", "mypy (==0.910)", "pre-commit (>=2.4,<3.0)", "pytest", "tox"] +django = ["dj-database-url", "dj-email-url", "django-cache-url"] +lint = ["flake8 (==4.0.1)", "flake8-bugbear (==21.9.2)", "mypy (==0.910)", "pre-commit (>=2.4,<3.0)"] +tests = ["dj-database-url", "dj-email-url", "django-cache-url", "pytest"] + +[[package]] +name = "exceptiongroup" +version = "1.1.2" +description = "Backport of PEP 654 (exception groups)" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "exceptiongroup-1.1.2-py3-none-any.whl", hash = "sha256:e346e69d186172ca7cf029c8c1d16235aa0e04035e5750b4b95039e65204328f"}, + {file = "exceptiongroup-1.1.2.tar.gz", hash = "sha256:12c3e887d6485d16943a309616de20ae5582633e0a2eda17f4e10fd61c1e8af5"}, +] + +[package.extras] +test = ["pytest (>=6)"] + +[[package]] +name = "filelock" +version = "3.12.2" +description = "A platform independent file lock." +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "filelock-3.12.2-py3-none-any.whl", hash = "sha256:cbb791cdea2a72f23da6ac5b5269ab0a0d161e9ef0100e653b69049a7706d1ec"}, + {file = "filelock-3.12.2.tar.gz", hash = "sha256:002740518d8aa59a26b0c76e10fb8c6e15eae825d34b6fdf670333fd7b938d81"}, +] + +[package.extras] +docs = ["furo (>=2023.5.20)", "sphinx (>=7.0.1)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] +testing = ["covdefaults (>=2.3)", "coverage (>=7.2.7)", "diff-cover (>=7.5)", "pytest (>=7.3.1)", "pytest-cov (>=4.1)", "pytest-mock (>=3.10)", "pytest-timeout (>=2.1)"] + +[[package]] +name = "flake8" +version = "3.9.2" +description = "the modular source code checker: pep8 pyflakes and co" +category = "dev" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,!=3.3.*,!=3.4.*,>=2.7" +files = [ + {file = "flake8-3.9.2-py2.py3-none-any.whl", hash = "sha256:bf8fd333346d844f616e8d47905ef3a3384edae6b4e9beb0c5101e25e3110907"}, + {file = "flake8-3.9.2.tar.gz", hash = "sha256:07528381786f2a6237b061f6e96610a4167b226cb926e2aa2b6b1d78057c576b"}, +] + +[package.dependencies] +mccabe = ">=0.6.0,<0.7.0" +pycodestyle = ">=2.7.0,<2.8.0" +pyflakes = ">=2.3.0,<2.4.0" + +[[package]] +name = "frozenlist" +version = "1.4.0" +description = "A list-like structure which implements collections.abc.MutableSequence" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:764226ceef3125e53ea2cb275000e309c0aa5464d43bd72abd661e27fffc26ab"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:d6484756b12f40003c6128bfcc3fa9f0d49a687e171186c2d85ec82e3758c559"}, + {file = "frozenlist-1.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9ac08e601308e41eb533f232dbf6b7e4cea762f9f84f6357136eed926c15d12c"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d081f13b095d74b67d550de04df1c756831f3b83dc9881c38985834387487f1b"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:71932b597f9895f011f47f17d6428252fc728ba2ae6024e13c3398a087c2cdea"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:981b9ab5a0a3178ff413bca62526bb784249421c24ad7381e39d67981be2c326"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e41f3de4df3e80de75845d3e743b3f1c4c8613c3997a912dbf0229fc61a8b963"}, + {file = "frozenlist-1.4.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6918d49b1f90821e93069682c06ffde41829c346c66b721e65a5c62b4bab0300"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:0e5c8764c7829343d919cc2dfc587a8db01c4f70a4ebbc49abde5d4b158b007b"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:8d0edd6b1c7fb94922bf569c9b092ee187a83f03fb1a63076e7774b60f9481a8"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:e29cda763f752553fa14c68fb2195150bfab22b352572cb36c43c47bedba70eb"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:0c7c1b47859ee2cac3846fde1c1dc0f15da6cec5a0e5c72d101e0f83dcb67ff9"}, + {file = "frozenlist-1.4.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:901289d524fdd571be1c7be054f48b1f88ce8dddcbdf1ec698b27d4b8b9e5d62"}, + {file = "frozenlist-1.4.0-cp310-cp310-win32.whl", hash = "sha256:1a0848b52815006ea6596c395f87449f693dc419061cc21e970f139d466dc0a0"}, + {file = "frozenlist-1.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:b206646d176a007466358aa21d85cd8600a415c67c9bd15403336c331a10d956"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:de343e75f40e972bae1ef6090267f8260c1446a1695e77096db6cfa25e759a95"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ad2a9eb6d9839ae241701d0918f54c51365a51407fd80f6b8289e2dfca977cc3"}, + {file = "frozenlist-1.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bd7bd3b3830247580de99c99ea2a01416dfc3c34471ca1298bccabf86d0ff4dc"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bdf1847068c362f16b353163391210269e4f0569a3c166bc6a9f74ccbfc7e839"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:38461d02d66de17455072c9ba981d35f1d2a73024bee7790ac2f9e361ef1cd0c"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5a32087d720c608f42caed0ef36d2b3ea61a9d09ee59a5142d6070da9041b8f"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:dd65632acaf0d47608190a71bfe46b209719bf2beb59507db08ccdbe712f969b"}, + {file = "frozenlist-1.4.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:261b9f5d17cac914531331ff1b1d452125bf5daa05faf73b71d935485b0c510b"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b89ac9768b82205936771f8d2eb3ce88503b1556324c9f903e7156669f521472"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:008eb8b31b3ea6896da16c38c1b136cb9fec9e249e77f6211d479db79a4eaf01"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:e74b0506fa5aa5598ac6a975a12aa8928cbb58e1f5ac8360792ef15de1aa848f"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:490132667476f6781b4c9458298b0c1cddf237488abd228b0b3650e5ecba7467"}, + {file = "frozenlist-1.4.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:76d4711f6f6d08551a7e9ef28c722f4a50dd0fc204c56b4bcd95c6cc05ce6fbb"}, + {file = "frozenlist-1.4.0-cp311-cp311-win32.whl", hash = "sha256:a02eb8ab2b8f200179b5f62b59757685ae9987996ae549ccf30f983f40602431"}, + {file = "frozenlist-1.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:515e1abc578dd3b275d6a5114030b1330ba044ffba03f94091842852f806f1c1"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:f0ed05f5079c708fe74bf9027e95125334b6978bf07fd5ab923e9e55e5fbb9d3"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:ca265542ca427bf97aed183c1676e2a9c66942e822b14dc6e5f42e038f92a503"}, + {file = "frozenlist-1.4.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:491e014f5c43656da08958808588cc6c016847b4360e327a62cb308c791bd2d9"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:17ae5cd0f333f94f2e03aaf140bb762c64783935cc764ff9c82dff626089bebf"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1e78fb68cf9c1a6aa4a9a12e960a5c9dfbdb89b3695197aa7064705662515de2"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d5655a942f5f5d2c9ed93d72148226d75369b4f6952680211972a33e59b1dfdc"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c11b0746f5d946fecf750428a95f3e9ebe792c1ee3b1e96eeba145dc631a9672"}, + {file = "frozenlist-1.4.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e66d2a64d44d50d2543405fb183a21f76b3b5fd16f130f5c99187c3fb4e64919"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:88f7bc0fcca81f985f78dd0fa68d2c75abf8272b1f5c323ea4a01a4d7a614efc"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:5833593c25ac59ede40ed4de6d67eb42928cca97f26feea219f21d0ed0959b79"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:fec520865f42e5c7f050c2a79038897b1c7d1595e907a9e08e3353293ffc948e"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:b826d97e4276750beca7c8f0f1a4938892697a6bcd8ec8217b3312dad6982781"}, + {file = "frozenlist-1.4.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ceb6ec0a10c65540421e20ebd29083c50e6d1143278746a4ef6bcf6153171eb8"}, + {file = "frozenlist-1.4.0-cp38-cp38-win32.whl", hash = "sha256:2b8bcf994563466db019fab287ff390fffbfdb4f905fc77bc1c1d604b1c689cc"}, + {file = "frozenlist-1.4.0-cp38-cp38-win_amd64.whl", hash = "sha256:a6c8097e01886188e5be3e6b14e94ab365f384736aa1fca6a0b9e35bd4a30bc7"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6c38721585f285203e4b4132a352eb3daa19121a035f3182e08e437cface44bf"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:a0c6da9aee33ff0b1a451e867da0c1f47408112b3391dd43133838339e410963"}, + {file = "frozenlist-1.4.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:93ea75c050c5bb3d98016b4ba2497851eadf0ac154d88a67d7a6816206f6fa7f"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f61e2dc5ad442c52b4887f1fdc112f97caeff4d9e6ebe78879364ac59f1663e1"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:aa384489fefeb62321b238e64c07ef48398fe80f9e1e6afeff22e140e0850eef"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:10ff5faaa22786315ef57097a279b833ecab1a0bfb07d604c9cbb1c4cdc2ed87"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:007df07a6e3eb3e33e9a1fe6a9db7af152bbd8a185f9aaa6ece10a3529e3e1c6"}, + {file = "frozenlist-1.4.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f4f399d28478d1f604c2ff9119907af9726aed73680e5ed1ca634d377abb087"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:c5374b80521d3d3f2ec5572e05adc94601985cc526fb276d0c8574a6d749f1b3"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:ce31ae3e19f3c902de379cf1323d90c649425b86de7bbdf82871b8a2a0615f3d"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:7211ef110a9194b6042449431e08c4d80c0481e5891e58d429df5899690511c2"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:556de4430ce324c836789fa4560ca62d1591d2538b8ceb0b4f68fb7b2384a27a"}, + {file = "frozenlist-1.4.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:7645a8e814a3ee34a89c4a372011dcd817964ce8cb273c8ed6119d706e9613e3"}, + {file = "frozenlist-1.4.0-cp39-cp39-win32.whl", hash = "sha256:19488c57c12d4e8095a922f328df3f179c820c212940a498623ed39160bc3c2f"}, + {file = "frozenlist-1.4.0-cp39-cp39-win_amd64.whl", hash = "sha256:6221d84d463fb110bdd7619b69cb43878a11d51cbb9394ae3105d082d5199167"}, + {file = "frozenlist-1.4.0.tar.gz", hash = "sha256:09163bdf0b2907454042edb19f887c6d33806adc71fbd54afc14908bfdc22251"}, +] + +[[package]] +name = "fsspec" +version = "2023.6.0" +description = "File-system specification" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "fsspec-2023.6.0-py3-none-any.whl", hash = "sha256:1cbad1faef3e391fba6dc005ae9b5bdcbf43005c9167ce78c915549c352c869a"}, + {file = "fsspec-2023.6.0.tar.gz", hash = "sha256:d0b2f935446169753e7a5c5c55681c54ea91996cc67be93c39a154fb3a2742af"}, +] + +[package.dependencies] +aiohttp = {version = "<4.0.0a0 || >4.0.0a0,<4.0.0a1 || >4.0.0a1", optional = true, markers = "extra == \"http\""} +requests = {version = "*", optional = true, markers = "extra == \"http\""} + +[package.extras] +abfs = ["adlfs"] +adl = ["adlfs"] +arrow = ["pyarrow (>=1)"] +dask = ["dask", "distributed"] +devel = ["pytest", "pytest-cov"] +dropbox = ["dropbox", "dropboxdrivefs", "requests"] +full = ["adlfs", "aiohttp (!=4.0.0a0,!=4.0.0a1)", "dask", "distributed", "dropbox", "dropboxdrivefs", "fusepy", "gcsfs", "libarchive-c", "ocifs", "panel", "paramiko", "pyarrow (>=1)", "pygit2", "requests", "s3fs", "smbprotocol", "tqdm"] +fuse = ["fusepy"] +gcs = ["gcsfs"] +git = ["pygit2"] +github = ["requests"] +gs = ["gcsfs"] +gui = ["panel"] +hdfs = ["pyarrow (>=1)"] +http = ["aiohttp (!=4.0.0a0,!=4.0.0a1)", "requests"] +libarchive = ["libarchive-c"] +oci = ["ocifs"] +s3 = ["s3fs"] +sftp = ["paramiko"] +smb = ["smbprotocol"] +ssh = ["paramiko"] +tqdm = ["tqdm"] + +[[package]] +name = "gitdb" +version = "4.0.10" +description = "Git Object Database" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "gitdb-4.0.10-py3-none-any.whl", hash = "sha256:c286cf298426064079ed96a9e4a9d39e7f3e9bf15ba60701e95f5492f28415c7"}, + {file = "gitdb-4.0.10.tar.gz", hash = "sha256:6eb990b69df4e15bad899ea868dc46572c3f75339735663b81de79b06f17eb9a"}, +] + +[package.dependencies] +smmap = ">=3.0.1,<6" + +[[package]] +name = "gitpython" +version = "3.1.32" +description = "GitPython is a Python library used to interact with Git repositories" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "GitPython-3.1.32-py3-none-any.whl", hash = "sha256:e3d59b1c2c6ebb9dfa7a184daf3b6dd4914237e7488a1730a6d8f6f5d0b4187f"}, + {file = "GitPython-3.1.32.tar.gz", hash = "sha256:8d9b8cb1e80b9735e8717c9362079d3ce4c6e5ddeebedd0361b228c3a67a62f6"}, +] + +[package.dependencies] +gitdb = ">=4.0.1,<5" + +[[package]] +name = "h11" +version = "0.14.0" +description = "A pure-Python, bring-your-own-I/O implementation of HTTP/1.1" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "h11-0.14.0-py3-none-any.whl", hash = "sha256:e3fe4ac4b851c468cc8363d500db52c2ead036020723024a109d37346efaa761"}, + {file = "h11-0.14.0.tar.gz", hash = "sha256:8f19fbbe99e72420ff35c00b27a34cb9937e902a8b810e2c88300c6f0a3b699d"}, +] + +[[package]] +name = "html5lib" +version = "1.1" +description = "HTML parser based on the WHATWG HTML specification" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "html5lib-1.1-py2.py3-none-any.whl", hash = "sha256:0d78f8fde1c230e99fe37986a60526d7049ed4bf8a9fadbad5f00e22e58e041d"}, + {file = "html5lib-1.1.tar.gz", hash = "sha256:b2e5b40261e20f354d198eae92afc10d750afb487ed5e50f9c4eaf07c184146f"}, +] + +[package.dependencies] +six = ">=1.9" +webencodings = "*" + +[package.extras] +all = ["chardet (>=2.2)", "genshi", "lxml"] +chardet = ["chardet (>=2.2)"] +genshi = ["genshi"] +lxml = ["lxml"] + +[[package]] +name = "httpcore" +version = "0.16.3" +description = "A minimal low-level HTTP client." +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "httpcore-0.16.3-py3-none-any.whl", hash = "sha256:da1fb708784a938aa084bde4feb8317056c55037247c787bd7e19eb2c2949dc0"}, + {file = "httpcore-0.16.3.tar.gz", hash = "sha256:c5d6f04e2fc530f39e0c077e6a30caa53f1451096120f1f38b954afd0b17c0cb"}, +] + +[package.dependencies] +anyio = ">=3.0,<5.0" +certifi = "*" +h11 = ">=0.13,<0.15" +sniffio = ">=1.0.0,<2.0.0" + +[package.extras] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (>=1.0.0,<2.0.0)"] + +[[package]] +name = "httpx" +version = "0.23.3" +description = "The next generation HTTP client." +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "httpx-0.23.3-py3-none-any.whl", hash = "sha256:a211fcce9b1254ea24f0cd6af9869b3d29aba40154e947d2a07bb499b3e310d6"}, + {file = "httpx-0.23.3.tar.gz", hash = "sha256:9818458eb565bb54898ccb9b8b251a28785dd4a55afbc23d0eb410754fe7d0f9"}, +] + +[package.dependencies] +certifi = "*" +httpcore = ">=0.15.0,<0.17.0" +rfc3986 = {version = ">=1.3,<2", extras = ["idna2008"]} +sniffio = "*" + +[package.extras] +brotli = ["brotli", "brotlicffi"] +cli = ["click (>=8.0.0,<9.0.0)", "pygments (>=2.0.0,<3.0.0)", "rich (>=10,<13)"] +http2 = ["h2 (>=3,<5)"] +socks = ["socksio (>=1.0.0,<2.0.0)"] + +[[package]] +name = "huggingface-hub" +version = "0.15.1" +description = "Client library to download and publish models, datasets and other repos on the huggingface.co hub" +category = "main" +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "huggingface_hub-0.15.1-py3-none-any.whl", hash = "sha256:05b0fb0abbf1f625dfee864648ac3049fe225ac4371c7bafaca0c2d3a2f83445"}, + {file = "huggingface_hub-0.15.1.tar.gz", hash = "sha256:a61b7d1a7769fe10119e730277c72ab99d95c48d86a3d6da3e9f3d0f632a4081"}, +] + +[package.dependencies] +filelock = "*" +fsspec = "*" +packaging = ">=20.9" +pyyaml = ">=5.1" +requests = "*" +tqdm = ">=4.42.1" +typing-extensions = ">=3.7.4.3" + +[package.extras] +all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +cli = ["InquirerPy (==0.3.4)"] +dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"] +quality = ["black (>=23.1,<24.0)", "mypy (==0.982)", "ruff (>=0.0.241)"] +tensorflow = ["graphviz", "pydot", "tensorflow"] +testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "gradio", "jedi", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] +torch = ["torch"] +typing = ["types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] + +[[package]] +name = "idna" +version = "3.4" +description = "Internationalized Domain Names in Applications (IDNA)" +category = "main" +optional = false +python-versions = ">=3.5" +files = [ + {file = "idna-3.4-py3-none-any.whl", hash = "sha256:90b77e79eaa3eba6de819a0c442c0b4ceefc341a7a2ab77d7562bf49f425c5c2"}, + {file = "idna-3.4.tar.gz", hash = "sha256:814f528e8dead7d329833b91c5faa87d60bf71824cd12a7530b5526063d02cb4"}, +] + +[[package]] +name = "iniconfig" +version = "2.0.0" +description = "brain-dead simple config-ini parsing" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374"}, + {file = "iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3"}, +] + +[[package]] +name = "isort" +version = "5.12.0" +description = "A Python utility / library to sort Python imports." +category = "dev" +optional = false +python-versions = ">=3.8.0" +files = [ + {file = "isort-5.12.0-py3-none-any.whl", hash = "sha256:f84c2818376e66cf843d497486ea8fed8700b340f308f076c6fb1229dff318b6"}, + {file = "isort-5.12.0.tar.gz", hash = "sha256:8bef7dde241278824a6d83f44a544709b065191b95b6e50894bdc722fcba0504"}, +] + +[package.extras] +colors = ["colorama (>=0.4.3)"] +pipfile-deprecated-finder = ["pip-shims (>=0.5.2)", "pipreqs", "requirementslib"] +plugins = ["setuptools"] +requirements-deprecated-finder = ["pip-api", "pipreqs"] + +[[package]] +name = "joblib" +version = "1.3.1" +description = "Lightweight pipelining with Python functions" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "joblib-1.3.1-py3-none-any.whl", hash = "sha256:89cf0529520e01b3de7ac7b74a8102c90d16d54c64b5dd98cafcd14307fdf915"}, + {file = "joblib-1.3.1.tar.gz", hash = "sha256:1f937906df65329ba98013dc9692fe22a4c5e4a648112de500508b18a21b41e3"}, +] + +[[package]] +name = "jsonschema" +version = "4.18.4" +description = "An implementation of JSON Schema validation for Python" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema-4.18.4-py3-none-any.whl", hash = "sha256:971be834317c22daaa9132340a51c01b50910724082c2c1a2ac87eeec153a3fe"}, + {file = "jsonschema-4.18.4.tar.gz", hash = "sha256:fb3642735399fa958c0d2aad7057901554596c63349f4f6b283c493cf692a25d"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +jsonschema-specifications = ">=2023.03.6" +referencing = ">=0.28.4" +rpds-py = ">=0.7.1" + +[package.extras] +format = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3987", "uri-template", "webcolors (>=1.11)"] +format-nongpl = ["fqdn", "idna", "isoduration", "jsonpointer (>1.13)", "rfc3339-validator", "rfc3986-validator (>0.1.0)", "uri-template", "webcolors (>=1.11)"] + +[[package]] +name = "jsonschema-specifications" +version = "2023.7.1" +description = "The JSON Schema meta-schemas and vocabularies, exposed as a Registry" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "jsonschema_specifications-2023.7.1-py3-none-any.whl", hash = "sha256:05adf340b659828a004220a9613be00fa3f223f2b82002e273dee62fd50524b1"}, + {file = "jsonschema_specifications-2023.7.1.tar.gz", hash = "sha256:c91a50404e88a1f6ba40636778e2ee08f6e24c5613fe4c53ac24578a5a7f72bb"}, +] + +[package.dependencies] +referencing = ">=0.28.0" + +[[package]] +name = "lazy-loader" +version = "0.3" +description = "lazy_loader" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "lazy_loader-0.3-py3-none-any.whl", hash = "sha256:1e9e76ee8631e264c62ce10006718e80b2cfc74340d17d1031e0f84af7478554"}, + {file = "lazy_loader-0.3.tar.gz", hash = "sha256:3b68898e34f5b2a29daaaac172c6555512d0f32074f147e2254e4a6d9d838f37"}, +] + +[package.extras] +lint = ["pre-commit (>=3.3)"] +test = ["pytest (>=7.4)", "pytest-cov (>=4.1)"] + +[[package]] +name = "libapi" +version = "0.1.0" +description = "Library for the API services" +category = "main" +optional = false +python-versions = "3.9.15" +files = [] +develop = true + +[package.dependencies] +cryptography = "^41.0.1" +environs = "^9.5.0" +libcommon = {path = "../../libs/libcommon", develop = true} +orjson = "^3.8.6" +pyjwt = {version = "^2.6.0", extras = ["crypto"]} +requests = "^2.28.2" +starlette = "^0.28.0" +starlette-prometheus = "^0.9.0" + +[package.source] +type = "directory" +url = "../../libs/libapi" + +[[package]] +name = "libcommon" +version = "0.6.8" +description = "Library for utils common to all the services" +category = "main" +optional = false +python-versions = "3.9.15" +files = [] +develop = true + +[package.dependencies] +appdirs = "^1.4.4" +datasets = {version = "^2.13.1", extras = ["audio", "vision"]} +environs = "^9.5.0" +huggingface-hub = "^0.15.1" +mongo-types = "0.15.1" +mongoengine = "^0.24.2" +networkx = "^3.0" +numba = "0.56.4" +orjson = "^3.8.6" +pandas = "^2.0.1" +psutil = "^5.9.4" +pydub = "^0.25.1" +pymongo = {version = "^3.13.0", extras = ["srv"]} +pytz = "^2020.1" +requests = "^2.31.0" +soundfile = ">=0.12.1" +starlette-prometheus = "^0.9.0" +tqdm = "^4.65.0" + +[package.source] +type = "directory" +url = "../../libs/libcommon" + +[[package]] +name = "librosa" +version = "0.10.0.post2" +description = "Python module for audio and music processing" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "librosa-0.10.0.post2-py3-none-any.whl", hash = "sha256:0f3b56118cb01ea89df4b04e924c7f48c5c13d42cc55a12540eb04ae87ab5848"}, + {file = "librosa-0.10.0.post2.tar.gz", hash = "sha256:6623673da30773beaae962cb4685f188155582f25bc60fc52da968f59eea8567"}, +] + +[package.dependencies] +audioread = ">=2.1.9" +decorator = ">=4.3.0" +joblib = ">=0.14" +lazy-loader = ">=0.1" +msgpack = ">=1.0" +numba = ">=0.51.0" +numpy = ">=1.20.3,<1.22.0 || >1.22.0,<1.22.1 || >1.22.1,<1.22.2 || >1.22.2" +pooch = ">=1.0,<1.7" +scikit-learn = ">=0.20.0" +scipy = ">=1.2.0" +soundfile = ">=0.12.1" +soxr = ">=0.3.2" +typing-extensions = ">=4.1.1" + +[package.extras] +display = ["matplotlib (>=3.3.0)"] +docs = ["ipython (>=7.0)", "matplotlib (>=3.3.0)", "mir-eval (>=0.5)", "numba (>=0.51)", "numpydoc", "presets", "sphinx (!=1.3.1,<6)", "sphinx-gallery (>=0.7)", "sphinx-multiversion (>=0.2.3)", "sphinx-rtd-theme (>=1.0.0,<2.0.0)", "sphinxcontrib-svg2pdfconverter"] +tests = ["matplotlib (>=3.3.0)", "packaging (>=20.0)", "pytest", "pytest-cov", "pytest-mpl", "resampy (>=0.2.2)", "samplerate", "types-decorator"] + +[[package]] +name = "llvmlite" +version = "0.39.1" +description = "lightweight wrapper around basic LLVM functionality" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "llvmlite-0.39.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:6717c7a6e93c9d2c3d07c07113ec80ae24af45cde536b34363d4bcd9188091d9"}, + {file = "llvmlite-0.39.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ddab526c5a2c4ccb8c9ec4821fcea7606933dc53f510e2a6eebb45a418d3488a"}, + {file = "llvmlite-0.39.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a3f331a323d0f0ada6b10d60182ef06c20a2f01be21699999d204c5750ffd0b4"}, + {file = "llvmlite-0.39.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e2c00ff204afa721b0bb9835b5bf1ba7fba210eefcec5552a9e05a63219ba0dc"}, + {file = "llvmlite-0.39.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:16f56eb1eec3cda3a5c526bc3f63594fc24e0c8d219375afeb336f289764c6c7"}, + {file = "llvmlite-0.39.1-cp310-cp310-win32.whl", hash = "sha256:d0bfd18c324549c0fec2c5dc610fd024689de6f27c6cc67e4e24a07541d6e49b"}, + {file = "llvmlite-0.39.1-cp310-cp310-win_amd64.whl", hash = "sha256:7ebf1eb9badc2a397d4f6a6c8717447c81ac011db00064a00408bc83c923c0e4"}, + {file = "llvmlite-0.39.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:6546bed4e02a1c3d53a22a0bced254b3b6894693318b16c16c8e43e29d6befb6"}, + {file = "llvmlite-0.39.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1578f5000fdce513712e99543c50e93758a954297575610f48cb1fd71b27c08a"}, + {file = "llvmlite-0.39.1-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3803f11ad5f6f6c3d2b545a303d68d9fabb1d50e06a8d6418e6fcd2d0df00959"}, + {file = "llvmlite-0.39.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50aea09a2b933dab7c9df92361b1844ad3145bfb8dd2deb9cd8b8917d59306fb"}, + {file = "llvmlite-0.39.1-cp37-cp37m-win32.whl", hash = "sha256:b1a0bbdb274fb683f993198775b957d29a6f07b45d184c571ef2a721ce4388cf"}, + {file = "llvmlite-0.39.1-cp37-cp37m-win_amd64.whl", hash = "sha256:e172c73fccf7d6db4bd6f7de963dedded900d1a5c6778733241d878ba613980e"}, + {file = "llvmlite-0.39.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:e31f4b799d530255aaf0566e3da2df5bfc35d3cd9d6d5a3dcc251663656c27b1"}, + {file = "llvmlite-0.39.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:62c0ea22e0b9dffb020601bb65cb11dd967a095a488be73f07d8867f4e327ca5"}, + {file = "llvmlite-0.39.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9ffc84ade195abd4abcf0bd3b827b9140ae9ef90999429b9ea84d5df69c9058c"}, + {file = "llvmlite-0.39.1-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c0f158e4708dda6367d21cf15afc58de4ebce979c7a1aa2f6b977aae737e2a54"}, + {file = "llvmlite-0.39.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:22d36591cd5d02038912321d9ab8e4668e53ae2211da5523f454e992b5e13c36"}, + {file = "llvmlite-0.39.1-cp38-cp38-win32.whl", hash = "sha256:4c6ebace910410daf0bebda09c1859504fc2f33d122e9a971c4c349c89cca630"}, + {file = "llvmlite-0.39.1-cp38-cp38-win_amd64.whl", hash = "sha256:fb62fc7016b592435d3e3a8f680e3ea8897c3c9e62e6e6cc58011e7a4801439e"}, + {file = "llvmlite-0.39.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:fa9b26939ae553bf30a9f5c4c754db0fb2d2677327f2511e674aa2f5df941789"}, + {file = "llvmlite-0.39.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:e4f212c018db951da3e1dc25c2651abc688221934739721f2dad5ff1dd5f90e7"}, + {file = "llvmlite-0.39.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:39dc2160aed36e989610fc403487f11b8764b6650017ff367e45384dff88ffbf"}, + {file = "llvmlite-0.39.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1ec3d70b3e507515936e475d9811305f52d049281eaa6c8273448a61c9b5b7e2"}, + {file = "llvmlite-0.39.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:60f8dd1e76f47b3dbdee4b38d9189f3e020d22a173c00f930b52131001d801f9"}, + {file = "llvmlite-0.39.1-cp39-cp39-win32.whl", hash = "sha256:03aee0ccd81735696474dc4f8b6be60774892a2929d6c05d093d17392c237f32"}, + {file = "llvmlite-0.39.1-cp39-cp39-win_amd64.whl", hash = "sha256:3fc14e757bc07a919221f0cbaacb512704ce5774d7fcada793f1996d6bc75f2a"}, + {file = "llvmlite-0.39.1.tar.gz", hash = "sha256:b43abd7c82e805261c425d50335be9a6c4f84264e34d6d6e475207300005d572"}, +] + +[[package]] +name = "markdown-it-py" +version = "3.0.0" +description = "Python port of markdown-it. Markdown parsing, done right!" +category = "dev" +optional = false +python-versions = ">=3.8" +files = [ + {file = "markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb"}, + {file = "markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1"}, +] + +[package.dependencies] +mdurl = ">=0.1,<1.0" + +[package.extras] +benchmarking = ["psutil", "pytest", "pytest-benchmark"] +code-style = ["pre-commit (>=3.0,<4.0)"] +compare = ["commonmark (>=0.9,<1.0)", "markdown (>=3.4,<4.0)", "mistletoe (>=1.0,<2.0)", "mistune (>=2.0,<3.0)", "panflute (>=2.3,<3.0)"] +linkify = ["linkify-it-py (>=1,<3)"] +plugins = ["mdit-py-plugins"] +profiling = ["gprof2dot"] +rtd = ["jupyter_sphinx", "mdit-py-plugins", "myst-parser", "pyyaml", "sphinx", "sphinx-copybutton", "sphinx-design", "sphinx_book_theme"] +testing = ["coverage", "pytest", "pytest-cov", "pytest-regressions"] + +[[package]] +name = "marshmallow" +version = "3.20.1" +description = "A lightweight library for converting complex datatypes to and from native Python datatypes." +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "marshmallow-3.20.1-py3-none-any.whl", hash = "sha256:684939db93e80ad3561392f47be0230743131560a41c5110684c16e21ade0a5c"}, + {file = "marshmallow-3.20.1.tar.gz", hash = "sha256:5d2371bbe42000f2b3fb5eaa065224df7d8f8597bc19a1bbfa5bfe7fba8da889"}, +] + +[package.dependencies] +packaging = ">=17.0" + +[package.extras] +dev = ["flake8 (==6.0.0)", "flake8-bugbear (==23.7.10)", "mypy (==1.4.1)", "pre-commit (>=2.4,<4.0)", "pytest", "pytz", "simplejson", "tox"] +docs = ["alabaster (==0.7.13)", "autodocsumm (==0.2.11)", "sphinx (==7.0.1)", "sphinx-issues (==3.0.1)", "sphinx-version-warning (==1.1.2)"] +lint = ["flake8 (==6.0.0)", "flake8-bugbear (==23.7.10)", "mypy (==1.4.1)", "pre-commit (>=2.4,<4.0)"] +tests = ["pytest", "pytz", "simplejson"] + +[[package]] +name = "mccabe" +version = "0.6.1" +description = "McCabe checker, plugin for flake8" +category = "dev" +optional = false +python-versions = "*" +files = [ + {file = "mccabe-0.6.1-py2.py3-none-any.whl", hash = "sha256:ab8a6258860da4b6677da4bd2fe5dc2c659cff31b3ee4f7f5d64e79735b80d42"}, + {file = "mccabe-0.6.1.tar.gz", hash = "sha256:dd8d182285a0fe56bace7f45b5e7d1a6ebcbf524e8f3bd87eb0f125271b8831f"}, +] + +[[package]] +name = "mdurl" +version = "0.1.2" +description = "Markdown URL utilities" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8"}, + {file = "mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba"}, +] + +[[package]] +name = "mongo-types" +version = "0.15.1" +description = "Type stubs for mongoengine w/ basic support for bson and pymongo" +category = "main" +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "mongo-types-0.15.1.tar.gz", hash = "sha256:0a9deeb7733ea7da5db3711d92e22d93556b522f860bbff82e5df44c53bd06a9"}, + {file = "mongo_types-0.15.1-py3-none-any.whl", hash = "sha256:9417ae5b9a759c09630b5ec7d66904cc333c2d2fcfe75e2760a332ed5e267309"}, +] + +[[package]] +name = "mongoengine" +version = "0.24.2" +description = "MongoEngine is a Python Object-Document Mapper for working with MongoDB." +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "mongoengine-0.24.2-py3-none-any.whl", hash = "sha256:f5c4e1b206b2ccffe4adc7a6283ed26dd799bd115a5fb1d2e885a075132cdb88"}, + {file = "mongoengine-0.24.2.tar.gz", hash = "sha256:c76d49658575bb995682e2e77c8ef7cda63faf939415b32ee923745d120f8b02"}, +] + +[package.dependencies] +pymongo = ">=3.4,<5.0" + +[[package]] +name = "msgpack" +version = "1.0.5" +description = "MessagePack serializer" +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "msgpack-1.0.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:525228efd79bb831cf6830a732e2e80bc1b05436b086d4264814b4b2955b2fa9"}, + {file = "msgpack-1.0.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:4f8d8b3bf1ff2672567d6b5c725a1b347fe838b912772aa8ae2bf70338d5a198"}, + {file = "msgpack-1.0.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:cdc793c50be3f01106245a61b739328f7dccc2c648b501e237f0699fe1395b81"}, + {file = "msgpack-1.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cb47c21a8a65b165ce29f2bec852790cbc04936f502966768e4aae9fa763cb7"}, + {file = "msgpack-1.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e42b9594cc3bf4d838d67d6ed62b9e59e201862a25e9a157019e171fbe672dd3"}, + {file = "msgpack-1.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:55b56a24893105dc52c1253649b60f475f36b3aa0fc66115bffafb624d7cb30b"}, + {file = "msgpack-1.0.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:1967f6129fc50a43bfe0951c35acbb729be89a55d849fab7686004da85103f1c"}, + {file = "msgpack-1.0.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:20a97bf595a232c3ee6d57ddaadd5453d174a52594bf9c21d10407e2a2d9b3bd"}, + {file = "msgpack-1.0.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:d25dd59bbbbb996eacf7be6b4ad082ed7eacc4e8f3d2df1ba43822da9bfa122a"}, + {file = "msgpack-1.0.5-cp310-cp310-win32.whl", hash = "sha256:382b2c77589331f2cb80b67cc058c00f225e19827dbc818d700f61513ab47bea"}, + {file = "msgpack-1.0.5-cp310-cp310-win_amd64.whl", hash = "sha256:4867aa2df9e2a5fa5f76d7d5565d25ec76e84c106b55509e78c1ede0f152659a"}, + {file = "msgpack-1.0.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9f5ae84c5c8a857ec44dc180a8b0cc08238e021f57abdf51a8182e915e6299f0"}, + {file = "msgpack-1.0.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:9e6ca5d5699bcd89ae605c150aee83b5321f2115695e741b99618f4856c50898"}, + {file = "msgpack-1.0.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:5494ea30d517a3576749cad32fa27f7585c65f5f38309c88c6d137877fa28a5a"}, + {file = "msgpack-1.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1ab2f3331cb1b54165976a9d976cb251a83183631c88076613c6c780f0d6e45a"}, + {file = "msgpack-1.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28592e20bbb1620848256ebc105fc420436af59515793ed27d5c77a217477705"}, + {file = "msgpack-1.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fe5c63197c55bce6385d9aee16c4d0641684628f63ace85f73571e65ad1c1e8d"}, + {file = "msgpack-1.0.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ed40e926fa2f297e8a653c954b732f125ef97bdd4c889f243182299de27e2aa9"}, + {file = "msgpack-1.0.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b2de4c1c0538dcb7010902a2b97f4e00fc4ddf2c8cda9749af0e594d3b7fa3d7"}, + {file = "msgpack-1.0.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:bf22a83f973b50f9d38e55c6aade04c41ddda19b00c4ebc558930d78eecc64ed"}, + {file = "msgpack-1.0.5-cp311-cp311-win32.whl", hash = "sha256:c396e2cc213d12ce017b686e0f53497f94f8ba2b24799c25d913d46c08ec422c"}, + {file = "msgpack-1.0.5-cp311-cp311-win_amd64.whl", hash = "sha256:6c4c68d87497f66f96d50142a2b73b97972130d93677ce930718f68828b382e2"}, + {file = "msgpack-1.0.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:a2b031c2e9b9af485d5e3c4520f4220d74f4d222a5b8dc8c1a3ab9448ca79c57"}, + {file = "msgpack-1.0.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f837b93669ce4336e24d08286c38761132bc7ab29782727f8557e1eb21b2080"}, + {file = "msgpack-1.0.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1d46dfe3832660f53b13b925d4e0fa1432b00f5f7210eb3ad3bb9a13c6204a6"}, + {file = "msgpack-1.0.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:366c9a7b9057e1547f4ad51d8facad8b406bab69c7d72c0eb6f529cf76d4b85f"}, + {file = "msgpack-1.0.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:4c075728a1095efd0634a7dccb06204919a2f67d1893b6aa8e00497258bf926c"}, + {file = "msgpack-1.0.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:f933bbda5a3ee63b8834179096923b094b76f0c7a73c1cfe8f07ad608c58844b"}, + {file = "msgpack-1.0.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:36961b0568c36027c76e2ae3ca1132e35123dcec0706c4b7992683cc26c1320c"}, + {file = "msgpack-1.0.5-cp36-cp36m-win32.whl", hash = "sha256:b5ef2f015b95f912c2fcab19c36814963b5463f1fb9049846994b007962743e9"}, + {file = "msgpack-1.0.5-cp36-cp36m-win_amd64.whl", hash = "sha256:288e32b47e67f7b171f86b030e527e302c91bd3f40fd9033483f2cacc37f327a"}, + {file = "msgpack-1.0.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:137850656634abddfb88236008339fdaba3178f4751b28f270d2ebe77a563b6c"}, + {file = "msgpack-1.0.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0c05a4a96585525916b109bb85f8cb6511db1c6f5b9d9cbcbc940dc6b4be944b"}, + {file = "msgpack-1.0.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:56a62ec00b636583e5cb6ad313bbed36bb7ead5fa3a3e38938503142c72cba4f"}, + {file = "msgpack-1.0.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef8108f8dedf204bb7b42994abf93882da1159728a2d4c5e82012edd92c9da9f"}, + {file = "msgpack-1.0.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:1835c84d65f46900920b3708f5ba829fb19b1096c1800ad60bae8418652a951d"}, + {file = "msgpack-1.0.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:e57916ef1bd0fee4f21c4600e9d1da352d8816b52a599c46460e93a6e9f17086"}, + {file = "msgpack-1.0.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:17358523b85973e5f242ad74aa4712b7ee560715562554aa2134d96e7aa4cbbf"}, + {file = "msgpack-1.0.5-cp37-cp37m-win32.whl", hash = "sha256:cb5aaa8c17760909ec6cb15e744c3ebc2ca8918e727216e79607b7bbce9c8f77"}, + {file = "msgpack-1.0.5-cp37-cp37m-win_amd64.whl", hash = "sha256:ab31e908d8424d55601ad7075e471b7d0140d4d3dd3272daf39c5c19d936bd82"}, + {file = "msgpack-1.0.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:b72d0698f86e8d9ddf9442bdedec15b71df3598199ba33322d9711a19f08145c"}, + {file = "msgpack-1.0.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:379026812e49258016dd84ad79ac8446922234d498058ae1d415f04b522d5b2d"}, + {file = "msgpack-1.0.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:332360ff25469c346a1c5e47cbe2a725517919892eda5cfaffe6046656f0b7bb"}, + {file = "msgpack-1.0.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:476a8fe8fae289fdf273d6d2a6cb6e35b5a58541693e8f9f019bfe990a51e4ba"}, + {file = "msgpack-1.0.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a9985b214f33311df47e274eb788a5893a761d025e2b92c723ba4c63936b69b1"}, + {file = "msgpack-1.0.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:48296af57cdb1d885843afd73c4656be5c76c0c6328db3440c9601a98f303d87"}, + {file = "msgpack-1.0.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:addab7e2e1fcc04bd08e4eb631c2a90960c340e40dfc4a5e24d2ff0d5a3b3edb"}, + {file = "msgpack-1.0.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:916723458c25dfb77ff07f4c66aed34e47503b2eb3188b3adbec8d8aa6e00f48"}, + {file = "msgpack-1.0.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:821c7e677cc6acf0fd3f7ac664c98803827ae6de594a9f99563e48c5a2f27eb0"}, + {file = "msgpack-1.0.5-cp38-cp38-win32.whl", hash = "sha256:1c0f7c47f0087ffda62961d425e4407961a7ffd2aa004c81b9c07d9269512f6e"}, + {file = "msgpack-1.0.5-cp38-cp38-win_amd64.whl", hash = "sha256:bae7de2026cbfe3782c8b78b0db9cbfc5455e079f1937cb0ab8d133496ac55e1"}, + {file = "msgpack-1.0.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:20c784e66b613c7f16f632e7b5e8a1651aa5702463d61394671ba07b2fc9e025"}, + {file = "msgpack-1.0.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:266fa4202c0eb94d26822d9bfd7af25d1e2c088927fe8de9033d929dd5ba24c5"}, + {file = "msgpack-1.0.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:18334484eafc2b1aa47a6d42427da7fa8f2ab3d60b674120bce7a895a0a85bdd"}, + {file = "msgpack-1.0.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:57e1f3528bd95cc44684beda696f74d3aaa8a5e58c816214b9046512240ef437"}, + {file = "msgpack-1.0.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:586d0d636f9a628ddc6a17bfd45aa5b5efaf1606d2b60fa5d87b8986326e933f"}, + {file = "msgpack-1.0.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:a740fa0e4087a734455f0fc3abf5e746004c9da72fbd541e9b113013c8dc3282"}, + {file = "msgpack-1.0.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:3055b0455e45810820db1f29d900bf39466df96ddca11dfa6d074fa47054376d"}, + {file = "msgpack-1.0.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:a61215eac016f391129a013c9e46f3ab308db5f5ec9f25811e811f96962599a8"}, + {file = "msgpack-1.0.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:362d9655cd369b08fda06b6657a303eb7172d5279997abe094512e919cf74b11"}, + {file = "msgpack-1.0.5-cp39-cp39-win32.whl", hash = "sha256:ac9dd47af78cae935901a9a500104e2dea2e253207c924cc95de149606dc43cc"}, + {file = "msgpack-1.0.5-cp39-cp39-win_amd64.whl", hash = "sha256:06f5174b5f8ed0ed919da0e62cbd4ffde676a374aba4020034da05fab67b9164"}, + {file = "msgpack-1.0.5.tar.gz", hash = "sha256:c075544284eadc5cddc70f4757331d99dcbc16b2bbd4849d15f8aae4cf36d31c"}, +] + +[[package]] +name = "multidict" +version = "6.0.4" +description = "multidict implementation" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:0b1a97283e0c85772d613878028fec909f003993e1007eafa715b24b377cb9b8"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:eeb6dcc05e911516ae3d1f207d4b0520d07f54484c49dfc294d6e7d63b734171"}, + {file = "multidict-6.0.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d6d635d5209b82a3492508cf5b365f3446afb65ae7ebd755e70e18f287b0adf7"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c048099e4c9e9d615545e2001d3d8a4380bd403e1a0578734e0d31703d1b0c0b"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea20853c6dbbb53ed34cb4d080382169b6f4554d394015f1bef35e881bf83547"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:16d232d4e5396c2efbbf4f6d4df89bfa905eb0d4dc5b3549d872ab898451f569"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:36c63aaa167f6c6b04ef2c85704e93af16c11d20de1d133e39de6a0e84582a93"}, + {file = "multidict-6.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:64bdf1086b6043bf519869678f5f2757f473dee970d7abf6da91ec00acb9cb98"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:43644e38f42e3af682690876cff722d301ac585c5b9e1eacc013b7a3f7b696a0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7582a1d1030e15422262de9f58711774e02fa80df0d1578995c76214f6954988"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:ddff9c4e225a63a5afab9dd15590432c22e8057e1a9a13d28ed128ecf047bbdc"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:ee2a1ece51b9b9e7752e742cfb661d2a29e7bcdba2d27e66e28a99f1890e4fa0"}, + {file = "multidict-6.0.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:a2e4369eb3d47d2034032a26c7a80fcb21a2cb22e1173d761a162f11e562caa5"}, + {file = "multidict-6.0.4-cp310-cp310-win32.whl", hash = "sha256:574b7eae1ab267e5f8285f0fe881f17efe4b98c39a40858247720935b893bba8"}, + {file = "multidict-6.0.4-cp310-cp310-win_amd64.whl", hash = "sha256:4dcbb0906e38440fa3e325df2359ac6cb043df8e58c965bb45f4e406ecb162cc"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0dfad7a5a1e39c53ed00d2dd0c2e36aed4650936dc18fd9a1826a5ae1cad6f03"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:64da238a09d6039e3bd39bb3aee9c21a5e34f28bfa5aa22518581f910ff94af3"}, + {file = "multidict-6.0.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ff959bee35038c4624250473988b24f846cbeb2c6639de3602c073f10410ceba"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01a3a55bd90018c9c080fbb0b9f4891db37d148a0a18722b42f94694f8b6d4c9"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c5cb09abb18c1ea940fb99360ea0396f34d46566f157122c92dfa069d3e0e982"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:666daae833559deb2d609afa4490b85830ab0dfca811a98b70a205621a6109fe"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:11bdf3f5e1518b24530b8241529d2050014c884cf18b6fc69c0c2b30ca248710"}, + {file = "multidict-6.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7d18748f2d30f94f498e852c67d61261c643b349b9d2a581131725595c45ec6c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:458f37be2d9e4c95e2d8866a851663cbc76e865b78395090786f6cd9b3bbf4f4"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:b1a2eeedcead3a41694130495593a559a668f382eee0727352b9a41e1c45759a"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:7d6ae9d593ef8641544d6263c7fa6408cc90370c8cb2bbb65f8d43e5b0351d9c"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5979b5632c3e3534e42ca6ff856bb24b2e3071b37861c2c727ce220d80eee9ed"}, + {file = "multidict-6.0.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:dcfe792765fab89c365123c81046ad4103fcabbc4f56d1c1997e6715e8015461"}, + {file = "multidict-6.0.4-cp311-cp311-win32.whl", hash = "sha256:3601a3cece3819534b11d4efc1eb76047488fddd0c85a3948099d5da4d504636"}, + {file = "multidict-6.0.4-cp311-cp311-win_amd64.whl", hash = "sha256:81a4f0b34bd92df3da93315c6a59034df95866014ac08535fc819f043bfd51f0"}, + {file = "multidict-6.0.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:67040058f37a2a51ed8ea8f6b0e6ee5bd78ca67f169ce6122f3e2ec80dfe9b78"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:853888594621e6604c978ce2a0444a1e6e70c8d253ab65ba11657659dcc9100f"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:39ff62e7d0f26c248b15e364517a72932a611a9b75f35b45be078d81bdb86603"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:af048912e045a2dc732847d33821a9d84ba553f5c5f028adbd364dd4765092ac"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b1e8b901e607795ec06c9e42530788c45ac21ef3aaa11dbd0c69de543bfb79a9"}, + {file = "multidict-6.0.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:62501642008a8b9871ddfccbf83e4222cf8ac0d5aeedf73da36153ef2ec222d2"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:99b76c052e9f1bc0721f7541e5e8c05db3941eb9ebe7b8553c625ef88d6eefde"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:509eac6cf09c794aa27bcacfd4d62c885cce62bef7b2c3e8b2e49d365b5003fe"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:21a12c4eb6ddc9952c415f24eef97e3e55ba3af61f67c7bc388dcdec1404a067"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:5cad9430ab3e2e4fa4a2ef4450f548768400a2ac635841bc2a56a2052cdbeb87"}, + {file = "multidict-6.0.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:ab55edc2e84460694295f401215f4a58597f8f7c9466faec545093045476327d"}, + {file = "multidict-6.0.4-cp37-cp37m-win32.whl", hash = "sha256:5a4dcf02b908c3b8b17a45fb0f15b695bf117a67b76b7ad18b73cf8e92608775"}, + {file = "multidict-6.0.4-cp37-cp37m-win_amd64.whl", hash = "sha256:6ed5f161328b7df384d71b07317f4d8656434e34591f20552c7bcef27b0ab88e"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5fc1b16f586f049820c5c5b17bb4ee7583092fa0d1c4e28b5239181ff9532e0c"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1502e24330eb681bdaa3eb70d6358e818e8e8f908a22a1851dfd4e15bc2f8161"}, + {file = "multidict-6.0.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:b692f419760c0e65d060959df05f2a531945af31fda0c8a3b3195d4efd06de11"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45e1ecb0379bfaab5eef059f50115b54571acfbe422a14f668fc8c27ba410e7e"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ddd3915998d93fbcd2566ddf9cf62cdb35c9e093075f862935573d265cf8f65d"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:59d43b61c59d82f2effb39a93c48b845efe23a3852d201ed2d24ba830d0b4cf2"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cc8e1d0c705233c5dd0c5e6460fbad7827d5d36f310a0fadfd45cc3029762258"}, + {file = "multidict-6.0.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d6aa0418fcc838522256761b3415822626f866758ee0bc6632c9486b179d0b52"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6748717bb10339c4760c1e63da040f5f29f5ed6e59d76daee30305894069a660"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:4d1a3d7ef5e96b1c9e92f973e43aa5e5b96c659c9bc3124acbbd81b0b9c8a951"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:4372381634485bec7e46718edc71528024fcdc6f835baefe517b34a33c731d60"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:fc35cb4676846ef752816d5be2193a1e8367b4c1397b74a565a9d0389c433a1d"}, + {file = "multidict-6.0.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:4b9d9e4e2b37daddb5c23ea33a3417901fa7c7b3dee2d855f63ee67a0b21e5b1"}, + {file = "multidict-6.0.4-cp38-cp38-win32.whl", hash = "sha256:e41b7e2b59679edfa309e8db64fdf22399eec4b0b24694e1b2104fb789207779"}, + {file = "multidict-6.0.4-cp38-cp38-win_amd64.whl", hash = "sha256:d6c254ba6e45d8e72739281ebc46ea5eb5f101234f3ce171f0e9f5cc86991480"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:16ab77bbeb596e14212e7bab8429f24c1579234a3a462105cda4a66904998664"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:bc779e9e6f7fda81b3f9aa58e3a6091d49ad528b11ed19f6621408806204ad35"}, + {file = "multidict-6.0.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:4ceef517eca3e03c1cceb22030a3e39cb399ac86bff4e426d4fc6ae49052cc60"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:281af09f488903fde97923c7744bb001a9b23b039a909460d0f14edc7bf59706"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:52f2dffc8acaba9a2f27174c41c9e57f60b907bb9f096b36b1a1f3be71c6284d"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b41156839806aecb3641f3208c0dafd3ac7775b9c4c422d82ee2a45c34ba81ca"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d5e3fc56f88cc98ef8139255cf8cd63eb2c586531e43310ff859d6bb3a6b51f1"}, + {file = "multidict-6.0.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8316a77808c501004802f9beebde51c9f857054a0c871bd6da8280e718444449"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:f70b98cd94886b49d91170ef23ec5c0e8ebb6f242d734ed7ed677b24d50c82cf"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:bf6774e60d67a9efe02b3616fee22441d86fab4c6d335f9d2051d19d90a40063"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:e69924bfcdda39b722ef4d9aa762b2dd38e4632b3641b1d9a57ca9cd18f2f83a"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:6b181d8c23da913d4ff585afd1155a0e1194c0b50c54fcfe286f70cdaf2b7176"}, + {file = "multidict-6.0.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:52509b5be062d9eafc8170e53026fbc54cf3b32759a23d07fd935fb04fc22d95"}, + {file = "multidict-6.0.4-cp39-cp39-win32.whl", hash = "sha256:27c523fbfbdfd19c6867af7346332b62b586eed663887392cff78d614f9ec313"}, + {file = "multidict-6.0.4-cp39-cp39-win_amd64.whl", hash = "sha256:33029f5734336aa0d4c0384525da0387ef89148dc7191aae00ca5fb23d7aafc2"}, + {file = "multidict-6.0.4.tar.gz", hash = "sha256:3666906492efb76453c0e7b97f2cf459b0682e7402c0489a95484965dbc1da49"}, +] + +[[package]] +name = "multiprocess" +version = "0.70.15" +description = "better multiprocessing and multithreading in Python" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "multiprocess-0.70.15-pp310-pypy310_pp73-macosx_10_9_x86_64.whl", hash = "sha256:aa36c7ed16f508091438687fe9baa393a7a8e206731d321e443745e743a0d4e5"}, + {file = "multiprocess-0.70.15-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:20e024018c46d0d1602024c613007ac948f9754659e3853b0aa705e83f6931d8"}, + {file = "multiprocess-0.70.15-pp37-pypy37_pp73-manylinux_2_24_i686.whl", hash = "sha256:e576062981c91f0fe8a463c3d52506e598dfc51320a8dd8d78b987dfca91c5db"}, + {file = "multiprocess-0.70.15-pp37-pypy37_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:e73f497e6696a0f5433ada2b3d599ae733b87a6e8b008e387c62ac9127add177"}, + {file = "multiprocess-0.70.15-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:73db2e7b32dcc7f9b0f075c2ffa45c90b6729d3f1805f27e88534c8d321a1be5"}, + {file = "multiprocess-0.70.15-pp38-pypy38_pp73-manylinux_2_24_i686.whl", hash = "sha256:4271647bd8a49c28ecd6eb56a7fdbd3c212c45529ad5303b40b3c65fc6928e5f"}, + {file = "multiprocess-0.70.15-pp38-pypy38_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:cf981fb998d6ec3208cb14f0cf2e9e80216e834f5d51fd09ebc937c32b960902"}, + {file = "multiprocess-0.70.15-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:18f9f2c7063346d1617bd1684fdcae8d33380ae96b99427260f562e1a1228b67"}, + {file = "multiprocess-0.70.15-pp39-pypy39_pp73-manylinux_2_24_i686.whl", hash = "sha256:0eac53214d664c49a34695e5824872db4006b1a465edd7459a251809c3773370"}, + {file = "multiprocess-0.70.15-pp39-pypy39_pp73-manylinux_2_24_x86_64.whl", hash = "sha256:1a51dd34096db47fb21fa2b839e615b051d51b97af9a67afbcdaa67186b44883"}, + {file = "multiprocess-0.70.15-py310-none-any.whl", hash = "sha256:7dd58e33235e83cf09d625e55cffd7b0f0eede7ee9223cdd666a87624f60c21a"}, + {file = "multiprocess-0.70.15-py311-none-any.whl", hash = "sha256:134f89053d82c9ed3b73edd3a2531eb791e602d4f4156fc92a79259590bd9670"}, + {file = "multiprocess-0.70.15-py37-none-any.whl", hash = "sha256:f7d4a1629bccb433114c3b4885f69eccc200994323c80f6feee73b0edc9199c5"}, + {file = "multiprocess-0.70.15-py38-none-any.whl", hash = "sha256:bee9afba476c91f9ebee7beeee0601face9eff67d822e893f9a893725fbd6316"}, + {file = "multiprocess-0.70.15-py39-none-any.whl", hash = "sha256:3e0953f5d52b4c76f1c973eaf8214554d146f2be5decb48e928e55c7a2d19338"}, + {file = "multiprocess-0.70.15.tar.gz", hash = "sha256:f20eed3036c0ef477b07a4177cf7c1ba520d9a2677870a4f47fe026f0cd6787e"}, +] + +[package.dependencies] +dill = ">=0.3.7" + +[[package]] +name = "mypy" +version = "1.4.1" +description = "Optional static typing for Python" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "mypy-1.4.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:566e72b0cd6598503e48ea610e0052d1b8168e60a46e0bfd34b3acf2d57f96a8"}, + {file = "mypy-1.4.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ca637024ca67ab24a7fd6f65d280572c3794665eaf5edcc7e90a866544076878"}, + {file = "mypy-1.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0dde1d180cd84f0624c5dcaaa89c89775550a675aff96b5848de78fb11adabcd"}, + {file = "mypy-1.4.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:8c4d8e89aa7de683e2056a581ce63c46a0c41e31bd2b6d34144e2c80f5ea53dc"}, + {file = "mypy-1.4.1-cp310-cp310-win_amd64.whl", hash = "sha256:bfdca17c36ae01a21274a3c387a63aa1aafe72bff976522886869ef131b937f1"}, + {file = "mypy-1.4.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:7549fbf655e5825d787bbc9ecf6028731973f78088fbca3a1f4145c39ef09462"}, + {file = "mypy-1.4.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:98324ec3ecf12296e6422939e54763faedbfcc502ea4a4c38502082711867258"}, + {file = "mypy-1.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:141dedfdbfe8a04142881ff30ce6e6653c9685b354876b12e4fe6c78598b45e2"}, + {file = "mypy-1.4.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:8207b7105829eca6f3d774f64a904190bb2231de91b8b186d21ffd98005f14a7"}, + {file = "mypy-1.4.1-cp311-cp311-win_amd64.whl", hash = "sha256:16f0db5b641ba159eff72cff08edc3875f2b62b2fa2bc24f68c1e7a4e8232d01"}, + {file = "mypy-1.4.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:470c969bb3f9a9efcedbadcd19a74ffb34a25f8e6b0e02dae7c0e71f8372f97b"}, + {file = "mypy-1.4.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5952d2d18b79f7dc25e62e014fe5a23eb1a3d2bc66318df8988a01b1a037c5b"}, + {file = "mypy-1.4.1-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:190b6bab0302cec4e9e6767d3eb66085aef2a1cc98fe04936d8a42ed2ba77bb7"}, + {file = "mypy-1.4.1-cp37-cp37m-win_amd64.whl", hash = "sha256:9d40652cc4fe33871ad3338581dca3297ff5f2213d0df345bcfbde5162abf0c9"}, + {file = "mypy-1.4.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:01fd2e9f85622d981fd9063bfaef1aed6e336eaacca00892cd2d82801ab7c042"}, + {file = "mypy-1.4.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:2460a58faeea905aeb1b9b36f5065f2dc9a9c6e4c992a6499a2360c6c74ceca3"}, + {file = "mypy-1.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2746d69a8196698146a3dbe29104f9eb6a2a4d8a27878d92169a6c0b74435b6"}, + {file = "mypy-1.4.1-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:ae704dcfaa180ff7c4cfbad23e74321a2b774f92ca77fd94ce1049175a21c97f"}, + {file = "mypy-1.4.1-cp38-cp38-win_amd64.whl", hash = "sha256:43d24f6437925ce50139a310a64b2ab048cb2d3694c84c71c3f2a1626d8101dc"}, + {file = "mypy-1.4.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c482e1246726616088532b5e964e39765b6d1520791348e6c9dc3af25b233828"}, + {file = "mypy-1.4.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:43b592511672017f5b1a483527fd2684347fdffc041c9ef53428c8dc530f79a3"}, + {file = "mypy-1.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:34a9239d5b3502c17f07fd7c0b2ae6b7dd7d7f6af35fbb5072c6208e76295816"}, + {file = "mypy-1.4.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5703097c4936bbb9e9bce41478c8d08edd2865e177dc4c52be759f81ee4dd26c"}, + {file = "mypy-1.4.1-cp39-cp39-win_amd64.whl", hash = "sha256:e02d700ec8d9b1859790c0475df4e4092c7bf3272a4fd2c9f33d87fac4427b8f"}, + {file = "mypy-1.4.1-py3-none-any.whl", hash = "sha256:45d32cec14e7b97af848bddd97d85ea4f0db4d5a149ed9676caa4eb2f7402bb4"}, + {file = "mypy-1.4.1.tar.gz", hash = "sha256:9bbcd9ab8ea1f2e1c8031c21445b511442cc45c89951e49bbf852cbb70755b1b"}, +] + +[package.dependencies] +mypy-extensions = ">=1.0.0" +tomli = {version = ">=1.1.0", markers = "python_version < \"3.11\""} +typing-extensions = ">=4.1.0" + +[package.extras] +dmypy = ["psutil (>=4.0)"] +install-types = ["pip"] +python2 = ["typed-ast (>=1.4.0,<2)"] +reports = ["lxml"] + +[[package]] +name = "mypy-extensions" +version = "1.0.0" +description = "Type system extensions for programs checked with the mypy type checker." +category = "dev" +optional = false +python-versions = ">=3.5" +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"}, +] + +[[package]] +name = "networkx" +version = "3.1" +description = "Python package for creating and manipulating graphs and networks" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "networkx-3.1-py3-none-any.whl", hash = "sha256:4f33f68cb2afcf86f28a45f43efc27a9386b535d567d2127f8f61d51dec58d36"}, + {file = "networkx-3.1.tar.gz", hash = "sha256:de346335408f84de0eada6ff9fafafff9bcda11f0a0dfaa931133debb146ab61"}, +] + +[package.extras] +default = ["matplotlib (>=3.4)", "numpy (>=1.20)", "pandas (>=1.3)", "scipy (>=1.8)"] +developer = ["mypy (>=1.1)", "pre-commit (>=3.2)"] +doc = ["nb2plots (>=0.6)", "numpydoc (>=1.5)", "pillow (>=9.4)", "pydata-sphinx-theme (>=0.13)", "sphinx (>=6.1)", "sphinx-gallery (>=0.12)", "texext (>=0.6.7)"] +extra = ["lxml (>=4.6)", "pydot (>=1.4.2)", "pygraphviz (>=1.10)", "sympy (>=1.10)"] +test = ["codecov (>=2.1)", "pytest (>=7.2)", "pytest-cov (>=4.0)"] + +[[package]] +name = "numba" +version = "0.56.4" +description = "compiling Python code using LLVM" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "numba-0.56.4-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:9f62672145f8669ec08762895fe85f4cf0ead08ce3164667f2b94b2f62ab23c3"}, + {file = "numba-0.56.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c602d015478b7958408d788ba00a50272649c5186ea8baa6cf71d4a1c761bba1"}, + {file = "numba-0.56.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:85dbaed7a05ff96492b69a8900c5ba605551afb9b27774f7f10511095451137c"}, + {file = "numba-0.56.4-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:f4cfc3a19d1e26448032049c79fc60331b104f694cf570a9e94f4e2c9d0932bb"}, + {file = "numba-0.56.4-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:4e08e203b163ace08bad500b0c16f6092b1eb34fd1fce4feaf31a67a3a5ecf3b"}, + {file = "numba-0.56.4-cp310-cp310-win32.whl", hash = "sha256:0611e6d3eebe4cb903f1a836ffdb2bda8d18482bcd0a0dcc56e79e2aa3fefef5"}, + {file = "numba-0.56.4-cp310-cp310-win_amd64.whl", hash = "sha256:fbfb45e7b297749029cb28694abf437a78695a100e7c2033983d69f0ba2698d4"}, + {file = "numba-0.56.4-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:3cb1a07a082a61df80a468f232e452d818f5ae254b40c26390054e4e868556e0"}, + {file = "numba-0.56.4-cp37-cp37m-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d69ad934e13c15684e7887100a8f5f0f61d7a8e57e0fd29d9993210089a5b531"}, + {file = "numba-0.56.4-cp37-cp37m-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:dbcc847bac2d225265d054993a7f910fda66e73d6662fe7156452cac0325b073"}, + {file = "numba-0.56.4-cp37-cp37m-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:8a95ca9cc77ea4571081f6594e08bd272b66060634b8324e99cd1843020364f9"}, + {file = "numba-0.56.4-cp37-cp37m-win32.whl", hash = "sha256:fcdf84ba3ed8124eb7234adfbb8792f311991cbf8aed1cad4b1b1a7ee08380c1"}, + {file = "numba-0.56.4-cp37-cp37m-win_amd64.whl", hash = "sha256:42f9e1be942b215df7e6cc9948cf9c15bb8170acc8286c063a9e57994ef82fd1"}, + {file = "numba-0.56.4-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:553da2ce74e8862e18a72a209ed3b6d2924403bdd0fb341fa891c6455545ba7c"}, + {file = "numba-0.56.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:4373da9757049db7c90591e9ec55a2e97b2b36ba7ae3bf9c956a513374077470"}, + {file = "numba-0.56.4-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:3a993349b90569518739009d8f4b523dfedd7e0049e6838c0e17435c3e70dcc4"}, + {file = "numba-0.56.4-cp38-cp38-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:720886b852a2d62619ae3900fe71f1852c62db4f287d0c275a60219e1643fc04"}, + {file = "numba-0.56.4-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:e64d338b504c9394a4a34942df4627e1e6cb07396ee3b49fe7b8d6420aa5104f"}, + {file = "numba-0.56.4-cp38-cp38-win32.whl", hash = "sha256:03fe94cd31e96185cce2fae005334a8cc712fc2ba7756e52dff8c9400718173f"}, + {file = "numba-0.56.4-cp38-cp38-win_amd64.whl", hash = "sha256:91f021145a8081f881996818474ef737800bcc613ffb1e618a655725a0f9e246"}, + {file = "numba-0.56.4-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:d0ae9270a7a5cc0ede63cd234b4ff1ce166c7a749b91dbbf45e0000c56d3eade"}, + {file = "numba-0.56.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c75e8a5f810ce80a0cfad6e74ee94f9fde9b40c81312949bf356b7304ef20740"}, + {file = "numba-0.56.4-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:a12ef323c0f2101529d455cfde7f4135eaa147bad17afe10b48634f796d96abd"}, + {file = "numba-0.56.4-cp39-cp39-manylinux2014_i686.manylinux_2_17_i686.whl", hash = "sha256:03634579d10a6129181129de293dd6b5eaabee86881369d24d63f8fe352dd6cb"}, + {file = "numba-0.56.4-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl", hash = "sha256:0240f9026b015e336069329839208ebd70ec34ae5bfbf402e4fcc8e06197528e"}, + {file = "numba-0.56.4-cp39-cp39-win32.whl", hash = "sha256:14dbbabf6ffcd96ee2ac827389afa59a70ffa9f089576500434c34abf9b054a4"}, + {file = "numba-0.56.4-cp39-cp39-win_amd64.whl", hash = "sha256:0da583c532cd72feefd8e551435747e0e0fbb3c0530357e6845fcc11e38d6aea"}, + {file = "numba-0.56.4.tar.gz", hash = "sha256:32d9fef412c81483d7efe0ceb6cf4d3310fde8b624a9cecca00f790573ac96ee"}, +] + +[package.dependencies] +llvmlite = ">=0.39.0dev0,<0.40" +numpy = ">=1.18,<1.24" +setuptools = "*" + +[[package]] +name = "numpy" +version = "1.23.5" +description = "NumPy is the fundamental package for array computing with Python." +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "numpy-1.23.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:9c88793f78fca17da0145455f0d7826bcb9f37da4764af27ac945488116efe63"}, + {file = "numpy-1.23.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e9f4c4e51567b616be64e05d517c79a8a22f3606499941d97bb76f2ca59f982d"}, + {file = "numpy-1.23.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7903ba8ab592b82014713c491f6c5d3a1cde5b4a3bf116404e08f5b52f6daf43"}, + {file = "numpy-1.23.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5e05b1c973a9f858c74367553e236f287e749465f773328c8ef31abe18f691e1"}, + {file = "numpy-1.23.5-cp310-cp310-win32.whl", hash = "sha256:522e26bbf6377e4d76403826ed689c295b0b238f46c28a7251ab94716da0b280"}, + {file = "numpy-1.23.5-cp310-cp310-win_amd64.whl", hash = "sha256:dbee87b469018961d1ad79b1a5d50c0ae850000b639bcb1b694e9981083243b6"}, + {file = "numpy-1.23.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ce571367b6dfe60af04e04a1834ca2dc5f46004ac1cc756fb95319f64c095a96"}, + {file = "numpy-1.23.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:56e454c7833e94ec9769fa0f86e6ff8e42ee38ce0ce1fa4cbb747ea7e06d56aa"}, + {file = "numpy-1.23.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5039f55555e1eab31124a5768898c9e22c25a65c1e0037f4d7c495a45778c9f2"}, + {file = "numpy-1.23.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:58f545efd1108e647604a1b5aa809591ccd2540f468a880bedb97247e72db387"}, + {file = "numpy-1.23.5-cp311-cp311-win32.whl", hash = "sha256:b2a9ab7c279c91974f756c84c365a669a887efa287365a8e2c418f8b3ba73fb0"}, + {file = "numpy-1.23.5-cp311-cp311-win_amd64.whl", hash = "sha256:0cbe9848fad08baf71de1a39e12d1b6310f1d5b2d0ea4de051058e6e1076852d"}, + {file = "numpy-1.23.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:f063b69b090c9d918f9df0a12116029e274daf0181df392839661c4c7ec9018a"}, + {file = "numpy-1.23.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:0aaee12d8883552fadfc41e96b4c82ee7d794949e2a7c3b3a7201e968c7ecab9"}, + {file = "numpy-1.23.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:92c8c1e89a1f5028a4c6d9e3ccbe311b6ba53694811269b992c0b224269e2398"}, + {file = "numpy-1.23.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d208a0f8729f3fb790ed18a003f3a57895b989b40ea4dce4717e9cf4af62c6bb"}, + {file = "numpy-1.23.5-cp38-cp38-win32.whl", hash = "sha256:06005a2ef6014e9956c09ba07654f9837d9e26696a0470e42beedadb78c11b07"}, + {file = "numpy-1.23.5-cp38-cp38-win_amd64.whl", hash = "sha256:ca51fcfcc5f9354c45f400059e88bc09215fb71a48d3768fb80e357f3b457e1e"}, + {file = "numpy-1.23.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:8969bfd28e85c81f3f94eb4a66bc2cf1dbdc5c18efc320af34bffc54d6b1e38f"}, + {file = "numpy-1.23.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:a7ac231a08bb37f852849bbb387a20a57574a97cfc7b6cabb488a4fc8be176de"}, + {file = "numpy-1.23.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf837dc63ba5c06dc8797c398db1e223a466c7ece27a1f7b5232ba3466aafe3d"}, + {file = "numpy-1.23.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:33161613d2269025873025b33e879825ec7b1d831317e68f4f2f0f84ed14c719"}, + {file = "numpy-1.23.5-cp39-cp39-win32.whl", hash = "sha256:af1da88f6bc3d2338ebbf0e22fe487821ea4d8e89053e25fa59d1d79786e7481"}, + {file = "numpy-1.23.5-cp39-cp39-win_amd64.whl", hash = "sha256:09b7847f7e83ca37c6e627682f145856de331049013853f344f37b0c9690e3df"}, + {file = "numpy-1.23.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:abdde9f795cf292fb9651ed48185503a2ff29be87770c3b8e2a14b0cd7aa16f8"}, + {file = "numpy-1.23.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f9a909a8bae284d46bbfdefbdd4a262ba19d3bc9921b1e76126b1d21c3c34135"}, + {file = "numpy-1.23.5-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:01dd17cbb340bf0fc23981e52e1d18a9d4050792e8fb8363cecbf066a84b827d"}, + {file = "numpy-1.23.5.tar.gz", hash = "sha256:1b1766d6f397c18153d40015ddfc79ddb715cabadc04d2d228d4e5a8bc4ded1a"}, +] + +[[package]] +name = "orjson" +version = "3.9.2" +description = "Fast, correct Python JSON library supporting dataclasses, datetimes, and numpy" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "orjson-3.9.2-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7323e4ca8322b1ecb87562f1ec2491831c086d9faa9a6c6503f489dadbed37d7"}, + {file = "orjson-3.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1272688ea1865f711b01ba479dea2d53e037ea00892fd04196b5875f7021d9d3"}, + {file = "orjson-3.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0b9a26f1d1427a9101a1e8910f2e2df1f44d3d18ad5480ba031b15d5c1cb282e"}, + {file = "orjson-3.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6a5ca55b0d8f25f18b471e34abaee4b175924b6cd62f59992945b25963443141"}, + {file = "orjson-3.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:877872db2c0f41fbe21f852ff642ca842a43bc34895b70f71c9d575df31fffb4"}, + {file = "orjson-3.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a39c2529d75373b7167bf84c814ef9b8f3737a339c225ed6c0df40736df8748"}, + {file = "orjson-3.9.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:84ebd6fdf138eb0eb4280045442331ee71c0aab5e16397ba6645f32f911bfb37"}, + {file = "orjson-3.9.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:5a60a1cfcfe310547a1946506dd4f1ed0a7d5bd5b02c8697d9d5dcd8d2e9245e"}, + {file = "orjson-3.9.2-cp310-none-win_amd64.whl", hash = "sha256:c290c4f81e8fd0c1683638802c11610b2f722b540f8e5e858b6914b495cf90c8"}, + {file = "orjson-3.9.2-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:02ef014f9a605e84b675060785e37ec9c0d2347a04f1307a9d6840ab8ecd6f55"}, + {file = "orjson-3.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:992af54265ada1c1579500d6594ed73fe333e726de70d64919cf37f93defdd06"}, + {file = "orjson-3.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:a40958f7af7c6d992ee67b2da4098dca8b770fc3b4b3834d540477788bfa76d3"}, + {file = "orjson-3.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:93864dec3e3dd058a2dbe488d11ac0345214a6a12697f53a63e34de7d28d4257"}, + {file = "orjson-3.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:16fdf5a82df80c544c3c91516ab3882cd1ac4f1f84eefeafa642e05cef5f6699"}, + {file = "orjson-3.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:275b5a18fd9ed60b2720543d3ddac170051c43d680e47d04ff5203d2c6d8ebf1"}, + {file = "orjson-3.9.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b9aea6dcb99fcbc9f6d1dd84fca92322fda261da7fb014514bb4689c7c2097a8"}, + {file = "orjson-3.9.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:7d74ae0e101d17c22ef67b741ba356ab896fc0fa64b301c2bf2bb0a4d874b190"}, + {file = "orjson-3.9.2-cp311-none-win_amd64.whl", hash = "sha256:6320b28e7bdb58c3a3a5efffe04b9edad3318d82409e84670a9b24e8035a249d"}, + {file = "orjson-3.9.2-cp37-cp37m-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:368e9cc91ecb7ac21f2aa475e1901204110cf3e714e98649c2502227d248f947"}, + {file = "orjson-3.9.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:58e9e70f0dcd6a802c35887f306b555ff7a214840aad7de24901fc8bd9cf5dde"}, + {file = "orjson-3.9.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:00c983896c2e01c94c0ef72fd7373b2aa06d0c0eed0342c4884559f812a6835b"}, + {file = "orjson-3.9.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ee743e8890b16c87a2f89733f983370672272b61ee77429c0a5899b2c98c1a7"}, + {file = "orjson-3.9.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b7b065942d362aad4818ff599d2f104c35a565c2cbcbab8c09ec49edba91da75"}, + {file = "orjson-3.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e46e9c5b404bb9e41d5555762fd410d5466b7eb1ec170ad1b1609cbebe71df21"}, + {file = "orjson-3.9.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:8170157288714678ffd64f5de33039e1164a73fd8b6be40a8a273f80093f5c4f"}, + {file = "orjson-3.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:e3e2f087161947dafe8319ea2cfcb9cea4bb9d2172ecc60ac3c9738f72ef2909"}, + {file = "orjson-3.9.2-cp37-none-win_amd64.whl", hash = "sha256:d7de3dbbe74109ae598692113cec327fd30c5a30ebca819b21dfa4052f7b08ef"}, + {file = "orjson-3.9.2-cp38-cp38-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:8cd4385c59bbc1433cad4a80aca65d2d9039646a9c57f8084897549b55913b17"}, + {file = "orjson-3.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a74036aab1a80c361039290cdbc51aa7adc7ea13f56e5ef94e9be536abd227bd"}, + {file = "orjson-3.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1aaa46d7d4ae55335f635eadc9be0bd9bcf742e6757209fc6dc697e390010adc"}, + {file = "orjson-3.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2e52c67ed6bb368083aa2078ea3ccbd9721920b93d4b06c43eb4e20c4c860046"}, + {file = "orjson-3.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a6cdfcf9c7dd4026b2b01fdff56986251dc0cc1e980c690c79eec3ae07b36e7"}, + {file = "orjson-3.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1882a70bb69595b9ec5aac0040a819e94d2833fe54901e2b32f5e734bc259a8b"}, + {file = "orjson-3.9.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:fc05e060d452145ab3c0b5420769e7356050ea311fc03cb9d79c481982917cca"}, + {file = "orjson-3.9.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:f8bc2c40d9bb26efefb10949d261a47ca196772c308babc538dd9f4b73e8d386"}, + {file = "orjson-3.9.2-cp38-none-win_amd64.whl", hash = "sha256:3164fc20a585ec30a9aff33ad5de3b20ce85702b2b2a456852c413e3f0d7ab09"}, + {file = "orjson-3.9.2-cp39-cp39-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:7a6ccadf788531595ed4728aa746bc271955448d2460ff0ef8e21eb3f2a281ba"}, + {file = "orjson-3.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3245d230370f571c945f69aab823c279a868dc877352817e22e551de155cb06c"}, + {file = "orjson-3.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:205925b179550a4ee39b8418dd4c94ad6b777d165d7d22614771c771d44f57bd"}, + {file = "orjson-3.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0325fe2d69512187761f7368c8cda1959bcb75fc56b8e7a884e9569112320e57"}, + {file = "orjson-3.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:806704cd58708acc66a064a9a58e3be25cf1c3f9f159e8757bd3f515bfabdfa1"}, + {file = "orjson-3.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:03fb36f187a0c19ff38f6289418863df8b9b7880cdbe279e920bef3a09d8dab1"}, + {file = "orjson-3.9.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:20925d07a97c49c6305bff1635318d9fc1804aa4ccacb5fb0deb8a910e57d97a"}, + {file = "orjson-3.9.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:eebfed53bec5674e981ebe8ed2cf00b3f7bcda62d634733ff779c264307ea505"}, + {file = "orjson-3.9.2-cp39-none-win_amd64.whl", hash = "sha256:869b961df5fcedf6c79f4096119b35679b63272362e9b745e668f0391a892d39"}, + {file = "orjson-3.9.2.tar.gz", hash = "sha256:24257c8f641979bf25ecd3e27251b5cc194cdd3a6e96004aac8446f5e63d9664"}, +] + +[[package]] +name = "packageurl-python" +version = "0.11.2" +description = "A purl aka. Package URL parser and builder" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packageurl-python-0.11.2.tar.gz", hash = "sha256:01fbf74a41ef85cf413f1ede529a1411f658bda66ed22d45d27280ad9ceba471"}, + {file = "packageurl_python-0.11.2-py3-none-any.whl", hash = "sha256:799acfe8d9e6e3534bbc19660be97d5b66754bc033e62c39f1e2f16323fcfa84"}, +] + +[package.extras] +build = ["wheel"] +lint = ["black", "isort", "mypy"] +sqlalchemy = ["sqlalchemy (>=2.0.0)"] +test = ["pytest"] + +[[package]] +name = "packaging" +version = "23.1" +description = "Core utilities for Python packages" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "packaging-23.1-py3-none-any.whl", hash = "sha256:994793af429502c4ea2ebf6bf664629d07c1a9fe974af92966e4b8d2df7edc61"}, + {file = "packaging-23.1.tar.gz", hash = "sha256:a392980d2b6cffa644431898be54b0045151319d1e7ec34f0cfed48767dd334f"}, +] + +[[package]] +name = "pandas" +version = "2.0.3" +description = "Powerful data structures for data analysis, time series, and statistics" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "pandas-2.0.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e4c7c9f27a4185304c7caf96dc7d91bc60bc162221152de697c98eb0b2648dd8"}, + {file = "pandas-2.0.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:f167beed68918d62bffb6ec64f2e1d8a7d297a038f86d4aed056b9493fca407f"}, + {file = "pandas-2.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ce0c6f76a0f1ba361551f3e6dceaff06bde7514a374aa43e33b588ec10420183"}, + {file = "pandas-2.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba619e410a21d8c387a1ea6e8a0e49bb42216474436245718d7f2e88a2f8d7c0"}, + {file = "pandas-2.0.3-cp310-cp310-win32.whl", hash = "sha256:3ef285093b4fe5058eefd756100a367f27029913760773c8bf1d2d8bebe5d210"}, + {file = "pandas-2.0.3-cp310-cp310-win_amd64.whl", hash = "sha256:9ee1a69328d5c36c98d8e74db06f4ad518a1840e8ccb94a4ba86920986bb617e"}, + {file = "pandas-2.0.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:b084b91d8d66ab19f5bb3256cbd5ea661848338301940e17f4492b2ce0801fe8"}, + {file = "pandas-2.0.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:37673e3bdf1551b95bf5d4ce372b37770f9529743d2498032439371fc7b7eb26"}, + {file = "pandas-2.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9cb1e14fdb546396b7e1b923ffaeeac24e4cedd14266c3497216dd4448e4f2d"}, + {file = "pandas-2.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d9cd88488cceb7635aebb84809d087468eb33551097d600c6dad13602029c2df"}, + {file = "pandas-2.0.3-cp311-cp311-win32.whl", hash = "sha256:694888a81198786f0e164ee3a581df7d505024fbb1f15202fc7db88a71d84ebd"}, + {file = "pandas-2.0.3-cp311-cp311-win_amd64.whl", hash = "sha256:6a21ab5c89dcbd57f78d0ae16630b090eec626360085a4148693def5452d8a6b"}, + {file = "pandas-2.0.3-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:9e4da0d45e7f34c069fe4d522359df7d23badf83abc1d1cef398895822d11061"}, + {file = "pandas-2.0.3-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:32fca2ee1b0d93dd71d979726b12b61faa06aeb93cf77468776287f41ff8fdc5"}, + {file = "pandas-2.0.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:258d3624b3ae734490e4d63c430256e716f488c4fcb7c8e9bde2d3aa46c29089"}, + {file = "pandas-2.0.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9eae3dc34fa1aa7772dd3fc60270d13ced7346fcbcfee017d3132ec625e23bb0"}, + {file = "pandas-2.0.3-cp38-cp38-win32.whl", hash = "sha256:f3421a7afb1a43f7e38e82e844e2bca9a6d793d66c1a7f9f0ff39a795bbc5e02"}, + {file = "pandas-2.0.3-cp38-cp38-win_amd64.whl", hash = "sha256:69d7f3884c95da3a31ef82b7618af5710dba95bb885ffab339aad925c3e8ce78"}, + {file = "pandas-2.0.3-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5247fb1ba347c1261cbbf0fcfba4a3121fbb4029d95d9ef4dc45406620b25c8b"}, + {file = "pandas-2.0.3-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:81af086f4543c9d8bb128328b5d32e9986e0c84d3ee673a2ac6fb57fd14f755e"}, + {file = "pandas-2.0.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1994c789bf12a7c5098277fb43836ce090f1073858c10f9220998ac74f37c69b"}, + {file = "pandas-2.0.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ec591c48e29226bcbb316e0c1e9423622bc7a4eaf1ef7c3c9fa1a3981f89641"}, + {file = "pandas-2.0.3-cp39-cp39-win32.whl", hash = "sha256:04dbdbaf2e4d46ca8da896e1805bc04eb85caa9a82e259e8eed00254d5e0c682"}, + {file = "pandas-2.0.3-cp39-cp39-win_amd64.whl", hash = "sha256:1168574b036cd8b93abc746171c9b4f1b83467438a5e45909fed645cf8692dbc"}, + {file = "pandas-2.0.3.tar.gz", hash = "sha256:c02f372a88e0d17f36d3093a644c73cfc1788e876a7c4bcb4020a77512e2043c"}, +] + +[package.dependencies] +numpy = {version = ">=1.20.3", markers = "python_version < \"3.10\""} +python-dateutil = ">=2.8.2" +pytz = ">=2020.1" +tzdata = ">=2022.1" + +[package.extras] +all = ["PyQt5 (>=5.15.1)", "SQLAlchemy (>=1.4.16)", "beautifulsoup4 (>=4.9.3)", "bottleneck (>=1.3.2)", "brotlipy (>=0.7.0)", "fastparquet (>=0.6.3)", "fsspec (>=2021.07.0)", "gcsfs (>=2021.07.0)", "html5lib (>=1.1)", "hypothesis (>=6.34.2)", "jinja2 (>=3.0.0)", "lxml (>=4.6.3)", "matplotlib (>=3.6.1)", "numba (>=0.53.1)", "numexpr (>=2.7.3)", "odfpy (>=1.4.1)", "openpyxl (>=3.0.7)", "pandas-gbq (>=0.15.0)", "psycopg2 (>=2.8.6)", "pyarrow (>=7.0.0)", "pymysql (>=1.0.2)", "pyreadstat (>=1.1.2)", "pytest (>=7.3.2)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)", "python-snappy (>=0.6.0)", "pyxlsb (>=1.0.8)", "qtpy (>=2.2.0)", "s3fs (>=2021.08.0)", "scipy (>=1.7.1)", "tables (>=3.6.1)", "tabulate (>=0.8.9)", "xarray (>=0.21.0)", "xlrd (>=2.0.1)", "xlsxwriter (>=1.4.3)", "zstandard (>=0.15.2)"] +aws = ["s3fs (>=2021.08.0)"] +clipboard = ["PyQt5 (>=5.15.1)", "qtpy (>=2.2.0)"] +compression = ["brotlipy (>=0.7.0)", "python-snappy (>=0.6.0)", "zstandard (>=0.15.2)"] +computation = ["scipy (>=1.7.1)", "xarray (>=0.21.0)"] +excel = ["odfpy (>=1.4.1)", "openpyxl (>=3.0.7)", "pyxlsb (>=1.0.8)", "xlrd (>=2.0.1)", "xlsxwriter (>=1.4.3)"] +feather = ["pyarrow (>=7.0.0)"] +fss = ["fsspec (>=2021.07.0)"] +gcp = ["gcsfs (>=2021.07.0)", "pandas-gbq (>=0.15.0)"] +hdf5 = ["tables (>=3.6.1)"] +html = ["beautifulsoup4 (>=4.9.3)", "html5lib (>=1.1)", "lxml (>=4.6.3)"] +mysql = ["SQLAlchemy (>=1.4.16)", "pymysql (>=1.0.2)"] +output-formatting = ["jinja2 (>=3.0.0)", "tabulate (>=0.8.9)"] +parquet = ["pyarrow (>=7.0.0)"] +performance = ["bottleneck (>=1.3.2)", "numba (>=0.53.1)", "numexpr (>=2.7.1)"] +plot = ["matplotlib (>=3.6.1)"] +postgresql = ["SQLAlchemy (>=1.4.16)", "psycopg2 (>=2.8.6)"] +spss = ["pyreadstat (>=1.1.2)"] +sql-other = ["SQLAlchemy (>=1.4.16)"] +test = ["hypothesis (>=6.34.2)", "pytest (>=7.3.2)", "pytest-asyncio (>=0.17.0)", "pytest-xdist (>=2.2.0)"] +xml = ["lxml (>=4.6.3)"] + +[[package]] +name = "pandas-stubs" +version = "1.5.3.230321" +description = "Type annotations for pandas" +category = "dev" +optional = false +python-versions = ">=3.8,<3.12" +files = [ + {file = "pandas_stubs-1.5.3.230321-py3-none-any.whl", hash = "sha256:4bf36b3071dd55f0e558ac8efe07676a120f2ed89e7a3df0fb78ddf2733bf247"}, + {file = "pandas_stubs-1.5.3.230321.tar.gz", hash = "sha256:2fa860df9e6058e9f0d2c09bc711c09abb8f0516eee7f0b9f9950d29b835fc6f"}, +] + +[package.dependencies] +types-pytz = ">=2022.1.1" + +[[package]] +name = "pathspec" +version = "0.11.1" +description = "Utility library for gitignore style pattern matching of file paths." +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pathspec-0.11.1-py3-none-any.whl", hash = "sha256:d8af70af76652554bd134c22b3e8a1cc46ed7d91edcdd721ef1a0c51a84a5293"}, + {file = "pathspec-0.11.1.tar.gz", hash = "sha256:2798de800fa92780e33acca925945e9a19a133b715067cf165b8866c15a31687"}, +] + +[[package]] +name = "pbr" +version = "5.11.1" +description = "Python Build Reasonableness" +category = "dev" +optional = false +python-versions = ">=2.6" +files = [ + {file = "pbr-5.11.1-py2.py3-none-any.whl", hash = "sha256:567f09558bae2b3ab53cb3c1e2e33e726ff3338e7bae3db5dc954b3a44eef12b"}, + {file = "pbr-5.11.1.tar.gz", hash = "sha256:aefc51675b0b533d56bb5fd1c8c6c0522fe31896679882e1c4c63d5e4a0fccb3"}, +] + +[[package]] +name = "pillow" +version = "10.0.0" +description = "Python Imaging Library (Fork)" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "Pillow-10.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:1f62406a884ae75fb2f818694469519fb685cc7eaff05d3451a9ebe55c646891"}, + {file = "Pillow-10.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d5db32e2a6ccbb3d34d87c87b432959e0db29755727afb37290e10f6e8e62614"}, + {file = "Pillow-10.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:edf4392b77bdc81f36e92d3a07a5cd072f90253197f4a52a55a8cec48a12483b"}, + {file = "Pillow-10.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:520f2a520dc040512699f20fa1c363eed506e94248d71f85412b625026f6142c"}, + {file = "Pillow-10.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:8c11160913e3dd06c8ffdb5f233a4f254cb449f4dfc0f8f4549eda9e542c93d1"}, + {file = "Pillow-10.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a74ba0c356aaa3bb8e3eb79606a87669e7ec6444be352870623025d75a14a2bf"}, + {file = "Pillow-10.0.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d5d0dae4cfd56969d23d94dc8e89fb6a217be461c69090768227beb8ed28c0a3"}, + {file = "Pillow-10.0.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:22c10cc517668d44b211717fd9775799ccec4124b9a7f7b3635fc5386e584992"}, + {file = "Pillow-10.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:dffe31a7f47b603318c609f378ebcd57f1554a3a6a8effbc59c3c69f804296de"}, + {file = "Pillow-10.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:9fb218c8a12e51d7ead2a7c9e101a04982237d4855716af2e9499306728fb485"}, + {file = "Pillow-10.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d35e3c8d9b1268cbf5d3670285feb3528f6680420eafe35cccc686b73c1e330f"}, + {file = "Pillow-10.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ed64f9ca2f0a95411e88a4efbd7a29e5ce2cea36072c53dd9d26d9c76f753b3"}, + {file = "Pillow-10.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b6eb5502f45a60a3f411c63187db83a3d3107887ad0d036c13ce836f8a36f1d"}, + {file = "Pillow-10.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:c1fbe7621c167ecaa38ad29643d77a9ce7311583761abf7836e1510c580bf3dd"}, + {file = "Pillow-10.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:cd25d2a9d2b36fcb318882481367956d2cf91329f6892fe5d385c346c0649629"}, + {file = "Pillow-10.0.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:3b08d4cc24f471b2c8ca24ec060abf4bebc6b144cb89cba638c720546b1cf538"}, + {file = "Pillow-10.0.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:d737a602fbd82afd892ca746392401b634e278cb65d55c4b7a8f48e9ef8d008d"}, + {file = "Pillow-10.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:3a82c40d706d9aa9734289740ce26460a11aeec2d9c79b7af87bb35f0073c12f"}, + {file = "Pillow-10.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:bc2ec7c7b5d66b8ec9ce9f720dbb5fa4bace0f545acd34870eff4a369b44bf37"}, + {file = "Pillow-10.0.0-cp312-cp312-macosx_10_10_x86_64.whl", hash = "sha256:d80cf684b541685fccdd84c485b31ce73fc5c9b5d7523bf1394ce134a60c6883"}, + {file = "Pillow-10.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:76de421f9c326da8f43d690110f0e79fe3ad1e54be811545d7d91898b4c8493e"}, + {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:81ff539a12457809666fef6624684c008e00ff6bf455b4b89fd00a140eecd640"}, + {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce543ed15570eedbb85df19b0a1a7314a9c8141a36ce089c0a894adbfccb4568"}, + {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:685ac03cc4ed5ebc15ad5c23bc555d68a87777586d970c2c3e216619a5476223"}, + {file = "Pillow-10.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:d72e2ecc68a942e8cf9739619b7f408cc7b272b279b56b2c83c6123fcfa5cdff"}, + {file = "Pillow-10.0.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:d50b6aec14bc737742ca96e85d6d0a5f9bfbded018264b3b70ff9d8c33485551"}, + {file = "Pillow-10.0.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:00e65f5e822decd501e374b0650146063fbb30a7264b4d2744bdd7b913e0cab5"}, + {file = "Pillow-10.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:f31f9fdbfecb042d046f9d91270a0ba28368a723302786c0009ee9b9f1f60199"}, + {file = "Pillow-10.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:1ce91b6ec08d866b14413d3f0bbdea7e24dfdc8e59f562bb77bc3fe60b6144ca"}, + {file = "Pillow-10.0.0-cp38-cp38-macosx_10_10_x86_64.whl", hash = "sha256:349930d6e9c685c089284b013478d6f76e3a534e36ddfa912cde493f235372f3"}, + {file = "Pillow-10.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:3a684105f7c32488f7153905a4e3015a3b6c7182e106fe3c37fbb5ef3e6994c3"}, + {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b4f69b3700201b80bb82c3a97d5e9254084f6dd5fb5b16fc1a7b974260f89f43"}, + {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3f07ea8d2f827d7d2a49ecf1639ec02d75ffd1b88dcc5b3a61bbb37a8759ad8d"}, + {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_28_aarch64.whl", hash = "sha256:040586f7d37b34547153fa383f7f9aed68b738992380ac911447bb78f2abe530"}, + {file = "Pillow-10.0.0-cp38-cp38-manylinux_2_28_x86_64.whl", hash = "sha256:f88a0b92277de8e3ca715a0d79d68dc82807457dae3ab8699c758f07c20b3c51"}, + {file = "Pillow-10.0.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:c7cf14a27b0d6adfaebb3ae4153f1e516df54e47e42dcc073d7b3d76111a8d86"}, + {file = "Pillow-10.0.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:3400aae60685b06bb96f99a21e1ada7bc7a413d5f49bce739828ecd9391bb8f7"}, + {file = "Pillow-10.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:dbc02381779d412145331789b40cc7b11fdf449e5d94f6bc0b080db0a56ea3f0"}, + {file = "Pillow-10.0.0-cp39-cp39-macosx_10_10_x86_64.whl", hash = "sha256:9211e7ad69d7c9401cfc0e23d49b69ca65ddd898976d660a2fa5904e3d7a9baa"}, + {file = "Pillow-10.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:faaf07ea35355b01a35cb442dd950d8f1bb5b040a7787791a535de13db15ed90"}, + {file = "Pillow-10.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c9f72a021fbb792ce98306ffb0c348b3c9cb967dce0f12a49aa4c3d3fdefa967"}, + {file = "Pillow-10.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f7c16705f44e0504a3a2a14197c1f0b32a95731d251777dcb060aa83022cb2d"}, + {file = "Pillow-10.0.0-cp39-cp39-manylinux_2_28_aarch64.whl", hash = "sha256:76edb0a1fa2b4745fb0c99fb9fb98f8b180a1bbceb8be49b087e0b21867e77d3"}, + {file = "Pillow-10.0.0-cp39-cp39-manylinux_2_28_x86_64.whl", hash = "sha256:368ab3dfb5f49e312231b6f27b8820c823652b7cd29cfbd34090565a015e99ba"}, + {file = "Pillow-10.0.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:608bfdee0d57cf297d32bcbb3c728dc1da0907519d1784962c5f0c68bb93e5a3"}, + {file = "Pillow-10.0.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:5c6e3df6bdd396749bafd45314871b3d0af81ff935b2d188385e970052091017"}, + {file = "Pillow-10.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:7be600823e4c8631b74e4a0d38384c73f680e6105a7d3c6824fcf226c178c7e6"}, + {file = "Pillow-10.0.0-pp310-pypy310_pp73-macosx_10_10_x86_64.whl", hash = "sha256:92be919bbc9f7d09f7ae343c38f5bb21c973d2576c1d45600fce4b74bafa7ac0"}, + {file = "Pillow-10.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f8182b523b2289f7c415f589118228d30ac8c355baa2f3194ced084dac2dbba"}, + {file = "Pillow-10.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:38250a349b6b390ee6047a62c086d3817ac69022c127f8a5dc058c31ccef17f3"}, + {file = "Pillow-10.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:88af2003543cc40c80f6fca01411892ec52b11021b3dc22ec3bc9d5afd1c5334"}, + {file = "Pillow-10.0.0-pp39-pypy39_pp73-macosx_10_10_x86_64.whl", hash = "sha256:c189af0545965fa8d3b9613cfdb0cd37f9d71349e0f7750e1fd704648d475ed2"}, + {file = "Pillow-10.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce7b031a6fc11365970e6a5686d7ba8c63e4c1cf1ea143811acbb524295eabed"}, + {file = "Pillow-10.0.0-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:db24668940f82321e746773a4bc617bfac06ec831e5c88b643f91f122a785684"}, + {file = "Pillow-10.0.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:efe8c0681042536e0d06c11f48cebe759707c9e9abf880ee213541c5b46c5bf3"}, + {file = "Pillow-10.0.0.tar.gz", hash = "sha256:9c82b5b3e043c7af0d95792d0d20ccf68f61a1fec6b3530e718b688422727396"}, +] + +[package.extras] +docs = ["furo", "olefile", "sphinx (>=2.4)", "sphinx-copybutton", "sphinx-inline-tabs", "sphinx-removed-in", "sphinxext-opengraph"] +tests = ["check-manifest", "coverage", "defusedxml", "markdown2", "olefile", "packaging", "pyroma", "pytest", "pytest-cov", "pytest-timeout"] + +[[package]] +name = "pip" +version = "23.2.1" +description = "The PyPA recommended tool for installing Python packages." +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pip-23.2.1-py3-none-any.whl", hash = "sha256:7ccf472345f20d35bdc9d1841ff5f313260c2c33fe417f48c30ac46cccabf5be"}, + {file = "pip-23.2.1.tar.gz", hash = "sha256:fb0bd5435b3200c602b5bf61d2d43c2f13c02e29c1707567ae7fbc514eb9faf2"}, +] + +[[package]] +name = "pip-api" +version = "0.0.30" +description = "An unofficial, importable pip API" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pip-api-0.0.30.tar.gz", hash = "sha256:a05df2c7aa9b7157374bcf4273544201a0c7bae60a9c65bcf84f3959ef3896f3"}, + {file = "pip_api-0.0.30-py3-none-any.whl", hash = "sha256:2a0314bd31522eb9ffe8a99668b0d07fee34ebc537931e7b6483001dbedcbdc9"}, +] + +[package.dependencies] +pip = "*" + +[[package]] +name = "pip-audit" +version = "2.6.1" +description = "A tool for scanning Python environments for known vulnerabilities" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pip_audit-2.6.1-py3-none-any.whl", hash = "sha256:8a32bb67dca6a76c244bbccebed562c0f6957b1fc9d34d59a9ec0fbff0672ae0"}, + {file = "pip_audit-2.6.1.tar.gz", hash = "sha256:55c9bd18b0fe3959f73397db08d257c6012ad1826825e3d74cb6c3f79e95c245"}, +] + +[package.dependencies] +CacheControl = {version = ">=0.13.0", extras = ["filecache"]} +cyclonedx-python-lib = ">=4.0,<5.0" +html5lib = ">=1.1" +packaging = ">=23.0.0" +pip-api = ">=0.0.28" +pip-requirements-parser = ">=32.0.0" +requests = ">=2.31.0" +rich = ">=12.4" +toml = ">=0.10" + +[package.extras] +dev = ["build", "bump (>=1.3.2)", "pip-audit[doc,lint,test]"] +doc = ["pdoc"] +lint = ["black (>=22.3.0)", "interrogate", "isort", "mypy", "ruff (<0.0.281)", "types-html5lib", "types-requests", "types-toml"] +test = ["coverage[toml]", "pretend", "pytest", "pytest-cov"] + +[[package]] +name = "pip-requirements-parser" +version = "32.0.1" +description = "pip requirements parser - a mostly correct pip requirements parsing library because it uses pip's own code." +category = "dev" +optional = false +python-versions = ">=3.6.0" +files = [ + {file = "pip-requirements-parser-32.0.1.tar.gz", hash = "sha256:b4fa3a7a0be38243123cf9d1f3518da10c51bdb165a2b2985566247f9155a7d3"}, + {file = "pip_requirements_parser-32.0.1-py3-none-any.whl", hash = "sha256:4659bc2a667783e7a15d190f6fccf8b2486685b6dba4c19c3876314769c57526"}, +] + +[package.dependencies] +packaging = "*" +pyparsing = "*" + +[package.extras] +docs = ["Sphinx (>=3.3.1)", "doc8 (>=0.8.1)", "sphinx-rtd-theme (>=0.5.0)"] +testing = ["aboutcode-toolkit (>=6.0.0)", "black", "pytest (>=6,!=7.0.0)", "pytest-xdist (>=2)"] + +[[package]] +name = "platformdirs" +version = "3.9.1" +description = "A small Python package for determining appropriate platform-specific dirs, e.g. a \"user data dir\"." +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "platformdirs-3.9.1-py3-none-any.whl", hash = "sha256:ad8291ae0ae5072f66c16945166cb11c63394c7a3ad1b1bc9828ca3162da8c2f"}, + {file = "platformdirs-3.9.1.tar.gz", hash = "sha256:1b42b450ad933e981d56e59f1b97495428c9bd60698baab9f3eb3d00d5822421"}, +] + +[package.extras] +docs = ["furo (>=2023.5.20)", "proselint (>=0.13)", "sphinx (>=7.0.1)", "sphinx-autodoc-typehints (>=1.23,!=1.23.4)"] +test = ["appdirs (==1.4.4)", "covdefaults (>=2.3)", "pytest (>=7.3.1)", "pytest-cov (>=4.1)", "pytest-mock (>=3.10)"] + +[[package]] +name = "pluggy" +version = "1.2.0" +description = "plugin and hook calling mechanisms for python" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pluggy-1.2.0-py3-none-any.whl", hash = "sha256:c2fd55a7d7a3863cba1a013e4e2414658b1d07b6bc57b3919e0c63c9abb99849"}, + {file = "pluggy-1.2.0.tar.gz", hash = "sha256:d12f0c4b579b15f5e054301bb226ee85eeeba08ffec228092f8defbaa3a4c4b3"}, +] + +[package.extras] +dev = ["pre-commit", "tox"] +testing = ["pytest", "pytest-benchmark"] + +[[package]] +name = "pooch" +version = "1.6.0" +description = "\"Pooch manages your Python library's sample data files: it automatically downloads and stores them in a local directory, with support for versioning and corruption checks.\"" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "pooch-1.6.0-py3-none-any.whl", hash = "sha256:3bf0e20027096836b8dbce0152dbb785a269abeb621618eb4bdd275ff1e23c9c"}, + {file = "pooch-1.6.0.tar.gz", hash = "sha256:57d20ec4b10dd694d2b05bb64bc6b109c6e85a6c1405794ce87ed8b341ab3f44"}, +] + +[package.dependencies] +appdirs = ">=1.3.0" +packaging = ">=20.0" +requests = ">=2.19.0" + +[package.extras] +progress = ["tqdm (>=4.41.0,<5.0.0)"] +sftp = ["paramiko (>=2.7.0)"] +xxhash = ["xxhash (>=1.4.3)"] + +[[package]] +name = "prometheus-client" +version = "0.12.0" +description = "Python client for the Prometheus monitoring system." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "prometheus_client-0.12.0-py2.py3-none-any.whl", hash = "sha256:317453ebabff0a1b02df7f708efbab21e3489e7072b61cb6957230dd004a0af0"}, + {file = "prometheus_client-0.12.0.tar.gz", hash = "sha256:1b12ba48cee33b9b0b9de64a1047cbd3c5f2d0ab6ebcead7ddda613a750ec3c5"}, +] + +[package.extras] +twisted = ["twisted"] + +[[package]] +name = "psutil" +version = "5.9.5" +description = "Cross-platform lib for process and system monitoring in Python." +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "psutil-5.9.5-cp27-cp27m-macosx_10_9_x86_64.whl", hash = "sha256:be8929ce4313f9f8146caad4272f6abb8bf99fc6cf59344a3167ecd74f4f203f"}, + {file = "psutil-5.9.5-cp27-cp27m-manylinux2010_i686.whl", hash = "sha256:ab8ed1a1d77c95453db1ae00a3f9c50227ebd955437bcf2a574ba8adbf6a74d5"}, + {file = "psutil-5.9.5-cp27-cp27m-manylinux2010_x86_64.whl", hash = "sha256:4aef137f3345082a3d3232187aeb4ac4ef959ba3d7c10c33dd73763fbc063da4"}, + {file = "psutil-5.9.5-cp27-cp27mu-manylinux2010_i686.whl", hash = "sha256:ea8518d152174e1249c4f2a1c89e3e6065941df2fa13a1ab45327716a23c2b48"}, + {file = "psutil-5.9.5-cp27-cp27mu-manylinux2010_x86_64.whl", hash = "sha256:acf2aef9391710afded549ff602b5887d7a2349831ae4c26be7c807c0a39fac4"}, + {file = "psutil-5.9.5-cp27-none-win32.whl", hash = "sha256:5b9b8cb93f507e8dbaf22af6a2fd0ccbe8244bf30b1baad6b3954e935157ae3f"}, + {file = "psutil-5.9.5-cp27-none-win_amd64.whl", hash = "sha256:8c5f7c5a052d1d567db4ddd231a9d27a74e8e4a9c3f44b1032762bd7b9fdcd42"}, + {file = "psutil-5.9.5-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:3c6f686f4225553615612f6d9bc21f1c0e305f75d7d8454f9b46e901778e7217"}, + {file = "psutil-5.9.5-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7a7dd9997128a0d928ed4fb2c2d57e5102bb6089027939f3b722f3a210f9a8da"}, + {file = "psutil-5.9.5-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:89518112647f1276b03ca97b65cc7f64ca587b1eb0278383017c2a0dcc26cbe4"}, + {file = "psutil-5.9.5-cp36-abi3-win32.whl", hash = "sha256:104a5cc0e31baa2bcf67900be36acde157756b9c44017b86b2c049f11957887d"}, + {file = "psutil-5.9.5-cp36-abi3-win_amd64.whl", hash = "sha256:b258c0c1c9d145a1d5ceffab1134441c4c5113b2417fafff7315a917a026c3c9"}, + {file = "psutil-5.9.5-cp38-abi3-macosx_11_0_arm64.whl", hash = "sha256:c607bb3b57dc779d55e1554846352b4e358c10fff3abf3514a7a6601beebdb30"}, + {file = "psutil-5.9.5.tar.gz", hash = "sha256:5410638e4df39c54d957fc51ce03048acd8e6d60abc0f5107af51e5fb566eb3c"}, +] + +[package.extras] +test = ["enum34", "ipaddress", "mock", "pywin32", "wmi"] + +[[package]] +name = "py-serializable" +version = "0.11.1" +description = "Library for serializing and deserializing Python Objects to and from JSON and XML." +category = "dev" +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "py-serializable-0.11.1.tar.gz", hash = "sha256:ba0e1287b9e4f645a5334f1913abd8e647e7250209f84f55dce3909498a6f586"}, + {file = "py_serializable-0.11.1-py3-none-any.whl", hash = "sha256:79e21f0672822e6200b15f45ce9f636e8126466f62dbd7d488c67313c72b5c3e"}, +] + +[package.dependencies] +defusedxml = ">=0.7.1,<0.8.0" + +[[package]] +name = "pyarrow" +version = "11.0.0" +description = "Python library for Apache Arrow" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pyarrow-11.0.0-cp310-cp310-macosx_10_14_x86_64.whl", hash = "sha256:40bb42afa1053c35c749befbe72f6429b7b5f45710e85059cdd534553ebcf4f2"}, + {file = "pyarrow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:7c28b5f248e08dea3b3e0c828b91945f431f4202f1a9fe84d1012a761324e1ba"}, + {file = "pyarrow-11.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a37bc81f6c9435da3c9c1e767324ac3064ffbe110c4e460660c43e144be4ed85"}, + {file = "pyarrow-11.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad7c53def8dbbc810282ad308cc46a523ec81e653e60a91c609c2233ae407689"}, + {file = "pyarrow-11.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:25aa11c443b934078bfd60ed63e4e2d42461682b5ac10f67275ea21e60e6042c"}, + {file = "pyarrow-11.0.0-cp311-cp311-macosx_10_14_x86_64.whl", hash = "sha256:e217d001e6389b20a6759392a5ec49d670757af80101ee6b5f2c8ff0172e02ca"}, + {file = "pyarrow-11.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:ad42bb24fc44c48f74f0d8c72a9af16ba9a01a2ccda5739a517aa860fa7e3d56"}, + {file = "pyarrow-11.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d942c690ff24a08b07cb3df818f542a90e4d359381fbff71b8f2aea5bf58841"}, + {file = "pyarrow-11.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f010ce497ca1b0f17a8243df3048055c0d18dcadbcc70895d5baf8921f753de5"}, + {file = "pyarrow-11.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:2f51dc7ca940fdf17893227edb46b6784d37522ce08d21afc56466898cb213b2"}, + {file = "pyarrow-11.0.0-cp37-cp37m-macosx_10_14_x86_64.whl", hash = "sha256:1cbcfcbb0e74b4d94f0b7dde447b835a01bc1d16510edb8bb7d6224b9bf5bafc"}, + {file = "pyarrow-11.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaee8f79d2a120bf3e032d6d64ad20b3af6f56241b0ffc38d201aebfee879d00"}, + {file = "pyarrow-11.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:410624da0708c37e6a27eba321a72f29d277091c8f8d23f72c92bada4092eb5e"}, + {file = "pyarrow-11.0.0-cp37-cp37m-win_amd64.whl", hash = "sha256:2d53ba72917fdb71e3584ffc23ee4fcc487218f8ff29dd6df3a34c5c48fe8c06"}, + {file = "pyarrow-11.0.0-cp38-cp38-macosx_10_14_x86_64.whl", hash = "sha256:f12932e5a6feb5c58192209af1d2607d488cb1d404fbc038ac12ada60327fa34"}, + {file = "pyarrow-11.0.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:41a1451dd895c0b2964b83d91019e46f15b5564c7ecd5dcb812dadd3f05acc97"}, + {file = "pyarrow-11.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:becc2344be80e5dce4e1b80b7c650d2fc2061b9eb339045035a1baa34d5b8f1c"}, + {file = "pyarrow-11.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f40be0d7381112a398b93c45a7e69f60261e7b0269cc324e9f739ce272f4f70"}, + {file = "pyarrow-11.0.0-cp38-cp38-win_amd64.whl", hash = "sha256:362a7c881b32dc6b0eccf83411a97acba2774c10edcec715ccaab5ebf3bb0835"}, + {file = "pyarrow-11.0.0-cp39-cp39-macosx_10_14_x86_64.whl", hash = "sha256:ccbf29a0dadfcdd97632b4f7cca20a966bb552853ba254e874c66934931b9841"}, + {file = "pyarrow-11.0.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:3e99be85973592051e46412accea31828da324531a060bd4585046a74ba45854"}, + {file = "pyarrow-11.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69309be84dcc36422574d19c7d3a30a7ea43804f12552356d1ab2a82a713c418"}, + {file = "pyarrow-11.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da93340fbf6f4e2a62815064383605b7ffa3e9eeb320ec839995b1660d69f89b"}, + {file = "pyarrow-11.0.0-cp39-cp39-win_amd64.whl", hash = "sha256:caad867121f182d0d3e1a0d36f197df604655d0b466f1bc9bafa903aa95083e4"}, + {file = "pyarrow-11.0.0.tar.gz", hash = "sha256:5461c57dbdb211a632a48facb9b39bbeb8a7905ec95d768078525283caef5f6d"}, +] + +[package.dependencies] +numpy = ">=1.16.6" + +[[package]] +name = "pycodestyle" +version = "2.7.0" +description = "Python style guide checker" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pycodestyle-2.7.0-py2.py3-none-any.whl", hash = "sha256:514f76d918fcc0b55c6680472f0a37970994e07bbb80725808c17089be302068"}, + {file = "pycodestyle-2.7.0.tar.gz", hash = "sha256:c389c1d06bf7904078ca03399a4816f974a1d590090fecea0c63ec26ebaf1cef"}, +] + +[[package]] +name = "pycparser" +version = "2.21" +description = "C parser in Python" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pycparser-2.21-py2.py3-none-any.whl", hash = "sha256:8ee45429555515e1f6b185e78100aea234072576aa43ab53aefcae078162fca9"}, + {file = "pycparser-2.21.tar.gz", hash = "sha256:e644fdec12f7872f86c58ff790da456218b10f863970249516d60a5eaca77206"}, +] + +[[package]] +name = "pydub" +version = "0.25.1" +description = "Manipulate audio with an simple and easy high level interface" +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "pydub-0.25.1-py2.py3-none-any.whl", hash = "sha256:65617e33033874b59d87db603aa1ed450633288aefead953b30bded59cb599a6"}, + {file = "pydub-0.25.1.tar.gz", hash = "sha256:980a33ce9949cab2a569606b65674d748ecbca4f0796887fd6f46173a7b0d30f"}, +] + +[[package]] +name = "pyflakes" +version = "2.3.1" +description = "passive checker of Python programs" +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*" +files = [ + {file = "pyflakes-2.3.1-py2.py3-none-any.whl", hash = "sha256:7893783d01b8a89811dd72d7dfd4d84ff098e5eed95cfa8905b22bbffe52efc3"}, + {file = "pyflakes-2.3.1.tar.gz", hash = "sha256:f5bc8ecabc05bb9d291eb5203d6810b49040f6ff446a756326104746cc00c1db"}, +] + +[[package]] +name = "pygments" +version = "2.15.1" +description = "Pygments is a syntax highlighting package written in Python." +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "Pygments-2.15.1-py3-none-any.whl", hash = "sha256:db2db3deb4b4179f399a09054b023b6a586b76499d36965813c71aa8ed7b5fd1"}, + {file = "Pygments-2.15.1.tar.gz", hash = "sha256:8ace4d3c1dd481894b2005f560ead0f9f19ee64fe983366be1a21e171d12775c"}, +] + +[package.extras] +plugins = ["importlib-metadata"] + +[[package]] +name = "pyjwt" +version = "2.8.0" +description = "JSON Web Token implementation in Python" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "PyJWT-2.8.0-py3-none-any.whl", hash = "sha256:59127c392cc44c2da5bb3192169a91f429924e17aff6534d70fdc02ab3e04320"}, + {file = "PyJWT-2.8.0.tar.gz", hash = "sha256:57e28d156e3d5c10088e0c68abb90bfac3df82b40a71bd0daa20c65ccd5c23de"}, +] + +[package.dependencies] +cryptography = {version = ">=3.4.0", optional = true, markers = "extra == \"crypto\""} + +[package.extras] +crypto = ["cryptography (>=3.4.0)"] +dev = ["coverage[toml] (==5.0.4)", "cryptography (>=3.4.0)", "pre-commit", "pytest (>=6.0.0,<7.0.0)", "sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +docs = ["sphinx (>=4.5.0,<5.0.0)", "sphinx-rtd-theme", "zope.interface"] +tests = ["coverage[toml] (==5.0.4)", "pytest (>=6.0.0,<7.0.0)"] + +[[package]] +name = "pymongo" +version = "3.13.0" +description = "Python driver for MongoDB <http://www.mongodb.org>" +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "pymongo-3.13.0-cp27-cp27m-macosx_10_14_intel.whl", hash = "sha256:3ad3a3df830f7df7e0856c2bdb54d19f5bf188bd7420985e18643b8e4d2a075f"}, + {file = "pymongo-3.13.0-cp27-cp27m-manylinux1_i686.whl", hash = "sha256:b96e0e9d2d48948240b510bac81614458fc10adcd3a93240c2fd96448b4efd35"}, + {file = "pymongo-3.13.0-cp27-cp27m-manylinux1_x86_64.whl", hash = "sha256:9f592b202d77923498b32ddc5b376e5fa9ba280d3e16ed56cb8c932fe6d6a478"}, + {file = "pymongo-3.13.0-cp27-cp27m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:851f2bb52b5cb2f4711171ca925e0e05344a8452972a748a8a8ffdda1e1d72a7"}, + {file = "pymongo-3.13.0-cp27-cp27m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:1c9d23f62a3fa7523d849c4942acc0d9ff7081ebc00c808ee7cfdc070df0687f"}, + {file = "pymongo-3.13.0-cp27-cp27m-win32.whl", hash = "sha256:a17b81f22398e3e0f72bdf938e98c810286994b2bcc0a125cd5ad8fd4ea54ad7"}, + {file = "pymongo-3.13.0-cp27-cp27m-win_amd64.whl", hash = "sha256:4f6dd55dab77adf60b445c11f426ee5cdfa1b86f6d54cb937bfcbf09572333ab"}, + {file = "pymongo-3.13.0-cp27-cp27mu-manylinux1_i686.whl", hash = "sha256:776f90bf2252f90a4ae838e7917638894c6356bef7265f424592e2fd1f577d05"}, + {file = "pymongo-3.13.0-cp27-cp27mu-manylinux1_x86_64.whl", hash = "sha256:50b99f4d3eee6f03778fe841d6f470e6c18e744dc665156da6da3bc6e65b398d"}, + {file = "pymongo-3.13.0-cp27-cp27mu-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:50a81b2d9f188c7909e0a1084fa969bb92a788076809c437ac1ae80393f46df9"}, + {file = "pymongo-3.13.0-cp27-cp27mu-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:c7c45a8a1a752002b0a7c81ab3a4c5e3b6f67f9826b16fbe3943f5329f565f24"}, + {file = "pymongo-3.13.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1037097708498bdc85f23c8798a5c46c7bce432d77d23608ff14e0d831f1a971"}, + {file = "pymongo-3.13.0-cp310-cp310-manylinux1_i686.whl", hash = "sha256:b5b733694e7df22d5c049581acfc487695a6ff813322318bed8dd66f79978636"}, + {file = "pymongo-3.13.0-cp310-cp310-manylinux2014_aarch64.whl", hash = "sha256:d7c91747ec8dde51440dd594603158cc98abb3f7df84b2ed8a836f138285e4fb"}, + {file = "pymongo-3.13.0-cp310-cp310-manylinux2014_i686.whl", hash = "sha256:f4175fcdddf764d371ee52ec4505a40facee2533e84abf2953cda86d050cfa1f"}, + {file = "pymongo-3.13.0-cp310-cp310-manylinux2014_ppc64le.whl", hash = "sha256:93d4e9a02c17813b34e4bd9f6fbf07310c140c8f74341537c24d07c1cdeb24d1"}, + {file = "pymongo-3.13.0-cp310-cp310-manylinux2014_s390x.whl", hash = "sha256:3b261d593f2563299062733ae003a925420a86ff4ddda68a69097d67204e43f3"}, + {file = "pymongo-3.13.0-cp310-cp310-manylinux2014_x86_64.whl", hash = "sha256:172db03182a22e9002157b262c1ea3b0045c73d4ff465adc152ce5b4b0e7b8d4"}, + {file = "pymongo-3.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:09de3bfc995ae8cb955abb0c9ae963c134dba1b5622be3bcc527b89b0fd4091c"}, + {file = "pymongo-3.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c0379447587ee4b8f983ba183202496e86c0358f47c45612619d634d1fcd82bd"}, + {file = "pymongo-3.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:30245a8747dc90019a3c9ad9df987e0280a3ea632ad36227cde7d1d8dcba0830"}, + {file = "pymongo-3.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65b6fddf6a7b91da044f202771a38e71bbb9bf42720a406b26b25fe2256e7102"}, + {file = "pymongo-3.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5831a377d15a626fbec10890ffebc4c6abcd37e4126737932cd780a171eabdc1"}, + {file = "pymongo-3.13.0-cp310-cp310-win32.whl", hash = "sha256:944249aa83dee314420c37d0f40c30a8f6dc4a3877566017b87062e53af449f4"}, + {file = "pymongo-3.13.0-cp310-cp310-win_amd64.whl", hash = "sha256:ea8824ebc9a1a5c8269e8f1e3989b5a6bec876726e2f3c33ebd036cb488277f0"}, + {file = "pymongo-3.13.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:bdd34c57b4da51a7961beb33645646d197e41f8517801dc76b37c1441e7a4e10"}, + {file = "pymongo-3.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:26f9cc42a162faa241c82e117ac85734ae9f14343dc2df1c90c6b2181f791b22"}, + {file = "pymongo-3.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a82a1c10f5608e6494913faa169e213d703194bfca0aa710901f303be212414"}, + {file = "pymongo-3.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8927f22ef6a16229da7f18944deac8605bdc2c0858be5184259f2f7ce7fd4459"}, + {file = "pymongo-3.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e6f8191a282ef77e526f8f8f63753a437e4aa4bc78f5edd8b6b6ed0eaebd5363"}, + {file = "pymongo-3.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4d9ed67c987bf9ac2ac684590ba3d2599cdfb0f331ee3db607f9684469b3b59d"}, + {file = "pymongo-3.13.0-cp311-cp311-win32.whl", hash = "sha256:e8f6979664ff477cd61b06bf8aba206df7b2334209815ab3b1019931dab643d6"}, + {file = "pymongo-3.13.0-cp311-cp311-win_amd64.whl", hash = "sha256:174fd1000e896d0dfbc7f6d7e6a1992a4868796c7dec31679e38218c78d6a942"}, + {file = "pymongo-3.13.0-cp35-cp35m-macosx_10_6_intel.whl", hash = "sha256:d1ee773fb72ba024e7e3bb6ea8907fe52bccafcb5184aaced6bad995bd30ea20"}, + {file = "pymongo-3.13.0-cp35-cp35m-manylinux1_i686.whl", hash = "sha256:28565e3dbd69fe5fe35a210067064dbb6ed5abe997079f653c19c873c3896fe6"}, + {file = "pymongo-3.13.0-cp35-cp35m-manylinux1_x86_64.whl", hash = "sha256:5c1db7d366004d6c699eb08c716a63ae0a3e946d061cbebea65d7ce361950265"}, + {file = "pymongo-3.13.0-cp35-cp35m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e1956f3338c10308e2f99c2c9ff46ae412035cbcd7aaa76c39ccdb806854a247"}, + {file = "pymongo-3.13.0-cp35-cp35m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:10f0fddc1d63ba3d4a4bffcc7720184c1b7efd570726ad5e2f55818da320239f"}, + {file = "pymongo-3.13.0-cp35-cp35m-win32.whl", hash = "sha256:570ae3365b23d4fd8c669cb57613b1a90b2757e993588d3370ef90945dbeec4b"}, + {file = "pymongo-3.13.0-cp35-cp35m-win_amd64.whl", hash = "sha256:79f777eaf3f5b2c6d81f9ef00d87837001d7063302503bbcbfdbf3e9bc27c96f"}, + {file = "pymongo-3.13.0-cp36-cp36m-macosx_10_6_intel.whl", hash = "sha256:d42eb29ba314adfd9c11234b4b646f61b0448bf9b00f14db4b317e6e4b947e77"}, + {file = "pymongo-3.13.0-cp36-cp36m-manylinux1_i686.whl", hash = "sha256:e5e87c0eb774561c546f979342a8ff36ebee153c60a0b6c6b03ba989ceb9538c"}, + {file = "pymongo-3.13.0-cp36-cp36m-manylinux1_x86_64.whl", hash = "sha256:0f2c5a5984599a88d087a15859860579b825098b473d8c843f1979a83d159f2e"}, + {file = "pymongo-3.13.0-cp36-cp36m-manylinux2014_aarch64.whl", hash = "sha256:59c98e86c5e861032b71e6e5b65f23e6afaacea6e82483b66f1191a5021a7b4f"}, + {file = "pymongo-3.13.0-cp36-cp36m-manylinux2014_i686.whl", hash = "sha256:70b67390e27e58876853efbb87e43c85252de2515e2887f7dd901b4fa3d21973"}, + {file = "pymongo-3.13.0-cp36-cp36m-manylinux2014_ppc64le.whl", hash = "sha256:42ba8606492d76e6f9e4c7a458ed4bc712603be393259a52450345f0945da2cf"}, + {file = "pymongo-3.13.0-cp36-cp36m-manylinux2014_s390x.whl", hash = "sha256:0e5536994cf2d8488c6fd9dea71df3c4dbb3e0d2ba5e695da06d9142a29a0969"}, + {file = "pymongo-3.13.0-cp36-cp36m-manylinux2014_x86_64.whl", hash = "sha256:fe8194f107f0fa3cabd14e9e809f174eca335993c1db72d1e74e0f496e7afe1f"}, + {file = "pymongo-3.13.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d593d50815771f517d3ac4367ff716e3f3c78edae51d98e1e25791459f8848ff"}, + {file = "pymongo-3.13.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5136ebe8da6a1604998a8eb96be55935aa5f7129c41cc7bddc400d48e8df43be"}, + {file = "pymongo-3.13.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a424bdedfd84454d2905a861e0d4bb947cc5bd024fdeb3600c1a97d2be0f4255"}, + {file = "pymongo-3.13.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5161167b3840e9c84c80f2534ea6a099f51749d5673b662a3dd248be17c3208"}, + {file = "pymongo-3.13.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:644470442beaf969df99c4e00367a817eee05f0bba5d888f1ba6fe97b5e1c102"}, + {file = "pymongo-3.13.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2406df90b2335371706c59b7d79e9633b81ed2a7ecd48c1faf8584552bdf2d90"}, + {file = "pymongo-3.13.0-cp36-cp36m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:222591b828de10ac90064047b5d4916953f38c38b155009c4b8b5e0d33117c2b"}, + {file = "pymongo-3.13.0-cp36-cp36m-win32.whl", hash = "sha256:7cb987b199fa223ad78eebaa9fbc183d5a5944bfe568a9d6f617316ca1c1f32f"}, + {file = "pymongo-3.13.0-cp36-cp36m-win_amd64.whl", hash = "sha256:a6cbb73d9fc2282677e2b7a137d13da987bd0b13abd88ed27bba5534c226db06"}, + {file = "pymongo-3.13.0-cp37-cp37m-macosx_10_6_intel.whl", hash = "sha256:b1223b826acbef07a7f5eb9bf37247b0b580119916dca9eae19d92b1290f5855"}, + {file = "pymongo-3.13.0-cp37-cp37m-manylinux1_i686.whl", hash = "sha256:398fb86d374dc351a4abc2e24cd15e5e14b2127f6d90ce0df3fdf2adcc55ac1b"}, + {file = "pymongo-3.13.0-cp37-cp37m-manylinux1_x86_64.whl", hash = "sha256:9c3d07ea19cd2856d9943dce37e75d69ecbb5baf93c3e4c82f73b6075c481292"}, + {file = "pymongo-3.13.0-cp37-cp37m-manylinux2014_aarch64.whl", hash = "sha256:2943d739715f265a2983ac43747595b6af3312d0a370614040959fd293763adf"}, + {file = "pymongo-3.13.0-cp37-cp37m-manylinux2014_i686.whl", hash = "sha256:c3b70ed82f20d18d22eafc9bda0ea656605071762f7d31f3c5afc35c59d3393b"}, + {file = "pymongo-3.13.0-cp37-cp37m-manylinux2014_ppc64le.whl", hash = "sha256:7ec2bb598847569ae34292f580842d37619eea3e546005042f485e15710180d5"}, + {file = "pymongo-3.13.0-cp37-cp37m-manylinux2014_s390x.whl", hash = "sha256:8cc37b437cba909bef06499dadd91a39c15c14225e8d8c7870020049f8a549fe"}, + {file = "pymongo-3.13.0-cp37-cp37m-manylinux2014_x86_64.whl", hash = "sha256:65a063970e15a4f338f14b820561cf6cdaf2839691ac0adb2474ddff9d0b8b0b"}, + {file = "pymongo-3.13.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:02f0e1a75d3bc0e16c7e15daf9c56185642be055e425f3b34888fc6eb1b22401"}, + {file = "pymongo-3.13.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:16e74b9c2aca2734c7f49f00fe68d6830a30d26df60e2ace7fe40ccb92087b94"}, + {file = "pymongo-3.13.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:24e954be35ad4537840f20bbc8d75320ae647d3cb4fab12cb8fcd2d55f408e76"}, + {file = "pymongo-3.13.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a149377d1ff766fd618500798d0d94637f66d0ae222bb6d28f41f3e15c626297"}, + {file = "pymongo-3.13.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:61660710b054ae52c8fc10368e91d74719eb05554b631d7f8ca93d21d2bff2e6"}, + {file = "pymongo-3.13.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:4bbc0d27dfef7689285e54f2e0a224f0c7cd9d5c46d2638fabad5500b951c92f"}, + {file = "pymongo-3.13.0-cp37-cp37m-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:9b2ed9c3b30f11cd4a3fbfc22167af7987b01b444215c2463265153fe7cf66d6"}, + {file = "pymongo-3.13.0-cp37-cp37m-win32.whl", hash = "sha256:1c2c5e2b00e2fadcd590c0b2e293d71215e98ed1cb635cfca2be4998d197e534"}, + {file = "pymongo-3.13.0-cp37-cp37m-win_amd64.whl", hash = "sha256:32eac95bbb030b2376ffd897376c6f870222a3457f01a9ce466b9057876132f8"}, + {file = "pymongo-3.13.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a796ef39dadf9d73af05d24937644d386495e43a7d13617aa3651d836da542c8"}, + {file = "pymongo-3.13.0-cp38-cp38-manylinux1_i686.whl", hash = "sha256:b6793baf4639c72a500698a49e9250b293e17ae1faf11ac1699d8141194786fe"}, + {file = "pymongo-3.13.0-cp38-cp38-manylinux1_x86_64.whl", hash = "sha256:80d8576b04d0824f63bf803190359c0d3bcb6e7fa63fefbd4bc0ceaa7faae38c"}, + {file = "pymongo-3.13.0-cp38-cp38-manylinux2014_aarch64.whl", hash = "sha256:db2e11507fe9cc2a722be21ccc62c1b1295398fe9724c1f14900cdc7166fc0d7"}, + {file = "pymongo-3.13.0-cp38-cp38-manylinux2014_i686.whl", hash = "sha256:b01ce58eec5edeededf1992d2dce63fb8565e437be12d6f139d75b15614c4d08"}, + {file = "pymongo-3.13.0-cp38-cp38-manylinux2014_ppc64le.whl", hash = "sha256:d1a19d6c5098f1f4e11430cd74621699453cbc534dd7ade9167e582f50814b19"}, + {file = "pymongo-3.13.0-cp38-cp38-manylinux2014_s390x.whl", hash = "sha256:7219b1a726ced3bacecabef9bd114529bbb69477901373e800d7d0140baadc95"}, + {file = "pymongo-3.13.0-cp38-cp38-manylinux2014_x86_64.whl", hash = "sha256:2dae3b353a10c3767e0aa1c1492f2af388f1012b08117695ab3fd1f219e5814e"}, + {file = "pymongo-3.13.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:12721d926d43d33dd3318e58dce9b0250e8a9c6e1093fa8e09f4805193ff4b43"}, + {file = "pymongo-3.13.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6af0a4b17faf26779d5caee8542a4f2cba040cea27d3bffc476cbc6ccbd4c8ee"}, + {file = "pymongo-3.13.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:09b9d0f5a445c7e0ddcc021b09835aa6556f0166afc498f57dfdd72cdf6f02ad"}, + {file = "pymongo-3.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db5b4f8ad8607a3d612da1d4c89a84e4cf5c88f98b46365820d9babe5884ba45"}, + {file = "pymongo-3.13.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34dbf5fecf653c152edb75a35a8b15dfdc4549473484ee768aeb12c97983cead"}, + {file = "pymongo-3.13.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:34cd48df7e1fc69222f296d8f69e3957eb7c6b5aa0709d3467184880ed7538c0"}, + {file = "pymongo-3.13.0-cp38-cp38-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:c8f755ff1f4ab4ca790d1d6d3229006100b301475948021b6b2757822e0d6c97"}, + {file = "pymongo-3.13.0-cp38-cp38-win32.whl", hash = "sha256:b0746d0d4535f56bbaa63a8f6da362f330804d578e66e126b226eebe76c2bf00"}, + {file = "pymongo-3.13.0-cp38-cp38-win_amd64.whl", hash = "sha256:8ad0515abb132f52ce9d8abd1a29681a1e65dba7b7fe13ea01e1a8db5715bf80"}, + {file = "pymongo-3.13.0-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:3c5cb6c93c94df76a879bad4b89db0104b01806d17c2b803c1316ba50962b6d6"}, + {file = "pymongo-3.13.0-cp39-cp39-manylinux1_i686.whl", hash = "sha256:2e0854170813238f0c3131050c67cb1fb1ade75c93bf6cd156c1bd9a16095528"}, + {file = "pymongo-3.13.0-cp39-cp39-manylinux1_x86_64.whl", hash = "sha256:1410faa51ce835cc1234c99ec42e98ab4f3c6f50d92d86a2d4f6e11c97ee7a4e"}, + {file = "pymongo-3.13.0-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:d7910135f5de1c5c3578e61d6f4b087715b15e365f11d4fa51a9cee92988b2bd"}, + {file = "pymongo-3.13.0-cp39-cp39-manylinux2014_i686.whl", hash = "sha256:028175dd8d2979a889153a2308e8e500b3df7d9e3fd1c33ca7fdeadf61cc87a2"}, + {file = "pymongo-3.13.0-cp39-cp39-manylinux2014_ppc64le.whl", hash = "sha256:2bfc39276c0e6d07c95bd1088b5003f049e986e089509f7dbd68bb7a4b1e65ac"}, + {file = "pymongo-3.13.0-cp39-cp39-manylinux2014_s390x.whl", hash = "sha256:4092b660ec720d44d3ca81074280dc25c7a3718df1b6c0fe9fe36ac6ed2833e4"}, + {file = "pymongo-3.13.0-cp39-cp39-manylinux2014_x86_64.whl", hash = "sha256:5bdeb71a610a7b801416268e500e716d0fe693fb10d809e17f0fb3dac5be5a34"}, + {file = "pymongo-3.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aa3bca8e76f5c00ed2bb4325e0e383a547d71595926d5275d7c88175aaf7435e"}, + {file = "pymongo-3.13.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:7c7cab8155f430ca460a6fc7ae8a705b34f3e279a57adb5f900eb81943ec777c"}, + {file = "pymongo-3.13.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4a32f3dfcca4a4816373bdb6256c18c78974ebb3430e7da988516cd95b2bd6e4"}, + {file = "pymongo-3.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:30ed2788a6ec68743e2040ab1d16573d7d9f6e7333e45070ce9268cbc93d148c"}, + {file = "pymongo-3.13.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:21e61a536ffed84d10376c21c13a6ed1ebefb61989a844952547c229d6aeedf3"}, + {file = "pymongo-3.13.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:0665412dce26b2318092a33bd2d2327d487c4490cfcde158d6946d39b1e28d78"}, + {file = "pymongo-3.13.0-cp39-cp39-manylinux_2_5_x86_64.manylinux1_x86_64.whl", hash = "sha256:64ed1a5ce5e5926727eb0f87c698c4d9a7a9f7b0953683a65e9ce2b7cc5f8e91"}, + {file = "pymongo-3.13.0-cp39-cp39-win32.whl", hash = "sha256:7593cb1214185a0c5b43b96effc51ce82ddc933298ee36db7dc2bd45d61b4adc"}, + {file = "pymongo-3.13.0-cp39-cp39-win_amd64.whl", hash = "sha256:3cfc9bc1e8b5667bc1f3dbe46d2f85b3f24ff7533893bdc1203058012db2c046"}, + {file = "pymongo-3.13.0.tar.gz", hash = "sha256:e22d6cf5802cd09b674c307cc9e03870b8c37c503ebec3d25b86f2ce8c535dc7"}, +] + +[package.dependencies] +dnspython = {version = ">=1.16.0,<1.17.0", optional = true, markers = "extra == \"srv\""} + +[package.extras] +aws = ["pymongo-auth-aws (<2.0.0)"] +encryption = ["pymongocrypt (>=1.1.0,<2.0.0)"] +gssapi = ["pykerberos"] +ocsp = ["certifi", "pyopenssl (>=17.2.0)", "requests (<3.0.0)", "service-identity (>=18.1.0)"] +snappy = ["python-snappy"] +srv = ["dnspython (>=1.16.0,<1.17.0)"] +tls = ["ipaddress"] +zstd = ["zstandard"] + +[[package]] +name = "pyparsing" +version = "3.1.0" +description = "pyparsing module - Classes and methods to define and execute parsing grammars" +category = "dev" +optional = false +python-versions = ">=3.6.8" +files = [ + {file = "pyparsing-3.1.0-py3-none-any.whl", hash = "sha256:d554a96d1a7d3ddaf7183104485bc19fd80543ad6ac5bdb6426719d766fb06c1"}, + {file = "pyparsing-3.1.0.tar.gz", hash = "sha256:edb662d6fe322d6e990b1594b5feaeadf806803359e3d4d42f11e295e588f0ea"}, +] + +[package.extras] +diagrams = ["jinja2", "railroad-diagrams"] + +[[package]] +name = "pytest" +version = "7.4.0" +description = "pytest: simple powerful testing with Python" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "pytest-7.4.0-py3-none-any.whl", hash = "sha256:78bf16451a2eb8c7a2ea98e32dc119fd2aa758f1d5d66dbf0a59d69a3969df32"}, + {file = "pytest-7.4.0.tar.gz", hash = "sha256:b4bf8c45bd59934ed84001ad51e11b4ee40d40a1229d2c79f9c592b0a3f6bd8a"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "sys_platform == \"win32\""} +exceptiongroup = {version = ">=1.0.0rc8", markers = "python_version < \"3.11\""} +iniconfig = "*" +packaging = "*" +pluggy = ">=0.12,<2.0" +tomli = {version = ">=1.0.0", markers = "python_version < \"3.11\""} + +[package.extras] +testing = ["argcomplete", "attrs (>=19.2.0)", "hypothesis (>=3.56)", "mock", "nose", "pygments (>=2.7.2)", "requests", "setuptools", "xmlschema"] + +[[package]] +name = "pytest-cov" +version = "2.12.1" +description = "Pytest plugin for measuring coverage." +category = "dev" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*" +files = [ + {file = "pytest-cov-2.12.1.tar.gz", hash = "sha256:261ceeb8c227b726249b376b8526b600f38667ee314f910353fa318caa01f4d7"}, + {file = "pytest_cov-2.12.1-py2.py3-none-any.whl", hash = "sha256:261bb9e47e65bd099c89c3edf92972865210c36813f80ede5277dceb77a4a62a"}, +] + +[package.dependencies] +coverage = ">=5.2.1" +pytest = ">=4.6" +toml = "*" + +[package.extras] +testing = ["fields", "hunter", "process-tests", "pytest-xdist", "six", "virtualenv"] + +[[package]] +name = "python-dateutil" +version = "2.8.2" +description = "Extensions to the standard Python datetime module" +category = "main" +optional = false +python-versions = "!=3.0.*,!=3.1.*,!=3.2.*,>=2.7" +files = [ + {file = "python-dateutil-2.8.2.tar.gz", hash = "sha256:0123cacc1627ae19ddf3c27a5de5bd67ee4586fbdd6440d9748f8abb483d3e86"}, + {file = "python_dateutil-2.8.2-py2.py3-none-any.whl", hash = "sha256:961d03dc3453ebbc59dbdea9e4e11c5651520a876d0f4db161e8674aae935da9"}, +] + +[package.dependencies] +six = ">=1.5" + +[[package]] +name = "python-dotenv" +version = "1.0.0" +description = "Read key-value pairs from a .env file and set them as environment variables" +category = "main" +optional = false +python-versions = ">=3.8" +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"}, +] + +[package.extras] +cli = ["click (>=5.0)"] + +[[package]] +name = "pytz" +version = "2020.5" +description = "World timezone definitions, modern and historical" +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "pytz-2020.5-py2.py3-none-any.whl", hash = "sha256:16962c5fb8db4a8f63a26646d8886e9d769b6c511543557bc84e9569fb9a9cb4"}, + {file = "pytz-2020.5.tar.gz", hash = "sha256:180befebb1927b16f6b57101720075a984c019ac16b1b7575673bea42c6c3da5"}, +] + +[[package]] +name = "pyyaml" +version = "6.0.1" +description = "YAML parser and emitter for Python" +category = "main" +optional = false +python-versions = ">=3.6" +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"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:69b023b2b4daa7548bcfbd4aa3da05b3a74b772db9e23b982788168117739938"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e0b275a9ecc9c0c0c07b4b90ba548307583c125f54d5b6946cfee6360c733d"}, + {file = "PyYAML-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ba336e390cd8e4d1739f42dfe9bb83a3cc2e80f567d8805e11b46f4a943f5515"}, + {file = "PyYAML-6.0.1-cp310-cp310-win32.whl", hash = "sha256:bd4af7373a854424dabd882decdc5579653d7868b8fb26dc7d0e99f823aa5924"}, + {file = "PyYAML-6.0.1-cp310-cp310-win_amd64.whl", hash = "sha256:fd1592b3fdf65fff2ad0004b5e363300ef59ced41c2e6b3a99d4089fa8c5435d"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6965a7bc3cf88e5a1c3bd2e0b5c22f8d677dc88a455344035f03399034eb3007"}, + {file = "PyYAML-6.0.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f003ed9ad21d6a4713f0a9b5a7a0a79e08dd0f221aff4525a2be4c346ee60aab"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:42f8152b8dbc4fe7d96729ec2b99c7097d656dc1213a3229ca5383f973a5ed6d"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:062582fca9fabdd2c8b54a3ef1c978d786e0f6b3a1510e0ac93ef59e0ddae2bc"}, + {file = "PyYAML-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2b04aac4d386b172d5b9692e2d2da8de7bfb6c387fa4f801fbf6fb2e6ba4673"}, + {file = "PyYAML-6.0.1-cp311-cp311-win32.whl", hash = "sha256:1635fd110e8d85d55237ab316b5b011de701ea0f29d07611174a1b42f1444741"}, + {file = "PyYAML-6.0.1-cp311-cp311-win_amd64.whl", hash = "sha256:bf07ee2fef7014951eeb99f56f39c9bb4af143d8aa3c21b1677805985307da34"}, + {file = "PyYAML-6.0.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:50550eb667afee136e9a77d6dc71ae76a44df8b3e51e41b77f6de2932bfe0f47"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1fe35611261b29bd1de0070f0b2f47cb6ff71fa6595c077e42bd0c419fa27b98"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:704219a11b772aea0d8ecd7058d0082713c3562b4e271b849ad7dc4a5c90c13c"}, + {file = "PyYAML-6.0.1-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:afd7e57eddb1a54f0f1a974bc4391af8bcce0b444685d936840f125cf046d5bd"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win32.whl", hash = "sha256:fca0e3a251908a499833aa292323f32437106001d436eca0e6e7833256674585"}, + {file = "PyYAML-6.0.1-cp36-cp36m-win_amd64.whl", hash = "sha256:f22ac1c3cac4dbc50079e965eba2c1058622631e526bd9afd45fedd49ba781fa"}, + {file = "PyYAML-6.0.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:b1275ad35a5d18c62a7220633c913e1b42d44b46ee12554e5fd39c70a243d6a3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18aeb1bf9a78867dc38b259769503436b7c72f7a1f1f4c93ff9a17de54319b27"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:596106435fa6ad000c2991a98fa58eeb8656ef2325d7e158344fb33864ed87e3"}, + {file = "PyYAML-6.0.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:baa90d3f661d43131ca170712d903e6295d1f7a0f595074f151c0aed377c9b9c"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win32.whl", hash = "sha256:9046c58c4395dff28dd494285c82ba00b546adfc7ef001486fbf0324bc174fba"}, + {file = "PyYAML-6.0.1-cp37-cp37m-win_amd64.whl", hash = "sha256:4fb147e7a67ef577a588a0e2c17b6db51dda102c71de36f8549b6816a96e1867"}, + {file = "PyYAML-6.0.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1d4c7e777c441b20e32f52bd377e0c409713e8bb1386e1099c2415f26e479595"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a0cd17c15d3bb3fa06978b4e8958dcdc6e0174ccea823003a106c7d4d7899ac5"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:28c119d996beec18c05208a8bd78cbe4007878c6dd15091efb73a30e90539696"}, + {file = "PyYAML-6.0.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7e07cbde391ba96ab58e532ff4803f79c4129397514e1413a7dc761ccd755735"}, + {file = "PyYAML-6.0.1-cp38-cp38-win32.whl", hash = "sha256:184c5108a2aca3c5b3d3bf9395d50893a7ab82a38004c8f61c258d4428e80206"}, + {file = "PyYAML-6.0.1-cp38-cp38-win_amd64.whl", hash = "sha256:1e2722cc9fbb45d9b87631ac70924c11d3a401b2d7f410cc0e3bbf249f2dca62"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:9eb6caa9a297fc2c2fb8862bc5370d0303ddba53ba97e71f08023b6cd73d16a8"}, + {file = "PyYAML-6.0.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:c8098ddcc2a85b61647b2590f825f3db38891662cfc2fc776415143f599bb859"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5773183b6446b2c99bb77e77595dd486303b4faab2b086e7b17bc6bef28865f6"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b786eecbdf8499b9ca1d697215862083bd6d2a99965554781d0d8d1ad31e13a0"}, + {file = "PyYAML-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc1bf2925a1ecd43da378f4db9e4f799775d6367bdb94671027b73b393a7c42c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win32.whl", hash = "sha256:faca3bdcf85b2fc05d06ff3fbc1f83e1391b3e724afa3feba7d13eeab355484c"}, + {file = "PyYAML-6.0.1-cp39-cp39-win_amd64.whl", hash = "sha256:510c9deebc5c0225e8c96813043e62b680ba2f9c50a08d3724c7f28a747d1486"}, + {file = "PyYAML-6.0.1.tar.gz", hash = "sha256:bfdf460b1736c775f2ba9f6a92bca30bc2095067b8a9d77876d1fad6cc3b4a43"}, +] + +[[package]] +name = "referencing" +version = "0.30.0" +description = "JSON Referencing + Python" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "referencing-0.30.0-py3-none-any.whl", hash = "sha256:c257b08a399b6c2f5a3510a50d28ab5dbc7bbde049bcaf954d43c446f83ab548"}, + {file = "referencing-0.30.0.tar.gz", hash = "sha256:47237742e990457f7512c7d27486394a9aadaf876cbfaa4be65b27b4f4d47c6b"}, +] + +[package.dependencies] +attrs = ">=22.2.0" +rpds-py = ">=0.7.0" + +[[package]] +name = "requests" +version = "2.31.0" +description = "Python HTTP for Humans." +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "requests-2.31.0-py3-none-any.whl", hash = "sha256:58cd2187c01e70e6e26505bca751777aa9f2ee0b7f4300988b709f44e013003f"}, + {file = "requests-2.31.0.tar.gz", hash = "sha256:942c5a758f98d790eaed1a29cb6eefc7ffb0d1cf7af05c3d2791656dbd6ad1e1"}, +] + +[package.dependencies] +certifi = ">=2017.4.17" +charset-normalizer = ">=2,<4" +idna = ">=2.5,<4" +urllib3 = ">=1.21.1,<3" + +[package.extras] +socks = ["PySocks (>=1.5.6,!=1.5.7)"] +use-chardet-on-py3 = ["chardet (>=3.0.2,<6)"] + +[[package]] +name = "rfc3986" +version = "1.5.0" +description = "Validating URI References per RFC 3986" +category = "dev" +optional = false +python-versions = "*" +files = [ + {file = "rfc3986-1.5.0-py2.py3-none-any.whl", hash = "sha256:a86d6e1f5b1dc238b218b012df0aa79409667bb209e58da56d0b94704e712a97"}, + {file = "rfc3986-1.5.0.tar.gz", hash = "sha256:270aaf10d87d0d4e095063c65bf3ddbc6ee3d0b226328ce21e036f946e421835"}, +] + +[package.dependencies] +idna = {version = "*", optional = true, markers = "extra == \"idna2008\""} + +[package.extras] +idna2008 = ["idna"] + +[[package]] +name = "rich" +version = "13.4.2" +description = "Render rich text, tables, progress bars, syntax highlighting, markdown and more to the terminal" +category = "dev" +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "rich-13.4.2-py3-none-any.whl", hash = "sha256:8f87bc7ee54675732fa66a05ebfe489e27264caeeff3728c945d25971b6485ec"}, + {file = "rich-13.4.2.tar.gz", hash = "sha256:d653d6bccede5844304c605d5aac802c7cf9621efd700b46c7ec2b51ea914898"}, +] + +[package.dependencies] +markdown-it-py = ">=2.2.0" +pygments = ">=2.13.0,<3.0.0" + +[package.extras] +jupyter = ["ipywidgets (>=7.5.1,<9)"] + +[[package]] +name = "rpds-py" +version = "0.9.2" +description = "Python bindings to Rust's persistent data structures (rpds)" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "rpds_py-0.9.2-cp310-cp310-macosx_10_7_x86_64.whl", hash = "sha256:ab6919a09c055c9b092798ce18c6c4adf49d24d4d9e43a92b257e3f2548231e7"}, + {file = "rpds_py-0.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:d55777a80f78dd09410bd84ff8c95ee05519f41113b2df90a69622f5540c4f8b"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a216b26e5af0a8e265d4efd65d3bcec5fba6b26909014effe20cd302fd1138fa"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:29cd8bfb2d716366a035913ced99188a79b623a3512292963d84d3e06e63b496"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:44659b1f326214950a8204a248ca6199535e73a694be8d3e0e869f820767f12f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:745f5a43fdd7d6d25a53ab1a99979e7f8ea419dfefebcab0a5a1e9095490ee5e"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a987578ac5214f18b99d1f2a3851cba5b09f4a689818a106c23dbad0dfeb760f"}, + {file = "rpds_py-0.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:bf4151acb541b6e895354f6ff9ac06995ad9e4175cbc6d30aaed08856558201f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:03421628f0dc10a4119d714a17f646e2837126a25ac7a256bdf7c3943400f67f"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:13b602dc3e8dff3063734f02dcf05111e887f301fdda74151a93dbbc249930fe"}, + {file = "rpds_py-0.9.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:fae5cb554b604b3f9e2c608241b5d8d303e410d7dfb6d397c335f983495ce7f6"}, + {file = "rpds_py-0.9.2-cp310-none-win32.whl", hash = "sha256:47c5f58a8e0c2c920cc7783113df2fc4ff12bf3a411d985012f145e9242a2764"}, + {file = "rpds_py-0.9.2-cp310-none-win_amd64.whl", hash = "sha256:4ea6b73c22d8182dff91155af018b11aac9ff7eca085750455c5990cb1cfae6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_10_7_x86_64.whl", hash = "sha256:e564d2238512c5ef5e9d79338ab77f1cbbda6c2d541ad41b2af445fb200385e3"}, + {file = "rpds_py-0.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f411330a6376fb50e5b7a3e66894e4a39e60ca2e17dce258d53768fea06a37bd"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e7521f5af0233e89939ad626b15278c71b69dc1dfccaa7b97bd4cdf96536bb7"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8d3335c03100a073883857e91db9f2e0ef8a1cf42dc0369cbb9151c149dbbc1b"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d25b1c1096ef0447355f7293fbe9ad740f7c47ae032c2884113f8e87660d8f6e"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6a5d3fbd02efd9cf6a8ffc2f17b53a33542f6b154e88dd7b42ef4a4c0700fdad"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5934e2833afeaf36bd1eadb57256239785f5af0220ed8d21c2896ec4d3a765f"}, + {file = "rpds_py-0.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:095b460e117685867d45548fbd8598a8d9999227e9061ee7f012d9d264e6048d"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:91378d9f4151adc223d584489591dbb79f78814c0734a7c3bfa9c9e09978121c"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:24a81c177379300220e907e9b864107614b144f6c2a15ed5c3450e19cf536fae"}, + {file = "rpds_py-0.9.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:de0b6eceb46141984671802d412568d22c6bacc9b230174f9e55fc72ef4f57de"}, + {file = "rpds_py-0.9.2-cp311-none-win32.whl", hash = "sha256:700375326ed641f3d9d32060a91513ad668bcb7e2cffb18415c399acb25de2ab"}, + {file = "rpds_py-0.9.2-cp311-none-win_amd64.whl", hash = "sha256:0766babfcf941db8607bdaf82569ec38107dbb03c7f0b72604a0b346b6eb3298"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_10_7_x86_64.whl", hash = "sha256:b1440c291db3f98a914e1afd9d6541e8fc60b4c3aab1a9008d03da4651e67386"}, + {file = "rpds_py-0.9.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:0f2996fbac8e0b77fd67102becb9229986396e051f33dbceada3debaacc7033f"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9f30d205755566a25f2ae0382944fcae2f350500ae4df4e795efa9e850821d82"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:159fba751a1e6b1c69244e23ba6c28f879a8758a3e992ed056d86d74a194a0f3"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a1f044792e1adcea82468a72310c66a7f08728d72a244730d14880cd1dabe36b"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9251eb8aa82e6cf88510530b29eef4fac825a2b709baf5b94a6094894f252387"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01899794b654e616c8625b194ddd1e5b51ef5b60ed61baa7a2d9c2ad7b2a4238"}, + {file = "rpds_py-0.9.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b0c43f8ae8f6be1d605b0465671124aa8d6a0e40f1fb81dcea28b7e3d87ca1e1"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:207f57c402d1f8712618f737356e4b6f35253b6d20a324d9a47cb9f38ee43a6b"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b52e7c5ae35b00566d244ffefba0f46bb6bec749a50412acf42b1c3f402e2c90"}, + {file = "rpds_py-0.9.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:978fa96dbb005d599ec4fd9ed301b1cc45f1a8f7982d4793faf20b404b56677d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_10_7_x86_64.whl", hash = "sha256:6aa8326a4a608e1c28da191edd7c924dff445251b94653988efb059b16577a4d"}, + {file = "rpds_py-0.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:aad51239bee6bff6823bbbdc8ad85136c6125542bbc609e035ab98ca1e32a192"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4bd4dc3602370679c2dfb818d9c97b1137d4dd412230cfecd3c66a1bf388a196"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:dd9da77c6ec1f258387957b754f0df60766ac23ed698b61941ba9acccd3284d1"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:190ca6f55042ea4649ed19c9093a9be9d63cd8a97880106747d7147f88a49d18"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:876bf9ed62323bc7dcfc261dbc5572c996ef26fe6406b0ff985cbcf460fc8a4c"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fa2818759aba55df50592ecbc95ebcdc99917fa7b55cc6796235b04193eb3c55"}, + {file = "rpds_py-0.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:9ea4d00850ef1e917815e59b078ecb338f6a8efda23369677c54a5825dbebb55"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_aarch64.whl", hash = "sha256:5855c85eb8b8a968a74dc7fb014c9166a05e7e7a8377fb91d78512900aadd13d"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_i686.whl", hash = "sha256:14c408e9d1a80dcb45c05a5149e5961aadb912fff42ca1dd9b68c0044904eb32"}, + {file = "rpds_py-0.9.2-cp38-cp38-musllinux_1_2_x86_64.whl", hash = "sha256:65a0583c43d9f22cb2130c7b110e695fff834fd5e832a776a107197e59a1898e"}, + {file = "rpds_py-0.9.2-cp38-none-win32.whl", hash = "sha256:71f2f7715935a61fa3e4ae91d91b67e571aeb5cb5d10331ab681256bda2ad920"}, + {file = "rpds_py-0.9.2-cp38-none-win_amd64.whl", hash = "sha256:674c704605092e3ebbbd13687b09c9f78c362a4bc710343efe37a91457123044"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_10_7_x86_64.whl", hash = "sha256:07e2c54bef6838fa44c48dfbc8234e8e2466d851124b551fc4e07a1cfeb37260"}, + {file = "rpds_py-0.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f7fdf55283ad38c33e35e2855565361f4bf0abd02470b8ab28d499c663bc5d7c"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:890ba852c16ace6ed9f90e8670f2c1c178d96510a21b06d2fa12d8783a905193"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:50025635ba8b629a86d9d5474e650da304cb46bbb4d18690532dd79341467846"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:517cbf6e67ae3623c5127206489d69eb2bdb27239a3c3cc559350ef52a3bbf0b"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0836d71ca19071090d524739420a61580f3f894618d10b666cf3d9a1688355b1"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c439fd54b2b9053717cca3de9583be6584b384d88d045f97d409f0ca867d80f"}, + {file = "rpds_py-0.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f68996a3b3dc9335037f82754f9cdbe3a95db42bde571d8c3be26cc6245f2324"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_aarch64.whl", hash = "sha256:7d68dc8acded354c972116f59b5eb2e5864432948e098c19fe6994926d8e15c3"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_i686.whl", hash = "sha256:f963c6b1218b96db85fc37a9f0851eaf8b9040aa46dec112611697a7023da535"}, + {file = "rpds_py-0.9.2-cp39-cp39-musllinux_1_2_x86_64.whl", hash = "sha256:5a46859d7f947061b4010e554ccd1791467d1b1759f2dc2ec9055fa239f1bc26"}, + {file = "rpds_py-0.9.2-cp39-none-win32.whl", hash = "sha256:e07e5dbf8a83c66783a9fe2d4566968ea8c161199680e8ad38d53e075df5f0d0"}, + {file = "rpds_py-0.9.2-cp39-none-win_amd64.whl", hash = "sha256:682726178138ea45a0766907957b60f3a1bf3acdf212436be9733f28b6c5af3c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl", hash = "sha256:196cb208825a8b9c8fc360dc0f87993b8b260038615230242bf18ec84447c08d"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:c7671d45530fcb6d5e22fd40c97e1e1e01965fc298cbda523bb640f3d923b387"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:83b32f0940adec65099f3b1c215ef7f1d025d13ff947975a055989cb7fd019a4"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7f67da97f5b9eac838b6980fc6da268622e91f8960e083a34533ca710bec8611"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:03975db5f103997904c37e804e5f340c8fdabbb5883f26ee50a255d664eed58c"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:987b06d1cdb28f88a42e4fb8a87f094e43f3c435ed8e486533aea0bf2e53d931"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c861a7e4aef15ff91233751619ce3a3d2b9e5877e0fcd76f9ea4f6847183aa16"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02938432352359805b6da099c9c95c8a0547fe4b274ce8f1a91677401bb9a45f"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:ef1f08f2a924837e112cba2953e15aacfccbbfcd773b4b9b4723f8f2ddded08e"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:35da5cc5cb37c04c4ee03128ad59b8c3941a1e5cd398d78c37f716f32a9b7f67"}, + {file = "rpds_py-0.9.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:141acb9d4ccc04e704e5992d35472f78c35af047fa0cfae2923835d153f091be"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl", hash = "sha256:79f594919d2c1a0cc17d1988a6adaf9a2f000d2e1048f71f298b056b1018e872"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl", hash = "sha256:a06418fe1155e72e16dddc68bb3780ae44cebb2912fbd8bb6ff9161de56e1798"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b2eb034c94b0b96d5eddb290b7b5198460e2d5d0c421751713953a9c4e47d10"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:8b08605d248b974eb02f40bdcd1a35d3924c83a2a5e8f5d0fa5af852c4d960af"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a0805911caedfe2736935250be5008b261f10a729a303f676d3d5fea6900c96a"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ab2299e3f92aa5417d5e16bb45bb4586171c1327568f638e8453c9f8d9e0f020"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8c8d7594e38cf98d8a7df25b440f684b510cf4627fe038c297a87496d10a174f"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:8b9ec12ad5f0a4625db34db7e0005be2632c1013b253a4a60e8302ad4d462afd"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:1fcdee18fea97238ed17ab6478c66b2095e4ae7177e35fb71fbe561a27adf620"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl", hash = "sha256:933a7d5cd4b84f959aedeb84f2030f0a01d63ae6cf256629af3081cf3e3426e8"}, + {file = "rpds_py-0.9.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:686ba516e02db6d6f8c279d1641f7067ebb5dc58b1d0536c4aaebb7bf01cdc5d"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl", hash = "sha256:0173c0444bec0a3d7d848eaeca2d8bd32a1b43f3d3fde6617aac3731fa4be05f"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl", hash = "sha256:d576c3ef8c7b2d560e301eb33891d1944d965a4d7a2eacb6332eee8a71827db6"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ed89861ee8c8c47d6beb742a602f912b1bb64f598b1e2f3d758948721d44d468"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:1054a08e818f8e18910f1bee731583fe8f899b0a0a5044c6e680ceea34f93876"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99e7c4bb27ff1aab90dcc3e9d37ee5af0231ed98d99cb6f5250de28889a3d502"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c545d9d14d47be716495076b659db179206e3fd997769bc01e2d550eeb685596"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9039a11bca3c41be5a58282ed81ae422fa680409022b996032a43badef2a3752"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:fb39aca7a64ad0c9490adfa719dbeeb87d13be137ca189d2564e596f8ba32c07"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:2d8b3b3a2ce0eaa00c5bbbb60b6713e94e7e0becab7b3db6c5c77f979e8ed1f1"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl", hash = "sha256:99b1c16f732b3a9971406fbfe18468592c5a3529585a45a35adbc1389a529a03"}, + {file = "rpds_py-0.9.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:c27ee01a6c3223025f4badd533bea5e87c988cb0ba2811b690395dfe16088cfe"}, + {file = "rpds_py-0.9.2.tar.gz", hash = "sha256:8d70e8f14900f2657c249ea4def963bed86a29b81f81f5b76b5a9215680de945"}, +] + +[[package]] +name = "scikit-learn" +version = "1.3.0" +description = "A set of python modules for machine learning and data mining" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "scikit-learn-1.3.0.tar.gz", hash = "sha256:8be549886f5eda46436b6e555b0e4873b4f10aa21c07df45c4bc1735afbccd7a"}, + {file = "scikit_learn-1.3.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:981287869e576d42c682cf7ca96af0c6ac544ed9316328fd0d9292795c742cf5"}, + {file = "scikit_learn-1.3.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:436aaaae2c916ad16631142488e4c82f4296af2404f480e031d866863425d2a2"}, + {file = "scikit_learn-1.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c7e28d8fa47a0b30ae1bd7a079519dd852764e31708a7804da6cb6f8b36e3630"}, + {file = "scikit_learn-1.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ae80c08834a473d08a204d966982a62e11c976228d306a2648c575e3ead12111"}, + {file = "scikit_learn-1.3.0-cp310-cp310-win_amd64.whl", hash = "sha256:552fd1b6ee22900cf1780d7386a554bb96949e9a359999177cf30211e6b20df6"}, + {file = "scikit_learn-1.3.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:79970a6d759eb00a62266a31e2637d07d2d28446fca8079cf9afa7c07b0427f8"}, + {file = "scikit_learn-1.3.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:850a00b559e636b23901aabbe79b73dc604b4e4248ba9e2d6e72f95063765603"}, + {file = "scikit_learn-1.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee04835fb016e8062ee9fe9074aef9b82e430504e420bff51e3e5fffe72750ca"}, + {file = "scikit_learn-1.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9d953531f5d9f00c90c34fa3b7d7cfb43ecff4c605dac9e4255a20b114a27369"}, + {file = "scikit_learn-1.3.0-cp311-cp311-win_amd64.whl", hash = "sha256:151ac2bf65ccf363664a689b8beafc9e6aae36263db114b4ca06fbbbf827444a"}, + {file = "scikit_learn-1.3.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:6a885a9edc9c0a341cab27ec4f8a6c58b35f3d449c9d2503a6fd23e06bbd4f6a"}, + {file = "scikit_learn-1.3.0-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:9877af9c6d1b15486e18a94101b742e9d0d2f343d35a634e337411ddb57783f3"}, + {file = "scikit_learn-1.3.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c470f53cea065ff3d588050955c492793bb50c19a92923490d18fcb637f6383a"}, + {file = "scikit_learn-1.3.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fd6e2d7389542eae01077a1ee0318c4fec20c66c957f45c7aac0c6eb0fe3c612"}, + {file = "scikit_learn-1.3.0-cp38-cp38-win_amd64.whl", hash = "sha256:3a11936adbc379a6061ea32fa03338d4ca7248d86dd507c81e13af428a5bc1db"}, + {file = "scikit_learn-1.3.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:998d38fcec96584deee1e79cd127469b3ad6fefd1ea6c2dfc54e8db367eb396b"}, + {file = "scikit_learn-1.3.0-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:ded35e810438a527e17623ac6deae3b360134345b7c598175ab7741720d7ffa7"}, + {file = "scikit_learn-1.3.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e8102d5036e28d08ab47166b48c8d5e5810704daecf3a476a4282d562be9a28"}, + {file = "scikit_learn-1.3.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7617164951c422747e7c32be4afa15d75ad8044f42e7d70d3e2e0429a50e6718"}, + {file = "scikit_learn-1.3.0-cp39-cp39-win_amd64.whl", hash = "sha256:1d54fb9e6038284548072df22fd34777e434153f7ffac72c8596f2d6987110dd"}, +] + +[package.dependencies] +joblib = ">=1.1.1" +numpy = ">=1.17.3" +scipy = ">=1.5.0" +threadpoolctl = ">=2.0.0" + +[package.extras] +benchmark = ["matplotlib (>=3.1.3)", "memory-profiler (>=0.57.0)", "pandas (>=1.0.5)"] +docs = ["Pillow (>=7.1.2)", "matplotlib (>=3.1.3)", "memory-profiler (>=0.57.0)", "numpydoc (>=1.2.0)", "pandas (>=1.0.5)", "plotly (>=5.14.0)", "pooch (>=1.6.0)", "scikit-image (>=0.16.2)", "seaborn (>=0.9.0)", "sphinx (>=6.0.0)", "sphinx-copybutton (>=0.5.2)", "sphinx-gallery (>=0.10.1)", "sphinx-prompt (>=1.3.0)", "sphinxext-opengraph (>=0.4.2)"] +examples = ["matplotlib (>=3.1.3)", "pandas (>=1.0.5)", "plotly (>=5.14.0)", "pooch (>=1.6.0)", "scikit-image (>=0.16.2)", "seaborn (>=0.9.0)"] +tests = ["black (>=23.3.0)", "matplotlib (>=3.1.3)", "mypy (>=1.3)", "numpydoc (>=1.2.0)", "pandas (>=1.0.5)", "pooch (>=1.6.0)", "pyamg (>=4.0.0)", "pytest (>=7.1.2)", "pytest-cov (>=2.9.0)", "ruff (>=0.0.272)", "scikit-image (>=0.16.2)"] + +[[package]] +name = "scipy" +version = "1.11.1" +description = "Fundamental algorithms for scientific computing in Python" +category = "main" +optional = false +python-versions = "<3.13,>=3.9" +files = [ + {file = "scipy-1.11.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:aec8c62fbe52914f9cf28d846cf0401dd80ab80788bbab909434eb336ed07c04"}, + {file = "scipy-1.11.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:3b9963798df1d8a52db41a6fc0e6fa65b1c60e85d73da27ae8bb754de4792481"}, + {file = "scipy-1.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e8eb42db36526b130dfbc417609498a6192381abc1975b91e3eb238e0b41c1a"}, + {file = "scipy-1.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:366a6a937110d80dca4f63b3f5b00cc89d36f678b2d124a01067b154e692bab1"}, + {file = "scipy-1.11.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:08d957ca82d3535b3b9ba6c8ff355d78fe975271874e2af267cb5add5bd78625"}, + {file = "scipy-1.11.1-cp310-cp310-win_amd64.whl", hash = "sha256:e866514bc2d660608447b6ba95c8900d591f2865c07cca0aa4f7ff3c4ca70f30"}, + {file = "scipy-1.11.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ba94eeef3c9caa4cea7b402a35bb02a5714ee1ee77eb98aca1eed4543beb0f4c"}, + {file = "scipy-1.11.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:512fdc18c65f76dadaca139348e525646d440220d8d05f6d21965b8d4466bccd"}, + {file = "scipy-1.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cce154372f0ebe88556ed06d7b196e9c2e0c13080ecb58d0f35062dc7cc28b47"}, + {file = "scipy-1.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4bb943010203465ac81efa392e4645265077b4d9e99b66cf3ed33ae12254173"}, + {file = "scipy-1.11.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:249cfa465c379c9bb2c20123001e151ff5e29b351cbb7f9c91587260602c58d0"}, + {file = "scipy-1.11.1-cp311-cp311-win_amd64.whl", hash = "sha256:ffb28e3fa31b9c376d0fb1f74c1f13911c8c154a760312fbee87a21eb21efe31"}, + {file = "scipy-1.11.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:39154437654260a52871dfde852adf1b93b1d1bc5dc0ffa70068f16ec0be2624"}, + {file = "scipy-1.11.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:b588311875c58d1acd4ef17c983b9f1ab5391755a47c3d70b6bd503a45bfaf71"}, + {file = "scipy-1.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d51565560565a0307ed06fa0ec4c6f21ff094947d4844d6068ed04400c72d0c3"}, + {file = "scipy-1.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b41a0f322b4eb51b078cb3441e950ad661ede490c3aca66edef66f4b37ab1877"}, + {file = "scipy-1.11.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:396fae3f8c12ad14c5f3eb40499fd06a6fef8393a6baa352a652ecd51e74e029"}, + {file = "scipy-1.11.1-cp39-cp39-win_amd64.whl", hash = "sha256:be8c962a821957fdde8c4044efdab7a140c13294997a407eaee777acf63cbf0c"}, + {file = "scipy-1.11.1.tar.gz", hash = "sha256:fb5b492fa035334fd249f0973cc79ecad8b09c604b42a127a677b45a9a3d4289"}, +] + +[package.dependencies] +numpy = ">=1.21.6,<1.28.0" + +[package.extras] +dev = ["click", "cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy", "pycodestyle", "pydevtool", "rich-click", "ruff", "types-psutil", "typing_extensions"] +doc = ["jupytext", "matplotlib (>2)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] +test = ["asv", "gmpy2", "mpmath", "pooch", "pytest", "pytest-cov", "pytest-timeout", "pytest-xdist", "scikit-umfpack", "threadpoolctl"] + +[[package]] +name = "setuptools" +version = "68.0.0" +description = "Easily download, build, install, upgrade, and uninstall Python packages" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "setuptools-68.0.0-py3-none-any.whl", hash = "sha256:11e52c67415a381d10d6b462ced9cfb97066179f0e871399e006c4ab101fc85f"}, + {file = "setuptools-68.0.0.tar.gz", hash = "sha256:baf1fdb41c6da4cd2eae722e135500da913332ab3f2f5c7d33af9b492acb5235"}, +] + +[package.extras] +docs = ["furo", "jaraco.packaging (>=9)", "jaraco.tidelift (>=1.4)", "pygments-github-lexers (==0.0.5)", "rst.linker (>=1.9)", "sphinx (>=3.5)", "sphinx-favicon", "sphinx-hoverxref (<2)", "sphinx-inline-tabs", "sphinx-lint", "sphinx-notfound-page (==0.8.3)", "sphinx-reredirects", "sphinxcontrib-towncrier"] +testing = ["build[virtualenv]", "filelock (>=3.4.0)", "flake8-2020", "ini2toml[lite] (>=0.9)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pip (>=19.1)", "pip-run (>=8.8)", "pytest (>=6)", "pytest-black (>=0.3.7)", "pytest-checkdocs (>=2.4)", "pytest-cov", "pytest-enabler (>=1.3)", "pytest-mypy (>=0.9.1)", "pytest-perf", "pytest-ruff", "pytest-timeout", "pytest-xdist", "tomli-w (>=1.0.0)", "virtualenv (>=13.0.0)", "wheel"] +testing-integration = ["build[virtualenv]", "filelock (>=3.4.0)", "jaraco.envs (>=2.2)", "jaraco.path (>=3.2.0)", "pytest", "pytest-enabler", "pytest-xdist", "tomli", "virtualenv (>=13.0.0)", "wheel"] + +[[package]] +name = "six" +version = "1.16.0" +description = "Python 2 and 3 compatibility utilities" +category = "main" +optional = false +python-versions = ">=2.7, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "six-1.16.0-py2.py3-none-any.whl", hash = "sha256:8abb2f1d86890a2dfb989f9a77cfcfd3e47c2a354b01111771326f8aa26e0254"}, + {file = "six-1.16.0.tar.gz", hash = "sha256:1e61c37477a1626458e36f7b1d82aa5c9b094fa4802892072e49de9c60c4c926"}, +] + +[[package]] +name = "smmap" +version = "5.0.0" +description = "A pure Python implementation of a sliding window memory map manager" +category = "dev" +optional = false +python-versions = ">=3.6" +files = [ + {file = "smmap-5.0.0-py3-none-any.whl", hash = "sha256:2aba19d6a040e78d8b09de5c57e96207b09ed71d8e55ce0959eeee6c8e190d94"}, + {file = "smmap-5.0.0.tar.gz", hash = "sha256:c840e62059cd3be204b0c9c9f74be2c09d5648eddd4580d9314c3ecde0b30936"}, +] + +[[package]] +name = "sniffio" +version = "1.3.0" +description = "Sniff out which async library your code is running under" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "sniffio-1.3.0-py3-none-any.whl", hash = "sha256:eecefdce1e5bbfb7ad2eeaabf7c1eeb404d7757c379bd1f7e5cce9d8bf425384"}, + {file = "sniffio-1.3.0.tar.gz", hash = "sha256:e60305c5e5d314f5389259b7f22aaa33d8f7dee49763119234af3755c55b9101"}, +] + +[[package]] +name = "sortedcontainers" +version = "2.4.0" +description = "Sorted Containers -- Sorted List, Sorted Dict, Sorted Set" +category = "dev" +optional = false +python-versions = "*" +files = [ + {file = "sortedcontainers-2.4.0-py2.py3-none-any.whl", hash = "sha256:a163dcaede0f1c021485e957a39245190e74249897e2ae4b2aa38595db237ee0"}, + {file = "sortedcontainers-2.4.0.tar.gz", hash = "sha256:25caa5a06cc30b6b83d11423433f65d1f9d76c4c6a0c90e3379eaa43b9bfdb88"}, +] + +[[package]] +name = "soundfile" +version = "0.12.1" +description = "An audio library based on libsndfile, CFFI and NumPy" +category = "main" +optional = false +python-versions = "*" +files = [ + {file = "soundfile-0.12.1-py2.py3-none-any.whl", hash = "sha256:828a79c2e75abab5359f780c81dccd4953c45a2c4cd4f05ba3e233ddf984b882"}, + {file = "soundfile-0.12.1-py2.py3-none-macosx_10_9_x86_64.whl", hash = "sha256:d922be1563ce17a69582a352a86f28ed8c9f6a8bc951df63476ffc310c064bfa"}, + {file = "soundfile-0.12.1-py2.py3-none-macosx_11_0_arm64.whl", hash = "sha256:bceaab5c4febb11ea0554566784bcf4bc2e3977b53946dda2b12804b4fe524a8"}, + {file = "soundfile-0.12.1-py2.py3-none-manylinux_2_31_x86_64.whl", hash = "sha256:074247b771a181859d2bc1f98b5ebf6d5153d2c397b86ee9e29ba602a8dfe2a6"}, + {file = "soundfile-0.12.1-py2.py3-none-win32.whl", hash = "sha256:59dfd88c79b48f441bbf6994142a19ab1de3b9bb7c12863402c2bc621e49091a"}, + {file = "soundfile-0.12.1-py2.py3-none-win_amd64.whl", hash = "sha256:0d86924c00b62552b650ddd28af426e3ff2d4dc2e9047dae5b3d8452e0a49a77"}, + {file = "soundfile-0.12.1.tar.gz", hash = "sha256:e8e1017b2cf1dda767aef19d2fd9ee5ebe07e050d430f77a0a7c66ba08b8cdae"}, +] + +[package.dependencies] +cffi = ">=1.0" + +[package.extras] +numpy = ["numpy"] + +[[package]] +name = "soxr" +version = "0.3.5" +description = "High quality, one-dimensional sample-rate conversion library" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "soxr-0.3.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:21c3aa3b2e12351b4310eea9d56cf52ec0769e6832f911ee6ba32f85b7c92baa"}, + {file = "soxr-0.3.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:ac3d7abc96082ff18a31fb1d678ddc0562f0c5e6d91f1cf0024b044989f63e93"}, + {file = "soxr-0.3.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:145e1e9d1b873a59ce0b5aa463ccacc40cf4bb74d9d8e6cef23433c752bfecea"}, + {file = "soxr-0.3.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4a376b3678801ffc1d0b9ae918b958be29d5884ca1b4bbeab32e29c567723bb3"}, + {file = "soxr-0.3.5-cp310-cp310-win32.whl", hash = "sha256:907e2eb176bdefec40cc8f6015b7cef7f3d525a34219b3580b603ee696cb25c6"}, + {file = "soxr-0.3.5-cp310-cp310-win_amd64.whl", hash = "sha256:0a6dbf9c7b7a3642916aba264c1d0b872b2e173be56204ed1895dbe381a32077"}, + {file = "soxr-0.3.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:22c08a41e8eee99241fc0e9afb510f9bc7ada4a149d469b8891b596281a27db3"}, + {file = "soxr-0.3.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:bdacbe4ce4a1001043f1f8f0744480e294f5c5106e7861fd7033a83a869ba371"}, + {file = "soxr-0.3.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4b9acd5c42159eac4a90807524d9aa450d6ea0c750df94455c151165896d922e"}, + {file = "soxr-0.3.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:44b5d30f4e0d98b6d0034c00b04d5571ad070ce5cf3772f93193095b01b373de"}, + {file = "soxr-0.3.5-cp311-cp311-win32.whl", hash = "sha256:677d5f44e85fdf0fdef33cd0e6087470732dd2e08fa73286c3659814110d1183"}, + {file = "soxr-0.3.5-cp311-cp311-win_amd64.whl", hash = "sha256:a479984dd17bf0b50fb9fd659eba54a2dc59bf6eba9c29bb3a4a79ecec7dc9a4"}, + {file = "soxr-0.3.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:a2eb4f273ca14d7cfa882b234a03497d0e5dfd6f769a488a0962fe500450838c"}, + {file = "soxr-0.3.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:a254c5e1adddb1204d8f327158b6c11a854908a10b5782103f38a67156108334"}, + {file = "soxr-0.3.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5766727dfee4d3616edd2a866a9a0d2f272c01545bed165c5a2676fbfd278723"}, + {file = "soxr-0.3.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2578664c6f94329685d864cdcae59794121bcbd808441572b2ffd01e7adc45dd"}, + {file = "soxr-0.3.5-cp38-cp38-win32.whl", hash = "sha256:8a6f03804f48d986610eab8ca2b52e50b495f40ec13507741cd95f00ef7c2cb6"}, + {file = "soxr-0.3.5-cp38-cp38-win_amd64.whl", hash = "sha256:592e9393e433501769a7e36b10460f4578c8e4ec3cddeec1aaaea4688e3558ef"}, + {file = "soxr-0.3.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:93adbf04f51c7a5113059395633c2647f73bf195fa820256e1dd4da78af59275"}, + {file = "soxr-0.3.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:37c4ec7ce275f284b0bf9741e5e6844a211ba1a850b2bf1c6a47769cdd3d109e"}, + {file = "soxr-0.3.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:18d5f3151fe4a88dfc37447bc6c397072aedcf36aeffb325cc817350ac5ad78e"}, + {file = "soxr-0.3.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:549a8358ba3b99a75588453c96aaa802e0c84d40957bdbe1f820f14f83a052ca"}, + {file = "soxr-0.3.5-cp39-cp39-win32.whl", hash = "sha256:799df1875803dc9c4a4d3a7c285b8c1cb34b40dc39dba7ac7bac85d072f936a5"}, + {file = "soxr-0.3.5-cp39-cp39-win_amd64.whl", hash = "sha256:4dd3f61929eb304c109f1f3b6cc8243e3a1a46d636d5bd86b5a7f50609ecd7d6"}, + {file = "soxr-0.3.5-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:028af32bd4ce4b4c8183bb36da99e23ae954a114034d74538b4cae1bf40a0555"}, + {file = "soxr-0.3.5-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1299e2aae4d659e222bcbbaca69a51ee99571486070ed49a393725ea6010a8e9"}, + {file = "soxr-0.3.5-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:162f4e8b9a014c6819b4db6def2d43f7f4d97432ae33f2edfc8e5d0c97cf1cb3"}, + {file = "soxr-0.3.5.tar.gz", hash = "sha256:b6b60f6381c98249a2f2a594e9234b647b78856c76c060597d53ed27b6efd249"}, +] + +[package.dependencies] +numpy = "*" + +[package.extras] +docs = ["linkify-it-py", "myst-parser", "sphinx", "sphinx-book-theme"] +test = ["pytest"] + +[[package]] +name = "starlette" +version = "0.28.0" +description = "The little ASGI library that shines." +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "starlette-0.28.0-py3-none-any.whl", hash = "sha256:e58b9fc402c579950260fbb6d57173395c4e62804c40d3ede7e9ef1074f0c579"}, + {file = "starlette-0.28.0.tar.gz", hash = "sha256:7bf3da5e997e796cc202cef2bd3f96a7d9b1e1943203c2fe2b42e020bc658482"}, +] + +[package.dependencies] +anyio = ">=3.4.0,<5" +typing-extensions = {version = ">=3.10.0", markers = "python_version < \"3.10\""} + +[package.extras] +full = ["httpx (>=0.22.0)", "itsdangerous", "jinja2", "python-multipart", "pyyaml"] + +[[package]] +name = "starlette-prometheus" +version = "0.9.0" +description = "Prometheus integration for Starlette" +category = "main" +optional = false +python-versions = ">=3.7,<4.0" +files = [ + {file = "starlette-prometheus-0.9.0.tar.gz", hash = "sha256:a52fb0f1df52b44a7a677a792759337ef0ce0d59ddf3e684a7d6459a93a90e99"}, + {file = "starlette_prometheus-0.9.0-py3-none-any.whl", hash = "sha256:b4702e4ec67dce508d28551db0e45f12f58411afdb5d1078c92ff74331915381"}, +] + +[package.dependencies] +prometheus_client = ">=0.12,<0.13" +starlette = ">=0.12.2" + +[[package]] +name = "stevedore" +version = "5.1.0" +description = "Manage dynamic plugins for Python applications" +category = "dev" +optional = false +python-versions = ">=3.8" +files = [ + {file = "stevedore-5.1.0-py3-none-any.whl", hash = "sha256:8cc040628f3cea5d7128f2e76cf486b2251a4e543c7b938f58d9a377f6694a2d"}, + {file = "stevedore-5.1.0.tar.gz", hash = "sha256:a54534acf9b89bc7ed264807013b505bf07f74dbe4bcfa37d32bd063870b087c"}, +] + +[package.dependencies] +pbr = ">=2.0.0,<2.1.0 || >2.1.0" + +[[package]] +name = "threadpoolctl" +version = "3.2.0" +description = "threadpoolctl" +category = "main" +optional = false +python-versions = ">=3.8" +files = [ + {file = "threadpoolctl-3.2.0-py3-none-any.whl", hash = "sha256:2b7818516e423bdaebb97c723f86a7c6b0a83d3f3b0970328d66f4d9104dc032"}, + {file = "threadpoolctl-3.2.0.tar.gz", hash = "sha256:c96a0ba3bdddeaca37dc4cc7344aafad41cdb8c313f74fdfe387a867bba93355"}, +] + +[[package]] +name = "toml" +version = "0.10.2" +description = "Python Library for Tom's Obvious, Minimal Language" +category = "dev" +optional = false +python-versions = ">=2.6, !=3.0.*, !=3.1.*, !=3.2.*" +files = [ + {file = "toml-0.10.2-py2.py3-none-any.whl", hash = "sha256:806143ae5bfb6a3c6e736a764057db0e6a0e05e338b5630894a5f779cabb4f9b"}, + {file = "toml-0.10.2.tar.gz", hash = "sha256:b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"}, +] + +[[package]] +name = "tomli" +version = "2.0.1" +description = "A lil' TOML parser" +category = "dev" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tomli-2.0.1-py3-none-any.whl", hash = "sha256:939de3e7a6161af0c887ef91b7d41a53e7c5a1ca976325f429cb46ea9bc30ecc"}, + {file = "tomli-2.0.1.tar.gz", hash = "sha256:de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"}, +] + +[[package]] +name = "tqdm" +version = "4.65.0" +description = "Fast, Extensible Progress Meter" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "tqdm-4.65.0-py3-none-any.whl", hash = "sha256:c4f53a17fe37e132815abceec022631be8ffe1b9381c2e6e30aa70edc99e9671"}, + {file = "tqdm-4.65.0.tar.gz", hash = "sha256:1871fb68a86b8fb3b59ca4cdd3dcccbc7e6d613eeed31f4c332531977b89beb5"}, +] + +[package.dependencies] +colorama = {version = "*", markers = "platform_system == \"Windows\""} + +[package.extras] +dev = ["py-make (>=0.1.0)", "twine", "wheel"] +notebook = ["ipywidgets (>=6)"] +slack = ["slack-sdk"] +telegram = ["requests"] + +[[package]] +name = "types-jsonschema" +version = "4.17.0.10" +description = "Typing stubs for jsonschema" +category = "dev" +optional = false +python-versions = "*" +files = [ + {file = "types-jsonschema-4.17.0.10.tar.gz", hash = "sha256:8e979db34d69bc9f9b3d6e8b89bdbc60b3a41cfce4e1fb87bf191d205c7f5098"}, + {file = "types_jsonschema-4.17.0.10-py3-none-any.whl", hash = "sha256:3aa2a89afbd9eaa6ce0c15618b36f02692a621433889ce73014656f7d8caf971"}, +] + +[[package]] +name = "types-psutil" +version = "5.9.5.16" +description = "Typing stubs for psutil" +category = "dev" +optional = false +python-versions = "*" +files = [ + {file = "types-psutil-5.9.5.16.tar.gz", hash = "sha256:4e9b219efb625d3d04f6bf106934f87cab49aa41a94b0a3b3089403f47a79228"}, + {file = "types_psutil-5.9.5.16-py3-none-any.whl", hash = "sha256:fec713104d5d143afea7b976cfa691ca1840f5d19e8714a5d02a96ebd061363e"}, +] + +[[package]] +name = "types-pytz" +version = "2023.3.0.0" +description = "Typing stubs for pytz" +category = "dev" +optional = false +python-versions = "*" +files = [ + {file = "types-pytz-2023.3.0.0.tar.gz", hash = "sha256:ecdc70d543aaf3616a7e48631543a884f74205f284cefd6649ddf44c6a820aac"}, + {file = "types_pytz-2023.3.0.0-py3-none-any.whl", hash = "sha256:4fc2a7fbbc315f0b6630e0b899fd6c743705abe1094d007b0e612d10da15e0f3"}, +] + +[[package]] +name = "types-requests" +version = "2.31.0.2" +description = "Typing stubs for requests" +category = "dev" +optional = false +python-versions = "*" +files = [ + {file = "types-requests-2.31.0.2.tar.gz", hash = "sha256:6aa3f7faf0ea52d728bb18c0a0d1522d9bfd8c72d26ff6f61bfc3d06a411cf40"}, + {file = "types_requests-2.31.0.2-py3-none-any.whl", hash = "sha256:56d181c85b5925cbc59f4489a57e72a8b2166f18273fd8ba7b6fe0c0b986f12a"}, +] + +[package.dependencies] +types-urllib3 = "*" + +[[package]] +name = "types-urllib3" +version = "1.26.25.14" +description = "Typing stubs for urllib3" +category = "dev" +optional = false +python-versions = "*" +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"}, +] + +[[package]] +name = "typing-extensions" +version = "4.7.1" +description = "Backported and Experimental Type Hints for Python 3.7+" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "typing_extensions-4.7.1-py3-none-any.whl", hash = "sha256:440d5dd3af93b060174bf433bccd69b0babc3b15b1a8dca43789fd7f61514b36"}, + {file = "typing_extensions-4.7.1.tar.gz", hash = "sha256:b75ddc264f0ba5615db7ba217daeb99701ad295353c45f9e95963337ceeeffb2"}, +] + +[[package]] +name = "tzdata" +version = "2023.3" +description = "Provider of IANA time zone data" +category = "main" +optional = false +python-versions = ">=2" +files = [ + {file = "tzdata-2023.3-py2.py3-none-any.whl", hash = "sha256:7e65763eef3120314099b6939b5546db7adce1e7d6f2e179e3df563c70511eda"}, + {file = "tzdata-2023.3.tar.gz", hash = "sha256:11ef1e08e54acb0d4f95bdb1be05da659673de4acbd21bf9c69e94cc5e907a3a"}, +] + +[[package]] +name = "urllib3" +version = "2.0.4" +description = "HTTP library with thread-safe connection pooling, file post, and more." +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.4-py3-none-any.whl", hash = "sha256:de7df1803967d2c2a98e4b11bb7d6bd9210474c46e8a0401514e3a42a75ebde4"}, + {file = "urllib3-2.0.4.tar.gz", hash = "sha256:8d22f86aae8ef5e410d4f539fde9ce6b2113a001bb4d189e0aed70642d602b11"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[[package]] +name = "uvicorn" +version = "0.20.0" +description = "The lightning-fast ASGI server." +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "uvicorn-0.20.0-py3-none-any.whl", hash = "sha256:c3ed1598a5668208723f2bb49336f4509424ad198d6ab2615b7783db58d919fd"}, + {file = "uvicorn-0.20.0.tar.gz", hash = "sha256:a4e12017b940247f836bc90b72e725d7dfd0c8ed1c51eb365f5ba30d9f5127d8"}, +] + +[package.dependencies] +click = ">=7.0" +h11 = ">=0.8" + +[package.extras] +standard = ["colorama (>=0.4)", "httptools (>=0.5.0)", "python-dotenv (>=0.13)", "pyyaml (>=5.1)", "uvloop (>=0.14.0,!=0.15.0,!=0.15.1)", "watchfiles (>=0.13)", "websockets (>=10.4)"] + +[[package]] +name = "watchdog" +version = "2.3.1" +description = "Filesystem events monitoring" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "watchdog-2.3.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:d1f1200d4ec53b88bf04ab636f9133cb703eb19768a39351cee649de21a33697"}, + {file = "watchdog-2.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:564e7739abd4bd348aeafbf71cc006b6c0ccda3160c7053c4a53b67d14091d42"}, + {file = "watchdog-2.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:95ad708a9454050a46f741ba5e2f3468655ea22da1114e4c40b8cbdaca572565"}, + {file = "watchdog-2.3.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:a073c91a6ef0dda488087669586768195c3080c66866144880f03445ca23ef16"}, + {file = "watchdog-2.3.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:aa8b028750b43e80eea9946d01925168eeadb488dfdef1d82be4b1e28067f375"}, + {file = "watchdog-2.3.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:964fd236cd443933268ae49b59706569c8b741073dbfd7ca705492bae9d39aab"}, + {file = "watchdog-2.3.1-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:91fd146d723392b3e6eb1ac21f122fcce149a194a2ba0a82c5e4d0ee29cd954c"}, + {file = "watchdog-2.3.1-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:efe3252137392a471a2174d721e1037a0e6a5da7beb72a021e662b7000a9903f"}, + {file = "watchdog-2.3.1-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:85bf2263290591b7c5fa01140601b64c831be88084de41efbcba6ea289874f44"}, + {file = "watchdog-2.3.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:8f2df370cd8e4e18499dd0bfdef476431bcc396108b97195d9448d90924e3131"}, + {file = "watchdog-2.3.1-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ea5d86d1bcf4a9d24610aa2f6f25492f441960cf04aed2bd9a97db439b643a7b"}, + {file = "watchdog-2.3.1-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:6f5d0f7eac86807275eba40b577c671b306f6f335ba63a5c5a348da151aba0fc"}, + {file = "watchdog-2.3.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:5b848c71ef2b15d0ef02f69da8cc120d335cec0ed82a3fa7779e27a5a8527225"}, + {file = "watchdog-2.3.1-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:0d9878be36d2b9271e3abaa6f4f051b363ff54dbbe7e7df1af3c920e4311ee43"}, + {file = "watchdog-2.3.1-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:4cd61f98cb37143206818cb1786d2438626aa78d682a8f2ecee239055a9771d5"}, + {file = "watchdog-2.3.1-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:3d2dbcf1acd96e7a9c9aefed201c47c8e311075105d94ce5e899f118155709fd"}, + {file = "watchdog-2.3.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:03f342a9432fe08107defbe8e405a2cb922c5d00c4c6c168c68b633c64ce6190"}, + {file = "watchdog-2.3.1-py3-none-manylinux2014_aarch64.whl", hash = "sha256:7a596f9415a378d0339681efc08d2249e48975daae391d58f2e22a3673b977cf"}, + {file = "watchdog-2.3.1-py3-none-manylinux2014_armv7l.whl", hash = "sha256:0e1dd6d449267cc7d6935d7fe27ee0426af6ee16578eed93bacb1be9ff824d2d"}, + {file = "watchdog-2.3.1-py3-none-manylinux2014_i686.whl", hash = "sha256:7a1876f660e32027a1a46f8a0fa5747ad4fcf86cb451860eae61a26e102c8c79"}, + {file = "watchdog-2.3.1-py3-none-manylinux2014_ppc64.whl", hash = "sha256:2caf77ae137935c1466f8cefd4a3aec7017b6969f425d086e6a528241cba7256"}, + {file = "watchdog-2.3.1-py3-none-manylinux2014_ppc64le.whl", hash = "sha256:53f3e95081280898d9e4fc51c5c69017715929e4eea1ab45801d5e903dd518ad"}, + {file = "watchdog-2.3.1-py3-none-manylinux2014_s390x.whl", hash = "sha256:9da7acb9af7e4a272089bd2af0171d23e0d6271385c51d4d9bde91fe918c53ed"}, + {file = "watchdog-2.3.1-py3-none-manylinux2014_x86_64.whl", hash = "sha256:8a4d484e846dcd75e96b96d80d80445302621be40e293bfdf34a631cab3b33dc"}, + {file = "watchdog-2.3.1-py3-none-win32.whl", hash = "sha256:a74155398434937ac2780fd257c045954de5b11b5c52fc844e2199ce3eecf4cf"}, + {file = "watchdog-2.3.1-py3-none-win_amd64.whl", hash = "sha256:5defe4f0918a2a1a4afbe4dbb967f743ac3a93d546ea4674567806375b024adb"}, + {file = "watchdog-2.3.1-py3-none-win_ia64.whl", hash = "sha256:4109cccf214b7e3462e8403ab1e5b17b302ecce6c103eb2fc3afa534a7f27b96"}, + {file = "watchdog-2.3.1.tar.gz", hash = "sha256:d9f9ed26ed22a9d331820a8432c3680707ea8b54121ddcc9dc7d9f2ceeb36906"}, +] + +[package.dependencies] +PyYAML = {version = ">=3.10", optional = true, markers = "extra == \"watchmedo\""} + +[package.extras] +watchmedo = ["PyYAML (>=3.10)"] + +[[package]] +name = "webencodings" +version = "0.5.1" +description = "Character encoding aliases for legacy web content" +category = "dev" +optional = false +python-versions = "*" +files = [ + {file = "webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78"}, + {file = "webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923"}, +] + +[[package]] +name = "xxhash" +version = "3.2.0" +description = "Python binding for xxHash" +category = "main" +optional = false +python-versions = ">=3.6" +files = [ + {file = "xxhash-3.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:af44b9e59c4b2926a4e3c7f9d29949ff42fcea28637ff6b8182e654461932be8"}, + {file = "xxhash-3.2.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1bdd57973e2b802ef32553d7bebf9402dac1557874dbe5c908b499ea917662cd"}, + {file = "xxhash-3.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6b7c9aa77bbce61a5e681bd39cb6a804338474dcc90abe3c543592aa5d6c9a9b"}, + {file = "xxhash-3.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:11bf87dc7bb8c3b0b5e24b7b941a9a19d8c1f88120b6a03a17264086bc8bb023"}, + {file = "xxhash-3.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2783d41487ce6d379fdfaa7332fca5187bf7010b9bddcf20cafba923bc1dc665"}, + {file = "xxhash-3.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:561076ca0dcef2fbc20b2bc2765bff099e002e96041ae9dbe910a863ca6ee3ea"}, + {file = "xxhash-3.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3a26eeb4625a6e61cedc8c1b39b89327c9c7e1a8c2c4d786fe3f178eb839ede6"}, + {file = "xxhash-3.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:d93a44d0104d1b9b10de4e7aadf747f6efc1d7ec5ed0aa3f233a720725dd31bd"}, + {file = "xxhash-3.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:89585adc73395a10306d2e2036e50d6c4ac0cf8dd47edf914c25488871b64f6d"}, + {file = "xxhash-3.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:a892b4b139126a86bfdcb97cd912a2f8c4e8623869c3ef7b50871451dd7afeb0"}, + {file = "xxhash-3.2.0-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:e998efb190653f70e0f30d92b39fc645145369a4823bee46af8ddfc244aa969d"}, + {file = "xxhash-3.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:e8ed3bd2b8bb3277710843ca63e4f5c3ee6f8f80b083be5b19a7a9905420d11e"}, + {file = "xxhash-3.2.0-cp310-cp310-win32.whl", hash = "sha256:20181cbaed033c72cb881b2a1d13c629cd1228f113046133469c9a48cfcbcd36"}, + {file = "xxhash-3.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:a0f7a16138279d707db778a63264d1d6016ac13ffd3f1e99f54b2855d6c0d8e1"}, + {file = "xxhash-3.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5daff3fb5bfef30bc5a2cb143810d376d43461445aa17aece7210de52adbe151"}, + {file = "xxhash-3.2.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:75bb5be3c5de702a547715f320ecf5c8014aeca750ed5147ca75389bd22e7343"}, + {file = "xxhash-3.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:01f36b671ff55cb1d5c2f6058b799b697fd0ae4b4582bba6ed0999678068172a"}, + {file = "xxhash-3.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d4d4519123aac73c93159eb8f61db9682393862dd669e7eae034ecd0a35eadac"}, + {file = "xxhash-3.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:994e4741d5ed70fc2a335a91ef79343c6b1089d7dfe6e955dd06f8ffe82bede6"}, + {file = "xxhash-3.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:919bc1b010aa6ff0eb918838ff73a435aed9e9a19c3202b91acecd296bf75607"}, + {file = "xxhash-3.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:17b65454c5accbb079c45eca546c27c4782f5175aa320758fafac896b1549d27"}, + {file = "xxhash-3.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:b0c094d5e65a46dbf3fe0928ff20873a747e6abfd2ed4b675beeb2750624bc2e"}, + {file = "xxhash-3.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:f94163ebe2d5546e6a5977e96d83621f4689c1054053428cf8d4c28b10f92f69"}, + {file = "xxhash-3.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:cead7c0307977a00b3f784cff676e72c147adbcada19a2e6fc2ddf54f37cf387"}, + {file = "xxhash-3.2.0-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:a0e1bd0260c1da35c1883321ce2707ceea07127816ab625e1226ec95177b561a"}, + {file = "xxhash-3.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:cc8878935671490efe9275fb4190a6062b73277bd273237179b9b5a2aa436153"}, + {file = "xxhash-3.2.0-cp311-cp311-win32.whl", hash = "sha256:a433f6162b18d52f7068175d00bd5b1563b7405f926a48d888a97b90a160c40d"}, + {file = "xxhash-3.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:a32d546a1752e4ee7805d6db57944f7224afa7428d22867006b6486e4195c1f3"}, + {file = "xxhash-3.2.0-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:82daaab720866bf690b20b49de5640b0c27e3b8eea2d08aa75bdca2b0f0cfb63"}, + {file = "xxhash-3.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3126df6520cbdbaddd87ce74794b2b6c45dd2cf6ac2b600a374b8cdb76a2548c"}, + {file = "xxhash-3.2.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e172c1ee40507ae3b8d220f4048aaca204f203e1e4197e8e652f5c814f61d1aa"}, + {file = "xxhash-3.2.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5384f1d9f30876f5d5b618464fb19ff7ce6c0fe4c690fbaafd1c52adc3aae807"}, + {file = "xxhash-3.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:26cb52174a7e96a17acad27a3ca65b24713610ac479c99ac9640843822d3bebf"}, + {file = "xxhash-3.2.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fbcd613a5e76b1495fc24db9c37a6b7ee5f214fd85979187ec4e032abfc12ded"}, + {file = "xxhash-3.2.0-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:f988daf25f31726d5b9d0be6af636ca9000898f9ea43a57eac594daea25b0948"}, + {file = "xxhash-3.2.0-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:bbc30c98ab006ab9fc47e5ed439c00f706bc9d4441ff52693b8b6fea335163e0"}, + {file = "xxhash-3.2.0-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:2408d49260b0a4a7cc6ba445aebf38e073aeaf482f8e32767ca477e32ccbbf9e"}, + {file = "xxhash-3.2.0-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:3f4152fd0bf8b03b79f2f900fd6087a66866537e94b5a11fd0fd99ef7efe5c42"}, + {file = "xxhash-3.2.0-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:0eea848758e4823a01abdbcccb021a03c1ee4100411cbeeb7a5c36a202a0c13c"}, + {file = "xxhash-3.2.0-cp36-cp36m-win32.whl", hash = "sha256:77709139af5123c578ab06cf999429cdb9ab211047acd0c787e098dcb3f1cb4d"}, + {file = "xxhash-3.2.0-cp36-cp36m-win_amd64.whl", hash = "sha256:91687671fd9d484a4e201ad266d366b695a45a1f2b41be93d116ba60f1b8f3b3"}, + {file = "xxhash-3.2.0-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:e4af8bc5c3fcc2192c266421c6aa2daab1a18e002cb8e66ef672030e46ae25cf"}, + {file = "xxhash-3.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e8be562e2ce3e481d9209b6f254c3d7c5ff920eb256aba2380d2fb5ba75d4f87"}, + {file = "xxhash-3.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9eba0c7c12126b12f7fcbea5513f28c950d28f33d2a227f74b50b77789e478e8"}, + {file = "xxhash-3.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2198c4901a0223c48f6ec0a978b60bca4f4f7229a11ca4dc96ca325dd6a29115"}, + {file = "xxhash-3.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:50ce82a71b22a3069c02e914bf842118a53065e2ec1c6fb54786e03608ab89cc"}, + {file = "xxhash-3.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b5019fb33711c30e54e4e57ae0ca70af9d35b589d385ac04acd6954452fa73bb"}, + {file = "xxhash-3.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:0d54ac023eef7e3ac9f0b8841ae8a376b933043bc2ad428121346c6fa61c491c"}, + {file = "xxhash-3.2.0-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:c55fa832fc3fe64e0d29da5dc9b50ba66ca93312107cec2709300ea3d3bab5c7"}, + {file = "xxhash-3.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:f4ce006215497993ae77c612c1883ca4f3973899573ce0c52fee91f0d39c4561"}, + {file = "xxhash-3.2.0-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:1afb9b9d27fd675b436cb110c15979976d92d761ad6e66799b83756402f3a974"}, + {file = "xxhash-3.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:baa99cebf95c1885db21e119395f222a706a2bb75a545f0672880a442137725e"}, + {file = "xxhash-3.2.0-cp37-cp37m-win32.whl", hash = "sha256:75aa692936942ccb2e8fd6a386c81c61630ac1b6d6e921698122db8a930579c3"}, + {file = "xxhash-3.2.0-cp37-cp37m-win_amd64.whl", hash = "sha256:0a2cdfb5cae9fafb9f7b65fd52ecd60cf7d72c13bb2591ea59aaefa03d5a8827"}, + {file = "xxhash-3.2.0-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:3a68d1e8a390b660d94b9360ae5baa8c21a101bd9c4790a8b30781bada9f1fc6"}, + {file = "xxhash-3.2.0-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:ce7c3ce28f94302df95eaea7c9c1e2c974b6d15d78a0c82142a97939d7b6c082"}, + {file = "xxhash-3.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0dcb419bf7b0bc77d366e5005c25682249c5521a63fd36c51f584bd91bb13bd5"}, + {file = "xxhash-3.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ae521ed9287f86aac979eeac43af762f03d9d9797b2272185fb9ddd810391216"}, + {file = "xxhash-3.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:b0d16775094423088ffa357d09fbbb9ab48d2fb721d42c0856b801c86f616eec"}, + {file = "xxhash-3.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fe454aeab348c42f56d6f7434ff758a3ef90787ac81b9ad5a363cd61b90a1b0b"}, + {file = "xxhash-3.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:052fd0efdd5525c2dbc61bebb423d92aa619c4905bba605afbf1e985a562a231"}, + {file = "xxhash-3.2.0-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:02badf3754e2133de254a4688798c4d80f0060635087abcb461415cb3eb82115"}, + {file = "xxhash-3.2.0-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:66b8a90b28c13c2aae7a71b32638ceb14cefc2a1c8cf23d8d50dfb64dfac7aaf"}, + {file = "xxhash-3.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:649cdf19df175925ad87289ead6f760cd840730ee85abc5eb43be326a0a24d97"}, + {file = "xxhash-3.2.0-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:4b948a03f89f5c72d69d40975af8af241111f0643228796558dc1cae8f5560b0"}, + {file = "xxhash-3.2.0-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:49f51fab7b762da7c2cee0a3d575184d3b9be5e2f64f26cae2dd286258ac9b3c"}, + {file = "xxhash-3.2.0-cp38-cp38-win32.whl", hash = "sha256:1a42994f0d42b55514785356722d9031f064fd34e495b3a589e96db68ee0179d"}, + {file = "xxhash-3.2.0-cp38-cp38-win_amd64.whl", hash = "sha256:0a6d58ba5865475e53d6c2c4fa6a62e2721e7875e146e2681e5337a6948f12e7"}, + {file = "xxhash-3.2.0-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:aabdbc082030f8df613e2d2ea1f974e7ad36a539bdfc40d36f34e55c7e4b8e94"}, + {file = "xxhash-3.2.0-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:498843b66b9ca416e9d03037e5875c8d0c0ab9037527e22df3b39aa5163214cd"}, + {file = "xxhash-3.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a910b1193cd90af17228f5d6069816646df0148f14f53eefa6b2b11a1dedfcd0"}, + {file = "xxhash-3.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:bb6d8ce31dc25faf4da92991320e211fa7f42de010ef51937b1dc565a4926501"}, + {file = "xxhash-3.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:883dc3d3942620f4c7dbc3fd6162f50a67f050b714e47da77444e3bcea7d91cc"}, + {file = "xxhash-3.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59dc8bfacf89b8f5be54d55bc3b4bd6d74d0c5320c8a63d2538ac7df5b96f1d5"}, + {file = "xxhash-3.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:61e6aa1d30c2af692aa88c4dd48709426e8b37bff6a574ee2de677579c34a3d6"}, + {file = "xxhash-3.2.0-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:314ec0bd21f0ee8d30f2bd82ed3759314bd317ddbbd8555668f3d20ab7a8899a"}, + {file = "xxhash-3.2.0-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:dad638cde3a5357ad3163b80b3127df61fb5b5e34e9e05a87697144400ba03c7"}, + {file = "xxhash-3.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:eaa3ea15025b56076d806b248948612289b093e8dcda8d013776b3848dffff15"}, + {file = "xxhash-3.2.0-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:7deae3a312feb5c17c97cbf18129f83cbd3f1f9ec25b0f50e2bd9697befb22e7"}, + {file = "xxhash-3.2.0-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:add774341c09853b1612c64a526032d95ab1683053325403e1afbe3ad2f374c5"}, + {file = "xxhash-3.2.0-cp39-cp39-win32.whl", hash = "sha256:9b94749130ef3119375c599bfce82142c2500ef9ed3280089157ee37662a7137"}, + {file = "xxhash-3.2.0-cp39-cp39-win_amd64.whl", hash = "sha256:e57d94a1552af67f67b27db5dba0b03783ea69d5ca2af2f40e098f0ba3ce3f5f"}, + {file = "xxhash-3.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl", hash = "sha256:92fd765591c83e5c5f409b33eac1d3266c03d3d11c71a7dbade36d5cdee4fbc0"}, + {file = "xxhash-3.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8970f6a411a9839a02b23b7e90bbbba4a6de52ace009274998566dc43f36ca18"}, + {file = "xxhash-3.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c5f3e33fe6cbab481727f9aeb136a213aed7e33cd1ca27bd75e916ffacc18411"}, + {file = "xxhash-3.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:368265392cb696dd53907e2328b5a8c1bee81cf2142d0cc743caf1c1047abb36"}, + {file = "xxhash-3.2.0-pp37-pypy37_pp73-win_amd64.whl", hash = "sha256:3b1f3c6d67fa9f49c4ff6b25ce0e7143bab88a5bc0f4116dd290c92337d0ecc7"}, + {file = "xxhash-3.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl", hash = "sha256:c5e8db6e1ee7267b7c412ad0afd5863bf7a95286b8333a5958c8097c69f94cf5"}, + {file = "xxhash-3.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:761df3c7e2c5270088b691c5a8121004f84318177da1ca1db64222ec83c44871"}, + {file = "xxhash-3.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d2d15a707e7f689531eb4134eccb0f8bf3844bb8255ad50823aa39708d9e6755"}, + {file = "xxhash-3.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e6b2ba4ff53dd5f57d728095e3def7375eb19c90621ce3b41b256de84ec61cfd"}, + {file = "xxhash-3.2.0-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:61b0bcf946fdfd8ab5f09179dc2b5c74d1ef47cedfc6ed0ec01fdf0ee8682dd3"}, + {file = "xxhash-3.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl", hash = "sha256:f7b79f0f302396d8e0d444826ceb3d07b61977793886ebae04e82796c02e42dc"}, + {file = "xxhash-3.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e0773cd5c438ffcd5dbff91cdd503574f88a4b960e70cedeb67736583a17a918"}, + {file = "xxhash-3.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4ec1f57127879b419a2c8d2db9d9978eb26c61ae17e5972197830430ae78d25b"}, + {file = "xxhash-3.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3d4b15c00e807b1d3d0b612338c814739dec310b80fb069bd732b98ddc709ad7"}, + {file = "xxhash-3.2.0-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:9d3f686e3d1c8900c5459eee02b60c7399e20ec5c6402364068a343c83a61d90"}, + {file = "xxhash-3.2.0.tar.gz", hash = "sha256:1afd47af8955c5db730f630ad53ae798cf7fae0acb64cebb3cf94d35c47dd088"}, +] + +[[package]] +name = "yarl" +version = "1.9.2" +description = "Yet another URL library" +category = "main" +optional = false +python-versions = ">=3.7" +files = [ + {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8c2ad583743d16ddbdf6bb14b5cd76bf43b0d0006e918809d5d4ddf7bde8dd82"}, + {file = "yarl-1.9.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:82aa6264b36c50acfb2424ad5ca537a2060ab6de158a5bd2a72a032cc75b9eb8"}, + {file = "yarl-1.9.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:c0c77533b5ed4bcc38e943178ccae29b9bcf48ffd1063f5821192f23a1bd27b9"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ee4afac41415d52d53a9833ebae7e32b344be72835bbb589018c9e938045a560"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9bf345c3a4f5ba7f766430f97f9cc1320786f19584acc7086491f45524a551ac"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2a96c19c52ff442a808c105901d0bdfd2e28575b3d5f82e2f5fd67e20dc5f4ea"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:891c0e3ec5ec881541f6c5113d8df0315ce5440e244a716b95f2525b7b9f3608"}, + {file = "yarl-1.9.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c3a53ba34a636a256d767c086ceb111358876e1fb6b50dfc4d3f4951d40133d5"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:566185e8ebc0898b11f8026447eacd02e46226716229cea8db37496c8cdd26e0"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:2b0738fb871812722a0ac2154be1f049c6223b9f6f22eec352996b69775b36d4"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:32f1d071b3f362c80f1a7d322bfd7b2d11e33d2adf395cc1dd4df36c9c243095"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:e9fdc7ac0d42bc3ea78818557fab03af6181e076a2944f43c38684b4b6bed8e3"}, + {file = "yarl-1.9.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:56ff08ab5df8429901ebdc5d15941b59f6253393cb5da07b4170beefcf1b2528"}, + {file = "yarl-1.9.2-cp310-cp310-win32.whl", hash = "sha256:8ea48e0a2f931064469bdabca50c2f578b565fc446f302a79ba6cc0ee7f384d3"}, + {file = "yarl-1.9.2-cp310-cp310-win_amd64.whl", hash = "sha256:50f33040f3836e912ed16d212f6cc1efb3231a8a60526a407aeb66c1c1956dde"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:646d663eb2232d7909e6601f1a9107e66f9791f290a1b3dc7057818fe44fc2b6"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:aff634b15beff8902d1f918012fc2a42e0dbae6f469fce134c8a0dc51ca423bb"}, + {file = "yarl-1.9.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:a83503934c6273806aed765035716216cc9ab4e0364f7f066227e1aaea90b8d0"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b25322201585c69abc7b0e89e72790469f7dad90d26754717f3310bfe30331c2"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22a94666751778629f1ec4280b08eb11815783c63f52092a5953faf73be24191"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ec53a0ea2a80c5cd1ab397925f94bff59222aa3cf9c6da938ce05c9ec20428d"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:159d81f22d7a43e6eabc36d7194cb53f2f15f498dbbfa8edc8a3239350f59fe7"}, + {file = "yarl-1.9.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:832b7e711027c114d79dffb92576acd1bd2decc467dec60e1cac96912602d0e6"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:95d2ecefbcf4e744ea952d073c6922e72ee650ffc79028eb1e320e732898d7e8"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:d4e2c6d555e77b37288eaf45b8f60f0737c9efa3452c6c44626a5455aeb250b9"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:783185c75c12a017cc345015ea359cc801c3b29a2966c2655cd12b233bf5a2be"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:b8cc1863402472f16c600e3e93d542b7e7542a540f95c30afd472e8e549fc3f7"}, + {file = "yarl-1.9.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:822b30a0f22e588b32d3120f6d41e4ed021806418b4c9f0bc3048b8c8cb3f92a"}, + {file = "yarl-1.9.2-cp311-cp311-win32.whl", hash = "sha256:a60347f234c2212a9f0361955007fcf4033a75bf600a33c88a0a8e91af77c0e8"}, + {file = "yarl-1.9.2-cp311-cp311-win_amd64.whl", hash = "sha256:be6b3fdec5c62f2a67cb3f8c6dbf56bbf3f61c0f046f84645cd1ca73532ea051"}, + {file = "yarl-1.9.2-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:38a3928ae37558bc1b559f67410df446d1fbfa87318b124bf5032c31e3447b74"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac9bb4c5ce3975aeac288cfcb5061ce60e0d14d92209e780c93954076c7c4367"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3da8a678ca8b96c8606bbb8bfacd99a12ad5dd288bc6f7979baddd62f71c63ef"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:13414591ff516e04fcdee8dc051c13fd3db13b673c7a4cb1350e6b2ad9639ad3"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf74d08542c3a9ea97bb8f343d4fcbd4d8f91bba5ec9d5d7f792dbe727f88938"}, + {file = "yarl-1.9.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6e7221580dc1db478464cfeef9b03b95c5852cc22894e418562997df0d074ccc"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:494053246b119b041960ddcd20fd76224149cfea8ed8777b687358727911dd33"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:52a25809fcbecfc63ac9ba0c0fb586f90837f5425edfd1ec9f3372b119585e45"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:e65610c5792870d45d7b68c677681376fcf9cc1c289f23e8e8b39c1485384185"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:1b1bba902cba32cdec51fca038fd53f8beee88b77efc373968d1ed021024cc04"}, + {file = "yarl-1.9.2-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:662e6016409828ee910f5d9602a2729a8a57d74b163c89a837de3fea050c7582"}, + {file = "yarl-1.9.2-cp37-cp37m-win32.whl", hash = "sha256:f364d3480bffd3aa566e886587eaca7c8c04d74f6e8933f3f2c996b7f09bee1b"}, + {file = "yarl-1.9.2-cp37-cp37m-win_amd64.whl", hash = "sha256:6a5883464143ab3ae9ba68daae8e7c5c95b969462bbe42e2464d60e7e2698368"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:5610f80cf43b6202e2c33ba3ec2ee0a2884f8f423c8f4f62906731d876ef4fac"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:b9a4e67ad7b646cd6f0938c7ebfd60e481b7410f574c560e455e938d2da8e0f4"}, + {file = "yarl-1.9.2-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:83fcc480d7549ccebe9415d96d9263e2d4226798c37ebd18c930fce43dfb9574"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5fcd436ea16fee7d4207c045b1e340020e58a2597301cfbcfdbe5abd2356c2fb"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:84e0b1599334b1e1478db01b756e55937d4614f8654311eb26012091be109d59"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3458a24e4ea3fd8930e934c129b676c27452e4ebda80fbe47b56d8c6c7a63a9e"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:838162460b3a08987546e881a2bfa573960bb559dfa739e7800ceeec92e64417"}, + {file = "yarl-1.9.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f4e2d08f07a3d7d3e12549052eb5ad3eab1c349c53ac51c209a0e5991bbada78"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:de119f56f3c5f0e2fb4dee508531a32b069a5f2c6e827b272d1e0ff5ac040333"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:149ddea5abf329752ea5051b61bd6c1d979e13fbf122d3a1f9f0c8be6cb6f63c"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:674ca19cbee4a82c9f54e0d1eee28116e63bc6fd1e96c43031d11cbab8b2afd5"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:9b3152f2f5677b997ae6c804b73da05a39daa6a9e85a512e0e6823d81cdad7cc"}, + {file = "yarl-1.9.2-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:5415d5a4b080dc9612b1b63cba008db84e908b95848369aa1da3686ae27b6d2b"}, + {file = "yarl-1.9.2-cp38-cp38-win32.whl", hash = "sha256:f7a3d8146575e08c29ed1cd287068e6d02f1c7bdff8970db96683b9591b86ee7"}, + {file = "yarl-1.9.2-cp38-cp38-win_amd64.whl", hash = "sha256:63c48f6cef34e6319a74c727376e95626f84ea091f92c0250a98e53e62c77c72"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:75df5ef94c3fdc393c6b19d80e6ef1ecc9ae2f4263c09cacb178d871c02a5ba9"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:c027a6e96ef77d401d8d5a5c8d6bc478e8042f1e448272e8d9752cb0aff8b5c8"}, + {file = "yarl-1.9.2-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f3b078dbe227f79be488ffcfc7a9edb3409d018e0952cf13f15fd6512847f3f7"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59723a029760079b7d991a401386390c4be5bfec1e7dd83e25a6a0881859e716"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b03917871bf859a81ccb180c9a2e6c1e04d2f6a51d953e6a5cdd70c93d4e5a2a"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c1012fa63eb6c032f3ce5d2171c267992ae0c00b9e164efe4d73db818465fac3"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a74dcbfe780e62f4b5a062714576f16c2f3493a0394e555ab141bf0d746bb955"}, + {file = "yarl-1.9.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c56986609b057b4839968ba901944af91b8e92f1725d1a2d77cbac6972b9ed1"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:2c315df3293cd521033533d242d15eab26583360b58f7ee5d9565f15fee1bef4"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:b7232f8dfbd225d57340e441d8caf8652a6acd06b389ea2d3222b8bc89cbfca6"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:53338749febd28935d55b41bf0bcc79d634881195a39f6b2f767870b72514caf"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:066c163aec9d3d073dc9ffe5dd3ad05069bcb03fcaab8d221290ba99f9f69ee3"}, + {file = "yarl-1.9.2-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:8288d7cd28f8119b07dd49b7230d6b4562f9b61ee9a4ab02221060d21136be80"}, + {file = "yarl-1.9.2-cp39-cp39-win32.whl", hash = "sha256:b124e2a6d223b65ba8768d5706d103280914d61f5cae3afbc50fc3dfcc016623"}, + {file = "yarl-1.9.2-cp39-cp39-win_amd64.whl", hash = "sha256:61016e7d582bc46a5378ffdd02cd0314fb8ba52f40f9cf4d9a5e7dbef88dee18"}, + {file = "yarl-1.9.2.tar.gz", hash = "sha256:04ab9d4b9f587c06d801c2abfe9317b77cdf996c65a90d5e84ecc45010823571"}, +] + +[package.dependencies] +idna = ">=2.0" +multidict = ">=4.0" + +[metadata] +lock-version = "2.0" +python-versions = "3.9.15" +content-hash = "176e011dee76ab4f4f3ce19177629b29290e9bc29744799c1c1925af67246142" diff --git a/services/search/poetry.toml b/services/search/poetry.toml new file mode 100644 index 00000000..5fcef8cd --- /dev/null +++ b/services/search/poetry.toml @@ -0,0 +1,3 @@ +[virtualenvs] +in-project = true +prefer-active-python = true diff --git a/services/search/pyproject.toml b/services/search/pyproject.toml new file mode 100644 index 00000000..87ba4802 --- /dev/null +++ b/services/search/pyproject.toml @@ -0,0 +1,70 @@ +[tool.poetry] +authors = ["The HuggingFace Authors."] +description = "REST API app - /search endpoint" +name = "search" +version = "0.1.0" +license = "Apache-2.0" + +[tool.poetry.dependencies] +environs = "^9.5.0" +jsonschema = "^4.17.0" +libapi = {path = "../../libs/libapi", develop = true} +pyarrow = "^11.0.0" +python = "3.9.15" +soundfile = ">=0.12.1" +uvicorn = "^0.20.0" +watchdog = { extras = ["watchmedo"], version = "^2.2.1" } +duckdb = "^0.8.1" + +[tool.poetry.group.dev.dependencies] +bandit = "^1.7.4" +black = "^22.12.0" +flake8 = "^3.9.2" +httpx = "^0.23.3" +isort = "^5.12.0" +mypy = "^1.0.0" +pandas-stubs = "^1.5.3" +pip-audit = "^2.5.4" +pytest = "^7.2.1" +pytest-cov = "^2.12.1" +types-psutil = "^5.9.5" +types-jsonschema = "^4.17.0.4" +types-requests = "^2.28.11" + +[build-system] +build-backend = "poetry.core.masonry.api" +requires = ["poetry-core>=1.0.0"] + +[tool.pytest.ini_options] +filterwarnings = ["ignore::DeprecationWarning"] +markers = [ + "real_dataset: tests on the Hub", + "wip: tests being developed" +] + +[tool.coverage.run] +source = ["search"] + +[tool.isort] +profile = "black" + +[tool.black] +line-length = 119 +preview = true + +[tool.mypy] +strict = true +disallow_untyped_calls = false +# ^ call to expected_algorithm.from_jwk forces to set this to false + +[[tool.mypy.overrides]] +module = [ + "datasets.*", + "huggingface_hub.*", + "prometheus_client.*", + "pyarrow.*", + "tqdm.*", + "fsspec.*" +] +# ^ prometheus_client is now typed, but starlette-prometheus requires an old version +ignore_missing_imports = true diff --git a/services/search/src/search/__init__.py b/services/search/src/search/__init__.py new file mode 100644 index 00000000..fa0c50f2 --- /dev/null +++ b/services/search/src/search/__init__.py @@ -0,0 +1,2 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. diff --git a/services/search/src/search/app.py b/services/search/src/search/app.py new file mode 100644 index 00000000..e77fc190 --- /dev/null +++ b/services/search/src/search/app.py @@ -0,0 +1,107 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +import uvicorn +from libapi.config import UvicornConfig +from libapi.jwt_token import fetch_jwt_public_key +from libapi.routes.healthcheck import healthcheck_endpoint +from libapi.routes.metrics import create_metrics_endpoint +from libcommon.log import init_logging +from libcommon.processing_graph import ProcessingGraph +from libcommon.resources import CacheMongoResource, QueueMongoResource, Resource +from libcommon.storage import ( + exists, + init_cached_assets_dir, + init_duckdb_index_cache_dir, +) +from starlette.applications import Starlette +from starlette.middleware import Middleware +from starlette.middleware.cors import CORSMiddleware +from starlette.middleware.gzip import GZipMiddleware +from starlette.routing import Route +from starlette_prometheus import PrometheusMiddleware + +from search.config import AppConfig +from search.routes.search import create_search_endpoint + + +def create_app() -> Starlette: + app_config = AppConfig.from_env() + return create_app_with_config(app_config=app_config) + + +def create_app_with_config(app_config: AppConfig) -> Starlette: + init_logging(level=app_config.log.level) + # ^ set first to have logs as soon as possible + cached_assets_directory = init_cached_assets_dir(directory=app_config.cached_assets.storage_directory) + if not exists(cached_assets_directory): + raise RuntimeError("The cached assets storage directory could not be accessed. Exiting.") + + duckdb_index_cache_directory = init_duckdb_index_cache_dir(directory=app_config.duckdb_index.storage_directory) + if not exists(duckdb_index_cache_directory): + raise RuntimeError("The duckdb_index storage directory could not be accessed. Exiting.") + + processing_graph = ProcessingGraph(app_config.processing_graph.specification) + hf_jwt_public_key = ( + fetch_jwt_public_key( + url=app_config.api.hf_jwt_public_key_url, + hf_jwt_algorithm=app_config.api.hf_jwt_algorithm, + hf_timeout_seconds=app_config.api.hf_timeout_seconds, + ) + if app_config.api.hf_jwt_public_key_url and app_config.api.hf_jwt_algorithm + else None + ) + + middleware = [ + Middleware( + CORSMiddleware, allow_origins=["*"], allow_methods=["*"], allow_headers=["*"], allow_credentials=True + ), + Middleware(GZipMiddleware), + Middleware(PrometheusMiddleware, filter_unhandled_paths=True), + ] + + cache_resource = CacheMongoResource(database=app_config.cache.mongo_database, host=app_config.cache.mongo_url) + queue_resource = QueueMongoResource(database=app_config.queue.mongo_database, host=app_config.queue.mongo_url) + resources: list[Resource] = [cache_resource, queue_resource] + if not cache_resource.is_available(): + raise RuntimeError("The connection to the cache database could not be established. Exiting.") + if not queue_resource.is_available(): + raise RuntimeError("The connection to the queue database could not be established. Exiting.") + + routes = [ + Route("/healthcheck", endpoint=healthcheck_endpoint), + Route("/metrics", endpoint=create_metrics_endpoint()), + # ^ called by Prometheus + Route( + "/search", + endpoint=create_search_endpoint( + duckdb_index_file_directory=duckdb_index_cache_directory, + cached_assets_base_url=app_config.cached_assets.base_url, + cached_assets_directory=cached_assets_directory, + cache_max_days=app_config.cache.max_days, + target_revision=app_config.duckdb_index.target_revision, + hf_endpoint=app_config.common.hf_endpoint, + hf_token=app_config.common.hf_token, + hf_jwt_public_key=hf_jwt_public_key, + hf_jwt_algorithm=app_config.api.hf_jwt_algorithm, + external_auth_url=app_config.api.external_auth_url, + hf_timeout_seconds=app_config.api.hf_timeout_seconds, + processing_graph=processing_graph, + max_age_long=app_config.api.max_age_long, + max_age_short=app_config.api.max_age_short, + ), + ), + ] + + return Starlette(routes=routes, middleware=middleware, on_shutdown=[resource.release for resource in resources]) + + +def start() -> None: + uvicorn_config = UvicornConfig.from_env() + uvicorn.run( + "app:create_app", + host=uvicorn_config.hostname, + port=uvicorn_config.port, + factory=True, + workers=uvicorn_config.num_workers, + ) diff --git a/services/search/src/search/config.py b/services/search/src/search/config.py new file mode 100644 index 00000000..68201ff7 --- /dev/null +++ b/services/search/src/search/config.py @@ -0,0 +1,60 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +from dataclasses import dataclass, field +from typing import Optional + +from environs import Env +from libapi.config import ApiConfig +from libcommon.config import ( + CacheConfig, + CachedAssetsConfig, + CommonConfig, + LogConfig, + ProcessingGraphConfig, + QueueConfig, +) + +DUCKDB_INDEX_STORAGE_DIRECTORY = None +DUCKDB_INDEX_TARGET_REVISION = "refs/convert/parquet" + + +@dataclass(frozen=True) +class DuckDbIndexConfig: + storage_directory: Optional[str] = DUCKDB_INDEX_STORAGE_DIRECTORY + target_revision: str = DUCKDB_INDEX_TARGET_REVISION + + @classmethod + def from_env(cls) -> "DuckDbIndexConfig": + env = Env(expand_vars=True) + with env.prefixed("DUCKDB_INDEX_"): + return cls( + storage_directory=env.str(name="STORAGE_DIRECTORY", default=DUCKDB_INDEX_STORAGE_DIRECTORY), + target_revision=env.str(name="TARGET_REVISION", default=DUCKDB_INDEX_TARGET_REVISION), + ) + + +@dataclass(frozen=True) +class AppConfig: + api: ApiConfig = field(default_factory=ApiConfig) + cached_assets: CachedAssetsConfig = field(default_factory=CachedAssetsConfig) + cache: CacheConfig = field(default_factory=CacheConfig) + common: CommonConfig = field(default_factory=CommonConfig) + log: LogConfig = field(default_factory=LogConfig) + queue: QueueConfig = field(default_factory=QueueConfig) + processing_graph: ProcessingGraphConfig = field(default_factory=ProcessingGraphConfig) + duckdb_index: DuckDbIndexConfig = field(default_factory=DuckDbIndexConfig) + + @classmethod + def from_env(cls) -> "AppConfig": + common_config = CommonConfig.from_env() + return cls( + common=common_config, + cached_assets=CachedAssetsConfig.from_env(), + cache=CacheConfig.from_env(), + log=LogConfig.from_env(), + processing_graph=ProcessingGraphConfig.from_env(), + queue=QueueConfig.from_env(), + api=ApiConfig.from_env(hf_endpoint=common_config.hf_endpoint), + duckdb_index=DuckDbIndexConfig.from_env(), + ) diff --git a/services/search/src/search/main.py b/services/search/src/search/main.py new file mode 100644 index 00000000..f196ffaf --- /dev/null +++ b/services/search/src/search/main.py @@ -0,0 +1,7 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +from search.app import start + +if __name__ == "__main__": + start() diff --git a/services/search/src/search/py.typed b/services/search/src/search/py.typed new file mode 100644 index 00000000..e69de29b diff --git a/services/search/src/search/routes/__init__.py b/services/search/src/search/routes/__init__.py new file mode 100644 index 00000000..fa0c50f2 --- /dev/null +++ b/services/search/src/search/routes/__init__.py @@ -0,0 +1,2 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. diff --git a/services/search/src/search/routes/search.py b/services/search/src/search/routes/search.py new file mode 100644 index 00000000..554b7316 --- /dev/null +++ b/services/search/src/search/routes/search.py @@ -0,0 +1,337 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +import json +import logging +import os +import random +import re +from hashlib import sha1 +from http import HTTPStatus +from pathlib import Path +from typing import List, Optional, Tuple + +import duckdb +import pyarrow as pa +from datasets import Audio, Features, Image, Value +from huggingface_hub import hf_hub_download +from libapi.authentication import auth_check +from libapi.exceptions import ( + ApiError, + InvalidParameterError, + MissingRequiredParameterError, + UnexpectedApiError, +) +from libapi.utils import ( + Endpoint, + are_valid_parameters, + clean_cached_assets, + get_json_api_error_response, + get_json_error_response, + get_json_ok_response, + to_rows_list, + try_backfill_dataset_then_raise, +) +from libcommon.processing_graph import ProcessingGraph, ProcessingStep +from libcommon.prometheus import StepProfiler +from libcommon.simple_cache import ( + CACHED_RESPONSE_NOT_FOUND, + CacheEntry, + get_best_response, +) +from libcommon.storage import StrPath, init_dir +from libcommon.utils import PaginatedResponse +from libcommon.viewer_utils.features import ( + get_supported_unsupported_columns, + to_features_list, +) +from starlette.requests import Request +from starlette.responses import Response + +logger = logging.getLogger(__name__) + + +ROW_IDX_COLUMN = "__hf_index_id" +MAX_ROWS = 100 +UNSUPPORTED_FEATURES = [Value("binary"), Audio(), Image()] + +FTS_COMMAND_COUNT = ( + "SELECT COUNT(*) FROM (SELECT __hf_index_id, fts_main_data.match_bm25(__hf_index_id, ?) AS score FROM" + " data) A WHERE score IS NOT NULL;" +) + +FTS_COMMAND = ( + "SELECT * EXCLUDE (score) FROM (SELECT *, fts_main_data.match_bm25(__hf_index_id, ?) AS score FROM " + "data) A WHERE score IS NOT NULL ORDER BY __hf_index_id OFFSET {offset} LIMIT {length};" +) +REPO_TYPE = "dataset" + + +def get_download_folder( + root_directory: StrPath, dataset: str, config: str, split: str, revision: Optional[str] +) -> str: + payload = (dataset, config, split, revision) + hash_suffix = sha1(json.dumps(payload, sort_keys=True).encode(), usedforsecurity=False).hexdigest()[:8] + subdirectory = "".join([c if re.match(r"[\w-]", c) else "-" for c in f"{dataset}-{hash_suffix}"]) + return f"{root_directory}/downloads/{subdirectory}" + + +def download_index_file( + index_folder: str, + target_revision: str, + dataset: str, + repo_file_location: str, + hf_token: Optional[str] = None, +) -> None: + logging.info(f"init_dir {index_folder}") + init_dir(index_folder) + + # see https://pypi.org/project/hf-transfer/ for more details about how to enable hf_transfer + os.environ["HF_HUB_ENABLE_HF_TRANSFER"] = "1" + hf_hub_download( + repo_type=REPO_TYPE, + revision=target_revision, + repo_id=dataset, + filename=repo_file_location, + local_dir=index_folder, + local_dir_use_symlinks=False, + token=hf_token, + ) + + +def full_text_search(index_file_location: str, query: str, offset: int, length: int) -> Tuple[int, pa.Table]: + con = duckdb.connect(index_file_location, read_only=True) + count_result = con.execute(query=FTS_COMMAND_COUNT, parameters=[query]).fetchall() + num_total_rows = count_result[0][0] # it will always return a non empty list with one element in a tuple + logging.debug(f"got {num_total_rows=} results for {query=}") + query_result = con.execute( + query=FTS_COMMAND.format(offset=offset, length=length), + parameters=[query], + ) + pa_table = query_result.arrow() + con.close() + return (num_total_rows, pa_table) + + +def get_cache_entry_from_steps( + processing_steps: List[ProcessingStep], + dataset: str, + config: Optional[str], + split: Optional[str], + processing_graph: ProcessingGraph, + cache_max_days: int, + hf_endpoint: str, + hf_token: Optional[str] = None, + hf_timeout_seconds: Optional[float] = None, +) -> CacheEntry: + """Gets the cache from the first successful step in the processing steps list. + If no successful result is found, it will return the last one even if it's an error, + Checks if job is still in progress by each processing step in case of no entry found. + Raises: + - [`~utils.ResponseNotFoundError`] + if no result is found. + - [`~utils.ResponseNotReadyError`] + if the response is not ready yet. + Returns: the cached record + """ + kinds = [processing_step.cache_kind for processing_step in processing_steps] + best_response = get_best_response(kinds=kinds, dataset=dataset, config=config, split=split) + if "error_code" in best_response.response and best_response.response["error_code"] == CACHED_RESPONSE_NOT_FOUND: + try_backfill_dataset_then_raise( + processing_steps=processing_steps, + processing_graph=processing_graph, + dataset=dataset, + hf_endpoint=hf_endpoint, + hf_timeout_seconds=hf_timeout_seconds, + hf_token=hf_token, + cache_max_days=cache_max_days, + ) + return best_response.response + + +def create_response( + pa_table: pa.Table, + dataset: str, + config: str, + split: str, + cached_assets_base_url: str, + cached_assets_directory: StrPath, + offset: int, + num_total_rows: int, +) -> PaginatedResponse: + features = Features.from_arrow_schema(pa_table.schema) + + features_without_key = features.copy() + features_without_key.pop(ROW_IDX_COLUMN, None) + + _, unsupported_columns = get_supported_unsupported_columns( + features, + unsupported_features=UNSUPPORTED_FEATURES, + ) + pa_table = pa_table.drop(unsupported_columns) + return PaginatedResponse( + features=to_features_list(features_without_key), + rows=to_rows_list( + pa_table, + dataset, + config, + split, + cached_assets_base_url, + cached_assets_directory, + offset=offset, + features=features, + unsupported_columns=unsupported_columns, + row_idx_column=ROW_IDX_COLUMN, + ), + num_total_rows=num_total_rows, + ) + + +def create_search_endpoint( + processing_graph: ProcessingGraph, + duckdb_index_file_directory: StrPath, + cached_assets_base_url: str, + cached_assets_directory: StrPath, + target_revision: str, + cache_max_days: int, + hf_endpoint: str, + external_auth_url: Optional[str] = None, + hf_token: Optional[str] = None, + hf_jwt_public_key: Optional[str] = None, + hf_jwt_algorithm: Optional[str] = None, + hf_timeout_seconds: Optional[float] = None, + max_age_long: int = 0, + max_age_short: int = 0, + clean_cache_proba: float = 0.0, + keep_first_rows_number: int = -1, + keep_most_recent_rows_number: int = -1, + max_cleaned_rows_number: int = -1, +) -> Endpoint: + async def search_endpoint(request: Request) -> Response: + revision: Optional[str] = None + with StepProfiler(method="search_endpoint", step="all"): + try: + with StepProfiler(method="search_endpoint", step="validate parameters"): + dataset = request.query_params.get("dataset") + config = request.query_params.get("config") + split = request.query_params.get("split") + query = request.query_params.get("query") + + if ( + not dataset + or not config + or not split + or not query + or not are_valid_parameters([dataset, config, split, query]) + ): + raise MissingRequiredParameterError( + "Parameter 'dataset', 'config', 'split' and 'query' are required" + ) + + offset = int(request.query_params.get("offset", 0)) + if offset < 0: + raise InvalidParameterError(message="Offset must be positive") + + length = int(request.query_params.get("length", MAX_ROWS)) + if length < 0: + raise InvalidParameterError("Length must be positive") + if length > MAX_ROWS: + raise InvalidParameterError(f"Length must be less than or equal to {MAX_ROWS}") + + with StepProfiler(method="search_endpoint", step="check authentication"): + # if auth_check fails, it will raise an exception that will be caught below + auth_check( + dataset=dataset, + external_auth_url=external_auth_url, + request=request, + hf_jwt_public_key=hf_jwt_public_key, + hf_jwt_algorithm=hf_jwt_algorithm, + hf_timeout_seconds=hf_timeout_seconds, + ) + + logging.info(f"/search {dataset=} {config=} {split=} {query=} {offset=} {length=}") + + with StepProfiler(method="search_endpoint", step="validate indexing was done"): + # no cache data is needed to download the index file + # but will help to validate if indexing was done + processing_steps = processing_graph.get_processing_step_by_job_type("split-duckdb-index") + result = get_cache_entry_from_steps( + processing_steps=[processing_steps], + dataset=dataset, + config=config, + split=split, + processing_graph=processing_graph, + hf_endpoint=hf_endpoint, + hf_token=hf_token, + hf_timeout_seconds=hf_timeout_seconds, + cache_max_days=cache_max_days, + ) + + content = result["content"] + http_status = result["http_status"] + error_code = result["error_code"] + revision = result["dataset_git_revision"] + if http_status != HTTPStatus.OK: + return get_json_error_response( + content=content, + status_code=http_status, + max_age=max_age_short, + error_code=error_code, + revision=revision, + ) + + with StepProfiler(method="search_endpoint", step="download index file if missing"): + file_name = content["filename"] + index_folder = get_download_folder(duckdb_index_file_directory, dataset, config, split, revision) + repo_file_location = f"{config}/{split}/{file_name}" + index_file_location = f"{index_folder}/{repo_file_location}" + index_path = Path(index_file_location) + if not index_path.is_file(): + with StepProfiler(method="search_endpoint", step="download index file"): + download_index_file(index_folder, target_revision, dataset, repo_file_location, hf_token) + + with StepProfiler(method="search_endpoint", step="perform FTS command"): + logging.debug(f"connect to index file {index_file_location}") + (num_total_rows, pa_table) = full_text_search(index_file_location, query, offset, length) + index_path.touch() + + with StepProfiler(method="search_endpoint", step="clean cache"): + # no need to do it every time + if random.random() < clean_cache_proba: # nosec + if ( + keep_first_rows_number < 0 + and keep_most_recent_rows_number < 0 + and max_cleaned_rows_number < 0 + ): + logger.debug( + "Params keep_first_rows_number, keep_most_recent_rows_number and" + " max_cleaned_rows_number are not set. Skipping cached assets cleaning." + ) + else: + clean_cached_assets( + dataset=dataset, + cached_assets_directory=cached_assets_directory, + keep_first_rows_number=keep_first_rows_number, + keep_most_recent_rows_number=keep_most_recent_rows_number, + max_cleaned_rows_number=max_cleaned_rows_number, + ) + + with StepProfiler(method="search_endpoint", step="create response"): + response = create_response( + pa_table, + dataset, + config, + split, + cached_assets_base_url, + cached_assets_directory, + offset, + num_total_rows, + ) + with StepProfiler(method="search_endpoint", step="generate the OK response"): + return get_json_ok_response(response, max_age=max_age_long, revision=revision) + except Exception as e: + error = e if isinstance(e, ApiError) else UnexpectedApiError("Unexpected error.", e) + with StepProfiler(method="search_endpoint", step="generate API error response"): + return get_json_api_error_response(error=error, max_age=max_age_short, revision=revision) + + return search_endpoint diff --git a/services/search/tests/__init__.py b/services/search/tests/__init__.py new file mode 100644 index 00000000..fa0c50f2 --- /dev/null +++ b/services/search/tests/__init__.py @@ -0,0 +1,2 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. diff --git a/services/search/tests/conftest.py b/services/search/tests/conftest.py new file mode 100644 index 00000000..11ff97fb --- /dev/null +++ b/services/search/tests/conftest.py @@ -0,0 +1,97 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +from typing import Iterator + +from libapi.config import UvicornConfig +from libcommon.processing_graph import ProcessingGraph +from libcommon.queue import _clean_queue_database +from libcommon.resources import CacheMongoResource, QueueMongoResource +from libcommon.simple_cache import _clean_cache_database +from libcommon.storage import ( + StrPath, + init_cached_assets_dir, + init_duckdb_index_cache_dir, +) +from pytest import MonkeyPatch, fixture + +from search.config import AppConfig + + +# see https://github.com/pytest-dev/pytest/issues/363#issuecomment-406536200 +@fixture(scope="session") +def monkeypatch_session() -> Iterator[MonkeyPatch]: + monkeypatch_session = MonkeyPatch() + monkeypatch_session.setenv("CACHE_MONGO_DATABASE", "datasets_server_cache_test") + monkeypatch_session.setenv("QUEUE_MONGO_DATABASE", "datasets_server_queue_test") + monkeypatch_session.setenv("CACHED_ASSETS_BASE_URL", "http://localhost/cached-assets") + hostname = "localhost" + port = "8888" + monkeypatch_session.setenv("API_HF_TIMEOUT_SECONDS", "10") + monkeypatch_session.setenv("API_UVICORN_HOSTNAME", hostname) + monkeypatch_session.setenv("API_UVICORN_PORT", port) + monkeypatch_session.setenv("COMMON_HF_ENDPOINT", f"http://{hostname}:{port}") + yield monkeypatch_session + monkeypatch_session.undo() + + +@fixture(scope="session") +def app_config(monkeypatch_session: MonkeyPatch) -> AppConfig: + app_config = AppConfig.from_env() + if "test" not in app_config.cache.mongo_database or "test" not in app_config.queue.mongo_database: + raise ValueError("Test must be launched on a test mongo database") + return app_config + + +@fixture(scope="session") +def processing_graph(app_config: AppConfig) -> ProcessingGraph: + return ProcessingGraph(app_config.processing_graph.specification) + + +@fixture(scope="session") +def search_endpoint() -> str: + return "/search" + + +@fixture(autouse=True) +def cache_mongo_resource(app_config: AppConfig) -> Iterator[CacheMongoResource]: + with CacheMongoResource(database=app_config.cache.mongo_database, host=app_config.cache.mongo_url) as resource: + yield resource + _clean_cache_database() + + +@fixture(autouse=True) +def queue_mongo_resource(app_config: AppConfig) -> Iterator[QueueMongoResource]: + with QueueMongoResource(database=app_config.queue.mongo_database, host=app_config.queue.mongo_url) as resource: + yield resource + _clean_queue_database() + + +@fixture(scope="session") +def uvicorn_config(monkeypatch_session: MonkeyPatch) -> UvicornConfig: + return UvicornConfig.from_env() + + +@fixture(scope="session") +def httpserver_listen_address(uvicorn_config: UvicornConfig) -> tuple[str, int]: + return (uvicorn_config.hostname, uvicorn_config.port) + + +@fixture(scope="session") +def hf_endpoint(app_config: AppConfig) -> str: + return app_config.common.hf_endpoint + + +@fixture(scope="session") +def hf_auth_path(app_config: AppConfig) -> str: + return app_config.api.hf_auth_path + + +@fixture +def cached_assets_directory(app_config: AppConfig) -> StrPath: + return init_cached_assets_dir(app_config.cached_assets.storage_directory) + + +@fixture +def duckdb_index_cache_directory(app_config: AppConfig) -> StrPath: + return init_duckdb_index_cache_dir(app_config.duckdb_index.storage_directory) diff --git a/services/search/tests/routes/__init__.py b/services/search/tests/routes/__init__.py new file mode 100644 index 00000000..fa0c50f2 --- /dev/null +++ b/services/search/tests/routes/__init__.py @@ -0,0 +1,2 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. diff --git a/services/search/tests/routes/test_search.py b/services/search/tests/routes/test_search.py new file mode 100644 index 00000000..5a6bc20a --- /dev/null +++ b/services/search/tests/routes/test_search.py @@ -0,0 +1,104 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +import os +from typing import Any + +import duckdb +import pandas as pd +import pyarrow as pa +import pytest +from libcommon.storage import StrPath + +from search.routes.search import full_text_search, get_download_folder + + +def test_get_download_folder(duckdb_index_cache_directory: StrPath) -> None: + dataset, config, split, revision = "dataset", "config", "split", "revision" + index_folder = get_download_folder(duckdb_index_cache_directory, dataset, config, split, revision) + assert index_folder is not None + assert str(duckdb_index_cache_directory) in index_folder + + [email protected]( + "query,offset,length,expected_result, expected_num_total_rows", + [ + ( + "Lord Vader", + 0, + 100, + { + "__hf_index_id": [0, 2, 4], + "text": [ + "Grand Moff Tarkin and Lord Vader are interrupted in their discussion by the buzz of the comlink", + "Vader turns round and round in circles as his ship spins into space.", + "The wingman spots the pirateship coming at him and warns the Dark Lord", + ], + }, + 3, + ), + ( + "Lord Vader", + 1, + 2, + { + "__hf_index_id": [2, 4], + "text": [ + "Vader turns round and round in circles as his ship spins into space.", + "The wingman spots the pirateship coming at him and warns the Dark Lord", + ], + }, + 3, + ), + ("non existing text", 0, 100, {"__hf_index_id": [], "text": []}, 0), + (";DROP TABLE data;", 0, 100, {"__hf_index_id": [], "text": []}, 0), + ("some text'); DROP TABLE data; --", 0, 100, {"__hf_index_id": [], "text": []}, 0), + ], +) +def test_full_text_search( + query: str, offset: int, length: int, expected_result: Any, expected_num_total_rows: int +) -> None: + # simulate index file + index_file_location = "index.duckdb" + con = duckdb.connect(index_file_location) + con.execute("INSTALL 'httpfs';") + con.execute("LOAD 'httpfs';") + con.execute("INSTALL 'fts';") + con.execute("LOAD 'fts';") + con.sql("CREATE OR REPLACE SEQUENCE serial START 0 MINVALUE 0;") + sample_df = pd.DataFrame( + { + "text": [ + "Grand Moff Tarkin and Lord Vader are interrupted in their discussion by the buzz of the comlink", + "There goes another one.", + "Vader turns round and round in circles as his ship spins into space.", + "We count thirty Rebel ships.", + "The wingman spots the pirateship coming at him and warns the Dark Lord", + ] + }, + dtype=pd.StringDtype(storage="python"), + ) + create_command_sql = "CREATE OR REPLACE TABLE data AS SELECT nextval('serial') AS __hf_index_id, * FROM sample_df" + con.sql(create_command_sql) + con.execute(query="SELECT COUNT(*) FROM data;").fetchall() + assert sample_df.size == con.execute(query="SELECT COUNT(*) FROM data;").fetchall()[0][0] + con.sql("PRAGMA create_fts_index('data', '__hf_index_id', '*', overwrite=1);") + con.close() + + # assert search results + (num_total_rows, pa_table) = full_text_search(index_file_location, query, offset, length) + assert num_total_rows is not None + assert pa_table is not None + assert num_total_rows == expected_num_total_rows + + fields = [pa.field("__hf_index_id", pa.int64()), pa.field("text", pa.string())] + filtered_df = pd.DataFrame(expected_result) + expected_table = pa.Table.from_pandas(filtered_df, schema=pa.schema(fields), preserve_index=False) + assert pa_table == expected_table + + # ensure that database has not been modified + con = duckdb.connect(index_file_location) + assert sample_df.size == con.execute(query="SELECT COUNT(*) FROM data;").fetchall()[0][0] + con.close() + + os.remove(index_file_location) diff --git a/services/search/tests/test_app.py b/services/search/tests/test_app.py new file mode 100644 index 00000000..6981722e --- /dev/null +++ b/services/search/tests/test_app.py @@ -0,0 +1,98 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +from typing import Optional + +import pytest +from starlette.testclient import TestClient + +from search.app import create_app_with_config +from search.config import AppConfig + + [email protected](scope="module") +def client(monkeypatch_session: pytest.MonkeyPatch, app_config: AppConfig) -> TestClient: + return TestClient(create_app_with_config(app_config=app_config)) + + +def test_cors(client: TestClient) -> None: + origin = "http://localhost:3000" + method = "GET" + header = "X-Requested-With" + response = client.options( + "/search?dataset=dataset1&config=config1&split=train&query=query1", + headers={ + "Origin": origin, + "Access-Control-Request-Method": method, + "Access-Control-Request-Headers": header, + }, + ) + assert response.status_code == 200 + assert ( + origin in [o.strip() for o in response.headers["Access-Control-Allow-Origin"].split(",")] + or response.headers["Access-Control-Allow-Origin"] == "*" + ) + assert ( + header in [o.strip() for o in response.headers["Access-Control-Allow-Headers"].split(",")] + or response.headers["Access-Control-Expose-Headers"] == "*" + ) + assert ( + method in [o.strip() for o in response.headers["Access-Control-Allow-Methods"].split(",")] + or response.headers["Access-Control-Expose-Headers"] == "*" + ) + assert response.headers["Access-Control-Allow-Credentials"] == "true" + + +def test_get_healthcheck(client: TestClient) -> None: + response = client.get("/healthcheck") + assert response.status_code == 200 + assert response.text == "ok" + + +def test_get_search(client: TestClient) -> None: + # missing parameter + response = client.get("/search") + assert response.status_code == 422 + + [email protected]( + "dataset,config,split,query", + [ + (None, None, None, None), + ("a", None, None, None), + ("a", "b", None, None), + ("a", "b", "c", None), + ("a", "b", "c", ""), + ], +) +def test_get_split_missing_parameter( + client: TestClient, + dataset: Optional[str], + config: Optional[str], + split: Optional[str], + query: Optional[str], +) -> None: + response = client.get("/search", params={"dataset": dataset, "config": config, "split": split, "query": query}) + assert response.status_code == 422 + + +def test_metrics(client: TestClient) -> None: + response = client.get("/healthcheck") + response = client.get("/metrics") + assert response.status_code == 200 + text = response.text + lines = text.split("\n") + # examples: + # starlette_requests_total{method="GET",path_template="/metrics"} 1.0 + # method_steps_processing_time_seconds_sum{method="healthcheck_endpoint",step="all"} 1.6772013623267412e-05 + metrics = { + parts[0]: float(parts[1]) for line in lines if line and line[0] != "#" and (parts := line.rsplit(" ", 1)) + } + + # the metrics should contain at least the following + for name in [ + 'starlette_requests_total{method="GET",path_template="/metrics"}', + 'method_steps_processing_time_seconds_sum{context="None",method="healthcheck_endpoint",step="all"}', + ]: + assert name in metrics, metrics + assert metrics[name] > 0, metrics diff --git a/services/worker/src/worker/dtos.py b/services/worker/src/worker/dtos.py index bfb0d108..9ee8f203 100644 --- a/services/worker/src/worker/dtos.py +++ b/services/worker/src/worker/dtos.py @@ -7 +7 @@ from typing import Any, Dict, List, Mapping, Optional, TypedDict -from libcommon.utils import FeatureItem, RowItem, SplitHubFile +from libcommon.utils import FeatureItem, Row, RowItem, SplitHubFile @@ -91,3 +90,0 @@ class ImageUrlColumnsResponse(TypedDict): -Row = Mapping[str, Any] - - diff --git a/services/worker/src/worker/job_runners/split/first_rows_from_parquet.py b/services/worker/src/worker/job_runners/split/first_rows_from_parquet.py index 1fd5f9a3..03509c67 100644 --- a/services/worker/src/worker/job_runners/split/first_rows_from_parquet.py +++ b/services/worker/src/worker/job_runners/split/first_rows_from_parquet.py @@ -21 +21 @@ from libcommon.storage import StrPath -from libcommon.utils import JobInfo, RowItem +from libcommon.utils import JobInfo, Row, RowItem @@ -25 +25 @@ from worker.config import AppConfig, FirstRowsConfig -from worker.dtos import CompleteJobResult, JobRunnerInfo, Row, SplitFirstRowsResponse +from worker.dtos import CompleteJobResult, JobRunnerInfo, SplitFirstRowsResponse diff --git a/services/worker/src/worker/job_runners/split/first_rows_from_streaming.py b/services/worker/src/worker/job_runners/split/first_rows_from_streaming.py index 79c1068e..7954cd3e 100644 --- a/services/worker/src/worker/job_runners/split/first_rows_from_streaming.py +++ b/services/worker/src/worker/job_runners/split/first_rows_from_streaming.py @@ -29 +29 @@ from libcommon.storage import StrPath -from libcommon.utils import JobInfo +from libcommon.utils import JobInfo, Row @@ -33 +33 @@ from worker.config import AppConfig, FirstRowsConfig -from worker.dtos import CompleteJobResult, JobRunnerInfo, Row, SplitFirstRowsResponse +from worker.dtos import CompleteJobResult, JobRunnerInfo, SplitFirstRowsResponse diff --git a/tools/docker-compose-datasets-server.yml b/tools/docker-compose-datasets-server.yml index faf65c3d..e0fffcf6 100644 --- a/tools/docker-compose-datasets-server.yml +++ b/tools/docker-compose-datasets-server.yml @@ -20,0 +21 @@ services: + URL_SEARCH: http://search:${SEARCH_UVICORN_PORT-8083} @@ -24,0 +26 @@ services: + - search @@ -115,0 +118,37 @@ services: + search: + build: + context: .. + dockerfile: services/search/Dockerfile + extends: + file: docker-compose-base.yml + service: api + volumes: + - cached-assets:${CACHED_ASSETS_STORAGE_DIRECTORY-/cached-assets} + - duckdb-index:${DUCKDB_INDEX_STORAGE_DIRECTORY-/duckdb-index} + environment: + CACHED_ASSETS_BASE_URL: "http://localhost:${PORT_REVERSE_PROXY-8000}/cached-assets" # hard-coded to work with the reverse-proxy + CACHED_ASSETS_STORAGE_DIRECTORY: ${CACHED_ASSETS_STORAGE_DIRECTORY-/cached-assets} + CACHED_ASSETS_CLEAN_CACHE_PROBA: ${CACHED_ASSETS_CLEAN_CACHE_PROBA-0.05} + CACHED_ASSETS_KEEP_FIRST_ROWS_NUMBER: ${CACHED_ASSETS_KEEP_FIRST_ROWS_NUMBER-100} + CACHED_ASSETS_KEEP_MOST_RECENT_ROWS_NUMBER: ${CACHED_ASSETS_KEEP_MOST_RECENT_ROWS_NUMBER-200} + CACHED_ASSETS_MAX_CLEANED_ROWS_NUMBER: ${CACHED_ASSETS_MAX_CLEANED_ROWS_NUMBER-10000} + DUCKDB_INDEX_STORAGE_DIRECTORY: ${DUCKDB_INDEX_STORAGE_DIRECTORY-/duckdb-index} + # service + API_HF_AUTH_PATH: ${API_HF_AUTH_PATH-/api/datasets/%s/auth-check} + API_HF_JWT_PUBLIC_KEY_URL: ${API_HF_JWT_PUBLIC_KEY_URL-https://huggingface.co/api/keys/jwt} + API_HF_JWT_ALGORITHM: ${API_HF_JWT_ALGORITHM-EdDSA} + API_HF_TIMEOUT_SECONDS: ${API_HF_TIMEOUT_SECONDS-0.2} + API_MAX_AGE_LONG: ${API_MAX_AGE_LONG-120} + API_MAX_AGE_SHORT: ${API_MAX_AGE_SHORT-10} + # prometheus + PROMETHEUS_MULTIPROC_DIR: ${PROMETHEUS_MULTIPROC_DIR-} + # uvicorn + API_UVICORN_HOSTNAME: 0.0.0.0 # required for docker compose + API_UVICORN_NUM_WORKERS: ${SEARCH_UVICORN_NUM_WORKERS-2} + API_UVICORN_PORT: ${SEARCH_UVICORN_PORT-8083} + ports: + # for debug + - ${SEARCH_UVICORN_PORT-8083}:${SEARCH_UVICORN_PORT-8083} + depends_on: + - mongodb + restart: unless-stopped diff --git a/tools/docker-compose-dev-base.yml b/tools/docker-compose-dev-base.yml index 96319ed2..014f09ee 100644 --- a/tools/docker-compose-dev-base.yml +++ b/tools/docker-compose-dev-base.yml @@ -57,0 +58,8 @@ services: + search: + extends: + service: common + environment: + # volumes to local source directory for development + volumes: + - ../libs/libapi/src:/src/libs/libapi/src + - ../services/search/src:/src/services/search/src diff --git a/tools/docker-compose-dev-datasets-server.yml b/tools/docker-compose-dev-datasets-server.yml index e0c24871..222d4756 100644 --- a/tools/docker-compose-dev-datasets-server.yml +++ b/tools/docker-compose-dev-datasets-server.yml @@ -20,0 +21 @@ services: + URL_SEARCH: http://host.docker.internal:${SEARCH_UVICORN_PORT-8083} @@ -26,0 +28 @@ services: + - search @@ -118,0 +121,38 @@ services: + search: + build: + context: .. + dockerfile: services/search/dev.Dockerfile + extends: + file: docker-compose-dev-base.yml + service: search + volumes: + - cached-assets:${CACHED_ASSETS_STORAGE_DIRECTORY-/cached-assets} + - duckdb-index:${DUCKDB_INDEX_STORAGE_DIRECTORY-/duckdb-index} + environment: + CACHED_ASSETS_BASE_URL: "http://localhost:${PORT_REVERSE_PROXY-8000}/cached-assets" # hard-coded to work with the reverse-proxy + CACHED_ASSETS_STORAGE_DIRECTORY: ${CACHED_ASSETS_STORAGE_DIRECTORY-/cached-assets} + CACHED_ASSETS_CLEAN_CACHE_PROBA: ${CACHED_ASSETS_CLEAN_CACHE_PROBA-0.05} + CACHED_ASSETS_KEEP_FIRST_ROWS_NUMBER: ${CACHED_ASSETS_KEEP_FIRST_ROWS_NUMBER-100} + CACHED_ASSETS_KEEP_MOST_RECENT_ROWS_NUMBER: ${CACHED_ASSETS_KEEP_MOST_RECENT_ROWS_NUMBER-200} + CACHED_ASSETS_MAX_CLEANED_ROWS_NUMBER: ${CACHED_ASSETS_MAX_CLEANED_ROWS_NUMBER-10000} + DUCKDB_INDEX_STORAGE_DIRECTORY: ${DUCKDB_INDEX_STORAGE_DIRECTORY-/duckdb-index} + # service + API_HF_AUTH_PATH: ${API_HF_AUTH_PATH-/api/datasets/%s/auth-check} + API_HF_JWT_PUBLIC_KEY_URL: ${API_HF_JWT_PUBLIC_KEY_URL-https://huggingface.co/api/keys/jwt} + API_HF_JWT_ALGORITHM: ${API_HF_JWT_ALGORITHM-EdDSA} + API_HF_TIMEOUT_SECONDS: ${API_HF_TIMEOUT_SECONDS-0.2} + API_MAX_AGE_LONG: ${API_MAX_AGE_LONG-120} + API_MAX_AGE_SHORT: ${API_MAX_AGE_SHORT-10} + # prometheus + PROMETHEUS_MULTIPROC_DIR: ${PROMETHEUS_MULTIPROC_DIR-} + # uvicorn + API_UVICORN_HOSTNAME: 0.0.0.0 # required for docker compose + API_UVICORN_NUM_WORKERS: ${SEARCH_UVICORN_NUM_WORKERS-2} + API_UVICORN_PORT: ${SEARCH_UVICORN_PORT-8083} + network_mode: ${DEV_NETWORK_MODE} + ports: + # for debug + - ${SEARCH_UVICORN_PORT-8083}:${SEARCH_UVICORN_PORT-8083} + depends_on: + - mongodb + restart: unless-stopped
05cf0848ffaf9ba112b667e8170531d49c11042f
Sylvain Lesage
2023-08-02T16:08:25
feat: 🎸 optimize the computation of metrics (#1605)
diff --git a/libs/libcommon/src/libcommon/simple_cache.py b/libs/libcommon/src/libcommon/simple_cache.py index a3a2baad..c99e8a00 100644 --- a/libs/libcommon/src/libcommon/simple_cache.py +++ b/libs/libcommon/src/libcommon/simple_cache.py @@ -489,0 +490,16 @@ class CountEntry(TypedDict): +def format_group(group: Dict[str, Any]) -> CountEntry: + kind = group["kind"] + if not isinstance(kind, str): + raise TypeError("kind must be a str") + http_status = group["http_status"] + if not isinstance(http_status, int): + raise TypeError("http_status must be an int") + error_code = group["error_code"] + if not isinstance(error_code, str) and error_code is not None: + raise TypeError("error_code must be a str or None") + count = group["count"] + if not isinstance(count, int): + raise TypeError("count must be an int") + return {"kind": kind, "http_status": http_status, "error_code": error_code, "count": count} + + @@ -491,16 +507,20 @@ def get_responses_count_by_kind_status_and_error_code() -> List[CountEntry]: - # TODO: rework with aggregate - # see - # https://stackoverflow.com/questions/47301829/mongodb-distinct-count-for-combination-of-two-fields?noredirect=1&lq=1#comment81555081_47301829 - # and https://docs.mongoengine.org/guide/querying.html#mongodb-aggregation-api - entries = CachedResponseDocument.objects().only("kind", "http_status", "error_code") - return [ - { - "kind": str(kind), - "http_status": int(http_status), - "error_code": error_code, - "count": entries(kind=kind, http_status=http_status, error_code=error_code).count(), - } - for kind in sorted(entries.distinct("kind")) - for http_status in sorted(entries(kind=kind).distinct("http_status")) - for error_code in entries(kind=kind, http_status=http_status).distinct("error_code") - ] + groups = CachedResponseDocument.objects().aggregate( + [ + {"$sort": {"kind": 1, "http_status": 1, "error_code": 1}}, + { + "$group": { + "_id": {"kind": "$kind", "http_status": "$http_status", "error_code": "$error_code"}, + "count": {"$sum": 1}, + } + }, + { + "$project": { + "kind": "$_id.kind", + "http_status": "$_id.http_status", + "error_code": "$_id.error_code", + "count": "$count", + } + }, + ] + ) + return [format_group(group) for group in groups] diff --git a/libs/libcommon/tests/test_simple_cache.py b/libs/libcommon/tests/test_simple_cache.py index 0a71e793..fe354769 100644 --- a/libs/libcommon/tests/test_simple_cache.py +++ b/libs/libcommon/tests/test_simple_cache.py @@ -348,4 +348,4 @@ def test_count_by_status_and_error_code() -> None: - assert get_responses_count_by_kind_status_and_error_code() == [ - {"kind": "test_kind", "http_status": 200, "error_code": None, "count": 1}, - {"kind": "test_kind2", "http_status": 500, "error_code": "error_code", "count": 1}, - ] + metrics = get_responses_count_by_kind_status_and_error_code() + assert len(metrics) == 2 + assert {"kind": "test_kind", "http_status": 200, "error_code": None, "count": 1} in metrics + assert {"kind": "test_kind2", "http_status": 500, "error_code": "error_code", "count": 1} in metrics
906cead2500f10fe5141ce612dadab2992c7ab37
Sylvain Lesage
2023-08-02T15:09:47
refactor: 💡 clean the chart variables (#1601)
diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 41c55baa..fbb83507 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -21 +21 @@ type: application -version: 1.15.2 +version: 1.15.3 diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index fad011bb..c69cb76e 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -85,13 +85,10 @@ persistence: - existingClaim: "nfs-datasets-server-pvc" - -cachePersistence: - existingClaim: "datasets-server-cache-pvc" - -parquetPersistence: - existingClaim: "datasets-server-parquet-pvc" - -duckdbPersistence: - existingClaim: "datasets-server-duckdb-pvc" - -statisticsPersistence: - existingClaim: "datasets-server-statistics-pvc" + descriptiveStatistics: + existingClaim: "datasets-server-statistics-pvc" + duckDBIndex: + existingClaim: "datasets-server-duckdb-pvc" + hfDatasetsCache: + existingClaim: "datasets-server-cache-pvc" + nfs: + existingClaim: "nfs-datasets-server-pvc" + parquet: + existingClaim: "datasets-server-parquet-pvc" diff --git a/chart/env/staging.yaml b/chart/env/staging.yaml index 09acc58d..e23d2bcf 100644 --- a/chart/env/staging.yaml +++ b/chart/env/staging.yaml @@ -82,13 +82,10 @@ persistence: - existingClaim: "nfs-datasets-server-pvc" - -cachePersistence: - existingClaim: "datasets-server-cache-pvc" - -parquetPersistence: - existingClaim: "datasets-server-parquet-pvc" - -duckdbPersistence: - existingClaim: "datasets-server-duckdb-pvc" - -statisticsPersistence: - existingClaim: "datasets-server-statistics-pvc" + descriptiveStatistics: + existingClaim: "datasets-server-statistics-pvc" + duckDBIndex: + existingClaim: "datasets-server-duckdb-pvc" + hfDatasetsCache: + existingClaim: "datasets-server-cache-pvc" + nfs: + existingClaim: "nfs-datasets-server-pvc" + parquet: + existingClaim: "datasets-server-parquet-pvc" diff --git a/chart/templates/_dnsConfig.tpl b/chart/templates/_common/_dnsConfig.tpl similarity index 100% rename from chart/templates/_dnsConfig.tpl rename to chart/templates/_common/_dnsConfig.tpl diff --git a/chart/templates/_helpers.tpl b/chart/templates/_common/_helpers.tpl similarity index 98% rename from chart/templates/_helpers.tpl rename to chart/templates/_common/_helpers.tpl index 3149b0a6..6ccf13e9 100644 --- a/chart/templates/_helpers.tpl +++ b/chart/templates/_common/_helpers.tpl @@ -204,2 +204,2 @@ The datasets library will use this directory as a cache -{{- define "cache.subpath" -}} -{{- printf "%s/%s/%s/" .Chart.Name .Release.Name "cache" }} +{{- define "hfDatasetsCache.subpath" -}} +{{- printf "%s/%s/%s/" .Chart.Name .Release.Name "hf-datasets-cache" }} diff --git a/chart/templates/_securityContext.tpl b/chart/templates/_common/_securityContext.tpl similarity index 100% rename from chart/templates/_securityContext.tpl rename to chart/templates/_common/_securityContext.tpl diff --git a/chart/templates/_envAssets.tpl b/chart/templates/_env/_envAssets.tpl similarity index 100% rename from chart/templates/_envAssets.tpl rename to chart/templates/_env/_envAssets.tpl diff --git a/chart/templates/_envCache.tpl b/chart/templates/_env/_envCache.tpl similarity index 100% rename from chart/templates/_envCache.tpl rename to chart/templates/_env/_envCache.tpl diff --git a/chart/templates/_envCachedAssets.tpl b/chart/templates/_env/_envCachedAssets.tpl similarity index 100% rename from chart/templates/_envCachedAssets.tpl rename to chart/templates/_env/_envCachedAssets.tpl diff --git a/chart/templates/_envCommon.tpl b/chart/templates/_env/_envCommon.tpl similarity index 100% rename from chart/templates/_envCommon.tpl rename to chart/templates/_env/_envCommon.tpl diff --git a/chart/templates/_envDatasetsBased.tpl b/chart/templates/_env/_envDatasetsBased.tpl similarity index 100% rename from chart/templates/_envDatasetsBased.tpl rename to chart/templates/_env/_envDatasetsBased.tpl diff --git a/chart/templates/_envLog.tpl b/chart/templates/_env/_envLog.tpl similarity index 100% rename from chart/templates/_envLog.tpl rename to chart/templates/_env/_envLog.tpl diff --git a/chart/templates/_envMetrics.tpl b/chart/templates/_env/_envMetrics.tpl similarity index 100% rename from chart/templates/_envMetrics.tpl rename to chart/templates/_env/_envMetrics.tpl diff --git a/chart/templates/_envNumba.tpl b/chart/templates/_env/_envNumba.tpl similarity index 100% rename from chart/templates/_envNumba.tpl rename to chart/templates/_env/_envNumba.tpl diff --git a/chart/templates/_envParquetMetadata.tpl b/chart/templates/_env/_envParquetMetadata.tpl similarity index 100% rename from chart/templates/_envParquetMetadata.tpl rename to chart/templates/_env/_envParquetMetadata.tpl diff --git a/chart/templates/_envQueue.tpl b/chart/templates/_env/_envQueue.tpl similarity index 100% rename from chart/templates/_envQueue.tpl rename to chart/templates/_env/_envQueue.tpl diff --git a/chart/templates/_envWorker.tpl b/chart/templates/_env/_envWorker.tpl similarity index 99% rename from chart/templates/_envWorker.tpl rename to chart/templates/_env/_envWorker.tpl index 559f6db2..1a3a08c6 100644 --- a/chart/templates/_envWorker.tpl +++ b/chart/templates/_env/_envWorker.tpl @@ -95 +94,0 @@ - diff --git a/chart/templates/_initContainerAssets.tpl b/chart/templates/_initContainers/_initContainerAssets.tpl similarity index 96% rename from chart/templates/_initContainerAssets.tpl rename to chart/templates/_initContainers/_initContainerAssets.tpl index 6b57aedc..b089d860 100644 --- a/chart/templates/_initContainerAssets.tpl +++ b/chart/templates/_initContainers/_initContainerAssets.tpl @@ -14 +14 @@ - name: data + name: volume-nfs diff --git a/chart/templates/_initContainerCachedAssets.tpl b/chart/templates/_initContainers/_initContainerCachedAssets.tpl similarity index 96% rename from chart/templates/_initContainerCachedAssets.tpl rename to chart/templates/_initContainers/_initContainerCachedAssets.tpl index d4a603b2..13d9d753 100644 --- a/chart/templates/_initContainerCachedAssets.tpl +++ b/chart/templates/_initContainers/_initContainerCachedAssets.tpl @@ -14 +14 @@ - name: data + name: volume-nfs diff --git a/chart/templates/_initContainerDescriptiveStatistics.tpl b/chart/templates/_initContainers/_initContainerDescriptiveStatistics.tpl similarity index 87% rename from chart/templates/_initContainerDescriptiveStatistics.tpl rename to chart/templates/_initContainers/_initContainerDescriptiveStatistics.tpl index 2664075c..b22f6ccd 100644 --- a/chart/templates/_initContainerDescriptiveStatistics.tpl +++ b/chart/templates/_initContainers/_initContainerDescriptiveStatistics.tpl @@ -5 +5 @@ -- name: compute-descriptive-statistics +- name: prepare-descriptive-statistics @@ -14 +14 @@ - name: statistics-data + name: volume-descriptive-statistics diff --git a/chart/templates/_initContainerDuckDBIndex.tpl b/chart/templates/_initContainers/_initContainerDuckDBIndex.tpl similarity index 94% rename from chart/templates/_initContainerDuckDBIndex.tpl rename to chart/templates/_initContainers/_initContainerDuckDBIndex.tpl index 59cbf584..3dc2297c 100644 --- a/chart/templates/_initContainerDuckDBIndex.tpl +++ b/chart/templates/_initContainers/_initContainerDuckDBIndex.tpl @@ -14 +14 @@ - name: duckdb-data + name: volume-duckdb-index diff --git a/chart/templates/_initContainerCache.tpl b/chart/templates/_initContainers/_initContainerHfDatasetsCache.tpl similarity index 71% rename from chart/templates/_initContainerCache.tpl rename to chart/templates/_initContainers/_initContainerHfDatasetsCache.tpl index 22a2dc72..3339eb5e 100644 --- a/chart/templates/_initContainerCache.tpl +++ b/chart/templates/_initContainers/_initContainerHfDatasetsCache.tpl @@ -4,2 +4,2 @@ -{{- define "initContainerCache" -}} -- name: prepare-cache +{{- define "initContainerHfDatasetsCache" -}} +- name: prepare-hf-datasets-cache @@ -14,2 +14,2 @@ - name: cache-data - subPath: "{{ include "cache.subpath" . }}" + name: volume-hf-datasets-cache + subPath: "{{ include "hfDatasetsCache.subpath" . }}" diff --git a/chart/templates/_initContainerParquetMetadata.tpl b/chart/templates/_initContainers/_initContainerParquetMetadata.tpl similarity index 96% rename from chart/templates/_initContainerParquetMetadata.tpl rename to chart/templates/_initContainers/_initContainerParquetMetadata.tpl index fb7fa696..2473cff7 100644 --- a/chart/templates/_initContainerParquetMetadata.tpl +++ b/chart/templates/_initContainers/_initContainerParquetMetadata.tpl @@ -14 +14 @@ - name: data + name: volume-nfs diff --git a/chart/templates/_volumeCache.tpl b/chart/templates/_volumeCache.tpl deleted file mode 100644 index 871cd087..00000000 --- a/chart/templates/_volumeCache.tpl +++ /dev/null @@ -1,8 +0,0 @@ -# SPDX-License-Identifier: Apache-2.0 -# Copyright 2022 The HuggingFace Authors. - -{{- define "volumeCache" -}} -- name: cache-data - persistentVolumeClaim: - claimName: {{ .Values.cachePersistence.existingClaim | default (include "name" .) }} -{{- end -}} diff --git a/chart/templates/_volumeData.tpl b/chart/templates/_volumeData.tpl deleted file mode 100644 index 34e22ae8..00000000 --- a/chart/templates/_volumeData.tpl +++ /dev/null @@ -1,8 +0,0 @@ -# SPDX-License-Identifier: Apache-2.0 -# Copyright 2022 The HuggingFace Authors. - -{{- define "volumeData" -}} -- name: data - persistentVolumeClaim: - claimName: {{ .Values.persistence.existingClaim | default (include "name" .) }} -{{- end -}} diff --git a/chart/templates/_volumeDuckDB.tpl b/chart/templates/_volumeDuckDB.tpl deleted file mode 100644 index 4beb9367..00000000 --- a/chart/templates/_volumeDuckDB.tpl +++ /dev/null @@ -1,8 +0,0 @@ -# SPDX-License-Identifier: Apache-2.0 -# Copyright 2022 The HuggingFace Authors. - -{{- define "volumeDuckDB" -}} -- name: duckdb-data - persistentVolumeClaim: - claimName: {{ .Values.duckdbPersistence.existingClaim | default (include "name" .) }} -{{- end -}} diff --git a/chart/templates/_volumeMountCache.tpl b/chart/templates/_volumeMountCache.tpl deleted file mode 100644 index 08541bc6..00000000 --- a/chart/templates/_volumeMountCache.tpl +++ /dev/null @@ -1,10 +0,0 @@ -# SPDX-License-Identifier: Apache-2.0 -# Copyright 2022 The HuggingFace Authors. - -{{- define "volumeMountCache" -}} -- mountPath: {{ .Values.cacheDirectory | quote }} - mountPropagation: None - name: cache-data - subPath: "{{ include "cache.subpath" . }}" - readOnly: false -{{- end -}} diff --git a/chart/templates/_volumeMountAssets.tpl b/chart/templates/_volumeMounts/_volumeMountAssets.tpl similarity index 92% rename from chart/templates/_volumeMountAssets.tpl rename to chart/templates/_volumeMounts/_volumeMountAssets.tpl index ab4911bb..0ad6c07b 100644 --- a/chart/templates/_volumeMountAssets.tpl +++ b/chart/templates/_volumeMounts/_volumeMountAssets.tpl @@ -7 +7 @@ - name: data + name: volume-nfs @@ -15 +15 @@ - name: data + name: volume-nfs diff --git a/chart/templates/_volumeMountCachedAssets.tpl b/chart/templates/_volumeMounts/_volumeMountCachedAssets.tpl similarity index 93% rename from chart/templates/_volumeMountCachedAssets.tpl rename to chart/templates/_volumeMounts/_volumeMountCachedAssets.tpl index 7ee8dcf1..c7431945 100644 --- a/chart/templates/_volumeMountCachedAssets.tpl +++ b/chart/templates/_volumeMounts/_volumeMountCachedAssets.tpl @@ -7 +7 @@ - name: data + name: volume-nfs @@ -15 +15 @@ - name: data + name: volume-nfs diff --git a/chart/templates/_volumeMountDescriptiveStatistics.tpl b/chart/templates/_volumeMounts/_volumeMountDescriptiveStatistics.tpl similarity index 89% rename from chart/templates/_volumeMountDescriptiveStatistics.tpl rename to chart/templates/_volumeMounts/_volumeMountDescriptiveStatistics.tpl index bc61c1c8..85b8db07 100644 --- a/chart/templates/_volumeMountDescriptiveStatistics.tpl +++ b/chart/templates/_volumeMounts/_volumeMountDescriptiveStatistics.tpl @@ -7 +7 @@ - name: statistics-data + name: volume-descriptive-statistics diff --git a/chart/templates/_volumeMountDuckDBIndex.tpl b/chart/templates/_volumeMounts/_volumeMountDuckDBIndex.tpl similarity index 91% rename from chart/templates/_volumeMountDuckDBIndex.tpl rename to chart/templates/_volumeMounts/_volumeMountDuckDBIndex.tpl index e4f9f9c7..38743458 100644 --- a/chart/templates/_volumeMountDuckDBIndex.tpl +++ b/chart/templates/_volumeMounts/_volumeMountDuckDBIndex.tpl @@ -7 +7 @@ - name: duckdb-data + name: volume-duckdb-index diff --git a/chart/templates/_volumeMounts/_volumeMountHfDatasetsCache.tpl b/chart/templates/_volumeMounts/_volumeMountHfDatasetsCache.tpl new file mode 100644 index 00000000..cd5ccda0 --- /dev/null +++ b/chart/templates/_volumeMounts/_volumeMountHfDatasetsCache.tpl @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2022 The HuggingFace Authors. + +{{- define "volumeMountHfDatasetsCacheRW" -}} +- mountPath: {{ .Values.hfDatasetsCache.cacheDirectory | quote }} + mountPropagation: None + name: volume-hf-datasets-cache + subPath: "{{ include "hfDatasetsCache.subpath" . }}" + readOnly: false +{{- end -}} diff --git a/chart/templates/_volumeMountParquetMetadata.tpl b/chart/templates/_volumeMounts/_volumeMountParquetMetadata.tpl similarity index 93% rename from chart/templates/_volumeMountParquetMetadata.tpl rename to chart/templates/_volumeMounts/_volumeMountParquetMetadata.tpl index 9c3fc40e..1f0b92e1 100644 --- a/chart/templates/_volumeMountParquetMetadata.tpl +++ b/chart/templates/_volumeMounts/_volumeMountParquetMetadata.tpl @@ -7 +7 @@ - name: data + name: volume-nfs @@ -15 +15 @@ - name: data + name: volume-nfs diff --git a/chart/templates/_volumeStatistics.tpl b/chart/templates/_volumeStatistics.tpl deleted file mode 100644 index dd215b31..00000000 --- a/chart/templates/_volumeStatistics.tpl +++ /dev/null @@ -1,8 +0,0 @@ -# SPDX-License-Identifier: Apache-2.0 -# Copyright 2023 The HuggingFace Authors. - -{{- define "volumeStatistics" -}} -- name: statistics-data - persistentVolumeClaim: - claimName: {{ .Values.statisticsPersistence.existingClaim | default (include "name" .) }} -{{- end -}} \ No newline at end of file diff --git a/chart/templates/_volumes/_volumeDescriptiveStatistics.tpl b/chart/templates/_volumes/_volumeDescriptiveStatistics.tpl new file mode 100644 index 00000000..6a36aa05 --- /dev/null +++ b/chart/templates/_volumes/_volumeDescriptiveStatistics.tpl @@ -0,0 +1,8 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +{{- define "volumeDescriptiveStatistics" -}} +- name: volume-descriptive-statistics + persistentVolumeClaim: + claimName: {{ .Values.persistence.descriptiveStatistics.existingClaim | default (include "name" .) }} +{{- end -}} diff --git a/chart/templates/_volumes/_volumeDuckDBIndex.tpl b/chart/templates/_volumes/_volumeDuckDBIndex.tpl new file mode 100644 index 00000000..8e8415fc --- /dev/null +++ b/chart/templates/_volumes/_volumeDuckDBIndex.tpl @@ -0,0 +1,8 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2022 The HuggingFace Authors. + +{{- define "volumeDuckDBIndex" -}} +- name: volume-duckdb-index + persistentVolumeClaim: + claimName: {{ .Values.persistence.duckDBIndex.existingClaim | default (include "name" .) }} +{{- end -}} diff --git a/chart/templates/_volumes/_volumeHfDatasetsCache.tpl b/chart/templates/_volumes/_volumeHfDatasetsCache.tpl new file mode 100644 index 00000000..d4001db9 --- /dev/null +++ b/chart/templates/_volumes/_volumeHfDatasetsCache.tpl @@ -0,0 +1,8 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2022 The HuggingFace Authors. + +{{- define "volumeHfDatasetsCache" -}} +- name: volume-hf-datasets-cache + persistentVolumeClaim: + claimName: {{ .Values.persistence.hfDatasetsCache.existingClaim | default (include "name" .) }} +{{- end -}} diff --git a/chart/templates/_volumes/_volumeNfs.tpl b/chart/templates/_volumes/_volumeNfs.tpl new file mode 100644 index 00000000..aab41e6c --- /dev/null +++ b/chart/templates/_volumes/_volumeNfs.tpl @@ -0,0 +1,8 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2022 The HuggingFace Authors. + +{{- define "volumeNfs" -}} +- name: volume-nfs + persistentVolumeClaim: + claimName: {{ .Values.persistence.nfs.existingClaim | default (include "name" .) }} +{{- end -}} diff --git a/chart/templates/pvc.yaml b/chart/templates/pvc.yaml index a4302245..6525c2e0 100644 --- a/chart/templates/pvc.yaml +++ b/chart/templates/pvc.yaml @@ -1 +1 @@ -{{- if (not .Values.persistence.existingClaim) }} +{{- if (not .Values.persistence.nfs.existingClaim) }} @@ -13,3 +13,3 @@ spec: - storage: {{ .Values.persistence.size }} - {{ if ne "" .Values.persistence.storageClass }} - storageClassName: {{ .Values.persistence.storageClass }} + storage: {{ .Values.persistence.nfs.size }} + {{ if ne "" .Values.persistence.nfs.storageClass }} + storageClassName: {{ .Values.persistence.nfs.storageClass }} diff --git a/chart/templates/reverse-proxy/deployment.yaml b/chart/templates/reverse-proxy/deployment.yaml index b20f26e0..dd904666 100644 --- a/chart/templates/reverse-proxy/deployment.yaml +++ b/chart/templates/reverse-proxy/deployment.yaml @@ -36 +36 @@ spec: - {{ include "volumeData" . | nindent 6 }} + {{ include "volumeNfs" . | nindent 6 }} diff --git a/chart/templates/services/admin/_container.tpl b/chart/templates/services/admin/_container.tpl index f6e3ea1f..e23a6d44 100644 --- a/chart/templates/services/admin/_container.tpl +++ b/chart/templates/services/admin/_container.tpl @@ -10 +9,0 @@ - {{ include "envCachedAssets" . | nindent 2 }} @@ -41 +39,0 @@ - {{ include "volumeMountCachedAssetsRO" . | nindent 2 }} diff --git a/chart/templates/services/admin/deployment.yaml b/chart/templates/services/admin/deployment.yaml index 0956f452..0ce17115 100644 --- a/chart/templates/services/admin/deployment.yaml +++ b/chart/templates/services/admin/deployment.yaml @@ -29 +28,0 @@ spec: - {{ include "initContainerCachedAssets" . | nindent 8 }} @@ -33 +32 @@ spec: - volumes: {{ include "volumeData" . | nindent 8 }} + volumes: {{ include "volumeNfs" . | nindent 8 }} diff --git a/chart/templates/services/api/deployment.yaml b/chart/templates/services/api/deployment.yaml index fada7a93..65a62975 100644 --- a/chart/templates/services/api/deployment.yaml +++ b/chart/templates/services/api/deployment.yaml @@ -30 +29,0 @@ spec: - volumes: {{ include "volumeData" . | nindent 8 }} diff --git a/chart/templates/services/rows/deployment.yaml b/chart/templates/services/rows/deployment.yaml index b04eee90..65ac6c48 100644 --- a/chart/templates/services/rows/deployment.yaml +++ b/chart/templates/services/rows/deployment.yaml @@ -34 +34 @@ spec: - {{ include "volumeData" . | nindent 8 }} + {{ include "volumeNfs" . | nindent 8 }} diff --git a/chart/templates/storage-admin/_container.tpl b/chart/templates/storage-admin/_container.tpl index 83b1dce2..a580cb73 100644 --- a/chart/templates/storage-admin/_container.tpl +++ b/chart/templates/storage-admin/_container.tpl @@ -10 +10 @@ - {{ include "volumeMountCache" . | nindent 2 }} + {{ include "volumeMountHfDatasetsCacheRW" . | nindent 2 }} @@ -13,0 +14,16 @@ + - mountPath: /volumes/descriptive-statistics + mountPropagation: None + name: volume-descriptive-statistics + readOnly: false + - mountPath: /volumes/duckdb-index + mountPropagation: None + name: volume-duckdb-index + readOnly: false + - mountPath: /volumes/hf-datasets-cache + mountPropagation: None + name: volume-hf-datasets-cache + readOnly: false + - mountPath: /volumes/nfs + mountPropagation: None + name: volume-nfs + readOnly: false diff --git a/chart/templates/storage-admin/deployment.yaml b/chart/templates/storage-admin/deployment.yaml index 21c53c18..3fcfac7d 100644 --- a/chart/templates/storage-admin/deployment.yaml +++ b/chart/templates/storage-admin/deployment.yaml @@ -22 +22 @@ spec: - {{ include "initContainerCache" . | nindent 8 }} + {{ include "initContainerHfDatasetsCache" . | nindent 8 }} @@ -30,4 +30,4 @@ spec: - {{ include "volumeCache" . | nindent 8 }} - {{ include "volumeData" . | nindent 8 }} - {{ include "volumeDuckDB" . | nindent 8 }} - {{ include "volumeStatistics" . | nindent 8 }} + {{ include "volumeHfDatasetsCache" . | nindent 8 }} + {{ include "volumeNfs" . | nindent 8 }} + {{ include "volumeDuckDBIndex" . | nindent 8 }} + {{ include "volumeDescriptiveStatistics" . | nindent 8 }} diff --git a/chart/templates/worker/_container.tpl b/chart/templates/worker/_container.tpl index b78c641c..93c31fa5 100644 --- a/chart/templates/worker/_container.tpl +++ b/chart/templates/worker/_container.tpl @@ -11,2 +10,0 @@ - {{ include "envParquetMetadata" . | nindent 2 }} - {{ include "envQueue" . | nindent 2 }} @@ -14,2 +11,0 @@ - {{ include "envLog" . | nindent 2 }} - {{ include "envWorker" . | nindent 2 }} @@ -16,0 +13 @@ + {{ include "envLog" . | nindent 2 }} @@ -17,0 +15,3 @@ + {{ include "envParquetMetadata" . | nindent 2 }} + {{ include "envQueue" . | nindent 2 }} + {{ include "envWorker" . | nindent 2 }} @@ -19 +19 @@ - value: {{ printf "%s/%s/datasets" .Values.cacheDirectory .workerValues.deployName | quote }} + value: {{ printf "%s/%s/datasets" .Values.hfDatasetsCache.cacheDirectory .workerValues.deployName | quote }} @@ -30,3 +29,0 @@ - {{ include "volumeMountCache" . | nindent 2 }} - {{ include "volumeMountParquetMetadataRW" . | nindent 2 }} - {{ include "volumeMountDuckDBIndexRW" . | nindent 2 }} @@ -33,0 +31,3 @@ + {{ include "volumeMountDuckDBIndexRW" . | nindent 2 }} + {{ include "volumeMountHfDatasetsCacheRW" . | nindent 2 }} + {{ include "volumeMountParquetMetadataRW" . | nindent 2 }} diff --git a/chart/templates/worker/_deployment.yaml b/chart/templates/worker/_deployment.yaml index 23187dd5..e51a9852 100644 --- a/chart/templates/worker/_deployment.yaml +++ b/chart/templates/worker/_deployment.yaml @@ -28,3 +27,0 @@ spec: - {{ include "initContainerCache" . | nindent 8 }} - {{ include "initContainerParquetMetadata" . | nindent 8 }} - {{ include "initContainerDuckDBIndex" . | nindent 8 }} @@ -31,0 +29,3 @@ spec: + {{ include "initContainerDuckDBIndex" . | nindent 8 }} + {{ include "initContainerHfDatasetsCache" . | nindent 8 }} + {{ include "initContainerParquetMetadata" . | nindent 8 }} @@ -36,4 +36,4 @@ spec: - {{ include "volumeCache" . | nindent 8 }} - {{ include "volumeData" . | nindent 8 }} - {{ include "volumeDuckDB" . | nindent 8 }} - {{ include "volumeStatistics" . | nindent 8 }} + {{ include "volumeDescriptiveStatistics" . | nindent 8 }} + {{ include "volumeDuckDBIndex" . | nindent 8 }} + {{ include "volumeHfDatasetsCache" . | nindent 8 }} + {{ include "volumeNfs" . | nindent 8 }} diff --git a/chart/values.yaml b/chart/values.yaml index 518ac37f..3c074a0f 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -104,15 +104,12 @@ persistence: - existingClaim: "" - storageClass: "" - size: 20Gi - -cachePersistence: - existingClaim: "" - -parquetPersistence: - existingClaim: "" - -duckdbPersistence: - existingClaim: "" - -statisticsPersistence: - existingClaim: "" + descriptiveStatistics: + existingClaim: "" + duckDBIndex: + existingClaim: "" + hfDatasetsCache: + existingClaim: "" + nfs: + existingClaim: "" + storageClass: "" + size: 20Gi + parquet: + existingClaim: "" @@ -222 +219 @@ assets: - storageDirectory: "/assets" + storageDirectory: "/storage/assets" @@ -228 +225 @@ cachedAssets: - storageDirectory: "/cached-assets" + storageDirectory: "/storage/cached-assets" @@ -241 +238 @@ parquetMetadata: - storageDirectory: "/parquet-metadata" + storageDirectory: "/storage/parquet-metadata" @@ -245 +242 @@ duckDBIndex: - cacheDirectory: "/duckdb-index" + cacheDirectory: "/storage/duckdb-index" @@ -257 +254 @@ descriptiveStatistics: - cacheDirectory: "/stats-cache" + cacheDirectory: "/storage/stats-cache" @@ -263,2 +260,3 @@ descriptiveStatistics: -# Directory where the cache data will be stored -cacheDirectory: "/datasets-server-cache" +hfDatasetsCache: + # Directory where the HF datasets cache data will be stored + cacheDirectory: "/storage/hf-datasets-cache" diff --git a/services/api/src/api/config.py b/services/api/src/api/config.py index 65cb0ac8..b38defd0 100644 --- a/services/api/src/api/config.py +++ b/services/api/src/api/config.py @@ -10 +9,0 @@ from libcommon.config import ( - CachedAssetsConfig, @@ -22 +20,0 @@ class AppConfig: - cached_assets: CachedAssetsConfig = field(default_factory=CachedAssetsConfig) @@ -34 +31,0 @@ class AppConfig: - cached_assets=CachedAssetsConfig.from_env(), diff --git a/services/api/tests/conftest.py b/services/api/tests/conftest.py index 8a66ca24..9270a750 100644 --- a/services/api/tests/conftest.py +++ b/services/api/tests/conftest.py @@ -11 +10,0 @@ from libcommon.simple_cache import _clean_cache_database -from libcommon.storage import StrPath, init_cached_assets_dir @@ -127,5 +125,0 @@ def hf_auth_path(app_config: AppConfig) -> str: - - -@fixture -def cached_assets_directory(app_config: AppConfig) -> StrPath: - return init_cached_assets_dir(app_config.cached_assets.storage_directory)
deb708ae737a2f8da51b74c1ca4a489c4ff39b51
Sylvain Lesage
2023-08-02T14:16:23
fix: 🐛 fix vulnerability in cryptography (#1603)
diff --git a/libs/libapi/poetry.lock b/libs/libapi/poetry.lock index e8440393..e9f5f658 100644 --- a/libs/libapi/poetry.lock +++ b/libs/libapi/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. @@ -561 +561 @@ name = "cryptography" -version = "41.0.2" +version = "41.0.3" @@ -567,23 +567,23 @@ files = [ - {file = "cryptography-41.0.2-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:01f1d9e537f9a15b037d5d9ee442b8c22e3ae11ce65ea1f3316a41c78756b711"}, - {file = "cryptography-41.0.2-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:079347de771f9282fbfe0e0236c716686950c19dee1b76240ab09ce1624d76d7"}, - {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:439c3cc4c0d42fa999b83ded80a9a1fb54d53c58d6e59234cfe97f241e6c781d"}, - {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f14ad275364c8b4e525d018f6716537ae7b6d369c094805cae45300847e0894f"}, - {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:84609ade00a6ec59a89729e87a503c6e36af98ddcd566d5f3be52e29ba993182"}, - {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:49c3222bb8f8e800aead2e376cbef687bc9e3cb9b58b29a261210456a7783d83"}, - {file = "cryptography-41.0.2-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:d73f419a56d74fef257955f51b18d046f3506270a5fd2ac5febbfa259d6c0fa5"}, - {file = "cryptography-41.0.2-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:2a034bf7d9ca894720f2ec1d8b7b5832d7e363571828037f9e0c4f18c1b58a58"}, - {file = "cryptography-41.0.2-cp37-abi3-win32.whl", hash = "sha256:d124682c7a23c9764e54ca9ab5b308b14b18eba02722b8659fb238546de83a76"}, - {file = "cryptography-41.0.2-cp37-abi3-win_amd64.whl", hash = "sha256:9c3fe6534d59d071ee82081ca3d71eed3210f76ebd0361798c74abc2bcf347d4"}, - {file = "cryptography-41.0.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a719399b99377b218dac6cf547b6ec54e6ef20207b6165126a280b0ce97e0d2a"}, - {file = "cryptography-41.0.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:182be4171f9332b6741ee818ec27daff9fb00349f706629f5cbf417bd50e66fd"}, - {file = "cryptography-41.0.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:7a9a3bced53b7f09da251685224d6a260c3cb291768f54954e28f03ef14e3766"}, - {file = "cryptography-41.0.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:f0dc40e6f7aa37af01aba07277d3d64d5a03dc66d682097541ec4da03cc140ee"}, - {file = "cryptography-41.0.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:674b669d5daa64206c38e507808aae49904c988fa0a71c935e7006a3e1e83831"}, - {file = "cryptography-41.0.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7af244b012711a26196450d34f483357e42aeddb04128885d95a69bd8b14b69b"}, - {file = "cryptography-41.0.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:9b6d717393dbae53d4e52684ef4f022444fc1cce3c48c38cb74fca29e1f08eaa"}, - {file = "cryptography-41.0.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:192255f539d7a89f2102d07d7375b1e0a81f7478925b3bc2e0549ebf739dae0e"}, - {file = "cryptography-41.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f772610fe364372de33d76edcd313636a25684edb94cee53fd790195f5989d14"}, - {file = "cryptography-41.0.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:b332cba64d99a70c1e0836902720887fb4529ea49ea7f5462cf6640e095e11d2"}, - {file = "cryptography-41.0.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:9a6673c1828db6270b76b22cc696f40cde9043eb90373da5c2f8f2158957f42f"}, - {file = "cryptography-41.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:342f3767e25876751e14f8459ad85e77e660537ca0a066e10e75df9c9e9099f0"}, - {file = "cryptography-41.0.2.tar.gz", hash = "sha256:7d230bf856164de164ecb615ccc14c7fc6de6906ddd5b491f3af90d3514c925c"}, + {file = "cryptography-41.0.3-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:652627a055cb52a84f8c448185922241dd5217443ca194d5739b44612c5e6507"}, + {file = "cryptography-41.0.3-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:8f09daa483aedea50d249ef98ed500569841d6498aa9c9f4b0531b9964658922"}, + {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4fd871184321100fb400d759ad0cddddf284c4b696568204d281c902fc7b0d81"}, + {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84537453d57f55a50a5b6835622ee405816999a7113267739a1b4581f83535bd"}, + {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:3fb248989b6363906827284cd20cca63bb1a757e0a2864d4c1682a985e3dca47"}, + {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:42cb413e01a5d36da9929baa9d70ca90d90b969269e5a12d39c1e0d475010116"}, + {file = "cryptography-41.0.3-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:aeb57c421b34af8f9fe830e1955bf493a86a7996cc1338fe41b30047d16e962c"}, + {file = "cryptography-41.0.3-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:6af1c6387c531cd364b72c28daa29232162010d952ceb7e5ca8e2827526aceae"}, + {file = "cryptography-41.0.3-cp37-abi3-win32.whl", hash = "sha256:0d09fb5356f975974dbcb595ad2d178305e5050656affb7890a1583f5e02a306"}, + {file = "cryptography-41.0.3-cp37-abi3-win_amd64.whl", hash = "sha256:a983e441a00a9d57a4d7c91b3116a37ae602907a7618b882c8013b5762e80574"}, + {file = "cryptography-41.0.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5259cb659aa43005eb55a0e4ff2c825ca111a0da1814202c64d28a985d33b087"}, + {file = "cryptography-41.0.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:67e120e9a577c64fe1f611e53b30b3e69744e5910ff3b6e97e935aeb96005858"}, + {file = "cryptography-41.0.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:7efe8041897fe7a50863e51b77789b657a133c75c3b094e51b5e4b5cec7bf906"}, + {file = "cryptography-41.0.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ce785cf81a7bdade534297ef9e490ddff800d956625020ab2ec2780a556c313e"}, + {file = "cryptography-41.0.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:57a51b89f954f216a81c9d057bf1a24e2f36e764a1ca9a501a6964eb4a6800dd"}, + {file = "cryptography-41.0.3-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:4c2f0d35703d61002a2bbdcf15548ebb701cfdd83cdc12471d2bae80878a4207"}, + {file = "cryptography-41.0.3-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:23c2d778cf829f7d0ae180600b17e9fceea3c2ef8b31a99e3c694cbbf3a24b84"}, + {file = "cryptography-41.0.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:95dd7f261bb76948b52a5330ba5202b91a26fbac13ad0e9fc8a3ac04752058c7"}, + {file = "cryptography-41.0.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:41d7aa7cdfded09b3d73a47f429c298e80796c8e825ddfadc84c8a7f12df212d"}, + {file = "cryptography-41.0.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:d0d651aa754ef58d75cec6edfbd21259d93810b73f6ec246436a21b7841908de"}, + {file = "cryptography-41.0.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:ab8de0d091acbf778f74286f4989cf3d1528336af1b59f3e5d2ebca8b5fe49e1"}, + {file = "cryptography-41.0.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a74fbcdb2a0d46fe00504f571a2a540532f4c188e6ccf26f1f178480117b33c4"}, + {file = "cryptography-41.0.3.tar.gz", hash = "sha256:6d192741113ef5e30d89dcb5b956ef4e1578f304708701b8b73d38e3e1461f34"}, diff --git a/services/api/poetry.lock b/services/api/poetry.lock index 42cfb1b6..44f0a9f5 100644 --- a/services/api/poetry.lock +++ b/services/api/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. @@ -561 +561 @@ name = "cryptography" -version = "41.0.2" +version = "41.0.3" @@ -567,23 +567,23 @@ files = [ - {file = "cryptography-41.0.2-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:01f1d9e537f9a15b037d5d9ee442b8c22e3ae11ce65ea1f3316a41c78756b711"}, - {file = "cryptography-41.0.2-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:079347de771f9282fbfe0e0236c716686950c19dee1b76240ab09ce1624d76d7"}, - {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:439c3cc4c0d42fa999b83ded80a9a1fb54d53c58d6e59234cfe97f241e6c781d"}, - {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f14ad275364c8b4e525d018f6716537ae7b6d369c094805cae45300847e0894f"}, - {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:84609ade00a6ec59a89729e87a503c6e36af98ddcd566d5f3be52e29ba993182"}, - {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:49c3222bb8f8e800aead2e376cbef687bc9e3cb9b58b29a261210456a7783d83"}, - {file = "cryptography-41.0.2-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:d73f419a56d74fef257955f51b18d046f3506270a5fd2ac5febbfa259d6c0fa5"}, - {file = "cryptography-41.0.2-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:2a034bf7d9ca894720f2ec1d8b7b5832d7e363571828037f9e0c4f18c1b58a58"}, - {file = "cryptography-41.0.2-cp37-abi3-win32.whl", hash = "sha256:d124682c7a23c9764e54ca9ab5b308b14b18eba02722b8659fb238546de83a76"}, - {file = "cryptography-41.0.2-cp37-abi3-win_amd64.whl", hash = "sha256:9c3fe6534d59d071ee82081ca3d71eed3210f76ebd0361798c74abc2bcf347d4"}, - {file = "cryptography-41.0.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a719399b99377b218dac6cf547b6ec54e6ef20207b6165126a280b0ce97e0d2a"}, - {file = "cryptography-41.0.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:182be4171f9332b6741ee818ec27daff9fb00349f706629f5cbf417bd50e66fd"}, - {file = "cryptography-41.0.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:7a9a3bced53b7f09da251685224d6a260c3cb291768f54954e28f03ef14e3766"}, - {file = "cryptography-41.0.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:f0dc40e6f7aa37af01aba07277d3d64d5a03dc66d682097541ec4da03cc140ee"}, - {file = "cryptography-41.0.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:674b669d5daa64206c38e507808aae49904c988fa0a71c935e7006a3e1e83831"}, - {file = "cryptography-41.0.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7af244b012711a26196450d34f483357e42aeddb04128885d95a69bd8b14b69b"}, - {file = "cryptography-41.0.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:9b6d717393dbae53d4e52684ef4f022444fc1cce3c48c38cb74fca29e1f08eaa"}, - {file = "cryptography-41.0.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:192255f539d7a89f2102d07d7375b1e0a81f7478925b3bc2e0549ebf739dae0e"}, - {file = "cryptography-41.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f772610fe364372de33d76edcd313636a25684edb94cee53fd790195f5989d14"}, - {file = "cryptography-41.0.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:b332cba64d99a70c1e0836902720887fb4529ea49ea7f5462cf6640e095e11d2"}, - {file = "cryptography-41.0.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:9a6673c1828db6270b76b22cc696f40cde9043eb90373da5c2f8f2158957f42f"}, - {file = "cryptography-41.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:342f3767e25876751e14f8459ad85e77e660537ca0a066e10e75df9c9e9099f0"}, - {file = "cryptography-41.0.2.tar.gz", hash = "sha256:7d230bf856164de164ecb615ccc14c7fc6de6906ddd5b491f3af90d3514c925c"}, + {file = "cryptography-41.0.3-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:652627a055cb52a84f8c448185922241dd5217443ca194d5739b44612c5e6507"}, + {file = "cryptography-41.0.3-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:8f09daa483aedea50d249ef98ed500569841d6498aa9c9f4b0531b9964658922"}, + {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4fd871184321100fb400d759ad0cddddf284c4b696568204d281c902fc7b0d81"}, + {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84537453d57f55a50a5b6835622ee405816999a7113267739a1b4581f83535bd"}, + {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:3fb248989b6363906827284cd20cca63bb1a757e0a2864d4c1682a985e3dca47"}, + {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:42cb413e01a5d36da9929baa9d70ca90d90b969269e5a12d39c1e0d475010116"}, + {file = "cryptography-41.0.3-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:aeb57c421b34af8f9fe830e1955bf493a86a7996cc1338fe41b30047d16e962c"}, + {file = "cryptography-41.0.3-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:6af1c6387c531cd364b72c28daa29232162010d952ceb7e5ca8e2827526aceae"}, + {file = "cryptography-41.0.3-cp37-abi3-win32.whl", hash = "sha256:0d09fb5356f975974dbcb595ad2d178305e5050656affb7890a1583f5e02a306"}, + {file = "cryptography-41.0.3-cp37-abi3-win_amd64.whl", hash = "sha256:a983e441a00a9d57a4d7c91b3116a37ae602907a7618b882c8013b5762e80574"}, + {file = "cryptography-41.0.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5259cb659aa43005eb55a0e4ff2c825ca111a0da1814202c64d28a985d33b087"}, + {file = "cryptography-41.0.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:67e120e9a577c64fe1f611e53b30b3e69744e5910ff3b6e97e935aeb96005858"}, + {file = "cryptography-41.0.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:7efe8041897fe7a50863e51b77789b657a133c75c3b094e51b5e4b5cec7bf906"}, + {file = "cryptography-41.0.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ce785cf81a7bdade534297ef9e490ddff800d956625020ab2ec2780a556c313e"}, + {file = "cryptography-41.0.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:57a51b89f954f216a81c9d057bf1a24e2f36e764a1ca9a501a6964eb4a6800dd"}, + {file = "cryptography-41.0.3-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:4c2f0d35703d61002a2bbdcf15548ebb701cfdd83cdc12471d2bae80878a4207"}, + {file = "cryptography-41.0.3-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:23c2d778cf829f7d0ae180600b17e9fceea3c2ef8b31a99e3c694cbbf3a24b84"}, + {file = "cryptography-41.0.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:95dd7f261bb76948b52a5330ba5202b91a26fbac13ad0e9fc8a3ac04752058c7"}, + {file = "cryptography-41.0.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:41d7aa7cdfded09b3d73a47f429c298e80796c8e825ddfadc84c8a7f12df212d"}, + {file = "cryptography-41.0.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:d0d651aa754ef58d75cec6edfbd21259d93810b73f6ec246436a21b7841908de"}, + {file = "cryptography-41.0.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:ab8de0d091acbf778f74286f4989cf3d1528336af1b59f3e5d2ebca8b5fe49e1"}, + {file = "cryptography-41.0.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a74fbcdb2a0d46fe00504f571a2a540532f4c188e6ccf26f1f178480117b33c4"}, + {file = "cryptography-41.0.3.tar.gz", hash = "sha256:6d192741113ef5e30d89dcb5b956ef4e1578f304708701b8b73d38e3e1461f34"}, diff --git a/services/rows/poetry.lock b/services/rows/poetry.lock index be9199a9..bb29db8a 100644 --- a/services/rows/poetry.lock +++ b/services/rows/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. @@ -561 +561 @@ name = "cryptography" -version = "41.0.2" +version = "41.0.3" @@ -567,23 +567,23 @@ files = [ - {file = "cryptography-41.0.2-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:01f1d9e537f9a15b037d5d9ee442b8c22e3ae11ce65ea1f3316a41c78756b711"}, - {file = "cryptography-41.0.2-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:079347de771f9282fbfe0e0236c716686950c19dee1b76240ab09ce1624d76d7"}, - {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:439c3cc4c0d42fa999b83ded80a9a1fb54d53c58d6e59234cfe97f241e6c781d"}, - {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f14ad275364c8b4e525d018f6716537ae7b6d369c094805cae45300847e0894f"}, - {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:84609ade00a6ec59a89729e87a503c6e36af98ddcd566d5f3be52e29ba993182"}, - {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:49c3222bb8f8e800aead2e376cbef687bc9e3cb9b58b29a261210456a7783d83"}, - {file = "cryptography-41.0.2-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:d73f419a56d74fef257955f51b18d046f3506270a5fd2ac5febbfa259d6c0fa5"}, - {file = "cryptography-41.0.2-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:2a034bf7d9ca894720f2ec1d8b7b5832d7e363571828037f9e0c4f18c1b58a58"}, - {file = "cryptography-41.0.2-cp37-abi3-win32.whl", hash = "sha256:d124682c7a23c9764e54ca9ab5b308b14b18eba02722b8659fb238546de83a76"}, - {file = "cryptography-41.0.2-cp37-abi3-win_amd64.whl", hash = "sha256:9c3fe6534d59d071ee82081ca3d71eed3210f76ebd0361798c74abc2bcf347d4"}, - {file = "cryptography-41.0.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a719399b99377b218dac6cf547b6ec54e6ef20207b6165126a280b0ce97e0d2a"}, - {file = "cryptography-41.0.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:182be4171f9332b6741ee818ec27daff9fb00349f706629f5cbf417bd50e66fd"}, - {file = "cryptography-41.0.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:7a9a3bced53b7f09da251685224d6a260c3cb291768f54954e28f03ef14e3766"}, - {file = "cryptography-41.0.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:f0dc40e6f7aa37af01aba07277d3d64d5a03dc66d682097541ec4da03cc140ee"}, - {file = "cryptography-41.0.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:674b669d5daa64206c38e507808aae49904c988fa0a71c935e7006a3e1e83831"}, - {file = "cryptography-41.0.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7af244b012711a26196450d34f483357e42aeddb04128885d95a69bd8b14b69b"}, - {file = "cryptography-41.0.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:9b6d717393dbae53d4e52684ef4f022444fc1cce3c48c38cb74fca29e1f08eaa"}, - {file = "cryptography-41.0.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:192255f539d7a89f2102d07d7375b1e0a81f7478925b3bc2e0549ebf739dae0e"}, - {file = "cryptography-41.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f772610fe364372de33d76edcd313636a25684edb94cee53fd790195f5989d14"}, - {file = "cryptography-41.0.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:b332cba64d99a70c1e0836902720887fb4529ea49ea7f5462cf6640e095e11d2"}, - {file = "cryptography-41.0.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:9a6673c1828db6270b76b22cc696f40cde9043eb90373da5c2f8f2158957f42f"}, - {file = "cryptography-41.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:342f3767e25876751e14f8459ad85e77e660537ca0a066e10e75df9c9e9099f0"}, - {file = "cryptography-41.0.2.tar.gz", hash = "sha256:7d230bf856164de164ecb615ccc14c7fc6de6906ddd5b491f3af90d3514c925c"}, + {file = "cryptography-41.0.3-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:652627a055cb52a84f8c448185922241dd5217443ca194d5739b44612c5e6507"}, + {file = "cryptography-41.0.3-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:8f09daa483aedea50d249ef98ed500569841d6498aa9c9f4b0531b9964658922"}, + {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4fd871184321100fb400d759ad0cddddf284c4b696568204d281c902fc7b0d81"}, + {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:84537453d57f55a50a5b6835622ee405816999a7113267739a1b4581f83535bd"}, + {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:3fb248989b6363906827284cd20cca63bb1a757e0a2864d4c1682a985e3dca47"}, + {file = "cryptography-41.0.3-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:42cb413e01a5d36da9929baa9d70ca90d90b969269e5a12d39c1e0d475010116"}, + {file = "cryptography-41.0.3-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:aeb57c421b34af8f9fe830e1955bf493a86a7996cc1338fe41b30047d16e962c"}, + {file = "cryptography-41.0.3-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:6af1c6387c531cd364b72c28daa29232162010d952ceb7e5ca8e2827526aceae"}, + {file = "cryptography-41.0.3-cp37-abi3-win32.whl", hash = "sha256:0d09fb5356f975974dbcb595ad2d178305e5050656affb7890a1583f5e02a306"}, + {file = "cryptography-41.0.3-cp37-abi3-win_amd64.whl", hash = "sha256:a983e441a00a9d57a4d7c91b3116a37ae602907a7618b882c8013b5762e80574"}, + {file = "cryptography-41.0.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5259cb659aa43005eb55a0e4ff2c825ca111a0da1814202c64d28a985d33b087"}, + {file = "cryptography-41.0.3-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:67e120e9a577c64fe1f611e53b30b3e69744e5910ff3b6e97e935aeb96005858"}, + {file = "cryptography-41.0.3-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:7efe8041897fe7a50863e51b77789b657a133c75c3b094e51b5e4b5cec7bf906"}, + {file = "cryptography-41.0.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:ce785cf81a7bdade534297ef9e490ddff800d956625020ab2ec2780a556c313e"}, + {file = "cryptography-41.0.3-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:57a51b89f954f216a81c9d057bf1a24e2f36e764a1ca9a501a6964eb4a6800dd"}, + {file = "cryptography-41.0.3-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:4c2f0d35703d61002a2bbdcf15548ebb701cfdd83cdc12471d2bae80878a4207"}, + {file = "cryptography-41.0.3-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:23c2d778cf829f7d0ae180600b17e9fceea3c2ef8b31a99e3c694cbbf3a24b84"}, + {file = "cryptography-41.0.3-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:95dd7f261bb76948b52a5330ba5202b91a26fbac13ad0e9fc8a3ac04752058c7"}, + {file = "cryptography-41.0.3-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:41d7aa7cdfded09b3d73a47f429c298e80796c8e825ddfadc84c8a7f12df212d"}, + {file = "cryptography-41.0.3-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:d0d651aa754ef58d75cec6edfbd21259d93810b73f6ec246436a21b7841908de"}, + {file = "cryptography-41.0.3-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:ab8de0d091acbf778f74286f4989cf3d1528336af1b59f3e5d2ebca8b5fe49e1"}, + {file = "cryptography-41.0.3-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:a74fbcdb2a0d46fe00504f571a2a540532f4c188e6ccf26f1f178480117b33c4"}, + {file = "cryptography-41.0.3.tar.gz", hash = "sha256:6d192741113ef5e30d89dcb5b956ef4e1578f304708701b8b73d38e3e1461f34"}, diff --git a/services/worker/poetry.lock b/services/worker/poetry.lock index a1104a04..92a583b1 100644 --- a/services/worker/poetry.lock +++ b/services/worker/poetry.lock @@ -2923,0 +2924 @@ files = [ + {file = "pdf2image-1.16.3.tar.gz", hash = "sha256:74208810c2cef4d9e347769b8e62a52303982ddb4f2dfd744c7ab4b940ae287e"}, @@ -4434,0 +4436 @@ files = [ + {file = "soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc"}, @@ -4914,0 +4917 @@ url = "https://download.pytorch.org/whl/cpu/torch-1.13.1-cp39-none-macosx_11_0_a + @@ -4934,0 +4938 @@ url = "https://download.pytorch.org/whl/torch-1.13.1-cp39-cp39-manylinux2014_aar +
83d99c509fa124b95247597ceb7e8cc129bc6b56
Sylvain Lesage
2023-08-01T21:43:52
feat: 🎸 increment the chart version (#1600)
diff --git a/chart/Chart.yaml b/chart/Chart.yaml index 7dd7166c..41c55baa 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -21 +21 @@ type: application -version: 1.15.1 +version: 1.15.2
899da2bd66fbf0cd0a6231d7205e33586dec7486
Sylvain Lesage
2023-08-01T21:41:28
fix: 🐛 fix statistics volume (#1599)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 3eb295f0..fad011bb 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -321 +321 @@ workers: - replicas: 24 + replicas: 40 @@ -338 +338 @@ workers: - replicas: 8 + replicas: 15 diff --git a/chart/templates/_volumeMountDescriptiveStatistics.tpl b/chart/templates/_volumeMountDescriptiveStatistics.tpl index 699416ef..bc61c1c8 100644 --- a/chart/templates/_volumeMountDescriptiveStatistics.tpl +++ b/chart/templates/_volumeMountDescriptiveStatistics.tpl @@ -7 +7 @@ - name: data + name: statistics-data
20df31b0655903ae1a798205c09b37b686b9d329
Sylvain Lesage
2023-08-01T21:12:32
feat: 🎸 give more RAM to backfill script (#1598)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 2b9da5ca..3eb295f0 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -171 +171 @@ backfill: - schedule: "0 * * * *" + schedule: "20 21 * * *" @@ -176,0 +177 @@ backfill: + memory: "4Gi" @@ -178,2 +179,2 @@ backfill: - cpu: 1 - memory: "512Mi" + cpu: 2 + memory: "8Gi"
a60a7f120d73df0d677a5a69423eceed3bc43d5d
Sylvain Lesage
2023-08-01T20:53:03
feat: 🎸 fix temporarily the backfill cron (#1597)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 4e5f9049..2b9da5ca 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -171 +171 @@ backfill: - schedule: "45 * * * *" + schedule: "0 * * * *"
3dc6d32c1fa5b0f2d28697f49dcd2a155c8e71a6
Sylvain Lesage
2023-08-01T20:41:20
Fix backfill job (#1596)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 880af022..4e5f9049 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -171 +171 @@ backfill: - schedule: "00 */4 * * *" + schedule: "45 * * * *" diff --git a/jobs/cache_maintenance/src/cache_maintenance/backfill.py b/jobs/cache_maintenance/src/cache_maintenance/backfill.py index a64bbad6..000a5411 100644 --- a/jobs/cache_maintenance/src/cache_maintenance/backfill.py +++ b/jobs/cache_maintenance/src/cache_maintenance/backfill.py @@ -47,10 +47,18 @@ def backfill_cache( - dataset_orchestrator = DatasetOrchestrator(dataset=dataset, processing_graph=processing_graph) - created_jobs = dataset_orchestrator.backfill( - revision=str(dataset_info.sha), - priority=Priority.LOW, - error_codes_to_retry=error_codes_to_retry, - cache_max_days=cache_max_days, - ) - if created_jobs > 0: - backfilled_datasets += 1 - total_created_jobs += created_jobs + try: + dataset_orchestrator = DatasetOrchestrator(dataset=dataset, processing_graph=processing_graph) + except Exception as e: + logging.warning(f"failed to create DatasetOrchestrator for {dataset_info}: {e}") + continue + try: + created_jobs = dataset_orchestrator.backfill( + revision=str(dataset_info.sha), + priority=Priority.LOW, + error_codes_to_retry=error_codes_to_retry, + cache_max_days=cache_max_days, + ) + if created_jobs > 0: + backfilled_datasets += 1 + total_created_jobs += created_jobs + except Exception as e: + logging.warning(f"failed to backfill {dataset_info}: {e}") + continue
89b8ee536542bf588bb4160c2383b63aef1d270d
Sylvain Lesage
2023-08-01T20:38:48
Fix descriptive statistics env var (#1595)
diff --git a/chart/Chart.yaml b/chart/Chart.yaml index b8e32aef..7dd7166c 100644 --- a/chart/Chart.yaml +++ b/chart/Chart.yaml @@ -29 +29 @@ version: 1.15.1 -appVersion: "0.21.1" +appVersion: "0.21.2" diff --git a/chart/templates/_envWorker.tpl b/chart/templates/_envWorker.tpl index 54e51c1b..559f6db2 100644 --- a/chart/templates/_envWorker.tpl +++ b/chart/templates/_envWorker.tpl @@ -115,2 +115,2 @@ -- name: DUCKDB_INDEX_STORAGE_DIRECTORY - value: {{ .Values.duckDBIndex.storageDirectory | quote }} +- name: DUCKDB_INDEX_CACHE_DIRECTORY + value: {{ .Values.duckDBIndex.cacheDirectory | quote }} @@ -124,2 +124,2 @@ -- name: DESCRIPTIVE_STATISTICS_STORAGE_DIRECTORY - value: {{ .Values.descriptiveStatistics.storageDirectory | quote }} +- name: DESCRIPTIVE_STATISTICS_CACHE_DIRECTORY + value: {{ .Values.descriptiveStatistics.cacheDirectory | quote }} diff --git a/chart/templates/_volumeMountDescriptiveStatistics.tpl b/chart/templates/_volumeMountDescriptiveStatistics.tpl index 35efc290..699416ef 100644 --- a/chart/templates/_volumeMountDescriptiveStatistics.tpl +++ b/chart/templates/_volumeMountDescriptiveStatistics.tpl @@ -5 +5 @@ -- mountPath: {{ .Values.descriptiveStatistics.storageDirectory | quote }} +- mountPath: {{ .Values.descriptiveStatistics.cacheDirectory | quote }} diff --git a/chart/templates/_volumeMountDuckDBIndex.tpl b/chart/templates/_volumeMountDuckDBIndex.tpl index 6b148c97..e4f9f9c7 100644 --- a/chart/templates/_volumeMountDuckDBIndex.tpl +++ b/chart/templates/_volumeMountDuckDBIndex.tpl @@ -5 +5 @@ -- mountPath: {{ .Values.duckDBIndex.storageDirectory | quote }} +- mountPath: {{ .Values.duckDBIndex.cacheDirectory | quote }} diff --git a/chart/templates/storage-admin/_container.tpl b/chart/templates/storage-admin/_container.tpl index f9b97b42..83b1dce2 100644 --- a/chart/templates/storage-admin/_container.tpl +++ b/chart/templates/storage-admin/_container.tpl @@ -8,5 +8,6 @@ - volumeMounts: - - mountPath: /data - mountPropagation: None - name: data - readOnly: false + volumeMounts: + {{ include "volumeMountAssetsRW" . | nindent 2 }} + {{ include "volumeMountCache" . | nindent 2 }} + {{ include "volumeMountParquetMetadataRW" . | nindent 2 }} + {{ include "volumeMountDuckDBIndexRW" . | nindent 2 }} + {{ include "volumeMountDescriptiveStatisticsRW" . | nindent 2 }} diff --git a/chart/templates/storage-admin/deployment.yaml b/chart/templates/storage-admin/deployment.yaml index ca1bf5d3..21c53c18 100644 --- a/chart/templates/storage-admin/deployment.yaml +++ b/chart/templates/storage-admin/deployment.yaml @@ -19,0 +20,6 @@ spec: + initContainers: + {{ include "initContainerAssets" . | nindent 8 }} + {{ include "initContainerCache" . | nindent 8 }} + {{ include "initContainerParquetMetadata" . | nindent 8 }} + {{ include "initContainerDuckDBIndex" . | nindent 8 }} + {{ include "initContainerDescriptiveStatistics" . | nindent 8 }} @@ -23 +29,5 @@ spec: - volumes: {{ include "volumeData" . | nindent 6 }} + volumes: + {{ include "volumeCache" . | nindent 8 }} + {{ include "volumeData" . | nindent 8 }} + {{ include "volumeDuckDB" . | nindent 8 }} + {{ include "volumeStatistics" . | nindent 8 }} diff --git a/chart/templates/worker/_deployment.yaml b/chart/templates/worker/_deployment.yaml index d0c8317f..23187dd5 100644 --- a/chart/templates/worker/_deployment.yaml +++ b/chart/templates/worker/_deployment.yaml @@ -30,0 +31 @@ spec: + {{ include "initContainerDescriptiveStatistics" . | nindent 8 }} diff --git a/chart/values.yaml b/chart/values.yaml index 167c40ca..518ac37f 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -245 +245 @@ duckDBIndex: - storageDirectory: "/duckdb-index" + cacheDirectory: "/duckdb-index" @@ -257 +257 @@ descriptiveStatistics: - storageDirectory: "/stats-cache" + cacheDirectory: "/stats-cache" diff --git a/libs/libcommon/src/libcommon/config.py b/libs/libcommon/src/libcommon/config.py index 31814db8..7db3fc80 100644 --- a/libs/libcommon/src/libcommon/config.py +++ b/libs/libcommon/src/libcommon/config.py @@ -67 +67 @@ class CachedAssetsConfig: - storage_directory: Optional[str] = ASSETS_STORAGE_DIRECTORY + storage_directory: Optional[str] = CACHED_ASSETS_STORAGE_DIRECTORY diff --git a/services/worker/README.md b/services/worker/README.md index d3a5edb0..8b4b430f 100644 --- a/services/worker/README.md +++ b/services/worker/README.md @@ -87 +87 @@ Set environment variables to configure the `duckdb-index` worker (`DUCKDB_INDEX_ -- `DUCKDB_INDEX_STORAGE_DIRECTORY`: directory where the temporal duckdb index files are stored. Defaults to empty. +- `DUCKDB_INDEX_CACHE_DIRECTORY`: directory where the temporal duckdb index files are stored. Defaults to empty. diff --git a/services/worker/src/worker/config.py b/services/worker/src/worker/config.py index a8876a7b..1a33da61 100644 --- a/services/worker/src/worker/config.py +++ b/services/worker/src/worker/config.py @@ -254 +254 @@ class ConfigNamesConfig: -DUCKDB_INDEX_STORAGE_DIRECTORY = None +DUCKDB_INDEX_CACHE_DIRECTORY = None @@ -265 +265 @@ class DuckDbIndexConfig: - storage_directory: Optional[str] = DUCKDB_INDEX_STORAGE_DIRECTORY + cache_directory: Optional[str] = DUCKDB_INDEX_CACHE_DIRECTORY @@ -278 +278 @@ class DuckDbIndexConfig: - storage_directory=env.str(name="STORAGE_DIRECTORY", default=DUCKDB_INDEX_STORAGE_DIRECTORY), + cache_directory=env.str(name="CACHE_DIRECTORY", default=DUCKDB_INDEX_CACHE_DIRECTORY), @@ -306 +306 @@ class DescriptiveStatisticsConfig: - cache_directory=env.str(name="STORAGE_DIRECTORY", default=DESCRIPTIVE_STATISTICS_CACHE_DIRECTORY), + cache_directory=env.str(name="CACHE_DIRECTORY", default=DESCRIPTIVE_STATISTICS_CACHE_DIRECTORY), diff --git a/services/worker/src/worker/main.py b/services/worker/src/worker/main.py index 1a6f3a13..bcaa055f 100644 --- a/services/worker/src/worker/main.py +++ b/services/worker/src/worker/main.py @@ -35 +35 @@ if __name__ == "__main__": - duckdb_index_cache_directory = init_duckdb_index_cache_dir(directory=app_config.duckdb_index.storage_directory) + duckdb_index_cache_directory = init_duckdb_index_cache_dir(directory=app_config.duckdb_index.cache_directory) diff --git a/services/worker/src/worker/start_worker_loop.py b/services/worker/src/worker/start_worker_loop.py index a94cbb9e..93fd436f 100644 --- a/services/worker/src/worker/start_worker_loop.py +++ b/services/worker/src/worker/start_worker_loop.py @@ -34 +34 @@ if __name__ == "__main__": - duckdb_index_cache_directory = init_duckdb_index_cache_dir(directory=app_config.duckdb_index.storage_directory) + duckdb_index_cache_directory = init_duckdb_index_cache_dir(directory=app_config.duckdb_index.cache_directory) diff --git a/services/worker/tests/conftest.py b/services/worker/tests/conftest.py index 45336f41..1a82ed4a 100644 --- a/services/worker/tests/conftest.py +++ b/services/worker/tests/conftest.py @@ -137 +137 @@ def duckdb_index_cache_directory(app_config: AppConfig) -> StrPath: - return init_duckdb_index_cache_dir(app_config.duckdb_index.storage_directory) + return init_duckdb_index_cache_dir(app_config.duckdb_index.cache_directory) diff --git a/tools/docker-compose-datasets-server.yml b/tools/docker-compose-datasets-server.yml index fa736d68..faf65c3d 100644 --- a/tools/docker-compose-datasets-server.yml +++ b/tools/docker-compose-datasets-server.yml @@ -123 +123 @@ services: - - duckdb-index:${DUCKDB_INDEX_STORAGE_DIRECTORY-/duckdb-index}:rw + - duckdb-index:${DUCKDB_INDEX_CACHE_DIRECTORY-/duckdb-index}:rw @@ -134 +134 @@ services: - DUCKDB_INDEX_STORAGE_DIRECTORY: ${DUCKDB_INDEX_STORAGE_DIRECTORY-/duckdb-index} + DUCKDB_INDEX_CACHE_DIRECTORY: ${DUCKDB_INDEX_CACHE_DIRECTORY-/duckdb-index} diff --git a/tools/docker-compose-dev-datasets-server.yml b/tools/docker-compose-dev-datasets-server.yml index a79211bd..e0c24871 100644 --- a/tools/docker-compose-dev-datasets-server.yml +++ b/tools/docker-compose-dev-datasets-server.yml @@ -128 +128 @@ services: - - duckdb-index:${DUCKDB_INDEX_STORAGE_DIRECTORY-/duckdb-index}:rw + - duckdb-index:${DUCKDB_INDEX_CACHE_DIRECTORY-/duckdb-index}:rw @@ -139 +139 @@ services: - DUCKDB_INDEX_STORAGE_DIRECTORY: ${DUCKDB_INDEX_STORAGE_DIRECTORY-/duckdb-index} + DUCKDB_INDEX_CACHE_DIRECTORY: ${DUCKDB_INDEX_CACHE_DIRECTORY-/duckdb-index}
5a3fc78668e200d0c3e219da24ff2da04360bfe5
Andrea Francis Soria Jimenez
2023-08-01T20:27:00
Fix id from 0 and enable parquet 5G (#1594)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 9dfcf97d..880af022 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -129,0 +130,3 @@ optInOutUrlsScan: +duckDBIndex: + maxParquetSizeBytes: "5_000_000_000" + diff --git a/libs/libcommon/src/libcommon/constants.py b/libs/libcommon/src/libcommon/constants.py index 720dc163..0813a6d2 100644 --- a/libs/libcommon/src/libcommon/constants.py +++ b/libs/libcommon/src/libcommon/constants.py @@ -40 +40 @@ PROCESSING_STEP_DATASET_SPLIT_NAMES_VERSION = 3 -PROCESSING_STEP_SPLIT_DUCKDB_INDEX_VERSION = 1 +PROCESSING_STEP_SPLIT_DUCKDB_INDEX_VERSION = 2 diff --git a/services/worker/src/worker/job_runners/split/duckdb_index.py b/services/worker/src/worker/job_runners/split/duckdb_index.py index c452850c..5c9921d1 100644 --- a/services/worker/src/worker/job_runners/split/duckdb_index.py +++ b/services/worker/src/worker/job_runners/split/duckdb_index.py @@ -50 +50 @@ DUCKDB_DEFAULT_INDEX_FILENAME = "index.duckdb" -CREATE_SEQUENCE_COMMAND = "CREATE OR REPLACE SEQUENCE serial START 1;" +CREATE_SEQUENCE_COMMAND = "CREATE OR REPLACE SEQUENCE serial START 0 MINVALUE 0;" diff --git a/services/worker/tests/job_runners/split/test_duckdb_index.py b/services/worker/tests/job_runners/split/test_duckdb_index.py index ead4aed4..87997d25 100644 --- a/services/worker/tests/job_runners/split/test_duckdb_index.py +++ b/services/worker/tests/job_runners/split/test_duckdb_index.py @@ -227 +227 @@ def test_compute( - "SELECT text FROM data WHERE fts_main_data.match_bm25(__hf_index_id, ?) IS NOT NULL;", + "SELECT __hf_index_id, text FROM data WHERE fts_main_data.match_bm25(__hf_index_id, ?) IS NOT NULL;", @@ -240,0 +241 @@ def test_compute( + assert (rows["__hf_index_id"].isin([0, 2, 3, 4, 5, 7, 8, 9])).all()
f76bfd7946bc70fb059be06e6bc5264fc3604a10
Sylvain Lesage
2023-08-01T19:17:19
feat: 🎸 cron every 4 hours (my calculation was wrong) (#1593)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index eb470bf0..9dfcf97d 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -168,2 +168,2 @@ backfill: - schedule: "00 */8 * * *" - # every eight hours + schedule: "00 */4 * * *" + # every four hours
76f1855f40e0a392b4a11639e61e80e30790ec6d
Sylvain Lesage
2023-08-01T19:10:32
feat: 🎸 increase rate of backfill (#1592)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 6bb34087..eb470bf0 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -168,2 +168,2 @@ backfill: - schedule: "00 12 * * *" - # every day at 12:00 + schedule: "00 */8 * * *" + # every eight hours
05f7fb495eea2566628dfcb5d2066d68e2c42cbc
Sylvain Lesage
2023-07-31T21:40:44
feat: 🎸 adapt examples to new format of the API response (#1590)
diff --git a/docs/source/parquet.mdx b/docs/source/parquet.mdx index c9a20bc3..14f70954 100644 --- a/docs/source/parquet.mdx +++ b/docs/source/parquet.mdx @@ -212 +212 @@ curl https://huggingface.co/api/datasets/duorc/parquet \ -The endpoint response is a JSON containing a list of the dataset's files URLs in the Parquet format for each split and configuration. For example, the [`duorc`](https://huggingface.co/datasets/duorc) dataset has one Parquet file for the train split of the "ParaphraseRC" configuration (see the [List splits and configurations](./splits) guide for more details about splits and configurations). +The endpoint response is a JSON containing a list of the dataset's files URLs in the Parquet format for each split and configuration. For example, the [`duorc`](https://huggingface.co/datasets/duorc) dataset has one Parquet file for the train split of the "ParaphraseRC" configuration (see the [List splits and configurations](./splits) guide for more details about splits and configurations). @@ -218 +218 @@ The endpoint response is a JSON containing a list of the dataset's files URLs in - "https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/ParaphraseRC/duorc-test.parquet" + "https://huggingface.co/api/datasets/duorc/parquet/ParaphraseRC/test/0.parquet" @@ -221 +221 @@ The endpoint response is a JSON containing a list of the dataset's files URLs in - "https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/ParaphraseRC/duorc-train.parquet" + "https://huggingface.co/api/datasets/duorc/parquet/ParaphraseRC/train/0.parquet" @@ -224 +224 @@ The endpoint response is a JSON containing a list of the dataset's files URLs in - "https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/ParaphraseRC/duorc-validation.parquet" + "https://huggingface.co/api/datasets/duorc/parquet/ParaphraseRC/validation/0.parquet" @@ -229 +229 @@ The endpoint response is a JSON containing a list of the dataset's files URLs in - "https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/SelfRC/duorc-test.parquet" + "https://huggingface.co/api/datasets/duorc/parquet/SelfRC/test/0.parquet" @@ -232 +232 @@ The endpoint response is a JSON containing a list of the dataset's files URLs in - "https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/SelfRC/duorc-train.parquet" + "https://huggingface.co/api/datasets/duorc/parquet/SelfRC/train/0.parquet" @@ -235 +235 @@ The endpoint response is a JSON containing a list of the dataset's files URLs in - "https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/SelfRC/duorc-validation.parquet" + "https://huggingface.co/api/datasets/duorc/parquet/SelfRC/validation/0.parquet" @@ -284 +284,3 @@ curl https://huggingface.co/api/datasets/duorc/parquet/ParaphraseRC/train \ -["https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/ParaphraseRC/duorc-train.parquet"] +[ + "https://huggingface.co/api/datasets/duorc/parquet/ParaphraseRC/train/0.parquet" +]
ace9b759f78be4d71a08f60a9f15f9479ffb814a
geethika-123
2023-07-31T13:18:47
remove redundant indices (#1570)
diff --git a/libs/libcommon/src/libcommon/simple_cache.py b/libs/libcommon/src/libcommon/simple_cache.py index cf5704fa..a3a2baad 100644 --- a/libs/libcommon/src/libcommon/simple_cache.py +++ b/libs/libcommon/src/libcommon/simple_cache.py @@ -112 +111,0 @@ class CachedResponseDocument(Document): - ("kind", "http_status", "dataset"), @@ -114 +112,0 @@ class CachedResponseDocument(Document): - ("kind", "id"),
38a8aedbd064b4291ae73f040966b444cca299b1
Sylvain Lesage
2023-07-28T17:56:20
Revert logs and 'dns config revert' (#1586)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 18cea28d..6bb34087 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -111 +111 @@ log: - level: "DEBUG" + level: "INFO" diff --git a/chart/templates/_dnsConfig.tpl b/chart/templates/_dnsConfig.tpl new file mode 100644 index 00000000..629d56cf --- /dev/null +++ b/chart/templates/_dnsConfig.tpl @@ -0,0 +1,9 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2022 The HuggingFace Authors. + +{{- define "dnsConfig" -}} +dnsConfig: + options: + - name: ndots + value: "1" +{{- end -}} diff --git a/chart/templates/cron-jobs/backfill/job.yaml b/chart/templates/cron-jobs/backfill/job.yaml index 1fe18605..3e5595cc 100644 --- a/chart/templates/cron-jobs/backfill/job.yaml +++ b/chart/templates/cron-jobs/backfill/job.yaml @@ -18,0 +19 @@ spec: + {{- include "dnsConfig" . | nindent 10 }} diff --git a/chart/templates/cron-jobs/metrics-collector/job.yaml b/chart/templates/cron-jobs/metrics-collector/job.yaml index a924c8ee..0e56996f 100644 --- a/chart/templates/cron-jobs/metrics-collector/job.yaml +++ b/chart/templates/cron-jobs/metrics-collector/job.yaml @@ -18,0 +19 @@ spec: + {{- include "dnsConfig" . | nindent 10 }} diff --git a/chart/templates/jobs/cache-maintenance/job.yaml b/chart/templates/jobs/cache-maintenance/job.yaml index 6cd51f57..02c16ba0 100644 --- a/chart/templates/jobs/cache-maintenance/job.yaml +++ b/chart/templates/jobs/cache-maintenance/job.yaml @@ -19,0 +20 @@ spec: + {{- include "dnsConfig" . | nindent 6 }} diff --git a/chart/templates/jobs/mongodb-migration/job.yaml b/chart/templates/jobs/mongodb-migration/job.yaml index 84a18ef5..57836e5b 100644 --- a/chart/templates/jobs/mongodb-migration/job.yaml +++ b/chart/templates/jobs/mongodb-migration/job.yaml @@ -21,0 +22 @@ spec: + {{- include "dnsConfig" . | nindent 6 }} diff --git a/chart/templates/services/admin/deployment.yaml b/chart/templates/services/admin/deployment.yaml index 79ddd1f0..0956f452 100644 --- a/chart/templates/services/admin/deployment.yaml +++ b/chart/templates/services/admin/deployment.yaml @@ -24,0 +25 @@ spec: + {{- include "dnsConfig" . | nindent 6 }} diff --git a/chart/templates/services/api/deployment.yaml b/chart/templates/services/api/deployment.yaml index e77b45e3..fada7a93 100644 --- a/chart/templates/services/api/deployment.yaml +++ b/chart/templates/services/api/deployment.yaml @@ -24,0 +25 @@ spec: + {{- include "dnsConfig" . | nindent 6 }} diff --git a/chart/templates/services/rows/deployment.yaml b/chart/templates/services/rows/deployment.yaml index f4667a87..b04eee90 100644 --- a/chart/templates/services/rows/deployment.yaml +++ b/chart/templates/services/rows/deployment.yaml @@ -24,0 +25 @@ spec: + {{- include "dnsConfig" . | nindent 6 }} diff --git a/chart/templates/worker/_deployment.yaml b/chart/templates/worker/_deployment.yaml index 872de83b..d0c8317f 100644 --- a/chart/templates/worker/_deployment.yaml +++ b/chart/templates/worker/_deployment.yaml @@ -23,0 +24 @@ spec: + {{- include "dnsConfig" . | nindent 6 }}
379b2948beb5a2f553bf264e6ceecf743bdf0380
Sylvain Lesage
2023-07-28T17:46:44
feat: 🎸 set log level to debug in prod (#1585)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 6bb34087..18cea28d 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -111 +111 @@ log: - level: "INFO" + level: "DEBUG"
65dfd0a9e44c6f052a9a6bc4107f983e27d4156b
Sylvain Lesage
2023-07-28T17:28:10
Revert "feat: 🎸 reduce the number of DNS requests (#1581)" (#1584)
diff --git a/chart/templates/_dnsConfig.tpl b/chart/templates/_dnsConfig.tpl deleted file mode 100644 index 629d56cf..00000000 --- a/chart/templates/_dnsConfig.tpl +++ /dev/null @@ -1,9 +0,0 @@ -# SPDX-License-Identifier: Apache-2.0 -# Copyright 2022 The HuggingFace Authors. - -{{- define "dnsConfig" -}} -dnsConfig: - options: - - name: ndots - value: "1" -{{- end -}} diff --git a/chart/templates/cron-jobs/backfill/job.yaml b/chart/templates/cron-jobs/backfill/job.yaml index 3e5595cc..1fe18605 100644 --- a/chart/templates/cron-jobs/backfill/job.yaml +++ b/chart/templates/cron-jobs/backfill/job.yaml @@ -19 +18,0 @@ spec: - {{- include "dnsConfig" . | nindent 10 }} diff --git a/chart/templates/cron-jobs/metrics-collector/job.yaml b/chart/templates/cron-jobs/metrics-collector/job.yaml index 0e56996f..a924c8ee 100644 --- a/chart/templates/cron-jobs/metrics-collector/job.yaml +++ b/chart/templates/cron-jobs/metrics-collector/job.yaml @@ -19 +18,0 @@ spec: - {{- include "dnsConfig" . | nindent 10 }} diff --git a/chart/templates/jobs/cache-maintenance/job.yaml b/chart/templates/jobs/cache-maintenance/job.yaml index 02c16ba0..6cd51f57 100644 --- a/chart/templates/jobs/cache-maintenance/job.yaml +++ b/chart/templates/jobs/cache-maintenance/job.yaml @@ -20 +19,0 @@ spec: - {{- include "dnsConfig" . | nindent 6 }} diff --git a/chart/templates/jobs/mongodb-migration/job.yaml b/chart/templates/jobs/mongodb-migration/job.yaml index 57836e5b..84a18ef5 100644 --- a/chart/templates/jobs/mongodb-migration/job.yaml +++ b/chart/templates/jobs/mongodb-migration/job.yaml @@ -22 +21,0 @@ spec: - {{- include "dnsConfig" . | nindent 6 }} diff --git a/chart/templates/services/admin/deployment.yaml b/chart/templates/services/admin/deployment.yaml index 0956f452..79ddd1f0 100644 --- a/chart/templates/services/admin/deployment.yaml +++ b/chart/templates/services/admin/deployment.yaml @@ -25 +24,0 @@ spec: - {{- include "dnsConfig" . | nindent 6 }} diff --git a/chart/templates/services/api/deployment.yaml b/chart/templates/services/api/deployment.yaml index fada7a93..e77b45e3 100644 --- a/chart/templates/services/api/deployment.yaml +++ b/chart/templates/services/api/deployment.yaml @@ -25 +24,0 @@ spec: - {{- include "dnsConfig" . | nindent 6 }} diff --git a/chart/templates/services/rows/deployment.yaml b/chart/templates/services/rows/deployment.yaml index b04eee90..f4667a87 100644 --- a/chart/templates/services/rows/deployment.yaml +++ b/chart/templates/services/rows/deployment.yaml @@ -25 +24,0 @@ spec: - {{- include "dnsConfig" . | nindent 6 }} diff --git a/chart/templates/worker/_deployment.yaml b/chart/templates/worker/_deployment.yaml index d0c8317f..872de83b 100644 --- a/chart/templates/worker/_deployment.yaml +++ b/chart/templates/worker/_deployment.yaml @@ -24 +23,0 @@ spec: - {{- include "dnsConfig" . | nindent 6 }}
3302184ac87de717b3ee4930c0a45f37f432f118
Sylvain Lesage
2023-07-28T16:16:12
Add num_rows_total to /rows response (#1580)
diff --git a/libs/libapi/src/libapi/utils.py b/libs/libapi/src/libapi/utils.py index 11837371..b616ee8c 100644 --- a/libs/libapi/src/libapi/utils.py +++ b/libs/libapi/src/libapi/utils.py @@ -86 +86 @@ def are_valid_parameters(parameters: List[Any]) -> bool: -def try_backfill_dataset( +def try_backfill_dataset_then_raise( diff --git a/libs/libcommon/src/libcommon/parquet_utils.py b/libs/libcommon/src/libcommon/parquet_utils.py index 62cc8e71..58d4eed1 100644 --- a/libs/libcommon/src/libcommon/parquet_utils.py +++ b/libs/libcommon/src/libcommon/parquet_utils.py @@ -4 +4 @@ import os -from dataclasses import dataclass +from dataclasses import dataclass, field @@ -83,0 +84,2 @@ class ParquetIndexWithMetadata: + num_total_rows: int = field(init=False) + @@ -88,0 +91 @@ class ParquetIndexWithMetadata: + self.num_total_rows = sum(self.num_rows) diff --git a/services/api/src/api/routes/endpoint.py b/services/api/src/api/routes/endpoint.py index e01d22b4..b3820ae1 100644 --- a/services/api/src/api/routes/endpoint.py +++ b/services/api/src/api/routes/endpoint.py @@ -21 +21 @@ from libapi.utils import ( - try_backfill_dataset, + try_backfill_dataset_then_raise, @@ -85 +85 @@ def get_cache_entry_from_steps( - try_backfill_dataset( + try_backfill_dataset_then_raise( diff --git a/services/rows/src/rows/routes/rows.py b/services/rows/src/rows/routes/rows.py index 536c1f9e..830315d9 100644 --- a/services/rows/src/rows/routes/rows.py +++ b/services/rows/src/rows/routes/rows.py @@ -27 +27 @@ from libapi.utils import ( - try_backfill_dataset, + try_backfill_dataset_then_raise, @@ -126,0 +127 @@ def create_response( + num_total_rows: int, @@ -144,0 +146 @@ def create_response( + "num_total_rows": num_total_rows, @@ -222 +224 @@ def create_rows_endpoint( - try_backfill_dataset( + try_backfill_dataset_then_raise( @@ -264,0 +267 @@ def create_rows_endpoint( + num_total_rows=rows_index.parquet_index.num_total_rows, diff --git a/services/rows/tests/routes/test_rows.py b/services/rows/tests/routes/test_rows.py index 4422aca3..1ca6672e 100644 --- a/services/rows/tests/routes/test_rows.py +++ b/services/rows/tests/routes/test_rows.py @@ -283,0 +284 @@ def test_indexer_get_rows_index_with_parquet_metadata( + assert index.parquet_index.num_total_rows == 2 @@ -304,0 +306 @@ def test_indexer_get_rows_index_sharded_with_parquet_metadata( + assert index.parquet_index.num_total_rows == 8 @@ -336,0 +339 @@ def test_create_response(ds: Dataset, app_config: AppConfig, cached_assets_direc + num_total_rows=10, @@ -342,0 +346 @@ def test_create_response(ds: Dataset, app_config: AppConfig, cached_assets_direc + assert response["num_total_rows"] == 10 @@ -357,0 +362 @@ def test_create_response_with_image( + num_total_rows=10,
ad754cda0c26bf7d609292853f0c1681380a882e
Sylvain Lesage
2023-07-28T15:50:31
feat: 🎸 reduce the number of DNS requests (#1581)
diff --git a/chart/templates/_dnsConfig.tpl b/chart/templates/_dnsConfig.tpl new file mode 100644 index 00000000..629d56cf --- /dev/null +++ b/chart/templates/_dnsConfig.tpl @@ -0,0 +1,9 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2022 The HuggingFace Authors. + +{{- define "dnsConfig" -}} +dnsConfig: + options: + - name: ndots + value: "1" +{{- end -}} diff --git a/chart/templates/cron-jobs/backfill/job.yaml b/chart/templates/cron-jobs/backfill/job.yaml index 1fe18605..3e5595cc 100644 --- a/chart/templates/cron-jobs/backfill/job.yaml +++ b/chart/templates/cron-jobs/backfill/job.yaml @@ -18,0 +19 @@ spec: + {{- include "dnsConfig" . | nindent 10 }} diff --git a/chart/templates/cron-jobs/metrics-collector/job.yaml b/chart/templates/cron-jobs/metrics-collector/job.yaml index a924c8ee..0e56996f 100644 --- a/chart/templates/cron-jobs/metrics-collector/job.yaml +++ b/chart/templates/cron-jobs/metrics-collector/job.yaml @@ -18,0 +19 @@ spec: + {{- include "dnsConfig" . | nindent 10 }} diff --git a/chart/templates/jobs/cache-maintenance/job.yaml b/chart/templates/jobs/cache-maintenance/job.yaml index 6cd51f57..02c16ba0 100644 --- a/chart/templates/jobs/cache-maintenance/job.yaml +++ b/chart/templates/jobs/cache-maintenance/job.yaml @@ -19,0 +20 @@ spec: + {{- include "dnsConfig" . | nindent 6 }} diff --git a/chart/templates/jobs/mongodb-migration/job.yaml b/chart/templates/jobs/mongodb-migration/job.yaml index 84a18ef5..57836e5b 100644 --- a/chart/templates/jobs/mongodb-migration/job.yaml +++ b/chart/templates/jobs/mongodb-migration/job.yaml @@ -21,0 +22 @@ spec: + {{- include "dnsConfig" . | nindent 6 }} diff --git a/chart/templates/services/admin/deployment.yaml b/chart/templates/services/admin/deployment.yaml index 79ddd1f0..0956f452 100644 --- a/chart/templates/services/admin/deployment.yaml +++ b/chart/templates/services/admin/deployment.yaml @@ -24,0 +25 @@ spec: + {{- include "dnsConfig" . | nindent 6 }} diff --git a/chart/templates/services/api/deployment.yaml b/chart/templates/services/api/deployment.yaml index e77b45e3..fada7a93 100644 --- a/chart/templates/services/api/deployment.yaml +++ b/chart/templates/services/api/deployment.yaml @@ -24,0 +25 @@ spec: + {{- include "dnsConfig" . | nindent 6 }} diff --git a/chart/templates/services/rows/deployment.yaml b/chart/templates/services/rows/deployment.yaml index f4667a87..b04eee90 100644 --- a/chart/templates/services/rows/deployment.yaml +++ b/chart/templates/services/rows/deployment.yaml @@ -24,0 +25 @@ spec: + {{- include "dnsConfig" . | nindent 6 }} diff --git a/chart/templates/worker/_deployment.yaml b/chart/templates/worker/_deployment.yaml index 872de83b..d0c8317f 100644 --- a/chart/templates/worker/_deployment.yaml +++ b/chart/templates/worker/_deployment.yaml @@ -23,0 +24 @@ spec: + {{- include "dnsConfig" . | nindent 6 }}
e792862bd3968ac4b091d47a9391cb166e7a3bbe
Quentin Lhoest
2023-07-28T12:42:21
Use cached features in /rows (#1573)
diff --git a/chart/static-files/openapi.json b/chart/static-files/openapi.json index 832fd7a7..378ae7c9 100644 --- a/chart/static-files/openapi.json +++ b/chart/static-files/openapi.json @@ -2814,0 +2815,17 @@ + }, + { + "name": "config", + "in": "query", + "description": "The dataset configuration (or subset).", + "required": false, + "schema": { "type": "string" }, + "examples": { + "cola": { + "summary": "a subset of the glue dataset", + "value": "cola" + }, + "yangdong/ecqa": { + "summary": "the default configuration given by the 🤗 Datasets library", + "value": "yangdong--ecqa" + } + } @@ -2884 +2901,71 @@ - ] + ], + "pending": [], + "failed": [], + "partial": false + } + }, + "duorc with ParaphraseRC config": { + "summary": "duorc: three parquet files for ParaphraseRC, one per split", + "value": { + "parquet_files": [ + { + "dataset": "duorc", + "config": "ParaphraseRC", + "split": "test", + "url": "https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/ParaphraseRC/duorc-test.parquet", + "filename": "duorc-test.parquet", + "size": 6136590 + }, + { + "dataset": "duorc", + "config": "ParaphraseRC", + "split": "train", + "url": "https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/ParaphraseRC/duorc-train.parquet", + "filename": "duorc-train.parquet", + "size": 26005667 + }, + { + "dataset": "duorc", + "config": "ParaphraseRC", + "split": "validation", + "url": "https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/ParaphraseRC/duorc-validation.parquet", + "filename": "duorc-validation.parquet", + "size": 5566867 + } + ], + "pending": [], + "failed": [], + "partial": false, + "features": { + "plot_id": { + "dtype": "string", + "_type": "Value" + }, + "plot": { + "dtype": "string", + "_type": "Value" + }, + "title": { + "dtype": "string", + "_type": "Value" + }, + "question_id": { + "dtype": "string", + "_type": "Value" + }, + "question": { + "dtype": "string", + "_type": "Value" + }, + "answers": { + "feature": { + "dtype": "string", + "_type": "Value" + }, + "_type": "Sequence" + }, + "no_answer": { + "dtype": "bool", + "_type": "Value" + } + } @@ -2888 +2975 @@ - "summary": "alexandrainst/danish-wit: the parquet file for the train split is partitioned into 9 shards", + "summary": "alexandrainst/da-wit: the parquet file for the train split is partitioned into 9 shards", @@ -2892 +2979 @@ - "dataset": "alexandrainst/danish-wit", + "dataset": "alexandrainst/da-wit", @@ -2895 +2982 @@ - "url": "https://huggingface.co/datasets/alexandrainst/danish-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-test.parquet", + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-test.parquet", @@ -2897 +2984,17 @@ - "size": 48781933 + "size": 48684227 + }, + { + "dataset": "alexandrainst/da-wit", + "config": "alexandrainst--danish-wit", + "split": "train", + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00000-of-00017.parquet", + "filename": "parquet-train-00000-of-00017.parquet", + "size": 465549291 + }, + { + "dataset": "alexandrainst/da-wit", + "config": "alexandrainst--danish-wit", + "split": "train", + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00001-of-00017.parquet", + "filename": "parquet-train-00001-of-00017.parquet", + "size": 465701535 @@ -2900 +3003 @@ - "dataset": "alexandrainst/danish-wit", + "dataset": "alexandrainst/da-wit", @@ -2903,3 +3006,3 @@ - "url": "https://huggingface.co/datasets/alexandrainst/danish-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00000-of-00009.parquet", - "filename": "parquet-train-00000-of-00009.parquet", - "size": 937127291 + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00002-of-00017.parquet", + "filename": "parquet-train-00002-of-00017.parquet", + "size": 463857123 @@ -2908 +3011 @@ - "dataset": "alexandrainst/danish-wit", + "dataset": "alexandrainst/da-wit", @@ -2911,3 +3014,3 @@ - "url": "https://huggingface.co/datasets/alexandrainst/danish-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00001-of-00009.parquet", - "filename": "parquet-train-00001-of-00009.parquet", - "size": 925920565 + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00003-of-00017.parquet", + "filename": "parquet-train-00003-of-00017.parquet", + "size": 456197486 @@ -2916 +3019 @@ - "dataset": "alexandrainst/danish-wit", + "dataset": "alexandrainst/da-wit", @@ -2919,3 +3022,3 @@ - "url": "https://huggingface.co/datasets/alexandrainst/danish-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00002-of-00009.parquet", - "filename": "parquet-train-00002-of-00009.parquet", - "size": 940390661 + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00004-of-00017.parquet", + "filename": "parquet-train-00004-of-00017.parquet", + "size": 465412051 @@ -2924 +3027 @@ - "dataset": "alexandrainst/danish-wit", + "dataset": "alexandrainst/da-wit", @@ -2927,3 +3030,3 @@ - "url": "https://huggingface.co/datasets/alexandrainst/danish-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00003-of-00009.parquet", - "filename": "parquet-train-00003-of-00009.parquet", - "size": 934549621 + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00005-of-00017.parquet", + "filename": "parquet-train-00005-of-00017.parquet", + "size": 469114305 @@ -2932 +3035 @@ - "dataset": "alexandrainst/danish-wit", + "dataset": "alexandrainst/da-wit", @@ -2935,3 +3038,3 @@ - "url": "https://huggingface.co/datasets/alexandrainst/danish-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00004-of-00009.parquet", - "filename": "parquet-train-00004-of-00009.parquet", - "size": 493004154 + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00006-of-00017.parquet", + "filename": "parquet-train-00006-of-00017.parquet", + "size": 460338645 @@ -2940 +3043 @@ - "dataset": "alexandrainst/danish-wit", + "dataset": "alexandrainst/da-wit", @@ -2943,3 +3046,3 @@ - "url": "https://huggingface.co/datasets/alexandrainst/danish-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00005-of-00009.parquet", - "filename": "parquet-train-00005-of-00009.parquet", - "size": 942848888 + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00007-of-00017.parquet", + "filename": "parquet-train-00007-of-00017.parquet", + "size": 468309376 @@ -2948 +3051 @@ - "dataset": "alexandrainst/danish-wit", + "dataset": "alexandrainst/da-wit", @@ -2951,3 +3054,3 @@ - "url": "https://huggingface.co/datasets/alexandrainst/danish-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00006-of-00009.parquet", - "filename": "parquet-train-00006-of-00009.parquet", - "size": 933373843 + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00008-of-00017.parquet", + "filename": "parquet-train-00008-of-00017.parquet", + "size": 490063121 @@ -2956 +3059 @@ - "dataset": "alexandrainst/danish-wit", + "dataset": "alexandrainst/da-wit", @@ -2959,3 +3062,3 @@ - "url": "https://huggingface.co/datasets/alexandrainst/danish-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00007-of-00009.parquet", - "filename": "parquet-train-00007-of-00009.parquet", - "size": 936939176 + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00009-of-00017.parquet", + "filename": "parquet-train-00009-of-00017.parquet", + "size": 460462764 @@ -2964 +3067 @@ - "dataset": "alexandrainst/danish-wit", + "dataset": "alexandrainst/da-wit", @@ -2967,3 +3070,3 @@ - "url": "https://huggingface.co/datasets/alexandrainst/danish-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00008-of-00009.parquet", - "filename": "parquet-train-00008-of-00009.parquet", - "size": 946933048 + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00010-of-00017.parquet", + "filename": "parquet-train-00010-of-00017.parquet", + "size": 476525998 @@ -2972 +3075,49 @@ - "dataset": "alexandrainst/danish-wit", + "dataset": "alexandrainst/da-wit", + "config": "alexandrainst--danish-wit", + "split": "train", + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00011-of-00017.parquet", + "filename": "parquet-train-00011-of-00017.parquet", + "size": 470327354 + }, + { + "dataset": "alexandrainst/da-wit", + "config": "alexandrainst--danish-wit", + "split": "train", + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00012-of-00017.parquet", + "filename": "parquet-train-00012-of-00017.parquet", + "size": 457138334 + }, + { + "dataset": "alexandrainst/da-wit", + "config": "alexandrainst--danish-wit", + "split": "train", + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00013-of-00017.parquet", + "filename": "parquet-train-00013-of-00017.parquet", + "size": 464485292 + }, + { + "dataset": "alexandrainst/da-wit", + "config": "alexandrainst--danish-wit", + "split": "train", + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00014-of-00017.parquet", + "filename": "parquet-train-00014-of-00017.parquet", + "size": 466549376 + }, + { + "dataset": "alexandrainst/da-wit", + "config": "alexandrainst--danish-wit", + "split": "train", + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00015-of-00017.parquet", + "filename": "parquet-train-00015-of-00017.parquet", + "size": 460452174 + }, + { + "dataset": "alexandrainst/da-wit", + "config": "alexandrainst--danish-wit", + "split": "train", + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-train-00016-of-00017.parquet", + "filename": "parquet-train-00016-of-00017.parquet", + "size": 480583533 + }, + { + "dataset": "alexandrainst/da-wit", @@ -2975 +3126 @@ - "url": "https://huggingface.co/datasets/alexandrainst/danish-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-val.parquet", + "url": "https://huggingface.co/datasets/alexandrainst/da-wit/resolve/refs%2Fconvert%2Fparquet/alexandrainst--danish-wit/parquet-val.parquet", @@ -2977 +3128 @@ - "size": 11437355 + "size": 11434278 @@ -2979 +3130,4 @@ - ] + ], + "pending": [], + "failed": [], + "partial": false diff --git a/libs/libcommon/src/libcommon/constants.py b/libs/libcommon/src/libcommon/constants.py index aaf7b219..720dc163 100644 --- a/libs/libcommon/src/libcommon/constants.py +++ b/libs/libcommon/src/libcommon/constants.py @@ -28,2 +28,2 @@ PROCESSING_STEP_CONFIG_PARQUET_AND_INFO_VERSION = 3 -PROCESSING_STEP_CONFIG_PARQUET_METADATA_VERSION = 1 -PROCESSING_STEP_CONFIG_PARQUET_VERSION = 5 +PROCESSING_STEP_CONFIG_PARQUET_METADATA_VERSION = 2 +PROCESSING_STEP_CONFIG_PARQUET_VERSION = 6 diff --git a/libs/libcommon/src/libcommon/parquet_utils.py b/libs/libcommon/src/libcommon/parquet_utils.py index 98605220..62cc8e71 100644 --- a/libs/libcommon/src/libcommon/parquet_utils.py +++ b/libs/libcommon/src/libcommon/parquet_utils.py @@ -11 +11,2 @@ import pyarrow.parquet as pq -from datasets import Features +from datasets import Features, Value +from datasets.features.features import FeatureType, _visit @@ -46 +47 @@ def get_supported_unsupported_columns( - unsupported_features_magic_strings: List[str] = [], + unsupported_features: List[FeatureType] = [], @@ -51 +51,0 @@ def get_supported_unsupported_columns( - str_feature = str(feature) @@ -53,3 +53,13 @@ def get_supported_unsupported_columns( - if any(magic_string in str_feature for magic_string in unsupported_features_magic_strings): - unsupported_columns.append(str_column) - else: + supported = True + + def classify(feature: FeatureType) -> None: + nonlocal supported + for unsupported_feature in unsupported_features: + if type(unsupported_feature) == type(feature) == Value: + if unsupported_feature.dtype == feature.dtype: + supported = False + elif type(unsupported_feature) == type(feature): + supported = False + + _visit(feature, classify) + if supported: @@ -56,0 +67,2 @@ def get_supported_unsupported_columns( + else: + unsupported_columns.append(str_column) @@ -162,0 +175 @@ class ParquetIndexWithMetadata: + features: Optional[Features], @@ -166 +179 @@ class ParquetIndexWithMetadata: - unsupported_features_magic_strings: List[str] = [], + unsupported_features: List[FeatureType] = [], @@ -192 +205,2 @@ class ParquetIndexWithMetadata: - features = Features.from_arrow_schema(pq.read_schema(metadata_paths[0])) + if features is None: # config-parquet version<6 didn't have features + features = Features.from_arrow_schema(pq.read_schema(metadata_paths[0])) @@ -195 +209 @@ class ParquetIndexWithMetadata: - unsupported_features_magic_strings=unsupported_features_magic_strings, + unsupported_features=unsupported_features, @@ -220 +234 @@ class RowsIndex: - unsupported_features_magic_strings: List[str] = [], + unsupported_features: List[FeatureType] = [], @@ -231 +245 @@ class RowsIndex: - unsupported_features_magic_strings=unsupported_features_magic_strings, + unsupported_features=unsupported_features, @@ -238 +252 @@ class RowsIndex: - unsupported_features_magic_strings: List[str] = [], + unsupported_features: List[FeatureType] = [], @@ -254,0 +269,4 @@ class RowsIndex: + if content.get("features"): # config-parquet-metadata version<2 didn't have features + features = Features.from_dict(content["features"]) + else: + features = None @@ -263,0 +282 @@ class RowsIndex: + features=features, @@ -267 +286 @@ class RowsIndex: - unsupported_features_magic_strings=unsupported_features_magic_strings, + unsupported_features=unsupported_features, @@ -298 +317 @@ class Indexer: - unsupported_features_magic_strings: List[str] = [], + unsupported_features: List[FeatureType] = [], @@ -306 +325 @@ class Indexer: - self.unsupported_features_magic_strings = unsupported_features_magic_strings + self.unsupported_features = unsupported_features @@ -316 +335 @@ class Indexer: - filter_magic_strings = ( + filter_features = ( @@ -320 +339 @@ class Indexer: - unsupported_features_magic_strings = self.unsupported_features_magic_strings if filter_magic_strings else [] + unsupported_features = self.unsupported_features if filter_features else [] @@ -329 +348 @@ class Indexer: - unsupported_features_magic_strings=unsupported_features_magic_strings, + unsupported_features=unsupported_features, diff --git a/libs/libcommon/src/libcommon/simple_cache.py b/libs/libcommon/src/libcommon/simple_cache.py index 2d2d897a..cf5704fa 100644 --- a/libs/libcommon/src/libcommon/simple_cache.py +++ b/libs/libcommon/src/libcommon/simple_cache.py @@ -19,0 +20 @@ from typing import ( + overload, @@ -194,0 +196,30 @@ def delete_dataset_responses(dataset: str) -> Optional[int]: +T = TypeVar("T") + + +@overload +def _clean_nested_mongo_object(obj: Dict[str, T]) -> Dict[str, T]: + ... + + +@overload +def _clean_nested_mongo_object(obj: List[T]) -> List[T]: + ... + + +@overload +def _clean_nested_mongo_object(obj: T) -> T: + ... + + +def _clean_nested_mongo_object(obj: Any) -> Any: + """get rid of BaseDict and BaseList objects from mongo (Feature.from_dict doesn't support them)""" + if isinstance(obj, dict): + return {k: _clean_nested_mongo_object(v) for k, v in obj.items()} + elif isinstance(obj, list): + return [_clean_nested_mongo_object(v) for v in obj] + elif isinstance(obj, tuple): + return tuple(_clean_nested_mongo_object(v) for v in obj) + else: + return obj + + @@ -307 +338 @@ def get_response(kind: str, dataset: str, config: Optional[str] = None, split: O - "content": response.content, + "content": _clean_nested_mongo_object(response.content), @@ -337 +368 @@ def get_response_with_details( - "content": response.content, + "content": _clean_nested_mongo_object(response.content), @@ -343 +374 @@ def get_response_with_details( - "details": response.details, + "details": _clean_nested_mongo_object(response.details), @@ -553 +584 @@ def get_cache_reports(kind: str, cursor: Optional[str], limit: int) -> CacheRepo - "details": object.details, + "details": _clean_nested_mongo_object(object.details), @@ -584 +615 @@ def get_dataset_responses_without_content_for_kind(kind: str, dataset: str) -> L - "details": response.details, + "details": _clean_nested_mongo_object(response.details), @@ -646 +677 @@ def get_cache_reports_with_content(kind: str, cursor: Optional[str], limit: int) - "content": object.content, + "content": _clean_nested_mongo_object(object.content), @@ -649 +680 @@ def get_cache_reports_with_content(kind: str, cursor: Optional[str], limit: int) - "details": object.details, + "details": _clean_nested_mongo_object(object.details), diff --git a/services/rows/src/rows/routes/rows.py b/services/rows/src/rows/routes/rows.py index d6f9f578..536c1f9e 100644 --- a/services/rows/src/rows/routes/rows.py +++ b/services/rows/src/rows/routes/rows.py @@ -12 +12 @@ import pyarrow as pa -from datasets import Features +from datasets import Audio, Features, Value @@ -51 +51 @@ ALL_COLUMNS_SUPPORTED_DATASETS_ALLOW_LIST: Union[Literal["all"], List[str]] = [" -UNSUPPORTED_FEATURES_MAGIC_STRINGS = ["'binary'", "Audio("] +UNSUPPORTED_FEATURES = [Value("binary"), Audio()] @@ -172 +172 @@ def create_rows_endpoint( - unsupported_features_magic_strings=UNSUPPORTED_FEATURES_MAGIC_STRINGS, + unsupported_features=UNSUPPORTED_FEATURES, diff --git a/services/rows/tests/routes/test_rows.py b/services/rows/tests/routes/test_rows.py index f40c27b8..4422aca3 100644 --- a/services/rows/tests/routes/test_rows.py +++ b/services/rows/tests/routes/test_rows.py @@ -14 +14 @@ import pytest -from datasets import Dataset, Image, concatenate_datasets +from datasets import Audio, Dataset, Features, Image, Value, concatenate_datasets @@ -18 +18,6 @@ from fsspec.implementations.http import HTTPFileSystem -from libcommon.parquet_utils import Indexer, ParquetIndexWithMetadata, RowsIndex +from libcommon.parquet_utils import ( + Indexer, + ParquetIndexWithMetadata, + RowsIndex, + get_supported_unsupported_columns, +) @@ -435,0 +441,19 @@ def test_update_last_modified_date_of_rows_in_assets_dir(tmp_path: Path) -> None + + +def test_get_supported_unsupported_columns() -> None: + features = Features( + { + "audio1": Audio(), + "audio2": Audio(sampling_rate=16_000), + "audio3": [Audio()], + "image1": Image(), + "image2": Image(decode=False), + "image3": [Image()], + "string": Value("string"), + "binary": Value("binary"), + } + ) + unsupported_features = [Value("binary"), Audio()] + supported_columns, unsupported_columns = get_supported_unsupported_columns(features, unsupported_features) + assert supported_columns == ["image1", "image2", "image3", "string"] + assert unsupported_columns == ["audio1", "audio2", "audio3", "binary"] diff --git a/services/worker/src/worker/dtos.py b/services/worker/src/worker/dtos.py index 859ffadb..bfb0d108 100644 --- a/services/worker/src/worker/dtos.py +++ b/services/worker/src/worker/dtos.py @@ -119,0 +120 @@ class ConfigParquetMetadataResponse(TypedDict): + features: Optional[Dict[str, Any]] @@ -124,0 +126 @@ class ConfigParquetResponse(TypedDict): + features: Optional[Dict[str, Any]] diff --git a/services/worker/src/worker/job_runners/config/parquet.py b/services/worker/src/worker/job_runners/config/parquet.py index fa614c97..9c022402 100644 --- a/services/worker/src/worker/job_runners/config/parquet.py +++ b/services/worker/src/worker/job_runners/config/parquet.py @@ -44,0 +45,5 @@ def compute_parquet_response(dataset: str, config: str) -> ConfigParquetResponse + if "features" in content["dataset_info"] and isinstance(content["dataset_info"]["features"], dict): + features = content["dataset_info"]["features"] + else: + # (July 23) we can remove this later and raise an error instead (can be None for backward compatibility) + features = None @@ -48 +53 @@ def compute_parquet_response(dataset: str, config: str) -> ConfigParquetResponse - return ConfigParquetResponse(parquet_files=parquet_files, partial=partial) + return ConfigParquetResponse(parquet_files=parquet_files, features=features, partial=partial) diff --git a/services/worker/src/worker/job_runners/config/parquet_metadata.py b/services/worker/src/worker/job_runners/config/parquet_metadata.py index a89ca497..c0cf897f 100644 --- a/services/worker/src/worker/job_runners/config/parquet_metadata.py +++ b/services/worker/src/worker/job_runners/config/parquet_metadata.py @@ -97,0 +98,6 @@ def compute_parquet_metadata_response( + content = config_parquet_best_response.response["content"] + if "features" in content and isinstance(content["features"], dict): + features = content["features"] # config-parquet version<6 didn't have features + else: + # (July 23) we can remove this later and raise an error instead (can be None for backward compatibility) + features = None @@ -116 +122,3 @@ def compute_parquet_metadata_response( - return ConfigParquetMetadataResponse(parquet_files_metadata=parquet_files_metadata, partial=partial) + return ConfigParquetMetadataResponse( + parquet_files_metadata=parquet_files_metadata, features=features, partial=partial + ) diff --git a/services/worker/src/worker/job_runners/dataset/parquet.py b/services/worker/src/worker/job_runners/dataset/parquet.py index 4b04f122..9a493158 100644 --- a/services/worker/src/worker/job_runners/dataset/parquet.py +++ b/services/worker/src/worker/job_runners/dataset/parquet.py @@ -86 +86,3 @@ def compute_parquet_response(dataset: str) -> Tuple[DatasetParquetResponse, floa - parquet_files=response["content"]["parquet_files"], partial=response["content"]["partial"] + parquet_files=response["content"]["parquet_files"], + partial=response["content"]["partial"], + features=None, # we can keep it None since we don't pass it to DatasetParquetResponse anyway diff --git a/services/worker/src/worker/job_runners/split/first_rows_from_parquet.py b/services/worker/src/worker/job_runners/split/first_rows_from_parquet.py index 402c0d70..1fd5f9a3 100644 --- a/services/worker/src/worker/job_runners/split/first_rows_from_parquet.py +++ b/services/worker/src/worker/job_runners/split/first_rows_from_parquet.py @@ -193 +193 @@ class SplitFirstRowsFromParquetJobRunner(SplitJobRunner): - unsupported_features_magic_strings=[], + unsupported_features=[], diff --git a/services/worker/tests/job_runners/config/test_parquet.py b/services/worker/tests/job_runners/config/test_parquet.py index 223f8f69..f2c2d161 100644 --- a/services/worker/tests/job_runners/config/test_parquet.py +++ b/services/worker/tests/job_runners/config/test_parquet.py @@ -7,0 +8 @@ import pytest +from datasets import Features, Value @@ -98,0 +100 @@ def get_job_runner( + features=None, @@ -182,0 +185,56 @@ def get_job_runner( + features=None, + ), + False, + ), + ( + "with_features", + "config_1", + HTTPStatus.OK, + ConfigParquetAndInfoResponse( + parquet_files=[ + SplitHubFile( + dataset="with_features", + config="config_1", + split="train", + url="url1", + filename="filename1", + size=0, + ), + SplitHubFile( + dataset="with_features", + config="config_1", + split="train", + url="url2", + filename="filename2", + size=0, + ), + ], + dataset_info={ + "description": "value", + "dataset_size": 10, + "features": Features({"a": Value("string")}).to_dict(), + }, + partial=False, + ), + None, + ConfigParquetResponse( + parquet_files=[ + SplitHubFile( + dataset="with_features", + config="config_1", + split="train", + url="url1", + filename="filename1", + size=0, + ), + SplitHubFile( + dataset="with_features", + config="config_1", + split="train", + url="url2", + filename="filename2", + size=0, + ), + ], + partial=False, + features=Features({"a": Value("string")}).to_dict(), diff --git a/services/worker/tests/job_runners/config/test_parquet_metadata.py b/services/worker/tests/job_runners/config/test_parquet_metadata.py index 2808b419..74f3aa7b 100644 --- a/services/worker/tests/job_runners/config/test_parquet_metadata.py +++ b/services/worker/tests/job_runners/config/test_parquet_metadata.py @@ -13 +13 @@ import pytest -from datasets import Dataset, Features +from datasets import Dataset, Features, Value @@ -107,0 +108 @@ def get_job_runner( + features=None, @@ -133,0 +135 @@ def get_job_runner( + features=None, @@ -154,0 +157,55 @@ def get_job_runner( + ( + "with_features", + "config_1", + HTTPStatus.OK, + ConfigParquetResponse( + parquet_files=[ + SplitHubFile( + dataset="with_features", + config="config_1", + split="train", + url="url1", + filename="filename1", + size=0, + ), + SplitHubFile( + dataset="with_features", + config="config_1", + split="train", + url="url2", + filename="filename2", + size=0, + ), + ], + partial=False, + features=Features({"a": Value("string")}).to_dict(), + ), + None, + ConfigParquetMetadataResponse( + parquet_files_metadata=[ + ParquetFileMetadataItem( + dataset="with_features", + config="config_1", + split="train", + url="url1", + filename="filename1", + size=0, + num_rows=3, + parquet_metadata_subpath="with_features/--/config_1/train/filename1", + ), + ParquetFileMetadataItem( + dataset="with_features", + config="config_1", + split="train", + url="url2", + filename="filename2", + size=0, + num_rows=3, + parquet_metadata_subpath="with_features/--/config_1/train/filename2", + ), + ], + partial=False, + features=Features({"a": Value("string")}).to_dict(), + ), + False, + ), diff --git a/services/worker/tests/job_runners/dataset/test_parquet.py b/services/worker/tests/job_runners/dataset/test_parquet.py index 8d53cad6..15286174 100644 --- a/services/worker/tests/job_runners/dataset/test_parquet.py +++ b/services/worker/tests/job_runners/dataset/test_parquet.py @@ -102,0 +103 @@ def get_job_runner( + features=None, @@ -121,0 +123 @@ def get_job_runner( + features=None,
f0b599204603625d48d3a396d8dcf30c77e9c41f
Andrea Francis Soria Jimenez
2023-07-27T19:20:26
Skip real test (#1575)
diff --git a/services/worker/tests/job_runners/split/test_opt_in_out_urls_scan_from_streaming.py b/services/worker/tests/job_runners/split/test_opt_in_out_urls_scan_from_streaming.py index ff6640a4..dbb8b8d5 100644 --- a/services/worker/tests/job_runners/split/test_opt_in_out_urls_scan_from_streaming.py +++ b/services/worker/tests/job_runners/split/test_opt_in_out_urls_scan_from_streaming.py @@ -301,0 +302,6 @@ def test_compute_error_from_spawning( [email protected]( + reason=( + "Temporarily disabled, we can't use secrets on fork repos. See" + " https://github.com/huggingface/datasets-server/issues/1085" + ) +)
fa7c7e8c80d018c22e1b0c06fd21c2087e667592
Quentin Lhoest
2023-07-27T16:47:47
fix torch on macos (#1571)
diff --git a/services/worker/poetry.lock b/services/worker/poetry.lock index 7296cd7d..a1104a04 100644 --- a/services/worker/poetry.lock +++ b/services/worker/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry and should not be changed by hand. +# This file is automatically @generated by Poetry 1.4.2 and should not be changed by hand. @@ -2924 +2923,0 @@ files = [ - {file = "pdf2image-1.16.3.tar.gz", hash = "sha256:74208810c2cef4d9e347769b8e62a52303982ddb4f2dfd744c7ab4b940ae287e"}, @@ -4436 +4434,0 @@ files = [ - {file = "soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc"}, @@ -4896,0 +4895,40 @@ files = [ +[[package]] +name = "torch" +version = "1.13.1" +description = "Tensors and Dynamic neural networks in Python with strong GPU acceleration" +category = "main" +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "torch-1.13.1-cp39-none-macosx_11_0_arm64.whl", hash = "sha256:e0df902a7c7dd6c795698532ee5970ce898672625635d885eade9976e5a04949"}, +] + +[package.dependencies] +typing-extensions = "*" + +[package.extras] +opt-einsum = ["opt-einsum (>=3.3)"] + +[package.source] +type = "url" +url = "https://download.pytorch.org/whl/cpu/torch-1.13.1-cp39-none-macosx_11_0_arm64.whl" +[[package]] +name = "torch" +version = "1.13.1" +description = "Tensors and Dynamic neural networks in Python with strong GPU acceleration" +category = "main" +optional = false +python-versions = ">=3.7.0" +files = [ + {file = "torch-1.13.1-cp39-cp39-manylinux2014_aarch64.whl", hash = "sha256:2c3581a3fd81eb1f0f22997cddffea569fea53bafa372b2c0471db373b26aafc"}, +] + +[package.dependencies] +typing-extensions = "*" + +[package.extras] +opt-einsum = ["opt-einsum (>=3.3)"] + +[package.source] +type = "url" +url = "https://download.pytorch.org/whl/torch-1.13.1-cp39-cp39-manylinux2014_aarch64.whl" @@ -5631 +5669 @@ python-versions = "3.9.15" -content-hash = "ae4fd56d29a7d8cc750540a751d71225507bc8a6ee9b72e161a6504e5819f4c2" +content-hash = "1cf77490bc276a2f2e5294b598bb85d106bede00f581476c57d96d7004005da6" diff --git a/services/worker/pyproject.toml b/services/worker/pyproject.toml index 62578535..bf162508 100644 --- a/services/worker/pyproject.toml +++ b/services/worker/pyproject.toml @@ -43 +43,6 @@ tfrecord = "^1.14.1" -torch = { url = "https://download.pytorch.org/whl/cpu/torch-1.13.1%2Bcpu-cp39-cp39-linux_x86_64.whl" } +torch = [ + { url = "https://download.pytorch.org/whl/cpu/torch-1.13.1%2Bcpu-cp39-cp39-linux_x86_64.whl", markers = "sys_platform == 'linux' and platform_machine != 'aarch64'"}, + { url = "https://download.pytorch.org/whl/cpu/torch-1.13.1%2Bcpu-cp39-cp39-linux_x86_64.whl", markers = "sys_platform == 'darwin' and platform_machine != 'arm64'"}, + { url = "https://download.pytorch.org/whl/cpu/torch-1.13.1-cp39-none-macosx_11_0_arm64.whl", markers = "sys_platform == 'darwin' and platform_machine == 'arm64'"}, + { url = "https://download.pytorch.org/whl/torch-1.13.1-cp39-cp39-manylinux2014_aarch64.whl", markers = "sys_platform == 'linux' and platform_machine == 'aarch64'"}, +]
770a11c1eebde18ed28fb8c9717e774723237115
Quentin Lhoest
2023-07-27T16:17:29
fix dev admin auth (#1574)
diff --git a/tools/docker-compose-dev-datasets-server.yml b/tools/docker-compose-dev-datasets-server.yml index d49dc549..a79211bd 100644 --- a/tools/docker-compose-dev-datasets-server.yml +++ b/tools/docker-compose-dev-datasets-server.yml @@ -36 +36 @@ services: - ADMIN_HF_ORGANIZATION: ${ADMIN_HF_ORGANIZATION-huggingface} + ADMIN_HF_ORGANIZATION: ${ADMIN_HF_ORGANIZATION-__DUMMY_DATASETS_SERVER_ADMINS_ORG__}
66ec434c7ae447de085a68acaf7897bb5d660bbb
Polina Kazakova
2023-07-27T15:51:05
Descriptive statistics (#1199)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index f71a593a..6bb34087 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -95,0 +96,3 @@ duckdbPersistence: +statisticsPersistence: + existingClaim: "datasets-server-statistics-pvc" + @@ -126,0 +130,2 @@ optInOutUrlsScan: +descriptiveStatistics: + maxParquetSizeBytes: "5_000_000_000" diff --git a/chart/env/staging.yaml b/chart/env/staging.yaml index 02c8de79..09acc58d 100644 --- a/chart/env/staging.yaml +++ b/chart/env/staging.yaml @@ -92,0 +93,3 @@ duckdbPersistence: +statisticsPersistence: + existingClaim: "datasets-server-statistics-pvc" + diff --git a/chart/templates/_envWorker.tpl b/chart/templates/_envWorker.tpl index 630c7152..54e51c1b 100644 --- a/chart/templates/_envWorker.tpl +++ b/chart/templates/_envWorker.tpl @@ -118,0 +119,7 @@ +# specific to 'split-descriptive-statistics' +- name: DESCRIPTIVE_STATISTICS_HISTOGRAM_NUM_BINS + value: {{ .Values.descriptiveStatistics.histogramNumBins | quote }} +- name: DESCRIPTIVE_STATISTICS_MAX_PARQUET_SIZE_BYTES + value: {{ .Values.descriptiveStatistics.maxParquetSizeBytes | quote }} +- name: DESCRIPTIVE_STATISTICS_STORAGE_DIRECTORY + value: {{ .Values.descriptiveStatistics.storageDirectory | quote }} diff --git a/chart/templates/_helpers.tpl b/chart/templates/_helpers.tpl index cb73f80a..3149b0a6 100644 --- a/chart/templates/_helpers.tpl +++ b/chart/templates/_helpers.tpl @@ -189,0 +190,9 @@ The duckdb-index/ subpath in the NFS +{{/* +The stats-cache/ subpath in the NFS +- in a subdirectory named as the chart (datasets-server/), and below it, +- in a subdirectory named as the Release, so that Releases will not share the same dir +*/}} +{{- define "descriptiveStatistics.subpath" -}} +{{- printf "%s/%s/%s/" .Chart.Name .Release.Name "stats-cache" }} +{{- end }} + diff --git a/chart/templates/_initContainerDescriptiveStatistics.tpl b/chart/templates/_initContainerDescriptiveStatistics.tpl new file mode 100644 index 00000000..2664075c --- /dev/null +++ b/chart/templates/_initContainerDescriptiveStatistics.tpl @@ -0,0 +1,21 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +{{- define "initContainerDescriptiveStatistics" -}} +- name: compute-descriptive-statistics + image: ubuntu:focal + imagePullPolicy: {{ .Values.images.pullPolicy }} + command: ["/bin/sh", "-c"] + args: + - chown {{ .Values.uid }}:{{ .Values.gid }} /mounted-path; + volumeMounts: + - mountPath: /mounted-path + mountPropagation: None + name: statistics-data + subPath: "{{ include "descriptiveStatistics.subpath" . }}" + readOnly: false + securityContext: + runAsNonRoot: false + runAsUser: 0 + runAsGroup: 0 +{{- end -}} diff --git a/chart/templates/_volumeMountDescriptiveStatistics.tpl b/chart/templates/_volumeMountDescriptiveStatistics.tpl new file mode 100644 index 00000000..35efc290 --- /dev/null +++ b/chart/templates/_volumeMountDescriptiveStatistics.tpl @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +{{- define "volumeMountDescriptiveStatisticsRW" -}} +- mountPath: {{ .Values.descriptiveStatistics.storageDirectory | quote }} + mountPropagation: None + name: data + subPath: "{{ include "descriptiveStatistics.subpath" . }}" + readOnly: false +{{- end -}} diff --git a/chart/templates/_volumeStatistics.tpl b/chart/templates/_volumeStatistics.tpl new file mode 100644 index 00000000..dd215b31 --- /dev/null +++ b/chart/templates/_volumeStatistics.tpl @@ -0,0 +1,8 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +{{- define "volumeStatistics" -}} +- name: statistics-data + persistentVolumeClaim: + claimName: {{ .Values.statisticsPersistence.existingClaim | default (include "name" .) }} +{{- end -}} \ No newline at end of file diff --git a/chart/templates/worker/_container.tpl b/chart/templates/worker/_container.tpl index cf58ef20..b78c641c 100644 --- a/chart/templates/worker/_container.tpl +++ b/chart/templates/worker/_container.tpl @@ -32,0 +33 @@ + {{ include "volumeMountDescriptiveStatisticsRW" . | nindent 2 }} diff --git a/chart/templates/worker/_deployment.yaml b/chart/templates/worker/_deployment.yaml index f63b9a01..872de83b 100644 --- a/chart/templates/worker/_deployment.yaml +++ b/chart/templates/worker/_deployment.yaml @@ -36,0 +37 @@ spec: + {{ include "volumeStatistics" . | nindent 8 }} diff --git a/chart/values.yaml b/chart/values.yaml index 90ce3506..167c40ca 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -116,0 +117,3 @@ duckdbPersistence: +statisticsPersistence: + existingClaim: "" + @@ -251,0 +255,8 @@ duckDBIndex: +descriptiveStatistics: + # Directory on the shared storage (used temporarily to download dataset locally in .parquet to compute statistics) + storageDirectory: "/stats-cache" + # fixed number of bins for histogram count + histogramNumBins: 10 + # the maximum size of the split parquets. + maxParquetSizeBytes: "100_000_000" + diff --git a/libs/libcommon/src/libcommon/config.py b/libs/libcommon/src/libcommon/config.py index 48041b90..31814db8 100644 --- a/libs/libcommon/src/libcommon/config.py +++ b/libs/libcommon/src/libcommon/config.py @@ -26,0 +27 @@ from libcommon.constants import ( + PROCESSING_STEP_SPLIT_DESCRIPTIVE_STATISTICS_VERSION, @@ -301,0 +303,9 @@ class ProcessingGraphConfig: + "split-descriptive-statistics": { + "input_type": "split", + "triggered_by": [ + "config-split-names-from-info", + "config-split-names-from-streaming", + ], + "job_runner_version": PROCESSING_STEP_SPLIT_DESCRIPTIVE_STATISTICS_VERSION, + "difficulty": 70, + }, diff --git a/libs/libcommon/src/libcommon/constants.py b/libs/libcommon/src/libcommon/constants.py index 4f4a2ca1..aaf7b219 100644 --- a/libs/libcommon/src/libcommon/constants.py +++ b/libs/libcommon/src/libcommon/constants.py @@ -8,0 +9 @@ PARQUET_METADATA_CACHE_APPNAME = "datasets_server_parquet_metadata" +DESCRIPTIVE_STATISTICS_CACHE_APPNAME = "datasets_server_descriptive_statistics" @@ -43,0 +45 @@ PROCESSING_STEP_SPLIT_OPT_IN_OUT_URLS_COUNT_VERSION = 2 +PROCESSING_STEP_SPLIT_DESCRIPTIVE_STATISTICS_VERSION = 1 diff --git a/libs/libcommon/src/libcommon/exceptions.py b/libs/libcommon/src/libcommon/exceptions.py index 623f85a4..5cb38fb3 100644 --- a/libs/libcommon/src/libcommon/exceptions.py +++ b/libs/libcommon/src/libcommon/exceptions.py @@ -77,0 +78 @@ CacheableErrorCode = Literal[ + "ComputationError", @@ -103,0 +105 @@ CacheableErrorCode = Literal[ + "NoSupportedFeaturesError", @@ -371,0 +374,7 @@ class NoIndexableColumnsError(CacheableError): +class NoSupportedFeaturesError(CacheableError): + """Raised when dataset does not have any features which types are supported by a worker's processing pipeline.""" + + def __init__(self, message: str, cause: Optional[BaseException] = None): + super().__init__(message, HTTPStatus.NOT_IMPLEMENTED, "NoSupportedFeaturesError", cause, True) + + @@ -505,0 +515,7 @@ class UnsupportedExternalFilesError(CacheableError): + + +class StatisticsComputationError(CacheableError): + """Raised in case of unexpected behaviour / errors during statistics computations.""" + + def __init__(self, message: str, cause: Optional[BaseException] = None): + super().__init__(message, HTTPStatus.INTERNAL_SERVER_ERROR, "ComputationError", cause, True) diff --git a/libs/libcommon/src/libcommon/storage.py b/libs/libcommon/src/libcommon/storage.py index 63d9c108..24e0b2b3 100644 --- a/libs/libcommon/src/libcommon/storage.py +++ b/libs/libcommon/src/libcommon/storage.py @@ -14,0 +15 @@ from libcommon.constants import ( + DESCRIPTIVE_STATISTICS_CACHE_APPNAME, @@ -98,0 +100,14 @@ def init_duckdb_index_cache_dir(directory: Optional[StrPath] = None) -> StrPath: +def init_statistics_cache_dir(directory: Optional[StrPath] = None) -> StrPath: + """Initialize the cache directory for storage of a dataset in parquet format for statistics computations. + + If directory is None, it will be set to the default cache location on the machine. + + Args: + directory (Optional[Union[str, PathLike[str]]], optional): The directory to initialize. Defaults to None. + + Returns: + Union[str, PathLike[str]]: The directory. + """ + return init_dir(directory, appname=DESCRIPTIVE_STATISTICS_CACHE_APPNAME) + + diff --git a/libs/libcommon/tests/test_processing_graph.py b/libs/libcommon/tests/test_processing_graph.py index 639c2275..57949655 100644 --- a/libs/libcommon/tests/test_processing_graph.py +++ b/libs/libcommon/tests/test_processing_graph.py @@ -97,0 +98 @@ def graph() -> ProcessingGraph: + "split-descriptive-statistics", @@ -108,0 +110 @@ def graph() -> ProcessingGraph: + "split-descriptive-statistics", @@ -314,0 +317,12 @@ def graph() -> ProcessingGraph: + ( + "split-descriptive-statistics", + [], + ["config-split-names-from-info", "config-split-names-from-streaming"], + [ + "dataset-config-names", + "config-parquet-and-info", + "config-info", + "config-split-names-from-info", + "config-split-names-from-streaming", + ], + ), diff --git a/services/api/src/api/config.py b/services/api/src/api/config.py index f9ff64bc..65cb0ac8 100644 --- a/services/api/src/api/config.py +++ b/services/api/src/api/config.py @@ -83,0 +84 @@ class EndpointConfig: + "/statistics": {"split": ["split-descriptive-statistics"]}, diff --git a/services/worker/README.md b/services/worker/README.md index 17d6a5fa..d3a5edb0 100644 --- a/services/worker/README.md +++ b/services/worker/README.md @@ -94,0 +95,238 @@ Set environment variables to configure the `duckdb-index` worker (`DUCKDB_INDEX_ +### Descriptive statistics worker + +Set environment variables to configure the `descriptive-statistics` worker (`DESCRIPTIVE_STATISTICS_` prefix): + +- `DESCRIPTIVE_STATISTICS_CACHE_DIRECTORY`: directory to which a dataset in parquet format is downloaded. Defaults to empty. +- `DESCRIPTIVE_STATISTICS_HISTOGRAM_NUM_BINS`: number of histogram bins (see examples below for more info). +- `DESCRIPTIVE_STATISTICS_MAX_PARQUET_SIZE_BYTES`: maximum size in bytes of the dataset's parquet files to compute statistics. Datasets with bigger size are ignored. Defaults to `100_000_000`. + +#### How descriptive statistics are computed + +Descriptive statistics are currently computed for three types of data: categories (`ClassLabel` feature of the `datasets` library), `float` numbers and `int` numbers. +Response has two fields: `num_examples` and `statistics`. `statistics` field is a list of dicts with three keys: `column_name`, `column_type` (has three values: `class_label`, `float` or `int`), and `column_statistics`. +`column_statistics` content depends on the feature type. +##### class_label + +<details><summary>example: </summary> +<p> + +```python +{ + "column_name": "class_col", + "column_type": "class_label", + "column_statistics": { + "nan_count": 0, + "nan_proportion": 0.0, + "n_unique": 5, # number of unique values + "frequencies": { # mapping value -> its count + "this": 19834, + "are": 20159, + "random": 20109, + "words": 20172, + "test": 19726 + } + } +} +``` +</p> +</details> + +##### float + +Bin size for histogram is counted as `(max_value - min_value) / DESCRIPTIVE_STATISTICS_HISTOGRAM_NUM_BINS` + +<details><summary>example: </summary> +<p> + +```python +{ + "column_name": "delay", + "column_type": "float", + "column_statistics": { + "nan_count": 0, + "nan_proportion": 0.0, + "min": -10.206, + "max": 8.48053, + "mean": 2.10174, + "median": 3.4012, + "std": 3.12487, + "histogram": { + "hist": [ + 2, + 34, + 256, + 15198, + 9037, + 2342, + 12743, + 45114, + 14904, + 370 + ], + "bin_edges": [ + -10.206, + -8.33734, + -6.46869, + -4.60004, + -2.73139, + -0.86273, + 1.00592, + 2.87457, + 4.74322, + 6.61188, + 8.48053 # includes maximum value, so len is always len(hist) + 1 + ] + } + } +} +``` +</p> +</details> + +##### int + +As bin edges for integer values also must be integers, bin size is counted as `np.ceil((max_value - min_value + 1) / DESCRIPTIVE_STATISTICS_HISTOGRAM_NUM_BINS)`. Rounding up means that there might be smaller number of bins in response then provided `DESCRIPTIVE_STATISTICS_HISTOGRAM_NUM_BINS`. The last bin's size might be smaller than that of the others if the feature's range is not divisible by the rounded bin size. + +<details><summary>examples: </summary> +<p> + +```python +{ + "column_name": "direction", + "column_type": "int", + "column_statistics": { + "nan_count": 0, + "nan_proportion": 0.0, + "min": 0, + "max": 1, + "mean": 0.49925, + "median": 0.0, + "std": 0.5, + "histogram": { + "hist": [ + 50075, + 49925 + ], + "bin_edges": [ + 0, + 1, + 1 # if the last value is equal to the last but one, that means that this bin includes only this value + ] + } + } +}, +{ + "column_name": "hour", + "column_type": "int", + "column_statistics": { + "nan_count": 0, + "nan_proportion": 0.0, + "min": 0, + "max": 23, + "mean": 13.44402, + "median": 14.0, + "std": 5.49455, + "histogram": { + "hist": [ + 2694, + 2292, + 16785, + 16326, + 16346, + 17809, + 16546, + 11202 + ], + "bin_edges": [ + 0, + 3, + 6, + 9, + 12, + 15, + 18, + 21, + 23 + ] + } + } +}, +{ + "column_name": "humidity", + "column_type": "int", + "column_statistics": { + "nan_count": 0, + "nan_proportion": 0.0, + "min": 54, + "max": 99, + "mean": 83.89878, + "median": 85.0, + "std": 8.65174, + "histogram": { + "hist": [ + 554, + 1662, + 3823, + 6532, + 12512, + 17536, + 23871, + 20355, + 12896, + 259 + ], + "bin_edges": [ + 54, + 59, + 64, + 69, + 74, + 79, + 84, + 89, + 94, + 99, + 99 + ] + } + } +}, +{ + "column_name": "weekday", + "column_type": "int", + "column_statistics": { + "nan_count": 0, + "nan_proportion": 0.0, + "min": 0, + "max": 6, + "mean": 3.08063, + "median": 3.0, + "std": 1.90347, + "histogram": { + "hist": [ + 10282, + 15416, + 15291, + 15201, + 15586, + 15226, + 12998 + ], + "bin_edges": [ + 0, + 1, + 2, + 3, + 4, + 5, + 6, + 6 + ] + } + } +} +``` + +</p> +</details> + diff --git a/services/worker/src/worker/config.py b/services/worker/src/worker/config.py index a52d55f5..a8876a7b 100644 --- a/services/worker/src/worker/config.py +++ b/services/worker/src/worker/config.py @@ -289,0 +290,27 @@ class DuckDbIndexConfig: +DESCRIPTIVE_STATISTICS_CACHE_DIRECTORY = None +DESCRIPTIVE_STATISTICS_HISTOGRAM_NUM_BINS = 10 +DESCRIPTIVE_STATISTICS_MAX_PARQUET_SIZE_BYTES = 100_000_000 + + +@dataclass(frozen=True) +class DescriptiveStatisticsConfig: + cache_directory: Optional[str] = DESCRIPTIVE_STATISTICS_CACHE_DIRECTORY + histogram_num_bins: int = DESCRIPTIVE_STATISTICS_HISTOGRAM_NUM_BINS + max_parquet_size_bytes: int = DESCRIPTIVE_STATISTICS_MAX_PARQUET_SIZE_BYTES + + @classmethod + def from_env(cls) -> "DescriptiveStatisticsConfig": + env = Env(expand_vars=True) + with env.prefixed("DESCRIPTIVE_STATISTICS_"): + return cls( + cache_directory=env.str(name="STORAGE_DIRECTORY", default=DESCRIPTIVE_STATISTICS_CACHE_DIRECTORY), + histogram_num_bins=env.int( + name="HISTOGRAM_NUM_BINS", + default=DESCRIPTIVE_STATISTICS_HISTOGRAM_NUM_BINS, + ), + max_parquet_size_bytes=env.int( + name="MAX_PARQUET_SIZE_BYTES", default=DESCRIPTIVE_STATISTICS_MAX_PARQUET_SIZE_BYTES + ), + ) + + @@ -306,0 +334 @@ class AppConfig: + descriptive_statistics: DescriptiveStatisticsConfig = field(default_factory=DescriptiveStatisticsConfig) @@ -325,0 +354 @@ class AppConfig: + descriptive_statistics=DescriptiveStatisticsConfig.from_env(), diff --git a/services/worker/src/worker/job_runner_factory.py b/services/worker/src/worker/job_runner_factory.py index 493d7ba3..5fc6907d 100644 --- a/services/worker/src/worker/job_runner_factory.py +++ b/services/worker/src/worker/job_runner_factory.py @@ -36,0 +37,3 @@ from worker.job_runners.dataset.split_names import DatasetSplitNamesJobRunner +from worker.job_runners.split.descriptive_statistics import ( + SplitDescriptiveStatisticsJobRunner, +) @@ -77,0 +81 @@ class JobRunnerFactory(BaseJobRunnerFactory): + statistics_cache_directory: StrPath @@ -219,0 +224,7 @@ class JobRunnerFactory(BaseJobRunnerFactory): + if job_type == SplitDescriptiveStatisticsJobRunner.get_job_type(): + return SplitDescriptiveStatisticsJobRunner( + job_info=job_info, + app_config=self.app_config, + processing_step=processing_step, + statistics_cache_directory=self.statistics_cache_directory, + ) @@ -248,0 +260 @@ class JobRunnerFactory(BaseJobRunnerFactory): + SplitDescriptiveStatisticsJobRunner.get_job_type(), diff --git a/services/worker/src/worker/job_runners/split/descriptive_statistics.py b/services/worker/src/worker/job_runners/split/descriptive_statistics.py new file mode 100644 index 00000000..15548c9e --- /dev/null +++ b/services/worker/src/worker/job_runners/split/descriptive_statistics.py @@ -0,0 +1,412 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. +import enum +import logging +from pathlib import Path +from typing import Dict, List, Optional, Tuple, TypedDict, Union + +import duckdb +import numpy as np +import pandas as pd +from libcommon.constants import PROCESSING_STEP_SPLIT_DESCRIPTIVE_STATISTICS_VERSION +from libcommon.exceptions import ( + CacheDirectoryNotInitializedError, + NoSupportedFeaturesError, + ParquetResponseEmptyError, + PreviousStepFormatError, + SplitWithTooBigParquetError, + StatisticsComputationError, +) +from libcommon.processing_graph import ProcessingStep +from libcommon.simple_cache import get_previous_step_or_raise +from libcommon.storage import StrPath +from libcommon.utils import JobInfo +from tqdm import tqdm + +from worker.config import AppConfig, DescriptiveStatisticsConfig +from worker.dtos import CompleteJobResult +from worker.job_runners.split.split_job_runner import SplitJobRunnerWithCache +from worker.utils import check_split_exists + +PARQUET_FILENAME = "dataset.parquet" + +DECIMALS = 5 + +INTEGER_DTYPES = ["int8", "int16", "int32", "int64", "uint8", "uint16", "uint32", "uint64"] +FLOAT_DTYPES = ["float16", "float32", "float64"] +NUMERICAL_DTYPES = INTEGER_DTYPES + FLOAT_DTYPES + + +COPY_PARQUET_DATA_COMMAND = """ +COPY (SELECT * FROM read_parquet({parquet_files_urls})) TO '{local_parquet_path}' (FORMAT PARQUET); +""" +COMPUTE_NAN_COUNTS_COMMAND = """ + SELECT COUNT(*) FROM read_parquet('{parquet_filename}') WHERE {column_name} IS NULL; +""" +COMPUTE_CATEGORIES_COUNTS_COMMAND = """ + SELECT {column_name}, COUNT(*) FROM read_parquet('{parquet_filename}') GROUP BY {column_name}; +""" +COMPUTE_MIN_MAX_MEAN_MEDIAN_STD_COMMAND = """ + SELECT min({column_name}), max({column_name}), mean({column_name}), + median({column_name}), stddev_samp({column_name}) FROM read_parquet('{parquet_filename}'); +""" +COMPUTE_HIST_COMMAND = """ + SELECT bin_id, COUNT(*) as count FROM read_parquet('{parquet_filename}') + JOIN bins ON ({column_name} >= bin_min AND {column_name} < bin_max) GROUP BY bin_id; +""" # `bins` is the name of preinjected table with bin edges data + + +class ColumnType(str, enum.Enum): + FLOAT = "float" + INT = "int" + CLASS_LABEL = "class_label" + + +class Histogram(TypedDict): + hist: List[int] + bin_edges: List[float] + + +class NumericalStatisticsItem(TypedDict): + nan_count: int + nan_proportion: float + min: float + max: float + mean: float + median: float + std: float + histogram: Histogram + + +class CategoricalStatisticsItem(TypedDict): + nan_count: int + nan_proportion: float + n_unique: int + frequencies: Dict[str, int] + + +class StatisticsPerColumnItem(TypedDict): + column_name: str + column_type: ColumnType + column_statistics: Union[NumericalStatisticsItem, CategoricalStatisticsItem] + + +class SplitDescriptiveStatisticsResponse(TypedDict): + num_examples: int + statistics: List[StatisticsPerColumnItem] + + +def generate_bins( + min_value: Union[int, float], + max_value: Union[int, float], + column_type: ColumnType, + n_bins: int, +) -> pd.DataFrame: + """ + Returns: + pandas.DataFrame with bin edges to insert into database to perform histogram computation with duckdb + """ + if column_type is ColumnType.FLOAT: + bin_size = (max_value - min_value) / n_bins + bin_edges = np.arange(min_value, max_value, bin_size).astype(float).tolist() + if len(bin_edges) != n_bins: + raise StatisticsComputationError( + f"Incorrect number of bins generated, expected {n_bins}, got {len(bin_edges)}." + ) + elif column_type is ColumnType.INT: + bin_size = np.ceil((max_value - min_value + 1) / n_bins) + bin_edges = np.arange(min_value, max_value + 1, bin_size).astype(int).tolist() + if len(bin_edges) > n_bins: + raise StatisticsComputationError( + f"Incorrect number of bins generated, expected {n_bins}, got {len(bin_edges)}." + ) + else: + raise ValueError(f"Incorrect column type {column_type}. ") + bin_max_edges = bin_edges[1:] + [max_value + 1] # add 1 to include exact max values in the last bin + return pd.DataFrame.from_dict( + {"bin_id": list(range(len(bin_edges))), "bin_min": bin_edges, "bin_max": bin_max_edges} + ) + + +def compute_histogram( + con: duckdb.DuckDBPyConnection, + column_name: str, + parquet_filename: Path, + column_type: ColumnType, + min_value: Union[int, float], + max_value: Union[int, float], + n_bins: int, + n_samples: Optional[int] = None, +) -> Histogram: + bins_df = generate_bins(min_value=min_value, max_value=max_value, column_type=column_type, n_bins=n_bins) + n_bins = bins_df.shape[0] + con.sql("CREATE OR REPLACE TEMPORARY TABLE bins AS SELECT * from bins_df") + compute_hist_command = COMPUTE_HIST_COMMAND.format(parquet_filename=parquet_filename, column_name=column_name) + logging.debug(f"Compute histogram for {column_name}") + # query returns list of tuples (bin_id, bin_max, n_count): + hist_query_result = dict(con.sql(compute_hist_command).fetchall()) # dict bin_id -> n_samples + if len(hist_query_result) > n_bins + 1: + raise StatisticsComputationError( + "Got unexpected result during histogram computation: returned more bins than requested. " + f"{n_bins=} {hist_query_result=}. " + ) + hist = [] + for bin_idx in range(n_bins): + # no key in query result = no examples in this range, so we put 0 + hist.append(hist_query_result.get(bin_idx, 0)) + if n_samples and sum(hist) != n_samples: + raise StatisticsComputationError( + "Got unexpected result during histogram computation: histogram sum and number of non-null samples don't" + f" match. histogram sum={sum(hist)}, {n_samples=}" + ) + bins = bins_df["bin_min"].round(DECIMALS).tolist() + bins = bins + [np.round(max_value, DECIMALS).item()] # put exact max value back to bins + return Histogram(hist=hist, bin_edges=bins) + + +def compute_numerical_statistics( + con: duckdb.DuckDBPyConnection, + column_name: str, + parquet_filename: Path, + n_bins: int, + n_samples: int, + column_type: ColumnType, +) -> NumericalStatisticsItem: + logging.debug(f"Compute min, max, mean, median, std and proportion of null values for {column_name}") + min_max_mean_median_std_command = COMPUTE_MIN_MAX_MEAN_MEDIAN_STD_COMMAND.format( + column_name=column_name, parquet_filename=parquet_filename + ) + minimum, maximum, mean, median, std = con.sql(min_max_mean_median_std_command).fetchall()[0] + logging.debug(f"{minimum=}, {maximum=}, {mean=}, {median=}, {std=}") + + nan_count_command = COMPUTE_NAN_COUNTS_COMMAND.format(column_name=column_name, parquet_filename=parquet_filename) + nan_count = con.sql(nan_count_command).fetchall()[0][0] + nan_proportion = np.round(nan_count / n_samples, DECIMALS).item() if nan_count else 0.0 + logging.debug(f"{nan_count=} {nan_proportion=}") + histogram = compute_histogram( + con, + column_name, + parquet_filename, + min_value=minimum, + max_value=maximum, + column_type=column_type, + n_bins=n_bins, + n_samples=n_samples - nan_count, + ) + if column_type == ColumnType.FLOAT: + minimum, maximum, mean, median, std = np.round([minimum, maximum, mean, median, std], DECIMALS).tolist() + elif column_type == ColumnType.INT: + mean, median, std = np.round([mean, median, std], DECIMALS).tolist() + else: + raise ValueError(f"Incorrect column type {column_type}") + return NumericalStatisticsItem( + nan_count=nan_count, + nan_proportion=nan_proportion, + min=minimum, + max=maximum, + mean=mean, + median=median, + std=std, + histogram=histogram, + ) + + +def compute_categorical_statistics( + con: duckdb.DuckDBPyConnection, + column_name: str, + parquet_filename: Path, + class_label_names: List[str], + n_samples: int, +) -> CategoricalStatisticsItem: + categorical_counts_query = COMPUTE_CATEGORIES_COUNTS_COMMAND.format( + column_name=column_name, parquet_filename=parquet_filename + ) + categories: List[Tuple[int, int]] = con.sql( + categorical_counts_query + ).fetchall() # list of tuples (idx, num_samples) + + logging.debug(f"Statistics for {column_name} computed") + frequencies, nan_count = {}, 0 + for cat_id, freq in categories: + if cat_id is not None: + frequencies[class_label_names[cat_id]] = freq + else: + nan_count = freq + nan_proportion = np.round(nan_count / n_samples, DECIMALS).item() if nan_count != 0 else 0.0 + return CategoricalStatisticsItem( + nan_count=nan_count, + nan_proportion=nan_proportion, + n_unique=len(categories) - 1 if nan_count else len(categories), + frequencies=frequencies, + ) + + +def compute_descriptive_statistics_response( + dataset: str, + config: str, + split: str, + local_parquet_directory: Path, + histogram_num_bins: int, + max_parquet_size_bytes: int, +) -> SplitDescriptiveStatisticsResponse: + logging.info(f"Compute descriptive statistics for {dataset=}, {config=}, {split=}") + check_split_exists(dataset=dataset, config=config, split=split) + + config_parquet_and_info_step = "config-parquet-and-info" + parquet_and_info_best_response = get_previous_step_or_raise( + kinds=[config_parquet_and_info_step], + dataset=dataset, + config=config, + ) + content_parquet_and_info = parquet_and_info_best_response.response["content"] + try: + split_parquet_files = [ + parquet_file + for parquet_file in content_parquet_and_info["parquet_files"] + if parquet_file["config"] == config and parquet_file["split"] == split + ] + dataset_info = content_parquet_and_info["dataset_info"] + except KeyError as e: + raise PreviousStepFormatError( + ( + f"Previous step '{config_parquet_and_info_step}' did not return the expected content: " + "'parquet_files' or 'dataset_info'. " + ), + e, + ) from e + + if not split_parquet_files: + raise ParquetResponseEmptyError("No parquet files found.") + features = dataset_info.get("features") + if not features: + raise PreviousStepFormatError( + f"Previous step '{config_parquet_and_info_step}' did not return the expected content: " + "no features found in 'dataset_info'. " + ) + + split_parquets_size = sum(parquet_file["size"] for parquet_file in split_parquet_files) + if split_parquets_size > max_parquet_size_bytes: + raise SplitWithTooBigParquetError( + f"Statistics computation is limited to split parquets under {max_parquet_size_bytes} bytes. " + f"Current size of sum of split parquets is {split_parquets_size} bytes." + ) + parquet_files_urls = [parquet_file["url"] for parquet_file in split_parquet_files] + + stats: List[StatisticsPerColumnItem] = [] + num_examples = dataset_info["splits"][split]["num_examples"] + categorical_features = { + feature_name: feature for feature_name, feature in features.items() if feature.get("_type") == "ClassLabel" + } + numerical_features = { + feature_name: feature + for feature_name, feature in features.items() + if feature.get("_type") == "Value" and feature.get("dtype") in NUMERICAL_DTYPES + } + if not categorical_features and not numerical_features: + raise NoSupportedFeaturesError( + "No columns for statistics computation found. Currently supported feature types are: " + f"{NUMERICAL_DTYPES} and ClassLabel. " + ) + + con = duckdb.connect(":memory:") # we don't load data in local db file, use local parquet file instead + # configure duckdb extensions + con.sql(f"SET extension_directory='{local_parquet_directory}';") + con.sql("INSTALL httpfs") + con.sql("LOAD httpfs") + con.sql("SET enable_progress_bar=true;") + + # store data as local parquet file for fast querying + local_parquet_path = ( + Path(local_parquet_directory) / PARQUET_FILENAME if local_parquet_directory else Path(PARQUET_FILENAME) + ) + logging.info(f"Downloading remote data to a local parquet file {local_parquet_path}. ") + con.sql( + COPY_PARQUET_DATA_COMMAND.format(parquet_files_urls=parquet_files_urls, local_parquet_path=local_parquet_path) + ) + + # compute for ClassLabels (we are sure that these are discrete categories) + if categorical_features: + logging.info(f"Compute statistics for categorical columns {categorical_features}") + for feature_name, feature in tqdm(categorical_features.items()): + logging.debug(f"Compute statistics for ClassLabel feature {feature_name}") + class_label_names = feature["names"] + cat_column_stats: CategoricalStatisticsItem = compute_categorical_statistics( + con, + feature_name, + class_label_names=class_label_names, + n_samples=num_examples, + parquet_filename=local_parquet_path, + ) + stats.append( + StatisticsPerColumnItem( + column_name=feature_name, + column_type=ColumnType.CLASS_LABEL, + column_statistics=cat_column_stats, + ) + ) + + if numerical_features: + logging.info(f"Compute min, max, mean, median, std, histogram for numerical columns {numerical_features}. ") + for feature_name, feature in tqdm(numerical_features.items()): + column_type = ColumnType.FLOAT if feature["dtype"] in FLOAT_DTYPES else ColumnType.INT + num_column_stats: NumericalStatisticsItem = compute_numerical_statistics( + con, + feature_name, + parquet_filename=local_parquet_path, + n_bins=histogram_num_bins, + n_samples=num_examples, + column_type=column_type, + ) + stats.append( + StatisticsPerColumnItem( + column_name=feature_name, + column_type=column_type, + column_statistics=num_column_stats, + ) + ) + con.close() + + return SplitDescriptiveStatisticsResponse( + num_examples=num_examples, statistics=sorted(stats, key=lambda x: x["column_name"]) + ) + + +class SplitDescriptiveStatisticsJobRunner(SplitJobRunnerWithCache): + descriptive_statistics_config: DescriptiveStatisticsConfig + + def __init__( + self, + job_info: JobInfo, + app_config: AppConfig, + processing_step: ProcessingStep, + statistics_cache_directory: StrPath, + ): + super().__init__( + job_info=job_info, + app_config=app_config, + processing_step=processing_step, + cache_directory=Path(statistics_cache_directory), + ) + self.descriptive_statistics_config = app_config.descriptive_statistics + + @staticmethod + def get_job_type() -> str: + return "split-descriptive-statistics" + + @staticmethod + def get_job_runner_version() -> int: + return PROCESSING_STEP_SPLIT_DESCRIPTIVE_STATISTICS_VERSION + + def compute(self) -> CompleteJobResult: + if self.cache_subdirectory is None: + raise CacheDirectoryNotInitializedError("Cache directory has not been initialized.") + return CompleteJobResult( + compute_descriptive_statistics_response( + dataset=self.dataset, + config=self.config, + split=self.split, + local_parquet_directory=self.cache_subdirectory, + histogram_num_bins=self.descriptive_statistics_config.histogram_num_bins, + max_parquet_size_bytes=self.descriptive_statistics_config.max_parquet_size_bytes, + ) + ) diff --git a/services/worker/src/worker/job_runners/split/duckdb_index.py b/services/worker/src/worker/job_runners/split/duckdb_index.py index 26ff821b..c452850c 100644 --- a/services/worker/src/worker/job_runners/split/duckdb_index.py +++ b/services/worker/src/worker/job_runners/split/duckdb_index.py @@ -26 +25,0 @@ from libcommon.exceptions import ( - SplitNotFoundError, @@ -40,0 +40 @@ from worker.utils import ( + check_split_exists, @@ -74,12 +74 @@ def compute_index_rows( - - # validate split - split_names_best_response = get_previous_step_or_raise( - kinds=["config-split-names-from-streaming", "config-split-names-from-info"], dataset=dataset, config=config - ) - try: - splits_content = split_names_best_response.response["content"]["splits"] - except Exception as e: - raise PreviousStepFormatError("Previous step did not return the expected content.", e) from e - - if split not in [split_item["split"] for split_item in splits_content]: - raise SplitNotFoundError(f"The split '{split}' does not exist for the config '{config}' of the dataset.") + check_split_exists(dataset=dataset, config=config, split=split) diff --git a/services/worker/src/worker/job_runners/split/first_rows_from_streaming.py b/services/worker/src/worker/job_runners/split/first_rows_from_streaming.py index 4ae1ec0b..79c1068e 100644 --- a/services/worker/src/worker/job_runners/split/first_rows_from_streaming.py +++ b/services/worker/src/worker/job_runners/split/first_rows_from_streaming.py @@ -23 +22,0 @@ from libcommon.exceptions import ( - PreviousStepFormatError, @@ -25 +23,0 @@ from libcommon.exceptions import ( - SplitNotFoundError, @@ -30 +27,0 @@ from libcommon.processing_graph import ProcessingStep -from libcommon.simple_cache import get_previous_step_or_raise @@ -38 +35,6 @@ from worker.job_runners.split.split_job_runner import SplitJobRunnerWithDatasets -from worker.utils import create_truncated_row_items, get_json_size, get_rows_or_raise +from worker.utils import ( + check_split_exists, + create_truncated_row_items, + get_json_size, + get_rows_or_raise, +) @@ -143,10 +145 @@ def compute_first_rows_response( - split_names_best_response = get_previous_step_or_raise( - kinds=["config-split-names-from-streaming", "config-split-names-from-info"], dataset=dataset, config=config - ) - try: - splits_content = split_names_best_response.response["content"]["splits"] - except Exception as e: - raise PreviousStepFormatError("Previous step did not return the expected content.", e) from e - - if split not in [split_item["split"] for split_item in splits_content]: - raise SplitNotFoundError(f"The split '{split}' does not exist for the config '{config}' of the dataset.") + check_split_exists(dataset=dataset, config=config, split=split) diff --git a/services/worker/src/worker/main.py b/services/worker/src/worker/main.py index 4d207280..1a6f3a13 100644 --- a/services/worker/src/worker/main.py +++ b/services/worker/src/worker/main.py @@ -12,0 +13 @@ from libcommon.storage import ( + init_statistics_cache_dir, @@ -34,0 +36 @@ if __name__ == "__main__": + statistics_cache_directory = init_statistics_cache_dir(app_config.descriptive_statistics.cache_directory) @@ -62,0 +65 @@ if __name__ == "__main__": + statistics_cache_directory=statistics_cache_directory, diff --git a/services/worker/src/worker/start_worker_loop.py b/services/worker/src/worker/start_worker_loop.py index d5e69a82..a94cbb9e 100644 --- a/services/worker/src/worker/start_worker_loop.py +++ b/services/worker/src/worker/start_worker_loop.py @@ -12,0 +13 @@ from libcommon.storage import ( + init_statistics_cache_dir, @@ -33,0 +35 @@ if __name__ == "__main__": + statistics_cache_directory = init_statistics_cache_dir(app_config.descriptive_statistics.cache_directory) @@ -61,0 +64 @@ if __name__ == "__main__": + statistics_cache_directory=statistics_cache_directory, diff --git a/services/worker/src/worker/utils.py b/services/worker/src/worker/utils.py index 93eca415..0d5087e4 100644 --- a/services/worker/src/worker/utils.py +++ b/services/worker/src/worker/utils.py @@ -32,0 +33,2 @@ from libcommon.exceptions import ( + PreviousStepFormatError, + SplitNotFoundError, @@ -34,0 +37 @@ from libcommon.exceptions import ( +from libcommon.simple_cache import get_previous_step_or_raise @@ -329,0 +333,23 @@ def create_branch(dataset: str, target_revision: str, hf_api: HfApi, committer_h + + +def check_split_exists(dataset: str, config: str, split: str) -> None: + """ + Check if dataset has a provided split in a provided config. Dataset's splits are taken from the best response + of 'config-split-names-from-streaming' and 'config-split-names-from-info' steps' cache. + """ + split_names_best_response = get_previous_step_or_raise( + kinds=["config-split-names-from-streaming", "config-split-names-from-info"], dataset=dataset, config=config + ) + try: + splits_content = split_names_best_response.response["content"]["splits"] + except Exception as e: + raise PreviousStepFormatError( + ( + "Previous steps 'config-split-names-from-streaming' and 'config-split-names-from-info did not return" + " the expected content." + ), + e, + ) from e + + if split not in [split_item["split"] for split_item in splits_content]: + raise SplitNotFoundError(f"Split '{split}' does not exist for the config '{config}' of the dataset.") diff --git a/services/worker/tests/conftest.py b/services/worker/tests/conftest.py index fab26487..45336f41 100644 --- a/services/worker/tests/conftest.py +++ b/services/worker/tests/conftest.py @@ -15,0 +16 @@ from libcommon.storage import ( + init_statistics_cache_dir, @@ -45,0 +47,5 @@ def worker_state_file_path(tmp_path: Path) -> str: +@fixture +def statistics_cache_directory(app_config: AppConfig) -> StrPath: + return init_statistics_cache_dir(app_config.descriptive_statistics.cache_directory) + + @@ -70,0 +77 @@ def set_env_vars( + mp.setenv("DESCRIPTIVE_STATISTICS_MAX_PARQUET_SIZE_BYTES", "10_000") diff --git a/services/worker/tests/fixtures/datasets.py b/services/worker/tests/fixtures/datasets.py index 7e7a28ff..6c006936 100644 --- a/services/worker/tests/fixtures/datasets.py +++ b/services/worker/tests/fixtures/datasets.py @@ -169,0 +170,242 @@ def datasets() -> Mapping[str, Dataset]: + "descriptive_statistics": Dataset.from_dict( + { + "int_column": [0, 0, 1, 1, 2, 2, 2, 3, 4, 4, 5, 5, 5, 5, 5, 6, 7, 8, 8, 8], + "int_nan_column": [0, None, 1, None, 2, None, 2, None, 4, None, 5, None, 5, 5, 5, 6, 7, 8, 8, 8], + "float_column": [ + 0.1, + 0.2, + 0.3, + 0.4, + 0.5, + 1.1, + 2.2, + 2.3, + 2.6, + 4.7, + 5.1, + 6.2, + 6.7, + 6.8, + 7.0, + 8.3, + 8.4, + 9.2, + 9.7, + 9.9, + ], + "float_nan_column": [ + None, + 0.2, + 0.3, + None, + 0.5, + None, + 2.2, + None, + 2.6, + 4.7, + 5.1, + None, + None, + None, + None, + 8.3, + 8.4, + 9.2, + 9.7, + 9.9, + ], + "class_label_column": [ + "cat", + "dog", + "cat", + "cat", + "cat", + "cat", + "cat", + "cat", + "cat", + "cat", + "cat", + "cat", + "cat", + "cat", + "cat", + "cat", + "dog", + "cat", + "dog", + "cat", + ], + "class_label_nan_column": [ + "cat", + None, + "cat", + "cat", + "cat", + None, + "cat", + "cat", + "cat", + None, + "cat", + "cat", + "cat", + "cat", + "cat", + "cat", + "dog", + "cat", + None, + "cat", + ], + "float_negative_column": [ + -7.221, + -5.333, + -15.154, + -15.392, + -15.054, + -10.176, + -10.072, + -10.59, + -6.0, + -14.951, + -14.054, + -9.706, + -7.053, + -10.072, + -15.054, + -12.777, + -12.233, + -13.54, + -14.376, + -15.754, + ], + "float_cross_zero_column": [ + -7.221, + -5.333, + -15.154, + -15.392, + -15.054, + -10.176, + -10.072, + -10.59, + 6.0, + 14.951, + 14.054, + -9.706, + 7.053, + 0.0, + -15.054, + -12.777, + 12.233, + 13.54, + -14.376, + 15.754, + ], + "float_large_values_column": [ + 1101.34567, + 1178.923, + 197.2134, + 1150.8483, + 169.907655, + 156.4580, + 134.4368456, + 189.456, + 145.0912, + 148.354465, + 190.8943, + 1134.34, + 155.22366, + 153.0, + 163.0, + 143.5468, + 177.231, + 132.568, + 191.99, + 1114.0, + ], + "int_negative_column": [ + -10, + -9, + -8, + -1, + -5, + -1, + -2, + -3, + -5, + -4, + -7, + -8, + -11, + -15, + -20 - 11, + -1, + -14, + -11, + -0, + -10, + ], + "int_cross_zero_column": [ + -10, + -9, + -8, + 0, + 0, + 1, + 2, + -3, + -5, + 4, + 7, + 8, + 11, + 15, + 20 - 11, + -1, + 14, + 11, + 0, + -10, + ], + "int_large_values_column": [ + 1101, + 1178, + 197, + 1150, + 169, + 156, + 134, + 189, + 145, + 148, + 190, + 1134, + 155, + 153, + 163, + 143, + 177, + 132, + 191, + 1114, + ], + }, + features=Features( + { + "int_column": Value("int32"), + "int_nan_column": Value("int32"), + "int_negative_column": Value("int32"), + "int_cross_zero_column": Value("int32"), + "int_large_values_column": Value("int32"), + "float_column": Value("float32"), + "float_nan_column": Value("float32"), + "float_negative_column": Value("float64"), + "float_cross_zero_column": Value("float32"), + "float_large_values_column": Value("float32"), + "class_label_column": ClassLabel(names=["cat", "dog"]), + "class_label_nan_column": ClassLabel(names=["cat", "dog"]), + } + ), + ), diff --git a/services/worker/tests/fixtures/hub.py b/services/worker/tests/fixtures/hub.py index b436e496..30c03b2a 100644 --- a/services/worker/tests/fixtures/hub.py +++ b/services/worker/tests/fixtures/hub.py @@ -290,0 +291,7 @@ def hub_public_duckdb_index(datasets: Mapping[str, Dataset]) -> Iterator[str]: [email protected](scope="session") +def hub_public_descriptive_statistics(datasets: Mapping[str, Dataset]) -> Iterator[str]: + repo_id = create_hub_dataset_repo(prefix="descriptive_statistics", dataset=datasets["descriptive_statistics"]) + yield repo_id + delete_hub_dataset_repo(repo_id=repo_id) + + @@ -628 +635 @@ SPAWNING_OPT_IN_OUT_rows = ["http://testurl.test/test_image.jpg", "http://testur -def hub_reponses_does_not_exist() -> HubDatasetTest: +def hub_responses_does_not_exist() -> HubDatasetTest: @@ -639 +646 @@ def hub_reponses_does_not_exist() -> HubDatasetTest: -def hub_reponses_does_not_exist_config() -> HubDatasetTest: +def hub_responses_does_not_exist_config() -> HubDatasetTest: @@ -650 +657 @@ def hub_reponses_does_not_exist_config() -> HubDatasetTest: -def hub_reponses_does_not_exist_split() -> HubDatasetTest: +def hub_responses_does_not_exist_split() -> HubDatasetTest: @@ -661 +668 @@ def hub_reponses_does_not_exist_split() -> HubDatasetTest: -def hub_reponses_empty(hub_public_empty: str) -> HubDatasetTest: +def hub_responses_empty(hub_public_empty: str) -> HubDatasetTest: @@ -683 +690 @@ def hub_responses_public(hub_public_csv: str) -> HubDatasetTest: -def hub_reponses_private(hub_private_csv: str) -> HubDatasetTest: +def hub_responses_private(hub_private_csv: str) -> HubDatasetTest: @@ -694 +701 @@ def hub_reponses_private(hub_private_csv: str) -> HubDatasetTest: -def hub_reponses_gated(hub_gated_csv: str) -> HubDatasetTest: +def hub_responses_gated(hub_gated_csv: str) -> HubDatasetTest: @@ -716 +723 @@ def hub_reponses_jsonl(hub_public_jsonl: str) -> HubDatasetTest: -def hub_reponses_audio(hub_public_audio: str) -> HubDatasetTest: +def hub_responses_audio(hub_public_audio: str) -> HubDatasetTest: @@ -729 +736 @@ def hub_reponses_audio(hub_public_audio: str) -> HubDatasetTest: -def hub_reponses_image(hub_public_image: str) -> HubDatasetTest: +def hub_responses_image(hub_public_image: str) -> HubDatasetTest: @@ -742 +749 @@ def hub_reponses_image(hub_public_image: str) -> HubDatasetTest: -def hub_reponses_images_list(hub_public_images_list: str) -> HubDatasetTest: +def hub_responses_images_list(hub_public_images_list: str) -> HubDatasetTest: @@ -755 +762 @@ def hub_reponses_images_list(hub_public_images_list: str) -> HubDatasetTest: -def hub_reponses_big(hub_public_big: str) -> HubDatasetTest: +def hub_responses_big(hub_public_big: str) -> HubDatasetTest: @@ -766 +773 @@ def hub_reponses_big(hub_public_big: str) -> HubDatasetTest: -def hub_reponses_big_no_info(hub_public_big_no_info: str) -> HubDatasetTest: +def hub_responses_big_no_info(hub_public_big_no_info: str) -> HubDatasetTest: @@ -779 +786 @@ def hub_reponses_big_no_info(hub_public_big_no_info: str) -> HubDatasetTest: -def hub_reponses_big_csv(hub_public_big_csv: str) -> HubDatasetTest: +def hub_responses_big_csv(hub_public_big_csv: str) -> HubDatasetTest: @@ -792 +799 @@ def hub_reponses_big_csv(hub_public_big_csv: str) -> HubDatasetTest: -def hub_reponses_external_files(hub_public_external_files: str) -> HubDatasetTest: +def hub_responses_external_files(hub_public_external_files: str) -> HubDatasetTest: @@ -803 +810 @@ def hub_reponses_external_files(hub_public_external_files: str) -> HubDatasetTes -def hub_reponses_spawning_opt_in_out(hub_public_spawning_opt_in_out: str) -> HubDatasetTest: +def hub_responses_spawning_opt_in_out(hub_public_spawning_opt_in_out: str) -> HubDatasetTest: @@ -825,0 +833,11 @@ def hub_responses_duckdb_index(hub_public_duckdb_index: str) -> HubDatasetTest: + + [email protected] +def hub_responses_descriptive_statistics(hub_public_descriptive_statistics: str) -> HubDatasetTest: + return { + "name": hub_public_descriptive_statistics, + "config_names_response": create_config_names_response(hub_public_descriptive_statistics), + "splits_response": create_splits_response(hub_public_descriptive_statistics), + "first_rows_response": None, + "parquet_and_info_response": None, + } diff --git a/services/worker/tests/job_runners/config/test_parquet_and_info.py b/services/worker/tests/job_runners/config/test_parquet_and_info.py index 603fe004..247f754e 100644 --- a/services/worker/tests/job_runners/config/test_parquet_and_info.py +++ b/services/worker/tests/job_runners/config/test_parquet_and_info.py @@ -357 +357 @@ def test_supported_if_big_parquet( - hub_reponses_big: HubDatasetTest, + hub_responses_big: HubDatasetTest, @@ -362,2 +362,2 @@ def test_supported_if_big_parquet( - dataset = hub_reponses_big["name"] - config = hub_reponses_big["config_names_response"]["config_names"][0]["config"] + dataset = hub_responses_big["name"] + config = hub_responses_big["config_names_response"]["config_names"][0]["config"] @@ -368 +368 @@ def test_supported_if_big_parquet( - content=hub_reponses_big["config_names_response"], + content=hub_responses_big["config_names_response"], @@ -376 +376 @@ def test_supported_if_big_parquet( - assert_content_is_equal(content, hub_reponses_big["parquet_and_info_response"]) + assert_content_is_equal(content, hub_responses_big["parquet_and_info_response"]) @@ -382 +382 @@ def test_partially_converted_if_big_non_parquet( - hub_reponses_big_csv: HubDatasetTest, + hub_responses_big_csv: HubDatasetTest, @@ -386,2 +386,2 @@ def test_partially_converted_if_big_non_parquet( - dataset = hub_reponses_big_csv["name"] - config = hub_reponses_big_csv["config_names_response"]["config_names"][0]["config"] + dataset = hub_responses_big_csv["name"] + config = hub_responses_big_csv["config_names_response"]["config_names"][0]["config"] @@ -392 +392 @@ def test_partially_converted_if_big_non_parquet( - content=hub_reponses_big_csv["config_names_response"], + content=hub_responses_big_csv["config_names_response"], @@ -405 +405 @@ def test_partially_converted_if_big_non_parquet( - assert_content_is_equal(content, hub_reponses_big_csv["parquet_and_info_response"]) + assert_content_is_equal(content, hub_responses_big_csv["parquet_and_info_response"]) @@ -414 +414 @@ def test_supported_if_gated( - hub_reponses_gated: HubDatasetTest, + hub_responses_gated: HubDatasetTest, @@ -417,2 +417,2 @@ def test_supported_if_gated( - dataset = hub_reponses_gated["name"] - config = hub_reponses_gated["config_names_response"]["config_names"][0]["config"] + dataset = hub_responses_gated["name"] + config = hub_responses_gated["config_names_response"]["config_names"][0]["config"] @@ -423 +423 @@ def test_supported_if_gated( - content=hub_reponses_gated["config_names_response"], + content=hub_responses_gated["config_names_response"], @@ -458,2 +458,2 @@ def test_compute_splits_response_simple_csv_ok( - hub_reponses_audio: HubDatasetTest, - hub_reponses_gated: HubDatasetTest, + hub_responses_audio: HubDatasetTest, + hub_responses_gated: HubDatasetTest, @@ -465 +465 @@ def test_compute_splits_response_simple_csv_ok( - hub_datasets = {"public": hub_responses_public, "audio": hub_reponses_audio, "gated": hub_reponses_gated} + hub_datasets = {"public": hub_responses_public, "audio": hub_responses_audio, "gated": hub_responses_gated} @@ -504 +504 @@ def test_compute_splits_response_simple_csv_error( - hub_reponses_private: HubDatasetTest, + hub_responses_private: HubDatasetTest, @@ -511,2 +511,2 @@ def test_compute_splits_response_simple_csv_error( - dataset = hub_reponses_private["name"] - config_names_response = hub_reponses_private["config_names_response"] + dataset = hub_responses_private["name"] + config_names_response = hub_responses_private["config_names_response"] @@ -518 +518 @@ def test_compute_splits_response_simple_csv_error( - content=hub_reponses_private["config_names_response"], + content=hub_responses_private["config_names_response"], @@ -949 +949 @@ def test_fill_builder_info( - hub_reponses_big: HubDatasetTest, + hub_responses_big: HubDatasetTest, @@ -955 +955 @@ def test_fill_builder_info( - name = hub_reponses_big["name"] + name = hub_responses_big["name"] @@ -966 +966 @@ def test_fill_builder_info( - expected_info = hub_reponses_big["parquet_and_info_response"]["dataset_info"] + expected_info = hub_responses_big["parquet_and_info_response"]["dataset_info"] diff --git a/services/worker/tests/job_runners/config/test_split_names_from_streaming.py b/services/worker/tests/job_runners/config/test_split_names_from_streaming.py index c978f96a..ae9ca703 100644 --- a/services/worker/tests/job_runners/config/test_split_names_from_streaming.py +++ b/services/worker/tests/job_runners/config/test_split_names_from_streaming.py @@ -93,5 +93,5 @@ def test_compute_split_names_from_streaming_response( - hub_reponses_audio: HubDatasetTest, - hub_reponses_gated: HubDatasetTest, - hub_reponses_private: HubDatasetTest, - hub_reponses_empty: HubDatasetTest, - hub_reponses_does_not_exist: HubDatasetTest, + hub_responses_audio: HubDatasetTest, + hub_responses_gated: HubDatasetTest, + hub_responses_private: HubDatasetTest, + hub_responses_empty: HubDatasetTest, + hub_responses_does_not_exist: HubDatasetTest, @@ -107,5 +107,5 @@ def test_compute_split_names_from_streaming_response( - "audio": hub_reponses_audio, - "gated": hub_reponses_gated, - "private": hub_reponses_private, - "empty": hub_reponses_empty, - "does_not_exist": hub_reponses_does_not_exist, + "audio": hub_responses_audio, + "gated": hub_responses_gated, + "private": hub_responses_private, + "empty": hub_responses_empty, + "does_not_exist": hub_responses_does_not_exist, diff --git a/services/worker/tests/job_runners/dataset/test_config_names.py b/services/worker/tests/job_runners/dataset/test_config_names.py index 3f2fcfd2..6aaa495f 100644 --- a/services/worker/tests/job_runners/dataset/test_config_names.py +++ b/services/worker/tests/job_runners/dataset/test_config_names.py @@ -115,5 +115,5 @@ def test_compute_splits_response_simple_csv( - hub_reponses_audio: HubDatasetTest, - hub_reponses_gated: HubDatasetTest, - hub_reponses_private: HubDatasetTest, - hub_reponses_empty: HubDatasetTest, - hub_reponses_does_not_exist: HubDatasetTest, + hub_responses_audio: HubDatasetTest, + hub_responses_gated: HubDatasetTest, + hub_responses_private: HubDatasetTest, + hub_responses_empty: HubDatasetTest, + hub_responses_does_not_exist: HubDatasetTest, @@ -129,5 +129,5 @@ def test_compute_splits_response_simple_csv( - "audio": hub_reponses_audio, - "gated": hub_reponses_gated, - "private": hub_reponses_private, - "empty": hub_reponses_empty, - "does_not_exist": hub_reponses_does_not_exist, + "audio": hub_responses_audio, + "gated": hub_responses_gated, + "private": hub_responses_private, + "empty": hub_responses_empty, + "does_not_exist": hub_responses_does_not_exist, diff --git a/services/worker/tests/job_runners/split/test_descriptive_statistics.py b/services/worker/tests/job_runners/split/test_descriptive_statistics.py new file mode 100644 index 00000000..f849d793 --- /dev/null +++ b/services/worker/tests/job_runners/split/test_descriptive_statistics.py @@ -0,0 +1,331 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +from http import HTTPStatus +from typing import Callable, List, Mapping, Optional + +import numpy as np +import pandas as pd +import pytest +from datasets import Dataset +from libcommon.processing_graph import ProcessingGraph +from libcommon.resources import CacheMongoResource, QueueMongoResource +from libcommon.simple_cache import upsert_response +from libcommon.storage import StrPath +from libcommon.utils import Priority + +from worker.config import AppConfig +from worker.job_runners.config.parquet_and_info import ConfigParquetAndInfoJobRunner +from worker.job_runners.split.descriptive_statistics import ( + DECIMALS, + ColumnType, + SplitDescriptiveStatisticsJobRunner, + generate_bins, +) +from worker.resources import LibrariesResource + +from ...fixtures.hub import HubDatasetTest + +GetJobRunner = Callable[[str, str, str, AppConfig], SplitDescriptiveStatisticsJobRunner] + +GetParquetAndInfoJobRunner = Callable[[str, str, AppConfig], ConfigParquetAndInfoJobRunner] + + [email protected] +def get_job_runner( + statistics_cache_directory: StrPath, + cache_mongo_resource: CacheMongoResource, + queue_mongo_resource: QueueMongoResource, +) -> GetJobRunner: + def _get_job_runner( + dataset: str, + config: str, + split: str, + app_config: AppConfig, + ) -> SplitDescriptiveStatisticsJobRunner: + processing_step_name = SplitDescriptiveStatisticsJobRunner.get_job_type() + processing_graph = ProcessingGraph( + { + "dataset-config-names": {"input_type": "dataset"}, + "config-split-names-from-info": { + "input_type": "config", + "triggered_by": "dataset-config-names", + }, + processing_step_name: { + "input_type": "split", + "job_runner_version": SplitDescriptiveStatisticsJobRunner.get_job_runner_version(), + "triggered_by": ["config-split-names-from-info"], + }, + } + ) + return SplitDescriptiveStatisticsJobRunner( + job_info={ + "type": SplitDescriptiveStatisticsJobRunner.get_job_type(), + "params": { + "dataset": dataset, + "revision": "revision", + "config": config, + "split": split, + }, + "job_id": "job_id", + "priority": Priority.NORMAL, + "difficulty": 100, + }, + app_config=app_config, + processing_step=processing_graph.get_processing_step(processing_step_name), + statistics_cache_directory=statistics_cache_directory, + ) + + return _get_job_runner + + [email protected] +def get_parquet_and_info_job_runner( + libraries_resource: LibrariesResource, + cache_mongo_resource: CacheMongoResource, + queue_mongo_resource: QueueMongoResource, +) -> GetParquetAndInfoJobRunner: + def _get_job_runner( + dataset: str, + config: str, + app_config: AppConfig, + ) -> ConfigParquetAndInfoJobRunner: + processing_step_name = ConfigParquetAndInfoJobRunner.get_job_type() + processing_graph = ProcessingGraph( + { + "dataset-config-names": {"input_type": "dataset"}, + processing_step_name: { + "input_type": "config", + "job_runner_version": ConfigParquetAndInfoJobRunner.get_job_runner_version(), + "triggered_by": "dataset-config-names", + }, + } + ) + return ConfigParquetAndInfoJobRunner( + job_info={ + "type": ConfigParquetAndInfoJobRunner.get_job_type(), + "params": { + "dataset": dataset, + "revision": "revision", + "config": config, + "split": None, + }, + "job_id": "job_id", + "priority": Priority.NORMAL, + "difficulty": 100, + }, + app_config=app_config, + processing_step=processing_graph.get_processing_step(processing_step_name), + hf_datasets_cache=libraries_resource.hf_datasets_cache, + ) + + return _get_job_runner + + +def count_expected_statistics_for_numerical_column(column: pd.Series, dtype: ColumnType) -> dict: # type: ignore + minimum, maximum, mean, median, std = ( + column.min(), + column.max(), + column.mean(), + column.median(), + column.std(), + ) + n_samples = column.shape[0] + nan_count = column.isna().sum() + if dtype is ColumnType.FLOAT: + hist, bin_edges = np.histogram(column[~column.isna()]) + bin_edges = bin_edges.astype(float).round(DECIMALS).tolist() + else: + bins = generate_bins(minimum, maximum, dtype, 10) # TODO: N BINS + hist, bin_edges = np.histogram(column[~column.isna()], np.append(bins.bin_min, maximum)) + bin_edges = bin_edges.astype(int).tolist() + hist = hist.astype(int).tolist() + if dtype is ColumnType.FLOAT: + minimum = minimum.astype(float).round(DECIMALS).item() + maximum = maximum.astype(float).round(DECIMALS).item() + mean = mean.astype(float).round(DECIMALS).item() # type: ignore + median = median.astype(float).round(DECIMALS).item() # type: ignore + std = std.astype(float).round(DECIMALS).item() # type: ignore + else: + mean, median, std = list(np.round([mean, median, std], DECIMALS)) + return { + "nan_count": nan_count, + "nan_proportion": np.round(nan_count / n_samples, DECIMALS).item() if nan_count else 0.0, + "min": minimum, + "max": maximum, + "mean": mean, + "median": median, + "std": std, + "histogram": { + "hist": hist, + "bin_edges": bin_edges, + }, + } + + +def count_expected_statistics_for_categorical_column( + column: pd.Series, class_labels: List[str] # type: ignore +) -> dict: # type: ignore + n_samples = column.shape[0] + nan_count = column.isna().sum() + value_counts = column.value_counts().to_dict() + n_unique = len(value_counts) + frequencies = {class_labels[int(class_id)]: class_count for class_id, class_count in value_counts.items()} + return { + "nan_count": nan_count, + "nan_proportion": np.round(nan_count / n_samples, DECIMALS).item() if nan_count else 0.0, + "n_unique": n_unique, + "frequencies": frequencies, + } + + [email protected] +def descriptive_statistics_expected(datasets: Mapping[str, Dataset]) -> dict: # type: ignore + ds = datasets["descriptive_statistics"] + df = ds.to_pandas() + expected_statistics = {} + for column_name in df.columns: + if column_name.startswith("int_"): + column_type = ColumnType.INT + elif column_name.startswith("float_"): + column_type = ColumnType.FLOAT + elif column_name.startswith("class_label"): + column_type = ColumnType.CLASS_LABEL + else: + continue + if column_type in [ColumnType.FLOAT, ColumnType.INT]: + column_stats = count_expected_statistics_for_numerical_column(df[column_name], dtype=column_type) + if sum(column_stats["histogram"]["hist"]) != df.shape[0] - column_stats["nan_count"]: + raise ValueError(column_name, column_stats) + expected_statistics[column_name] = { + "column_name": column_name, + "column_type": column_type, + "column_statistics": column_stats, + } + elif column_type is ColumnType.CLASS_LABEL: + class_labels = ds.features[column_name].names + column_stats = count_expected_statistics_for_categorical_column(df[column_name], class_labels=class_labels) + expected_statistics[column_name] = { + "column_name": column_name, + "column_type": column_type, + "column_statistics": column_stats, + } + return expected_statistics + + [email protected]( + "hub_dataset_name,expected_error_code", + [ + ("descriptive_statistics", None), + ("audio", "NoSupportedFeaturesError"), + ("big", "SplitWithTooBigParquetError"), + ], +) +def test_compute( + app_config: AppConfig, + get_job_runner: GetJobRunner, + get_parquet_and_info_job_runner: GetParquetAndInfoJobRunner, + hub_responses_descriptive_statistics: HubDatasetTest, + hub_responses_audio: HubDatasetTest, + hub_responses_big: HubDatasetTest, + hub_dataset_name: str, + expected_error_code: Optional[str], + descriptive_statistics_expected: dict, # type: ignore +) -> None: + hub_datasets = { + "descriptive_statistics": hub_responses_descriptive_statistics, + "audio": hub_responses_audio, + "big": hub_responses_big, + } + dataset = hub_datasets[hub_dataset_name]["name"] + config_names_response = hub_datasets[hub_dataset_name]["config_names_response"] + splits_response = hub_datasets[hub_dataset_name]["splits_response"] + config, split = splits_response["splits"][0]["config"], splits_response["splits"][0]["split"] + + upsert_response("dataset-config-names", dataset=dataset, http_status=HTTPStatus.OK, content=config_names_response) + upsert_response( + "config-split-names-from-info", + dataset=dataset, + config=config, + http_status=HTTPStatus.OK, + content=splits_response, + ) + + # computing and pushing real parquet files because we need them for stats computation + parquet_job_runner = get_parquet_and_info_job_runner(dataset, config, app_config) + parquet_and_info_response = parquet_job_runner.compute() + + upsert_response( + "config-parquet-and-info", + dataset=dataset, + config=config, + http_status=HTTPStatus.OK, + content=parquet_and_info_response.content, + ) + + assert parquet_and_info_response + job_runner = get_job_runner(dataset, config, split, app_config) + job_runner.pre_compute() + if expected_error_code: + with pytest.raises(Exception) as e: + job_runner.compute() + assert e.typename == expected_error_code + else: + response = job_runner.compute() + assert sorted(response.content.keys()) == ["num_examples", "statistics"] + assert response.content["num_examples"] == 20 + response_statistics = response.content["statistics"] + assert len(response_statistics) == len(descriptive_statistics_expected) + assert set([column_response["column_name"] for column_response in response_statistics]) == set( + descriptive_statistics_expected.keys() + ) # assert returned features are as expected + for column_response_statistics in response_statistics: + assert_statistics_equal( + column_response_statistics, descriptive_statistics_expected[column_response_statistics["column_name"]] + ) + + +def assert_statistics_equal(response: dict, expected: dict) -> None: # type: ignore + """ + Check that all values are equal or in case of float - almost equal. + We use np.isclose because of small possible mismatches + between numpy (which is used for counting expected values) and python float rounding. + """ + assert response["column_name"] == expected["column_name"] + assert response["column_type"] == expected["column_type"] + response_stats, expected_stats = response["column_statistics"], expected["column_statistics"] + assert response_stats.keys() == expected_stats.keys() + + if response["column_type"] is ColumnType.FLOAT: + assert np.isclose( + response_stats["histogram"]["bin_edges"], expected_stats["histogram"]["bin_edges"], 1e-3 + ).all() + assert np.isclose(response_stats["min"], expected_stats["min"], 1e-3) + assert np.isclose(response_stats["max"], expected_stats["max"], 1e-3) + assert np.isclose(response_stats["mean"], expected_stats["mean"], 1e-3) + assert np.isclose(response_stats["median"], expected_stats["median"], 1e-3) + assert np.isclose(response_stats["std"], expected_stats["std"], 1e-3) + assert np.isclose(response_stats["nan_proportion"], expected_stats["nan_proportion"], 1e-3) + + assert response_stats["nan_count"] == expected_stats["nan_count"] + assert response_stats["histogram"]["hist"] == expected_stats["histogram"]["hist"] + + elif response["column_type"] is ColumnType.INT: + assert np.isclose(response_stats["mean"], expected_stats["mean"], 1e-3) + assert np.isclose(response_stats["median"], expected_stats["median"], 1e-3) + assert np.isclose(response_stats["std"], expected_stats["std"], 1e-3) + assert np.isclose(response_stats["nan_proportion"], expected_stats["nan_proportion"], 1e-3) + + assert response_stats["min"] == expected_stats["min"] + assert response_stats["max"] == expected_stats["max"] + assert response_stats["nan_count"] == expected_stats["nan_count"] + assert response_stats["histogram"] == expected_stats["histogram"] + + elif response["column_type"] is ColumnType.CLASS_LABEL: + assert np.isclose(response_stats["nan_proportion"], expected_stats["nan_proportion"], 1e-3) + assert response_stats["nan_count"] == expected_stats["nan_count"] + assert response_stats["n_unique"] == expected_stats["n_unique"] + assert response_stats["frequencies"] == expected_stats["frequencies"] + + else: + raise ValueError("Incorrect data type") diff --git a/services/worker/tests/job_runners/split/test_first_rows_from_streaming.py b/services/worker/tests/job_runners/split/test_first_rows_from_streaming.py index 9fdb0bad..3ec75a0d 100644 --- a/services/worker/tests/job_runners/split/test_first_rows_from_streaming.py +++ b/services/worker/tests/job_runners/split/test_first_rows_from_streaming.py @@ -118,3 +118,3 @@ def test_number_rows( - hub_reponses_audio: HubDatasetTest, - hub_reponses_image: HubDatasetTest, - hub_reponses_images_list: HubDatasetTest, + hub_responses_audio: HubDatasetTest, + hub_responses_image: HubDatasetTest, + hub_responses_images_list: HubDatasetTest, @@ -122,5 +122,5 @@ def test_number_rows( - hub_reponses_gated: HubDatasetTest, - hub_reponses_private: HubDatasetTest, - hub_reponses_empty: HubDatasetTest, - hub_reponses_does_not_exist_config: HubDatasetTest, - hub_reponses_does_not_exist_split: HubDatasetTest, + hub_responses_gated: HubDatasetTest, + hub_responses_private: HubDatasetTest, + hub_responses_empty: HubDatasetTest, + hub_responses_does_not_exist_config: HubDatasetTest, + hub_responses_does_not_exist_split: HubDatasetTest, @@ -142,3 +142,3 @@ def test_number_rows( - "audio": hub_reponses_audio, - "image": hub_reponses_image, - "images_list": hub_reponses_images_list, + "audio": hub_responses_audio, + "image": hub_responses_image, + "images_list": hub_responses_images_list, @@ -146,5 +146,5 @@ def test_number_rows( - "gated": hub_reponses_gated, - "private": hub_reponses_private, - "empty": hub_reponses_empty, - "does_not_exist_config": hub_reponses_does_not_exist_config, - "does_not_exist_split": hub_reponses_does_not_exist_split, + "gated": hub_responses_gated, + "private": hub_responses_private, + "empty": hub_responses_empty, + "does_not_exist_config": hub_responses_does_not_exist_config, + "does_not_exist_split": hub_responses_does_not_exist_split, diff --git a/services/worker/tests/job_runners/split/test_opt_in_out_urls_scan_from_streaming.py b/services/worker/tests/job_runners/split/test_opt_in_out_urls_scan_from_streaming.py index 72678d0e..ff6640a4 100644 --- a/services/worker/tests/job_runners/split/test_opt_in_out_urls_scan_from_streaming.py +++ b/services/worker/tests/job_runners/split/test_opt_in_out_urls_scan_from_streaming.py @@ -178 +178 @@ def test_compute( - hub_reponses_spawning_opt_in_out: HubDatasetTest, + hub_responses_spawning_opt_in_out: HubDatasetTest, @@ -186 +186 @@ def test_compute( - hub_datasets = {"public": hub_responses_public, "spawning_opt_in_out": hub_reponses_spawning_opt_in_out} + hub_datasets = {"public": hub_responses_public, "spawning_opt_in_out": hub_responses_spawning_opt_in_out} @@ -241 +241 @@ def test_compute_failed( - hub_reponses_spawning_opt_in_out: HubDatasetTest, + hub_responses_spawning_opt_in_out: HubDatasetTest, @@ -250 +250 @@ def test_compute_failed( - dataset = hub_reponses_spawning_opt_in_out["name"] + dataset = hub_responses_spawning_opt_in_out["name"] diff --git a/services/worker/tests/test_executor.py b/services/worker/tests/test_executor.py index d8f59018..b2d85bf1 100644 --- a/services/worker/tests/test_executor.py +++ b/services/worker/tests/test_executor.py @@ -208,0 +209 @@ def job_runner_factory( + statistics_cache_directory: StrPath, @@ -217,0 +219 @@ def job_runner_factory( + statistics_cache_directory=statistics_cache_directory, diff --git a/services/worker/tests/test_job_runner_factory.py b/services/worker/tests/test_job_runner_factory.py index 84765d48..45b5df34 100644 --- a/services/worker/tests/test_job_runner_factory.py +++ b/services/worker/tests/test_job_runner_factory.py @@ -42,0 +43 @@ def test_create_job_runner( + statistics_cache_directory: StrPath, @@ -52,0 +54 @@ def test_create_job_runner( + statistics_cache_directory=statistics_cache_directory, diff --git a/tools/docker-compose-datasets-server.yml b/tools/docker-compose-datasets-server.yml index 6f667196..fa736d68 100644 --- a/tools/docker-compose-datasets-server.yml +++ b/tools/docker-compose-datasets-server.yml @@ -130,0 +131,9 @@ services: + DESCRIPTIVE_STATISTICS_CACHE_DIRECTORY: ${DESCRIPTIVE_STATISTICS_CACHE_DIRECTORY-/stats-cache} + DESCRIPTIVE_STATISTICS_HISTOGRAM_NUM_BINS: ${DESCRIPTIVE_STATISTICS_HISTOGRAM_NUM_BINS-10} + DESCRIPTIVE_STATISTICS_MAX_PARQUET_SIZE_BYTES: ${DESCRIPTIVE_STATISTICS_MAX_PARQUET_SIZE_BYTES-100_000_000} + DUCKDB_INDEX_STORAGE_DIRECTORY: ${DUCKDB_INDEX_STORAGE_DIRECTORY-/duckdb-index} + DUCKDB_INDEX_COMMIT_MESSAGE: ${DUCKDB_INDEX_COMMIT_MESSAGE-Update duckdb index file} + DUCKDB_INDEX_COMMITTER_HF_TOKEN: ${DUCKDB_INDEX_COMMITTER_HF_TOKEN-} + DUCKDB_INDEX_TARGET_REVISION: ${DUCKDB_INDEX_TARGET_REVISION-refs/convert/parquet} + DUCKDB_INDEX_URL_TEMPLATE: ${DUCKDB_INDEX_URL_TEMPLATE-/datasets/%s/resolve/%s/%s} + DUCKDB_INDEX_MAX_PARQUET_SIZE_BYTES: ${DUCKDB_INDEX_MAX_PARQUET_SIZE_BYTES-100_000_000} @@ -135,0 +145,7 @@ services: + OPT_IN_OUT_URLS_SCAN_COLUMNS_MAX_NUMBER: ${OPT_IN_OUT_URLS_SCAN_COLUMNS_MAX_NUMBER-10} + OPT_IN_OUT_URLS_SCAN_MAX_CONCURRENT_REQUESTS_NUMBER: ${OPT_IN_OUT_URLS_SCAN_MAX_CONCURRENT_REQUESTS_NUMBER-100} + OPT_IN_OUT_URLS_SCAN_MAX_REQUESTS_PER_SECOND: ${OPT_IN_OUT_URLS_SCAN_MAX_REQUESTS_PER_SECOND-50} + OPT_IN_OUT_URLS_SCAN_ROWS_MAX_NUMBER: ${OPT_IN_OUT_URLS_SCAN_ROWS_MAX_NUMBER-100_000} + OPT_IN_OUT_URLS_SCAN_SPAWNING_TOKEN: ${OPT_IN_OUT_URLS_SCAN_SPAWNING_TOKEN-} + OPT_IN_OUT_URLS_SCAN_URLS_NUMBER_PER_BATCH: ${OPT_IN_OUT_URLS_SCAN_URLS_NUMBER_PER_BATCH-1000} + OPT_IN_OUT_URLS_SCAN_SPAWNING_URL: ${OPT_IN_OUT_URLS_SCAN_SPAWNING_URL-https://opts-api.spawningaiapi.com/api/v2/query/urls} @@ -148,6 +163,0 @@ services: - DUCKDB_INDEX_STORAGE_DIRECTORY: ${DUCKDB_INDEX_STORAGE_DIRECTORY-/duckdb-index} - DUCKDB_INDEX_COMMIT_MESSAGE: ${DUCKDB_INDEX_COMMIT_MESSAGE-Update duckdb index file} - DUCKDB_INDEX_COMMITTER_HF_TOKEN: ${DUCKDB_INDEX_COMMITTER_HF_TOKEN-} - DUCKDB_INDEX_TARGET_REVISION: ${DUCKDB_INDEX_TARGET_REVISION-refs/convert/parquet} - DUCKDB_INDEX_URL_TEMPLATE: ${DUCKDB_INDEX_URL_TEMPLATE-/datasets/%s/resolve/%s/%s} - DUCKDB_INDEX_MAX_PARQUET_SIZE_BYTES: ${DUCKDB_INDEX_MAX_PARQUET_SIZE_BYTES-100_000_000} @@ -156,7 +165,0 @@ services: - OPT_IN_OUT_URLS_SCAN_COLUMNS_MAX_NUMBER: ${OPT_IN_OUT_URLS_SCAN_COLUMNS_MAX_NUMBER-10} - OPT_IN_OUT_URLS_SCAN_MAX_CONCURRENT_REQUESTS_NUMBER: ${OPT_IN_OUT_URLS_SCAN_MAX_CONCURRENT_REQUESTS_NUMBER-100} - OPT_IN_OUT_URLS_SCAN_MAX_REQUESTS_PER_SECOND: ${OPT_IN_OUT_URLS_SCAN_MAX_REQUESTS_PER_SECOND-50} - OPT_IN_OUT_URLS_SCAN_ROWS_MAX_NUMBER: ${OPT_IN_OUT_URLS_SCAN_ROWS_MAX_NUMBER-100_000} - OPT_IN_OUT_URLS_SCAN_SPAWNING_TOKEN: ${OPT_IN_OUT_URLS_SCAN_SPAWNING_TOKEN-} - OPT_IN_OUT_URLS_SCAN_URLS_NUMBER_PER_BATCH: ${OPT_IN_OUT_URLS_SCAN_URLS_NUMBER_PER_BATCH-1000} - OPT_IN_OUT_URLS_SCAN_SPAWNING_URL: ${OPT_IN_OUT_URLS_SCAN_SPAWNING_URL-https://opts-api.spawningaiapi.com/api/v2/query/urls} diff --git a/tools/docker-compose-dev-datasets-server.yml b/tools/docker-compose-dev-datasets-server.yml index aabcca1e..d49dc549 100644 --- a/tools/docker-compose-dev-datasets-server.yml +++ b/tools/docker-compose-dev-datasets-server.yml @@ -135,0 +136,9 @@ services: + DESCRIPTIVE_STATISTICS_CACHE_DIRECTORY: ${DESCRIPTIVE_STATISTICS_CACHE_DIRECTORY-/stats-cache} + DESCRIPTIVE_STATISTICS_HISTOGRAM_NUM_BINS: ${DESCRIPTIVE_STATISTICS_HISTOGRAM_NUM_BINS-10} + DESCRIPTIVE_STATISTICS_MAX_PARQUET_SIZE_BYTES: ${DESCRIPTIVE_STATISTICS_MAX_PARQUET_SIZE_BYTES-100_000_000} + DUCKDB_INDEX_STORAGE_DIRECTORY: ${DUCKDB_INDEX_STORAGE_DIRECTORY-/duckdb-index} + DUCKDB_INDEX_COMMIT_MESSAGE: ${DUCKDB_INDEX_COMMIT_MESSAGE-Update duckdb index files} + DUCKDB_INDEX_COMMITTER_HF_TOKEN: ${DUCKDB_INDEX_COMMITTER_HF_TOKEN-} + DUCKDB_INDEX_TARGET_REVISION: ${DUCKDB_INDEX_TARGET_REVISION-refs/convert/parquet} + DUCKDB_INDEX_URL_TEMPLATE: ${DUCKDB_INDEX_URL_TEMPLATE-/datasets/%s/resolve/%s/%s} + DUCKDB_INDEX_MAX_PARQUET_SIZE_BYTES: ${DUCKDB_INDEX_MAX_PARQUET_SIZE_BYTES-100_000_000} @@ -140,0 +150,7 @@ services: + OPT_IN_OUT_URLS_SCAN_COLUMNS_MAX_NUMBER: ${OPT_IN_OUT_URLS_SCAN_COLUMNS_MAX_NUMBER-10} + OPT_IN_OUT_URLS_SCAN_MAX_CONCURRENT_REQUESTS_NUMBER: ${OPT_IN_OUT_URLS_SCAN_MAX_CONCURRENT_REQUESTS_NUMBER-100} + OPT_IN_OUT_URLS_SCAN_MAX_REQUESTS_PER_SECOND: ${OPT_IN_OUT_URLS_SCAN_MAX_REQUESTS_PER_SECOND-50} + OPT_IN_OUT_URLS_SCAN_ROWS_MAX_NUMBER: ${OPT_IN_OUT_URLS_SCAN_ROWS_MAX_NUMBER-100_000} + OPT_IN_OUT_URLS_SCAN_SPAWNING_TOKEN: ${OPT_IN_OUT_URLS_SCAN_SPAWNING_TOKEN-} + OPT_IN_OUT_URLS_SCAN_URLS_NUMBER_PER_BATCH: ${OPT_IN_OUT_URLS_SCAN_URLS_NUMBER_PER_BATCH-1000} + OPT_IN_OUT_URLS_SCAN_SPAWNING_URL: ${OPT_IN_OUT_URLS_SCAN_SPAWNING_URL-https://opts-api.spawningaiapi.com/api/v2/query/urls} @@ -153,6 +168,0 @@ services: - DUCKDB_INDEX_STORAGE_DIRECTORY: ${DUCKDB_INDEX_STORAGE_DIRECTORY-/duckdb-index} - DUCKDB_INDEX_COMMIT_MESSAGE: ${DUCKDB_INDEX_COMMIT_MESSAGE-Update duckdb index files} - DUCKDB_INDEX_COMMITTER_HF_TOKEN: ${DUCKDB_INDEX_COMMITTER_HF_TOKEN-} - DUCKDB_INDEX_TARGET_REVISION: ${DUCKDB_INDEX_TARGET_REVISION-refs/convert/parquet} - DUCKDB_INDEX_URL_TEMPLATE: ${DUCKDB_INDEX_URL_TEMPLATE-/datasets/%s/resolve/%s/%s} - DUCKDB_INDEX_MAX_PARQUET_SIZE_BYTES: ${DUCKDB_INDEX_MAX_PARQUET_SIZE_BYTES-100_000_000} @@ -161,7 +170,0 @@ services: - OPT_IN_OUT_URLS_SCAN_COLUMNS_MAX_NUMBER: ${OPT_IN_OUT_URLS_SCAN_COLUMNS_MAX_NUMBER-10} - OPT_IN_OUT_URLS_SCAN_MAX_CONCURRENT_REQUESTS_NUMBER: ${OPT_IN_OUT_URLS_SCAN_MAX_CONCURRENT_REQUESTS_NUMBER-100} - OPT_IN_OUT_URLS_SCAN_MAX_REQUESTS_PER_SECOND: ${OPT_IN_OUT_URLS_SCAN_MAX_REQUESTS_PER_SECOND-50} - OPT_IN_OUT_URLS_SCAN_ROWS_MAX_NUMBER: ${OPT_IN_OUT_URLS_SCAN_ROWS_MAX_NUMBER-100_000} - OPT_IN_OUT_URLS_SCAN_SPAWNING_TOKEN: ${OPT_IN_OUT_URLS_SCAN_SPAWNING_TOKEN-} - OPT_IN_OUT_URLS_SCAN_URLS_NUMBER_PER_BATCH: ${OPT_IN_OUT_URLS_SCAN_URLS_NUMBER_PER_BATCH-1000} - OPT_IN_OUT_URLS_SCAN_SPAWNING_URL: ${OPT_IN_OUT_URLS_SCAN_SPAWNING_URL-https://opts-api.spawningaiapi.com/api/v2/query/urls}
cfdba5a9a8306e613e574643fd590899b47f0bce
Sylvain Lesage
2023-07-27T14:51:28
feat: 🎸 reduce overcommitment for rows service (#1572)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 192d1593..f71a593a 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -298 +298 @@ rows: - memory: "4Gi" + memory: "6Gi"
e172f24072299bc1a98266ccbd3e3c31396bcccc
Albert Villanova del Moral
2023-07-27T09:52:21
Document setting up local dev env with same Poetry version as CI (#1566)
diff --git a/DEVELOPER_GUIDE.md b/DEVELOPER_GUIDE.md index e2101dc5..6e97737e 100644 --- a/DEVELOPER_GUIDE.md +++ b/DEVELOPER_GUIDE.md @@ -156 +156,44 @@ GITHUB_TOKEN=xxx -## Mac OS +## Set up development environment + +### Linux + +Install pyenv: + +```bash +$ curl https://pyenv.run | bash +``` + +Install Python 3.9.15: + +```bash +$ pyenv install 3.9.15 +``` + +Check that the expected local version of Python is used: + +```bash +$ cd services/worker +$ python --version +Python 3.9.15 +``` + +Install Poetry: + +```bash +curl -sSL https://install.python-poetry.org | POETRY_VERSION=1.4.2 python3 - +``` + +Set the Python version to use with Poetry: + +```bash +poetry env use 3.9.15 +``` + +Install the dependencies: + +```bash +make install +``` + + +### Mac OS @@ -160 +203 @@ To install the [worker](./services/worker) on Mac OS, you can follow the next st -### First: as an administrator +#### First: as an administrator @@ -187 +230 @@ For compilers to find icu4c you may need to set: -### Then: as a normal user +#### Then: as a normal user @@ -229 +272 @@ Install poetry: -curl -sSL https://install.python-poetry.org | python3 - +curl -sSL https://install.python-poetry.org | POETRY_VERSION=1.4.2 python3 -
4ee4b65f557236ecc2829a9470a76b09c20c1e0a
Sylvain Lesage
2023-07-26T20:06:42
feat: 🎸 update the modification date of root dataset dir (#1569)
diff --git a/libs/libcommon/src/libcommon/viewer_utils/asset.py b/libs/libcommon/src/libcommon/viewer_utils/asset.py index f98eff12..55dbf532 100644 --- a/libs/libcommon/src/libcommon/viewer_utils/asset.py +++ b/libs/libcommon/src/libcommon/viewer_utils/asset.py @@ -3,0 +4 @@ +import contextlib @@ -36,0 +38,12 @@ def glob_rows_in_assets_dir( +def update_directory_modification_date(path: Path) -> None: + if path.is_dir(): + # update the directory's last modified date + temporary_file = path / DATASETS_SERVER_MDATE_FILENAME + if temporary_file.is_dir(): + raise ValueError(f"Cannot create temporary file {temporary_file} in {path}") + temporary_file.touch(exist_ok=True) + if temporary_file.is_file(): + with contextlib.suppress(FileNotFoundError): + temporary_file.unlink() + + @@ -44,0 +58 @@ def update_last_modified_date_of_rows_in_assets_dir( + update_directory_modification_date(Path(assets_directory).resolve() / dataset.split("/")[0]) @@ -47,8 +61 @@ def update_last_modified_date_of_rows_in_assets_dir( - if (row_dirs_path / str(row_idx)).is_dir(): - # update the directory's last modified date - if (row_dirs_path / str(row_idx) / DATASETS_SERVER_MDATE_FILENAME).is_file(): - try: - (row_dirs_path / str(row_idx) / DATASETS_SERVER_MDATE_FILENAME).unlink() - except FileNotFoundError: - pass - (row_dirs_path / str(row_idx) / DATASETS_SERVER_MDATE_FILENAME).touch() + update_directory_modification_date(row_dirs_path / str(row_idx))
2045018de4f43fac262a39804f28be351d0d943e
Quentin Lhoest
2023-07-26T15:28:16
fix flaky executor test on long jobs (#1567)
diff --git a/services/worker/src/worker/executor.py b/services/worker/src/worker/executor.py index d663a775..06903414 100644 --- a/services/worker/src/worker/executor.py +++ b/services/worker/src/worker/executor.py @@ -60,0 +61,5 @@ class WorkerExecutor: + self.heartbeat_interval_seconds = self.app_config.worker.heartbeat_interval_seconds + self.max_job_duration_seconds = self.app_config.worker.max_job_duration_seconds + self.kill_zombies_interval_seconds = self.app_config.worker.kill_zombies_interval_seconds + self.kill_long_job_interval_seconds = self.app_config.worker.kill_long_job_interval_seconds + @@ -88 +93 @@ class WorkerExecutor: - loop.create_task(every(self.heartbeat, seconds=self.app_config.worker.heartbeat_interval_seconds)) + loop.create_task(every(self.heartbeat, seconds=self.heartbeat_interval_seconds)) @@ -93,2 +98,2 @@ class WorkerExecutor: - self.app_config.worker.kill_zombies_interval_seconds * 0.5, - self.app_config.worker.kill_zombies_interval_seconds * 1.5, + self.kill_zombies_interval_seconds * 0.5, + self.kill_zombies_interval_seconds * 1.5, @@ -103,2 +108,2 @@ class WorkerExecutor: - self.app_config.worker.kill_long_job_interval_seconds * 0.5, - self.app_config.worker.kill_long_job_interval_seconds * 1.5, + self.kill_long_job_interval_seconds * 0.5, + self.kill_long_job_interval_seconds * 1.5, @@ -155,4 +160 @@ class WorkerExecutor: - if ( - last_updated + timedelta(seconds=coefficient * self.app_config.worker.max_job_duration_seconds) - <= get_datetime() - ): + if last_updated + timedelta(seconds=coefficient * self.max_job_duration_seconds) <= get_datetime(): @@ -162 +164 @@ class WorkerExecutor: - f" {self.app_config.worker.max_job_duration_seconds} seconds ({_duration_seconds} seconds)." + f" {self.max_job_duration_seconds} seconds ({_duration_seconds} seconds)." diff --git a/services/worker/tests/test_executor.py b/services/worker/tests/test_executor.py index 165c8038..d8f59018 100644 --- a/services/worker/tests/test_executor.py +++ b/services/worker/tests/test_executor.py @@ -349,4 +349,7 @@ def test_executor_stops_on_long_job( - with patch("worker.executor.START_WORKER_LOOP_PATH", __file__), patch.dict( - os.environ, {"WORKER_TEST_TIME": str(_TIME)} - ): - executor.start() + with patch.object( + executor, "kill_long_job_interval_seconds", 0.1 + ): # make sure it has the time to kill the job + with patch("worker.executor.START_WORKER_LOOP_PATH", __file__), patch.dict( + os.environ, {"WORKER_TEST_TIME": str(_TIME)} + ): + executor.start()
221e5f6f3c314d33555ce51fc2527447aab78c71
Sylvain Lesage
2023-07-26T15:22:13
feat: 🎸 only issues with label P0, P1 or P2 cannot be stale (#1568)
diff --git a/tools/stale.py b/tools/stale.py index 8c791c9a..9a2a0d04 100644 --- a/tools/stale.py +++ b/tools/stale.py @@ -17,3 +17,3 @@ LABELS_TO_EXEMPT = [ - "good first issue", - "feature request", - "keep" + "P0", + "P1", + "P2"
0a8d8c6aa62f36c8afb24de8a131ddf46f0aae38
Sylvain Lesage
2023-07-25T22:26:24
feat: 🎸 add heavy workers to help flush the queue (#1564)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 60a9ed52..192d1593 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -312 +312 @@ workers: - replicas: 16 + replicas: 24
3e531f619f41aacdcb84b61855780d631d3f96c8
Sylvain Lesage
2023-07-25T20:22:18
Fix storage configs (#1559)
diff --git a/chart/templates/_envDatasetsBased.tpl b/chart/templates/_envDatasetsBased.tpl index 05d1ed29..0bf57342 100644 --- a/chart/templates/_envDatasetsBased.tpl +++ b/chart/templates/_envDatasetsBased.tpl @@ -9,2 +8,0 @@ -- name: NUMBA_CACHE_DIR - value: "/tmp/numba-cache" diff --git a/chart/templates/worker/_container.tpl b/chart/templates/worker/_container.tpl index 2bfc9ab0..cf58ef20 100644 --- a/chart/templates/worker/_container.tpl +++ b/chart/templates/worker/_container.tpl @@ -16,0 +17 @@ + {{ include "envNumba" . | nindent 2 }} diff --git a/services/api/src/api/config.py b/services/api/src/api/config.py index 6ae79099..f9ff64bc 100644 --- a/services/api/src/api/config.py +++ b/services/api/src/api/config.py @@ -13 +12,0 @@ from libcommon.config import ( - ParquetMetadataConfig, @@ -29 +27,0 @@ class AppConfig: - parquet_metadata: ParquetMetadataConfig = field(default_factory=ParquetMetadataConfig) @@ -42 +39,0 @@ class AppConfig: - parquet_metadata=ParquetMetadataConfig.from_env(), diff --git a/services/api/tests/conftest.py b/services/api/tests/conftest.py index 1bd5163a..8a66ca24 100644 --- a/services/api/tests/conftest.py +++ b/services/api/tests/conftest.py @@ -11 +11 @@ from libcommon.simple_cache import _clean_cache_database -from libcommon.storage import StrPath, init_cached_assets_dir, init_parquet_metadata_dir +from libcommon.storage import StrPath, init_cached_assets_dir @@ -132,5 +131,0 @@ def cached_assets_directory(app_config: AppConfig) -> StrPath: - - -@fixture -def parquet_metadata_directory(app_config: AppConfig) -> StrPath: - return init_parquet_metadata_dir(app_config.parquet_metadata.storage_directory) diff --git a/services/worker/src/worker/config.py b/services/worker/src/worker/config.py index f244a3ce..a52d55f5 100644 --- a/services/worker/src/worker/config.py +++ b/services/worker/src/worker/config.py @@ -235 +235 @@ class NumbaConfig: - return cls(path=env.str(name="NUMBA_CACHE_DIR", default=NUMBA_CACHE_DIR)) + return cls(path=env.str(name="CACHE_DIR", default=NUMBA_CACHE_DIR))
3ca773737a86c37b8fdbae7b5c32e712e2261591
Albert Villanova del Moral
2023-07-25T17:30:34
Update poetry minor version in Dockerfiles and GH Actions (#1555)
diff --git a/.github/workflows/_e2e_tests.yml b/.github/workflows/_e2e_tests.yml index c4272b3e..25fccf99 100644 --- a/.github/workflows/_e2e_tests.yml +++ b/.github/workflows/_e2e_tests.yml @@ -9 +9 @@ env: - poetry-version: 1.4.0 + poetry-version: "1.4.2" diff --git a/.github/workflows/_quality-python.yml b/.github/workflows/_quality-python.yml index b282f8e3..39c3fb2b 100644 --- a/.github/workflows/_quality-python.yml +++ b/.github/workflows/_quality-python.yml @@ -15 +15 @@ env: - poetry-version: "1.4.0" + poetry-version: "1.4.2" diff --git a/.github/workflows/_unit-tests-python.yml b/.github/workflows/_unit-tests-python.yml index 763748bf..3bbe3156 100644 --- a/.github/workflows/_unit-tests-python.yml +++ b/.github/workflows/_unit-tests-python.yml @@ -16 +16 @@ env: - poetry-version: "1.4.0" + poetry-version: "1.4.2" diff --git a/.github/workflows/openapi-spec.yml b/.github/workflows/openapi-spec.yml index bfae8dcf..7de61309 100644 --- a/.github/workflows/openapi-spec.yml +++ b/.github/workflows/openapi-spec.yml @@ -19 +19 @@ env: - poetry-version: 1.4.0 + poetry-version: "1.4.2" diff --git a/jobs/cache_maintenance/Dockerfile b/jobs/cache_maintenance/Dockerfile index bcc0d76e..e15319b6 100644 --- a/jobs/cache_maintenance/Dockerfile +++ b/jobs/cache_maintenance/Dockerfile @@ -13 +13 @@ ENV PYTHONFAULTHANDLER=1 \ - POETRY_VERSION=1.4.0 \ + POETRY_VERSION=1.4.2 \ diff --git a/jobs/mongodb_migration/Dockerfile b/jobs/mongodb_migration/Dockerfile index 2dfb42a4..cbd47967 100644 --- a/jobs/mongodb_migration/Dockerfile +++ b/jobs/mongodb_migration/Dockerfile @@ -13 +13 @@ ENV PYTHONFAULTHANDLER=1 \ - POETRY_VERSION=1.4.0 \ + POETRY_VERSION=1.4.2 \ diff --git a/services/admin/Dockerfile b/services/admin/Dockerfile index f63efeab..a1e41610 100644 --- a/services/admin/Dockerfile +++ b/services/admin/Dockerfile @@ -13 +13 @@ ENV PYTHONFAULTHANDLER=1 \ - POETRY_VERSION=1.4.0 \ + POETRY_VERSION=1.4.2 \ diff --git a/services/admin/dev.Dockerfile b/services/admin/dev.Dockerfile index c471992e..de2e3815 100644 --- a/services/admin/dev.Dockerfile +++ b/services/admin/dev.Dockerfile @@ -13 +13 @@ ENV PYTHONFAULTHANDLER=1 \ - POETRY_VERSION=1.4.0 \ + POETRY_VERSION=1.4.2 \ diff --git a/services/api/Dockerfile b/services/api/Dockerfile index 437a2367..07228fb7 100644 --- a/services/api/Dockerfile +++ b/services/api/Dockerfile @@ -13 +13 @@ ENV PYTHONFAULTHANDLER=1 \ - POETRY_VERSION=1.4.0 \ + POETRY_VERSION=1.4.2 \ diff --git a/services/api/dev.Dockerfile b/services/api/dev.Dockerfile index 09196638..150cbd05 100644 --- a/services/api/dev.Dockerfile +++ b/services/api/dev.Dockerfile @@ -13 +13 @@ ENV PYTHONFAULTHANDLER=1 \ - POETRY_VERSION=1.4.0 \ + POETRY_VERSION=1.4.2 \ diff --git a/services/rows/Dockerfile b/services/rows/Dockerfile index 6e0db885..ef98625e 100644 --- a/services/rows/Dockerfile +++ b/services/rows/Dockerfile @@ -13 +13 @@ ENV PYTHONFAULTHANDLER=1 \ - POETRY_VERSION=1.4.0 \ + POETRY_VERSION=1.4.2 \ diff --git a/services/rows/dev.Dockerfile b/services/rows/dev.Dockerfile index 6c710bbf..5289e1c0 100644 --- a/services/rows/dev.Dockerfile +++ b/services/rows/dev.Dockerfile @@ -13 +13 @@ ENV PYTHONFAULTHANDLER=1 \ - POETRY_VERSION=1.4.0 \ + POETRY_VERSION=1.4.2 \ diff --git a/services/worker/Dockerfile b/services/worker/Dockerfile index 922ebb17..bc29e518 100644 --- a/services/worker/Dockerfile +++ b/services/worker/Dockerfile @@ -13 +13 @@ ENV PYTHONFAULTHANDLER=1 \ - POETRY_VERSION=1.4.0 \ + POETRY_VERSION=1.4.2 \ diff --git a/services/worker/dev.Dockerfile b/services/worker/dev.Dockerfile index e014bb61..90a1beac 100644 --- a/services/worker/dev.Dockerfile +++ b/services/worker/dev.Dockerfile @@ -13 +13 @@ ENV PYTHONFAULTHANDLER=1 \ - POETRY_VERSION=1.4.0 \ + POETRY_VERSION=1.4.2 \
1cdf727e642f7501b494e7f878468deb5e06db8d
Sylvain Lesage
2023-07-25T16:40:07
feat: 🎸 request 4Gi per /rows pod (#1558)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index f21a6255..60a9ed52 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -298 +298 @@ rows: - memory: "2Gi" + memory: "4Gi"
2445ac925c05864f6f1cbc1f087711bbccaa6825
Albert Villanova del Moral
2023-07-25T16:14:21
Update locked cachecontrol yanked version (#1553)
diff --git a/e2e/poetry.lock b/e2e/poetry.lock index 56320794..8631d58d 100644 --- a/e2e/poetry.lock +++ b/e2e/poetry.lock @@ -84 +84 @@ name = "cachecontrol" -version = "0.13.0" +version = "0.13.1" @@ -88 +88 @@ optional = false -python-versions = ">=3.6" +python-versions = ">=3.7" @@ -90,2 +90,2 @@ files = [ - {file = "CacheControl-0.13.0-py3-none-any.whl", hash = "sha256:4544a012a25cf0a73c53cd986f68b4f9c9f6b1df01d741c2923c3d56c66c7bda"}, - {file = "CacheControl-0.13.0.tar.gz", hash = "sha256:fd3fd2cb0ca66b9a6c1d56cc9709e7e49c63dbd19b1b1bcbd8d3f94cedfe8ce5"}, + {file = "cachecontrol-0.13.1-py3-none-any.whl", hash = "sha256:95dedbec849f46dda3137866dc28b9d133fc9af55f5b805ab1291833e4457aa4"}, + {file = "cachecontrol-0.13.1.tar.gz", hash = "sha256:f012366b79d2243a6118309ce73151bf52a38d4a5dac8ea57f09bd29087e506b"}, @@ -99,0 +100 @@ requests = ">=2.16.0" +dev = ["CacheControl[filecache,redis]", "black", "build", "cherrypy", "mypy", "pytest", "pytest-cov", "sphinx", "tox", "types-redis", "types-requests"]
bbd54ae85426fc447091543bf4f843a03aafdb23
Albert Villanova del Moral
2023-07-25T16:13:38
Update huggingface-hub dependency to 0.16.4 version (#1552)
diff --git a/e2e/poetry.lock b/e2e/poetry.lock index 50da8526..56320794 100644 --- a/e2e/poetry.lock +++ b/e2e/poetry.lock @@ -456 +456 @@ name = "huggingface-hub" -version = "0.15.1" +version = "0.16.4" @@ -462,2 +462,2 @@ files = [ - {file = "huggingface_hub-0.15.1-py3-none-any.whl", hash = "sha256:05b0fb0abbf1f625dfee864648ac3049fe225ac4371c7bafaca0c2d3a2f83445"}, - {file = "huggingface_hub-0.15.1.tar.gz", hash = "sha256:a61b7d1a7769fe10119e730277c72ab99d95c48d86a3d6da3e9f3d0f632a4081"}, + {file = "huggingface_hub-0.16.4-py3-none-any.whl", hash = "sha256:0d3df29932f334fead024afc7cb4cc5149d955238b8b5e42dcf9740d6995a349"}, + {file = "huggingface_hub-0.16.4.tar.gz", hash = "sha256:608c7d4f3d368b326d1747f91523dbd1f692871e8e2e7a4750314a2dd8b63e14"}, @@ -476 +476 @@ typing-extensions = ">=3.7.4.3" -all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -478 +478 @@ cli = ["InquirerPy (==0.3.4)"] -dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -479,0 +480 @@ fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"] +inference = ["aiohttp", "pydantic"] @@ -482 +483 @@ tensorflow = ["graphviz", "pydot", "tensorflow"] -testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "gradio", "jedi", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] +testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "gradio", "jedi", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] @@ -484 +485 @@ torch = ["torch"] -typing = ["types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] +typing = ["pydantic", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] @@ -1432 +1433 @@ python-versions = "3.9.15" -content-hash = "0cdca5c48d955b55c5b3e57a885c24208eb936736b691a4686430a9afb37be3f" +content-hash = "9ccb8e307b8c4e4f028c150462e0dcaa3261ed886f2ee3255373ccb9fb516c97" diff --git a/e2e/pyproject.toml b/e2e/pyproject.toml index a6599398..2b037e6b 100644 --- a/e2e/pyproject.toml +++ b/e2e/pyproject.toml @@ -16 +16 @@ flake8 = "^3.9.2" -huggingface-hub = "^0.15.1" +huggingface-hub = "^0.16.4" diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 208f7800..b8fef47f 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -1031 +1031 @@ name = "huggingface-hub" -version = "0.15.1" +version = "0.16.4" @@ -1037,2 +1037,2 @@ files = [ - {file = "huggingface_hub-0.15.1-py3-none-any.whl", hash = "sha256:05b0fb0abbf1f625dfee864648ac3049fe225ac4371c7bafaca0c2d3a2f83445"}, - {file = "huggingface_hub-0.15.1.tar.gz", hash = "sha256:a61b7d1a7769fe10119e730277c72ab99d95c48d86a3d6da3e9f3d0f632a4081"}, + {file = "huggingface_hub-0.16.4-py3-none-any.whl", hash = "sha256:0d3df29932f334fead024afc7cb4cc5149d955238b8b5e42dcf9740d6995a349"}, + {file = "huggingface_hub-0.16.4.tar.gz", hash = "sha256:608c7d4f3d368b326d1747f91523dbd1f692871e8e2e7a4750314a2dd8b63e14"}, @@ -1051 +1051 @@ typing-extensions = ">=3.7.4.3" -all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -1053 +1053 @@ cli = ["InquirerPy (==0.3.4)"] -dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -1054,0 +1055 @@ fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"] +inference = ["aiohttp", "pydantic"] @@ -1057 +1058 @@ tensorflow = ["graphviz", "pydot", "tensorflow"] -testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "gradio", "jedi", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] +testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "gradio", "jedi", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] @@ -1059 +1060 @@ torch = ["torch"] -typing = ["types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] +typing = ["pydantic", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] @@ -1250 +1251 @@ environs = "^9.5.0" -huggingface-hub = "^0.15.1" +huggingface-hub = "^0.16.4" @@ -3261 +3262 @@ python-versions = "3.9.15" -content-hash = "4c403bae2a09145ce4fb1217296ad92a9a01b184bf2d913aceb98a777b55c133" +content-hash = "be1d93d554075bb846d5406562c2df6e71db00bfe601f07fe975fa016481b95d" diff --git a/front/admin_ui/pyproject.toml b/front/admin_ui/pyproject.toml index cf4bebc5..6a9cc8af 100644 --- a/front/admin_ui/pyproject.toml +++ b/front/admin_ui/pyproject.toml @@ -13 +13 @@ python = "3.9.15" -huggingface-hub = "^0.15.1" +huggingface-hub = "^0.16.4" diff --git a/jobs/cache_maintenance/poetry.lock b/jobs/cache_maintenance/poetry.lock index ccffa8fd..e61523c4 100644 --- a/jobs/cache_maintenance/poetry.lock +++ b/jobs/cache_maintenance/poetry.lock @@ -914 +914 @@ name = "huggingface-hub" -version = "0.15.1" +version = "0.16.4" @@ -920,2 +920,2 @@ files = [ - {file = "huggingface_hub-0.15.1-py3-none-any.whl", hash = "sha256:05b0fb0abbf1f625dfee864648ac3049fe225ac4371c7bafaca0c2d3a2f83445"}, - {file = "huggingface_hub-0.15.1.tar.gz", hash = "sha256:a61b7d1a7769fe10119e730277c72ab99d95c48d86a3d6da3e9f3d0f632a4081"}, + {file = "huggingface_hub-0.16.4-py3-none-any.whl", hash = "sha256:0d3df29932f334fead024afc7cb4cc5149d955238b8b5e42dcf9740d6995a349"}, + {file = "huggingface_hub-0.16.4.tar.gz", hash = "sha256:608c7d4f3d368b326d1747f91523dbd1f692871e8e2e7a4750314a2dd8b63e14"}, @@ -934 +934 @@ typing-extensions = ">=3.7.4.3" -all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -936 +936 @@ cli = ["InquirerPy (==0.3.4)"] -dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -937,0 +938 @@ fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"] +inference = ["aiohttp", "pydantic"] @@ -940 +941 @@ tensorflow = ["graphviz", "pydot", "tensorflow"] -testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "gradio", "jedi", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] +testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "gradio", "jedi", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] @@ -942 +943 @@ torch = ["torch"] -typing = ["types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] +typing = ["pydantic", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] @@ -1028 +1029 @@ environs = "^9.5.0" -huggingface-hub = "^0.15.1" +huggingface-hub = "^0.16.4" diff --git a/jobs/mongodb_migration/poetry.lock b/jobs/mongodb_migration/poetry.lock index ccffa8fd..e61523c4 100644 --- a/jobs/mongodb_migration/poetry.lock +++ b/jobs/mongodb_migration/poetry.lock @@ -914 +914 @@ name = "huggingface-hub" -version = "0.15.1" +version = "0.16.4" @@ -920,2 +920,2 @@ files = [ - {file = "huggingface_hub-0.15.1-py3-none-any.whl", hash = "sha256:05b0fb0abbf1f625dfee864648ac3049fe225ac4371c7bafaca0c2d3a2f83445"}, - {file = "huggingface_hub-0.15.1.tar.gz", hash = "sha256:a61b7d1a7769fe10119e730277c72ab99d95c48d86a3d6da3e9f3d0f632a4081"}, + {file = "huggingface_hub-0.16.4-py3-none-any.whl", hash = "sha256:0d3df29932f334fead024afc7cb4cc5149d955238b8b5e42dcf9740d6995a349"}, + {file = "huggingface_hub-0.16.4.tar.gz", hash = "sha256:608c7d4f3d368b326d1747f91523dbd1f692871e8e2e7a4750314a2dd8b63e14"}, @@ -934 +934 @@ typing-extensions = ">=3.7.4.3" -all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -936 +936 @@ cli = ["InquirerPy (==0.3.4)"] -dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -937,0 +938 @@ fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"] +inference = ["aiohttp", "pydantic"] @@ -940 +941 @@ tensorflow = ["graphviz", "pydot", "tensorflow"] -testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "gradio", "jedi", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] +testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "gradio", "jedi", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] @@ -942 +943 @@ torch = ["torch"] -typing = ["types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] +typing = ["pydantic", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] @@ -1028 +1029 @@ environs = "^9.5.0" -huggingface-hub = "^0.15.1" +huggingface-hub = "^0.16.4" diff --git a/libs/libapi/poetry.lock b/libs/libapi/poetry.lock index 3d34ec9b..e8440393 100644 --- a/libs/libapi/poetry.lock +++ b/libs/libapi/poetry.lock @@ -971 +971 @@ name = "huggingface-hub" -version = "0.15.1" +version = "0.16.4" @@ -977,2 +977,2 @@ files = [ - {file = "huggingface_hub-0.15.1-py3-none-any.whl", hash = "sha256:05b0fb0abbf1f625dfee864648ac3049fe225ac4371c7bafaca0c2d3a2f83445"}, - {file = "huggingface_hub-0.15.1.tar.gz", hash = "sha256:a61b7d1a7769fe10119e730277c72ab99d95c48d86a3d6da3e9f3d0f632a4081"}, + {file = "huggingface_hub-0.16.4-py3-none-any.whl", hash = "sha256:0d3df29932f334fead024afc7cb4cc5149d955238b8b5e42dcf9740d6995a349"}, + {file = "huggingface_hub-0.16.4.tar.gz", hash = "sha256:608c7d4f3d368b326d1747f91523dbd1f692871e8e2e7a4750314a2dd8b63e14"}, @@ -991 +991 @@ typing-extensions = ">=3.7.4.3" -all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -993 +993 @@ cli = ["InquirerPy (==0.3.4)"] -dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -994,0 +995 @@ fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"] +inference = ["aiohttp", "pydantic"] @@ -997 +998 @@ tensorflow = ["graphviz", "pydot", "tensorflow"] -testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "gradio", "jedi", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] +testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "gradio", "jedi", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] @@ -999 +1000 @@ torch = ["torch"] -typing = ["types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] +typing = ["pydantic", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] @@ -1085 +1086 @@ environs = "^9.5.0" -huggingface-hub = "^0.15.1" +huggingface-hub = "^0.16.4" diff --git a/libs/libcommon/poetry.lock b/libs/libcommon/poetry.lock index f0c19354..a070ad0a 100644 --- a/libs/libcommon/poetry.lock +++ b/libs/libcommon/poetry.lock @@ -914 +914 @@ name = "huggingface-hub" -version = "0.15.1" +version = "0.16.4" @@ -920,2 +920,2 @@ files = [ - {file = "huggingface_hub-0.15.1-py3-none-any.whl", hash = "sha256:05b0fb0abbf1f625dfee864648ac3049fe225ac4371c7bafaca0c2d3a2f83445"}, - {file = "huggingface_hub-0.15.1.tar.gz", hash = "sha256:a61b7d1a7769fe10119e730277c72ab99d95c48d86a3d6da3e9f3d0f632a4081"}, + {file = "huggingface_hub-0.16.4-py3-none-any.whl", hash = "sha256:0d3df29932f334fead024afc7cb4cc5149d955238b8b5e42dcf9740d6995a349"}, + {file = "huggingface_hub-0.16.4.tar.gz", hash = "sha256:608c7d4f3d368b326d1747f91523dbd1f692871e8e2e7a4750314a2dd8b63e14"}, @@ -934 +934 @@ typing-extensions = ">=3.7.4.3" -all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -936 +936 @@ cli = ["InquirerPy (==0.3.4)"] -dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -937,0 +938 @@ fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"] +inference = ["aiohttp", "pydantic"] @@ -940 +941 @@ tensorflow = ["graphviz", "pydot", "tensorflow"] -testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "gradio", "jedi", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] +testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "gradio", "jedi", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] @@ -942 +943 @@ torch = ["torch"] -typing = ["types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] +typing = ["pydantic", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] @@ -3013 +3014 @@ python-versions = "3.9.15" -content-hash = "c796cce59e2755d2a0b49d39a532262156b903ef92d51cfd769f3e66eceb932c" +content-hash = "13edd58f1c9acd0ece1f9a251b35a17408486c1963188825c6b3f379eb7a8eb2" diff --git a/libs/libcommon/pyproject.toml b/libs/libcommon/pyproject.toml index c4234875..56244192 100644 --- a/libs/libcommon/pyproject.toml +++ b/libs/libcommon/pyproject.toml @@ -12 +12 @@ environs = "^9.5.0" -huggingface-hub = "^0.15.1" +huggingface-hub = "^0.16.4" diff --git a/services/admin/poetry.lock b/services/admin/poetry.lock index 0cb34b5a..9f3a1e44 100644 --- a/services/admin/poetry.lock +++ b/services/admin/poetry.lock @@ -972 +972 @@ name = "huggingface-hub" -version = "0.15.1" +version = "0.16.4" @@ -978,2 +978,2 @@ files = [ - {file = "huggingface_hub-0.15.1-py3-none-any.whl", hash = "sha256:05b0fb0abbf1f625dfee864648ac3049fe225ac4371c7bafaca0c2d3a2f83445"}, - {file = "huggingface_hub-0.15.1.tar.gz", hash = "sha256:a61b7d1a7769fe10119e730277c72ab99d95c48d86a3d6da3e9f3d0f632a4081"}, + {file = "huggingface_hub-0.16.4-py3-none-any.whl", hash = "sha256:0d3df29932f334fead024afc7cb4cc5149d955238b8b5e42dcf9740d6995a349"}, + {file = "huggingface_hub-0.16.4.tar.gz", hash = "sha256:608c7d4f3d368b326d1747f91523dbd1f692871e8e2e7a4750314a2dd8b63e14"}, @@ -992 +992 @@ typing-extensions = ">=3.7.4.3" -all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -994 +994 @@ cli = ["InquirerPy (==0.3.4)"] -dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -995,0 +996 @@ fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"] +inference = ["aiohttp", "pydantic"] @@ -998 +999 @@ tensorflow = ["graphviz", "pydot", "tensorflow"] -testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "gradio", "jedi", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] +testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "gradio", "jedi", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] @@ -1000 +1001 @@ torch = ["torch"] -typing = ["types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] +typing = ["pydantic", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] @@ -1086 +1087 @@ environs = "^9.5.0" -huggingface-hub = "^0.15.1" +huggingface-hub = "^0.16.4" @@ -3178 +3179 @@ python-versions = "3.9.15" -content-hash = "4e26a8bed529d7887a33b09f337e1311cd74732328595d4bf1aff050253ff5f4" +content-hash = "d7a75dc6eac3e5e8cf055f341fba56e25fb7acf83648c9e07c3ea047be097e63" diff --git a/services/admin/pyproject.toml b/services/admin/pyproject.toml index 172c6b3c..58f05613 100644 --- a/services/admin/pyproject.toml +++ b/services/admin/pyproject.toml @@ -23 +23 @@ httpx = "^0.23.3" -huggingface-hub = "^0.15.1" +huggingface-hub = "^0.16.4" diff --git a/services/api/poetry.lock b/services/api/poetry.lock index c9cf8f3e..42cfb1b6 100644 --- a/services/api/poetry.lock +++ b/services/api/poetry.lock @@ -1018 +1018 @@ name = "huggingface-hub" -version = "0.15.1" +version = "0.16.4" @@ -1024,2 +1024,2 @@ files = [ - {file = "huggingface_hub-0.15.1-py3-none-any.whl", hash = "sha256:05b0fb0abbf1f625dfee864648ac3049fe225ac4371c7bafaca0c2d3a2f83445"}, - {file = "huggingface_hub-0.15.1.tar.gz", hash = "sha256:a61b7d1a7769fe10119e730277c72ab99d95c48d86a3d6da3e9f3d0f632a4081"}, + {file = "huggingface_hub-0.16.4-py3-none-any.whl", hash = "sha256:0d3df29932f334fead024afc7cb4cc5149d955238b8b5e42dcf9740d6995a349"}, + {file = "huggingface_hub-0.16.4.tar.gz", hash = "sha256:608c7d4f3d368b326d1747f91523dbd1f692871e8e2e7a4750314a2dd8b63e14"}, @@ -1038 +1038 @@ typing-extensions = ">=3.7.4.3" -all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -1040 +1040 @@ cli = ["InquirerPy (==0.3.4)"] -dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -1041,0 +1042 @@ fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"] +inference = ["aiohttp", "pydantic"] @@ -1044 +1045 @@ tensorflow = ["graphviz", "pydot", "tensorflow"] -testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "gradio", "jedi", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] +testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "gradio", "jedi", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] @@ -1046 +1047 @@ torch = ["torch"] -typing = ["types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] +typing = ["pydantic", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] @@ -1176 +1177 @@ environs = "^9.5.0" -huggingface-hub = "^0.15.1" +huggingface-hub = "^0.16.4" diff --git a/services/rows/poetry.lock b/services/rows/poetry.lock index 65753aeb..be9199a9 100644 --- a/services/rows/poetry.lock +++ b/services/rows/poetry.lock @@ -1029 +1029 @@ name = "huggingface-hub" -version = "0.15.1" +version = "0.16.4" @@ -1035,2 +1035,2 @@ files = [ - {file = "huggingface_hub-0.15.1-py3-none-any.whl", hash = "sha256:05b0fb0abbf1f625dfee864648ac3049fe225ac4371c7bafaca0c2d3a2f83445"}, - {file = "huggingface_hub-0.15.1.tar.gz", hash = "sha256:a61b7d1a7769fe10119e730277c72ab99d95c48d86a3d6da3e9f3d0f632a4081"}, + {file = "huggingface_hub-0.16.4-py3-none-any.whl", hash = "sha256:0d3df29932f334fead024afc7cb4cc5149d955238b8b5e42dcf9740d6995a349"}, + {file = "huggingface_hub-0.16.4.tar.gz", hash = "sha256:608c7d4f3d368b326d1747f91523dbd1f692871e8e2e7a4750314a2dd8b63e14"}, @@ -1049 +1049 @@ typing-extensions = ">=3.7.4.3" -all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -1051 +1051 @@ cli = ["InquirerPy (==0.3.4)"] -dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -1052,0 +1053 @@ fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"] +inference = ["aiohttp", "pydantic"] @@ -1055 +1056 @@ tensorflow = ["graphviz", "pydot", "tensorflow"] -testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "gradio", "jedi", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] +testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "gradio", "jedi", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] @@ -1057 +1058 @@ torch = ["torch"] -typing = ["types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] +typing = ["pydantic", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] @@ -1187 +1188 @@ environs = "^9.5.0" -huggingface-hub = "^0.15.1" +huggingface-hub = "^0.16.4" diff --git a/services/worker/poetry.lock b/services/worker/poetry.lock index e7e35500..7296cd7d 100644 --- a/services/worker/poetry.lock +++ b/services/worker/poetry.lock @@ -1519 +1519 @@ name = "huggingface-hub" -version = "0.16.0.dev0" +version = "0.16.4" @@ -1524,2 +1524,4 @@ python-versions = ">=3.7.0" -files = [] -develop = false +files = [ + {file = "huggingface_hub-0.16.4-py3-none-any.whl", hash = "sha256:0d3df29932f334fead024afc7cb4cc5149d955238b8b5e42dcf9740d6995a349"}, + {file = "huggingface_hub-0.16.4.tar.gz", hash = "sha256:608c7d4f3d368b326d1747f91523dbd1f692871e8e2e7a4750314a2dd8b63e14"}, +] @@ -1537 +1539 @@ typing-extensions = ">=3.7.4.3" -all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +all = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -1539 +1541 @@ cli = ["InquirerPy (==0.3.4)"] -dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] +dev = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "black (>=23.1,<24.0)", "gradio", "jedi", "mypy (==0.982)", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "ruff (>=0.0.241)", "soundfile", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3", "urllib3 (<2.0)"] @@ -1540,0 +1543 @@ fastai = ["fastai (>=2.4)", "fastcore (>=1.3.27)", "toml"] +inference = ["aiohttp", "pydantic"] @@ -1543 +1546 @@ tensorflow = ["graphviz", "pydot", "tensorflow"] -testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "gradio", "jedi", "numpy", "pytest", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] +testing = ["InquirerPy (==0.3.4)", "Jinja2", "Pillow", "aiohttp", "gradio", "jedi", "numpy", "pydantic", "pytest", "pytest-asyncio", "pytest-cov", "pytest-env", "pytest-vcr", "pytest-xdist", "soundfile", "urllib3 (<2.0)"] @@ -1545,7 +1548 @@ torch = ["torch"] -typing = ["types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] - -[package.source] -type = "git" -url = "https://github.com/huggingface/huggingface_hub" -reference = "1055a56b2d2723b55ba4fdf1f3296e04cfd8d6db" -resolved_reference = "1055a56b2d2723b55ba4fdf1f3296e04cfd8d6db" +typing = ["pydantic", "types-PyYAML", "types-requests", "types-simplejson", "types-toml", "types-tqdm", "types-urllib3"] @@ -1844 +1841 @@ environs = "^9.5.0" -huggingface-hub = "^0.15.1" +huggingface-hub = "^0.16.4" @@ -5634 +5631 @@ python-versions = "3.9.15" -content-hash = "7b9fd2481fb986fca30a557319cf230f266121211c27d92ab44168121a21afc1" +content-hash = "ae4fd56d29a7d8cc750540a751d71225507bc8a6ee9b72e161a6504e5819f4c2" diff --git a/services/worker/pyproject.toml b/services/worker/pyproject.toml index 582de13c..62578535 100644 --- a/services/worker/pyproject.toml +++ b/services/worker/pyproject.toml @@ -18 +18 @@ gdown = "^4.6.3" -huggingface-hub = { git = "https://github.com/huggingface/huggingface_hub", rev = "1055a56b2d2723b55ba4fdf1f3296e04cfd8d6db" } +huggingface-hub = "^0.16.4"
b86d437552e6583fbc9473ea5a12cff5a87893fc
Albert Villanova del Moral
2023-07-25T16:05:52
Update certifi in poetry lock files (#1557)
diff --git a/e2e/poetry.lock b/e2e/poetry.lock index 19c5b449..50da8526 100644 --- a/e2e/poetry.lock +++ b/e2e/poetry.lock @@ -105 +105 @@ name = "certifi" -version = "2023.5.7" +version = "2023.7.22" @@ -111,2 +111,2 @@ files = [ - {file = "certifi-2023.5.7-py3-none-any.whl", hash = "sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716"}, - {file = "certifi-2023.5.7.tar.gz", hash = "sha256:0f0d56dc5a6ad56fd4ba36484d6cc34451e1c6548c61daad8c320169f91eddc7"}, + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 904f5f72..208f7800 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -241 +241 @@ name = "certifi" -version = "2023.5.7" +version = "2023.7.22" @@ -247,2 +247,2 @@ files = [ - {file = "certifi-2023.5.7-py3-none-any.whl", hash = "sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716"}, - {file = "certifi-2023.5.7.tar.gz", hash = "sha256:0f0d56dc5a6ad56fd4ba36484d6cc34451e1c6548c61daad8c320169f91eddc7"}, + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, @@ -2751,0 +2752 @@ files = [ + {file = "soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc"}, diff --git a/jobs/cache_maintenance/poetry.lock b/jobs/cache_maintenance/poetry.lock index 01d55f22..ccffa8fd 100644 --- a/jobs/cache_maintenance/poetry.lock +++ b/jobs/cache_maintenance/poetry.lock @@ -287 +287 @@ name = "certifi" -version = "2023.5.7" +version = "2023.7.22" @@ -293,2 +293,2 @@ files = [ - {file = "certifi-2023.5.7-py3-none-any.whl", hash = "sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716"}, - {file = "certifi-2023.5.7.tar.gz", hash = "sha256:0f0d56dc5a6ad56fd4ba36484d6cc34451e1c6548c61daad8c320169f91eddc7"}, + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, @@ -2563,0 +2564 @@ files = [ + {file = "soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc"}, diff --git a/jobs/mongodb_migration/poetry.lock b/jobs/mongodb_migration/poetry.lock index 01d55f22..ccffa8fd 100644 --- a/jobs/mongodb_migration/poetry.lock +++ b/jobs/mongodb_migration/poetry.lock @@ -287 +287 @@ name = "certifi" -version = "2023.5.7" +version = "2023.7.22" @@ -293,2 +293,2 @@ files = [ - {file = "certifi-2023.5.7-py3-none-any.whl", hash = "sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716"}, - {file = "certifi-2023.5.7.tar.gz", hash = "sha256:0f0d56dc5a6ad56fd4ba36484d6cc34451e1c6548c61daad8c320169f91eddc7"}, + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, @@ -2563,0 +2564 @@ files = [ + {file = "soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc"}, diff --git a/libs/libapi/poetry.lock b/libs/libapi/poetry.lock index 1c258452..3d34ec9b 100644 --- a/libs/libapi/poetry.lock +++ b/libs/libapi/poetry.lock @@ -287 +287 @@ name = "certifi" -version = "2023.5.7" +version = "2023.7.22" @@ -293,2 +293,2 @@ files = [ - {file = "certifi-2023.5.7-py3-none-any.whl", hash = "sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716"}, - {file = "certifi-2023.5.7.tar.gz", hash = "sha256:0f0d56dc5a6ad56fd4ba36484d6cc34451e1c6548c61daad8c320169f91eddc7"}, + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, @@ -2720,0 +2721 @@ files = [ + {file = "soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc"}, diff --git a/libs/libcommon/poetry.lock b/libs/libcommon/poetry.lock index a4cf1131..f0c19354 100644 --- a/libs/libcommon/poetry.lock +++ b/libs/libcommon/poetry.lock @@ -287 +287 @@ name = "certifi" -version = "2023.5.7" +version = "2023.7.22" @@ -293,2 +293,2 @@ files = [ - {file = "certifi-2023.5.7-py3-none-any.whl", hash = "sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716"}, - {file = "certifi-2023.5.7.tar.gz", hash = "sha256:0f0d56dc5a6ad56fd4ba36484d6cc34451e1c6548c61daad8c320169f91eddc7"}, + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, @@ -2544,0 +2545 @@ files = [ + {file = "soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc"}, diff --git a/services/admin/poetry.lock b/services/admin/poetry.lock index 878ee866..0cb34b5a 100644 --- a/services/admin/poetry.lock +++ b/services/admin/poetry.lock @@ -287 +287 @@ name = "certifi" -version = "2023.5.7" +version = "2023.7.22" @@ -293,2 +293,2 @@ files = [ - {file = "certifi-2023.5.7-py3-none-any.whl", hash = "sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716"}, - {file = "certifi-2023.5.7.tar.gz", hash = "sha256:0f0d56dc5a6ad56fd4ba36484d6cc34451e1c6548c61daad8c320169f91eddc7"}, + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, @@ -2658,0 +2659 @@ files = [ + {file = "soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc"}, diff --git a/services/api/poetry.lock b/services/api/poetry.lock index d809a126..c9cf8f3e 100644 --- a/services/api/poetry.lock +++ b/services/api/poetry.lock @@ -287 +287 @@ name = "certifi" -version = "2023.5.7" +version = "2023.7.22" @@ -293,2 +293,2 @@ files = [ - {file = "certifi-2023.5.7-py3-none-any.whl", hash = "sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716"}, - {file = "certifi-2023.5.7.tar.gz", hash = "sha256:0f0d56dc5a6ad56fd4ba36484d6cc34451e1c6548c61daad8c320169f91eddc7"}, + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, @@ -2802,0 +2803 @@ files = [ + {file = "soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc"}, diff --git a/services/rows/poetry.lock b/services/rows/poetry.lock index d7b2ed35..65753aeb 100644 --- a/services/rows/poetry.lock +++ b/services/rows/poetry.lock @@ -287 +287 @@ name = "certifi" -version = "2023.5.7" +version = "2023.7.22" @@ -293,2 +293,2 @@ files = [ - {file = "certifi-2023.5.7-py3-none-any.whl", hash = "sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716"}, - {file = "certifi-2023.5.7.tar.gz", hash = "sha256:0f0d56dc5a6ad56fd4ba36484d6cc34451e1c6548c61daad8c320169f91eddc7"}, + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, @@ -2817,0 +2818 @@ files = [ + {file = "soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc"}, diff --git a/services/worker/poetry.lock b/services/worker/poetry.lock index 12de9f24..e7e35500 100644 --- a/services/worker/poetry.lock +++ b/services/worker/poetry.lock @@ -518 +518 @@ name = "certifi" -version = "2023.5.7" +version = "2023.7.22" @@ -524,2 +524,2 @@ files = [ - {file = "certifi-2023.5.7-py3-none-any.whl", hash = "sha256:c6c2e98f5c7869efca1f8916fed228dd91539f9f1b444c314c06eef02980c716"}, - {file = "certifi-2023.5.7.tar.gz", hash = "sha256:0f0d56dc5a6ad56fd4ba36484d6cc34451e1c6548c61daad8c320169f91eddc7"}, + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, @@ -4438,0 +4439 @@ files = [ + {file = "soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc"},
589c02c01352aa186ee9db005613a5d150c446d3
Albert Villanova del Moral
2023-07-25T13:17:13
Align poetry version in all Docker files (#1554)
diff --git a/jobs/cache_maintenance/Dockerfile b/jobs/cache_maintenance/Dockerfile index 1cf31830..bcc0d76e 100644 --- a/jobs/cache_maintenance/Dockerfile +++ b/jobs/cache_maintenance/Dockerfile @@ -13 +13 @@ ENV PYTHONFAULTHANDLER=1 \ - POETRY_VERSION=1.3.2 \ + POETRY_VERSION=1.4.0 \
f5a911990c401bf2becaf3821add45dd6a35cc99
Sylvain Lesage
2023-07-24T20:15:13
feat: 🎸 reduce resources (#1551)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 99173525..f21a6255 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -312 +312 @@ workers: - replicas: 60 + replicas: 16 @@ -329 +329 @@ workers: - replicas: 15 + replicas: 8
e4a93b9530fca953ac58781559293176de7fd1ae
Rémy
2023-07-24T15:47:54
fix(helm): update probes for services pods (#1548)
diff --git a/chart/templates/services/admin/_container.tpl b/chart/templates/services/admin/_container.tpl index fcb86635..f6e3ea1f 100644 --- a/chart/templates/services/admin/_container.tpl +++ b/chart/templates/services/admin/_container.tpl @@ -45 +45,4 @@ - tcpSocket: + failureThreshold: 30 + periodSeconds: 5 + httpGet: + path: /healthcheck @@ -48 +51,4 @@ - tcpSocket: + failureThreshold: 30 + periodSeconds: 5 + httpGet: + path: /healthcheck diff --git a/chart/templates/services/api/_container.tpl b/chart/templates/services/api/_container.tpl index 4c83f00a..3740f4e4 100644 --- a/chart/templates/services/api/_container.tpl +++ b/chart/templates/services/api/_container.tpl @@ -50 +50,4 @@ - tcpSocket: + failureThreshold: 30 + periodSeconds: 5 + httpGet: + path: /healthcheck @@ -53 +56,4 @@ - tcpSocket: + failureThreshold: 30 + periodSeconds: 5 + httpGet: + path: /healthcheck diff --git a/chart/templates/services/rows/_container.tpl b/chart/templates/services/rows/_container.tpl index 2cb00e86..c8b242db 100644 --- a/chart/templates/services/rows/_container.tpl +++ b/chart/templates/services/rows/_container.tpl @@ -55 +55,4 @@ - tcpSocket: + failureThreshold: 30 + periodSeconds: 5 + httpGet: + path: /healthcheck @@ -58 +61,4 @@ - tcpSocket: + failureThreshold: 30 + periodSeconds: 5 + httpGet: + path: /healthcheck
0e8c96e9d2b6b508508a74a4fbd17c4434387e15
Sylvain Lesage
2023-07-24T15:45:49
Update prod.yaml (#1547)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index cca3909e..99173525 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -118 +118 @@ parquetAndInfo: - supportedDatasets: "bigcode/the-stack" + supportedDatasets: ""
ab05c1047d473f23debd63e20b84d93ecf717961
Rémy
2023-07-24T15:22:43
fix: use dedicated nodes for rows pods (#1546)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 04d967ab..cca3909e 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -290 +289,0 @@ rows: - @@ -292 +291 @@ rows: - role-datasets-server: "true" + role-datasets-server-rows: "true"
59d959fb56c9dba5868a6e9d6716e7071fc6abfb
Sylvain Lesage
2023-07-24T15:21:45
feat: 🎸 unblock all datasets but Graphcore (and echarlaix) ones (#1545)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 4f8433d6..04d967ab 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -117 +117 @@ parquetAndInfo: - blockedDatasets: "1aurent/icdar-2011,Abuelnour/json_1000_Scientific_Paper,Biomedical-TeMU/ProfNER_corpus_NER,Biomedical-TeMU/ProfNER_corpus_classification,Biomedical-TeMU/SPACCC_Sentence-Splitter,Carlisle/msmarco-passage-non-abs,Champion/vpc2020_clear_anon_speech,CristianaLazar/librispeech500,CristianaLazar/librispeech5k_train,DTU54DL/librispeech5k-augmentated-train-prepared,DavidVivancos/MindBigData2022_Imagenet_IN_Spct,EfaceD/ElysiumInspirations,Graphcore/gqa,Graphcore/gqa-lxmert,Graphcore/vqa,Graphcore/vqa-lxmert,HamdiJr/Egyptian_hieroglyphs,HuggingFaceM4/TextCaps,HuggingFaceM4/epic_kitchens_100,HuggingFaceM4/general-pmd-synthetic-testing,HuggingFaceM4/yttemporal180m,HugoLaurencon/IIIT-5K,HugoLaurencon/libri_light,HugoLaurencon/libri_light_bytes,Isma/librispeech_1000_seed_42,KETI-AIR/vqa,KnutJaegersberg/Interpretable_word_embeddings_large_cskg,KokeCacao/oracle,LanceaKing/asvspoof2019,Lehrig/GTZAN-Collection,Lehrig/Monkey-Species-Collection,LeoFeng/MLHW_6,Leyo/TGIF,Livingwithmachines/MapReader_Data_SIGSPATIAL_2022,MorVentura/TRBLLmaker,Murple/mmcrsc,NLPC-UOM/document_alignment_dataset-Sinhala-Tamil-English,Nart/parallel-ab-ru,Pinguin/images,PolyAI/evi,Poupou/Gitcoin-Grant-DataBuilder,RAYZ/Mixed-Dia,RaphaelOlivier/whisper_adversarial_examples,Rodion/uno_sustainable_development_goals,SamAct/medium_cleaned,Samip/Scotch,SocialGrep/the-reddit-climate-change-dataset,Sreyan88/librispeech_asr,TalTechNLP/VoxLingua107,Tevatron/xor-tydi-corpus,TomTBT/pmc_open_access_figure,TomTBT/pmc_open_access_section,Tristan/olm-october-2022-tokenized-1024-exact-dedup-only,Voicemod/LibriTTS-100-preproc,Whispering-GPT/linustechtips-transcript-audio,YWjimmy/PeRFception-ScanNet,YWjimmy/PeRFception-v1-1,YWjimmy/PeRFception-v1-2,YWjimmy/PeRFception-v1-3,Yehor/ukrainian-tts-lada,ZihaoLin/zhlds,albertvillanova/TextCaps,andreagasparini/librispeech_test_only,andreagasparini/librispeech_train_clean_only,andreagasparini/librispeech_train_other_only,arpelarpe/nota,autoevaluator/shoes-vs-sandals-vs-boots,azraahmadi/autotrain-data-xraydatasetp2,bengaliAI/cvbn,benschill/brain-tumor-collection,bigbio/anat_em,bigbio/ctebmsp,bigbio/distemist,bigcode/the-stack-username-to-repo,biglam/early_printed_books_font_detection,biglam/gallica_literary_fictions,bigscience/massive-probing-results,bio-datasets/e3c,biwi_kinect_head_pose,bruno-cotrim/arch-max,cahya/fleurs,cahya/librivox-indonesia,cameronbc/synthtiger,cjvt/cc_gigafida,cjvt/slo_collocations,cjvt/sloleks,cmudrc/porous-microstructure-strain-fields,cooleel/xfund_de,corentinm7/MyoQuant-SDH-Data,crystina-z/miracl-bm25-negative,crystina-z/mmarco,crystina-z/mmarco-corpus,crystina-z/msmarco-passage-dl19,crystina-z/msmarco-passage-dl20,crystina-z/no-nonself-mrtydi,crystina-z/xor-tydi-corpus,darkproger/librispeech_asr,dgrnd4/stanford_dog_dataset,dlwh/MultiLegalPile_Wikipedia_Shuffled,echarlaix/gqa-lxmert,echarlaix/vqa,echarlaix/vqa-lxmert,fcakyon/gun-object-detection,florianbussmann/train_tickets-yu2020pick,galman33/gal_yair_166000_256x256_fixed,genjib/LAVISHData,grasshoff/lhc_sents,guangguang/azukijpg,hr16/Miwano-Rag,icelab/ntrs_meta,ilhanemirhan/eee543,iluvvatar/RuREBus,imvladikon/paranames,indonesian-nlp/librivox-indonesia,inseq/divemt_attributions,izumaru/os2-datasets,jamescalam/movielens-25m-ratings,jamescalam/unsplash-25k-images,jerpint/imagenette,joefox/Mozilla_Common_Voice_ru_test_noise,joelito/MultiLegalPile_Wikipedia_Filtered,jpwahle/dblp-discovery-dataset,kaliansh/sdaia,keremberke/garbage-object-detection,keremberke/protective-equipment-detection,keremberke/smoke-object-detection,keshan/clean-si-mc4,keshan/multispeaker-tts-sinhala,khalidalt/tydiqa-primary,kresnik/librispeech_asr_test,ksaml/Stanford_dogs,lafi23333/ds,leviethoang/VBVLSP,m-aliabbas/idrak_splitted_amy_1,malteos/paperswithcode-aspects,marinone94/nst_no,marinone94/nst_sv,matchbench/dbp15k-fr-en,mathaillah/BeritaHoaks-NonHoaks,mbarnig/lb-de-fr-en-pt-12800-TTS-CORPUS,mesolitica/dbp,mesolitica/noisy-en-ms-augmentation,mesolitica/noisy-ms-en-augmentation,mesolitica/translated-SQUAD,metashift,momilla/Ethereum_transacitons,mozilla-foundation/common_voice_2_0,mozilla-foundation/common_voice_3_0,mozilla-foundation/common_voice_4_0,mozilla-foundation/common_voice_5_0,mozilla-foundation/common_voice_5_1,mozilla-foundation/common_voice_6_0,mulcyber/europarl-mono,mwhanna/ACT-Thor,mwitiderrick/arXiv,nateraw/auto-cats-and-dogs,nateraw/imagenet-sketch,nateraw/quickdraw,nateraw/rice-image-dataset,nateraw/rice-image-dataset-2,nateraw/wit,nev/anime-giph,nishita/ade20k-sample,nlphuji/utk_faces,nlphuji/vasr,nuprl/MultiPL-E-raw-data,nvm472001/cvdataset-layoutlmv3,openclimatefix/era5,openclimatefix/nimrod-uk-1km-validation,oyk100/ChaSES-data,parambharat/kannada_asr_corpus,parambharat/mile_dataset,parambharat/telugu_asr_corpus,plncmm/wl-disease,plncmm/wl-family-member,polinaeterna/vox_lingua,pragnakalp/squad_v2_french_translated,raghav66/whisper-gpt,robertmyers/pile_v2,rogerdehe/xfund,rohitp1/librispeech_asr_clean,rossevine/tesis,sanchit-gandhi/librispeech_asr_clean,severo/wit,shanya/crd3,sil-ai/audio-keyword-spotting,sil-ai/audio-kw-in-context,sjpmpzx/qm_ly_gy_soundn,sled-umich/Action-Effect,strombergnlp/broad_twitter_corpus,student/celebA,tau/mrqa,texturedesign/td01_natural-ground-textures,tilos/ASR-CCANTCSC,uva-irlab/trec-cast-2019-multi-turn,valurank/PoliticalBias_AllSides_Txt,voidful/librispeech_asr_text,winvoker/lvis,wmt/europarl,ywchoi/mdpi_sept10,z-uo/female-LJSpeech-italian,zyznull/dureader-retrieval-ranking,zyznull/msmarco-passage-corpus,zyznull/msmarco-passage-ranking" + blockedDatasets: "Graphcore/gqa,Graphcore/gqa-lxmert,Graphcore/vqa,Graphcore/vqa-lxmert,echarlaix/gqa-lxmert,echarlaix/vqa,echarlaix/vqa-lxmert"
3fa0feab15d09f6f1ba62560ba91da29a5dd8661
Rémy
2023-07-24T14:56:22
fix: resources allocation and use dedicated nodes for worker light (#1544)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 13709c27..4f8433d6 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -317 +317 @@ workers: - memory: "4Gi" + memory: "8Gi" @@ -329 +329 @@ workers: - role-datasets-server-worker: "true" + role-datasets-server-worker-light: "true"
9518971f69d0d0616411e7c0b9ec00468f8b5dcc
Sylvain Lesage
2023-07-24T14:51:18
feat: 🎸 unblock datasets with 200 downloads or more (#1543)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 442cbf6e..13709c27 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -117 +117 @@ parquetAndInfo: - blockedDatasets: "1aurent/icdar-2011,Abuelnour/json_1000_Scientific_Paper,Biomedical-TeMU/ProfNER_corpus_NER,Biomedical-TeMU/ProfNER_corpus_classification,Biomedical-TeMU/SPACCC_Sentence-Splitter,Carlisle/msmarco-passage-non-abs,Champion/vpc2020_clear_anon_speech,CristianaLazar/librispeech500,CristianaLazar/librispeech5k_train,DTU54DL/librispeech5k-augmentated-train-prepared,DavidVivancos/MindBigData2022_Imagenet_IN_Spct,EfaceD/ElysiumInspirations,GEM/BiSECT,GEM/references,GEM/xsum,Graphcore/gqa,Graphcore/gqa-lxmert,Graphcore/vqa,Graphcore/vqa-lxmert,HamdiJr/Egyptian_hieroglyphs,HuggingFaceM4/TextCaps,HuggingFaceM4/charades,HuggingFaceM4/epic_kitchens_100,HuggingFaceM4/general-pmd-synthetic-testing,HuggingFaceM4/yttemporal180m,HugoLaurencon/IIIT-5K,HugoLaurencon/libri_light,HugoLaurencon/libri_light_bytes,Isma/librispeech_1000_seed_42,KETI-AIR/vqa,Karavet/ILUR-news-text-classification-corpus,KnutJaegersberg/Interpretable_word_embeddings_large_cskg,KokeCacao/oracle,Lacito/pangloss,LanceaKing/asvspoof2019,Lehrig/GTZAN-Collection,Lehrig/Monkey-Species-Collection,LeoFeng/MLHW_6,Leyo/TGIF,Livingwithmachines/MapReader_Data_SIGSPATIAL_2022,MorVentura/TRBLLmaker,Murple/mmcrsc,NLPC-UOM/document_alignment_dataset-Sinhala-Tamil-English,Nart/parallel-ab-ru,Pinguin/images,PolyAI/evi,Poupou/Gitcoin-Grant-DataBuilder,RAYZ/Mixed-Dia,RaphaelOlivier/whisper_adversarial_examples,Rodion/uno_sustainable_development_goals,SamAct/medium_cleaned,Samip/Scotch,SaulLu/Natural_Questions_HTML_reduced_all,SetFit/mnli,SocialGrep/the-reddit-climate-change-dataset,Sreyan88/librispeech_asr,TalTechNLP/VoxLingua107,Tevatron/beir-corpus,Tevatron/wikipedia-curated-corpus,Tevatron/wikipedia-squad,Tevatron/wikipedia-squad-corpus,Tevatron/wikipedia-trivia-corpus,Tevatron/wikipedia-wq-corpus,Tevatron/xor-tydi-corpus,TomTBT/pmc_open_access_figure,TomTBT/pmc_open_access_section,Tristan/olm-october-2022-tokenized-1024-exact-dedup-only,Voicemod/LibriTTS-100-preproc,Whispering-GPT/linustechtips-transcript-audio,YWjimmy/PeRFception-ScanNet,YWjimmy/PeRFception-v1-1,YWjimmy/PeRFception-v1-2,YWjimmy/PeRFception-v1-3,Yehor/ukrainian-tts-lada,ZihaoLin/zhlds,albertvillanova/TextCaps,andreagasparini/librispeech_test_only,andreagasparini/librispeech_train_clean_only,andreagasparini/librispeech_train_other_only,angelolab/ark_example,arpelarpe/nota,ashraq/dhivehi-corpus,autoevaluator/shoes-vs-sandals-vs-boots,azraahmadi/autotrain-data-xraydatasetp2,bengaliAI/cvbn,benschill/brain-tumor-collection,bigbio/anat_em,bigbio/ctebmsp,bigbio/distemist,bigbio/ebm_pico,bigcode/the-stack-username-to-repo,biglam/early_printed_books_font_detection,biglam/gallica_literary_fictions,bigscience/massive-probing-results,bio-datasets/e3c,biwi_kinect_head_pose,bnl_newspapers,bruno-cotrim/arch-max,cahya/fleurs,cahya/librivox-indonesia,cameronbc/synthtiger,castorini/msmarco_v1_passage_doc2query-t5_expansions,chenghao/scielo_books,cjvt/cc_gigafida,cjvt/slo_collocations,cjvt/sloleks,clarin-pl/multiwiki_90k,cmudrc/porous-microstructure-strain-fields,cooleel/xfund_de,corentinm7/MyoQuant-SDH-Data,crystina-z/miracl-bm25-negative,crystina-z/mmarco,crystina-z/mmarco-corpus,crystina-z/msmarco-passage-dl19,crystina-z/msmarco-passage-dl20,crystina-z/no-nonself-mrtydi,crystina-z/xor-tydi-corpus,darkproger/librispeech_asr,dgrnd4/stanford_dog_dataset,dlwh/MultiLegalPile_Wikipedia_Shuffled,echarlaix/gqa-lxmert,echarlaix/vqa,echarlaix/vqa-lxmert,fcakyon/gun-object-detection,florianbussmann/train_tickets-yu2020pick,galman33/gal_yair_166000_256x256_fixed,genjib/LAVISHData,gigant/m-ailabs_speech_dataset_fr,gigant/romanian_speech_synthesis_0_8_1,grasshoff/lhc_sents,guangguang/azukijpg,hebrew_projectbenyehuda,hr16/Miwano-Rag,icelab/ntrs_meta,ilhanemirhan/eee543,iluvvatar/RuREBus,imvladikon/paranames,indonesian-nlp/librivox-indonesia,inseq/divemt_attributions,izumaru/os2-datasets,jamescalam/movielens-25m-ratings,jamescalam/unsplash-25k-images,jerpint/imagenette,jimregan/clarinpl_sejmsenat,jimregan/clarinpl_studio,joefox/Mozilla_Common_Voice_ru_test_noise,joelito/MultiLegalPile_Wikipedia_Filtered,jpwahle/dblp-discovery-dataset,kaliansh/sdaia,keremberke/garbage-object-detection,keremberke/protective-equipment-detection,keremberke/smoke-object-detection,keshan/clean-si-mc4,keshan/multispeaker-tts-sinhala,khalidalt/tydiqa-primary,kresnik/librispeech_asr_test,ksaml/Stanford_dogs,lafi23333/ds,leviethoang/VBVLSP,m-aliabbas/idrak_splitted_amy_1,malteos/paperswithcode-aspects,marinone94/nst_no,marinone94/nst_sv,matchbench/dbp15k-fr-en,mathaillah/BeritaHoaks-NonHoaks,mbarnig/lb-de-fr-en-pt-12800-TTS-CORPUS,mesolitica/dbp,mesolitica/noisy-en-ms-augmentation,mesolitica/noisy-ms-en-augmentation,mesolitica/translated-SQUAD,metashift,momilla/Ethereum_transacitons,mozilla-foundation/common_voice_1_0,mozilla-foundation/common_voice_2_0,mozilla-foundation/common_voice_3_0,mozilla-foundation/common_voice_4_0,mozilla-foundation/common_voice_5_0,mozilla-foundation/common_voice_5_1,mozilla-foundation/common_voice_6_0,mteb/results,mteb/tatoeba-bitext-mining,mulcyber/europarl-mono,mwhanna/ACT-Thor,mwitiderrick/arXiv,nateraw/auto-cats-and-dogs,nateraw/imagenet-sketch,nateraw/quickdraw,nateraw/rice-image-dataset,nateraw/rice-image-dataset-2,nateraw/wit,nev/anime-giph,nishita/ade20k-sample,nlphuji/utk_faces,nlphuji/vasr,nlphuji/winogavil,nuprl/MultiPL-E-raw-data,nvm472001/cvdataset-layoutlmv3,openclimatefix/era5,openclimatefix/nimrod-uk-1km-validation,oyk100/ChaSES-data,parambharat/kannada_asr_corpus,parambharat/mile_dataset,parambharat/telugu_asr_corpus,plncmm/wl-disease,plncmm/wl-family-member,polinaeterna/vox_lingua,pragnakalp/squad_v2_french_translated,raghav66/whisper-gpt,robertmyers/pile_v2,rogerdehe/xfund,rohitp1/librispeech_asr_clean,rossevine/tesis,sanchit-gandhi/librispeech_asr_clean,severo/wit,shanya/crd3,shunk031/cocostuff,shunk031/livedoor-news-corpus,sil-ai/audio-keyword-spotting,sil-ai/audio-kw-in-context,sjpmpzx/qm_ly_gy_soundn,sled-umich/Action-Effect,society-ethics/lila_camera_traps,strombergnlp/broad_twitter_corpus,student/celebA,tab_fact,tau/mrqa,texturedesign/td01_natural-ground-textures,tilos/ASR-CCANTCSC,uva-irlab/trec-cast-2019-multi-turn,valurank/PoliticalBias_AllSides_Txt,vblagoje/wikipedia_snippets_streamed,voidful/librispeech_asr_text,winvoker/lvis,wmt/europarl,ywchoi/mdpi_sept10,z-uo/female-LJSpeech-italian,zyznull/dureader-retrieval-ranking,zyznull/msmarco-passage-corpus,zyznull/msmarco-passage-ranking" + blockedDatasets: "1aurent/icdar-2011,Abuelnour/json_1000_Scientific_Paper,Biomedical-TeMU/ProfNER_corpus_NER,Biomedical-TeMU/ProfNER_corpus_classification,Biomedical-TeMU/SPACCC_Sentence-Splitter,Carlisle/msmarco-passage-non-abs,Champion/vpc2020_clear_anon_speech,CristianaLazar/librispeech500,CristianaLazar/librispeech5k_train,DTU54DL/librispeech5k-augmentated-train-prepared,DavidVivancos/MindBigData2022_Imagenet_IN_Spct,EfaceD/ElysiumInspirations,Graphcore/gqa,Graphcore/gqa-lxmert,Graphcore/vqa,Graphcore/vqa-lxmert,HamdiJr/Egyptian_hieroglyphs,HuggingFaceM4/TextCaps,HuggingFaceM4/epic_kitchens_100,HuggingFaceM4/general-pmd-synthetic-testing,HuggingFaceM4/yttemporal180m,HugoLaurencon/IIIT-5K,HugoLaurencon/libri_light,HugoLaurencon/libri_light_bytes,Isma/librispeech_1000_seed_42,KETI-AIR/vqa,KnutJaegersberg/Interpretable_word_embeddings_large_cskg,KokeCacao/oracle,LanceaKing/asvspoof2019,Lehrig/GTZAN-Collection,Lehrig/Monkey-Species-Collection,LeoFeng/MLHW_6,Leyo/TGIF,Livingwithmachines/MapReader_Data_SIGSPATIAL_2022,MorVentura/TRBLLmaker,Murple/mmcrsc,NLPC-UOM/document_alignment_dataset-Sinhala-Tamil-English,Nart/parallel-ab-ru,Pinguin/images,PolyAI/evi,Poupou/Gitcoin-Grant-DataBuilder,RAYZ/Mixed-Dia,RaphaelOlivier/whisper_adversarial_examples,Rodion/uno_sustainable_development_goals,SamAct/medium_cleaned,Samip/Scotch,SocialGrep/the-reddit-climate-change-dataset,Sreyan88/librispeech_asr,TalTechNLP/VoxLingua107,Tevatron/xor-tydi-corpus,TomTBT/pmc_open_access_figure,TomTBT/pmc_open_access_section,Tristan/olm-october-2022-tokenized-1024-exact-dedup-only,Voicemod/LibriTTS-100-preproc,Whispering-GPT/linustechtips-transcript-audio,YWjimmy/PeRFception-ScanNet,YWjimmy/PeRFception-v1-1,YWjimmy/PeRFception-v1-2,YWjimmy/PeRFception-v1-3,Yehor/ukrainian-tts-lada,ZihaoLin/zhlds,albertvillanova/TextCaps,andreagasparini/librispeech_test_only,andreagasparini/librispeech_train_clean_only,andreagasparini/librispeech_train_other_only,arpelarpe/nota,autoevaluator/shoes-vs-sandals-vs-boots,azraahmadi/autotrain-data-xraydatasetp2,bengaliAI/cvbn,benschill/brain-tumor-collection,bigbio/anat_em,bigbio/ctebmsp,bigbio/distemist,bigcode/the-stack-username-to-repo,biglam/early_printed_books_font_detection,biglam/gallica_literary_fictions,bigscience/massive-probing-results,bio-datasets/e3c,biwi_kinect_head_pose,bruno-cotrim/arch-max,cahya/fleurs,cahya/librivox-indonesia,cameronbc/synthtiger,cjvt/cc_gigafida,cjvt/slo_collocations,cjvt/sloleks,cmudrc/porous-microstructure-strain-fields,cooleel/xfund_de,corentinm7/MyoQuant-SDH-Data,crystina-z/miracl-bm25-negative,crystina-z/mmarco,crystina-z/mmarco-corpus,crystina-z/msmarco-passage-dl19,crystina-z/msmarco-passage-dl20,crystina-z/no-nonself-mrtydi,crystina-z/xor-tydi-corpus,darkproger/librispeech_asr,dgrnd4/stanford_dog_dataset,dlwh/MultiLegalPile_Wikipedia_Shuffled,echarlaix/gqa-lxmert,echarlaix/vqa,echarlaix/vqa-lxmert,fcakyon/gun-object-detection,florianbussmann/train_tickets-yu2020pick,galman33/gal_yair_166000_256x256_fixed,genjib/LAVISHData,grasshoff/lhc_sents,guangguang/azukijpg,hr16/Miwano-Rag,icelab/ntrs_meta,ilhanemirhan/eee543,iluvvatar/RuREBus,imvladikon/paranames,indonesian-nlp/librivox-indonesia,inseq/divemt_attributions,izumaru/os2-datasets,jamescalam/movielens-25m-ratings,jamescalam/unsplash-25k-images,jerpint/imagenette,joefox/Mozilla_Common_Voice_ru_test_noise,joelito/MultiLegalPile_Wikipedia_Filtered,jpwahle/dblp-discovery-dataset,kaliansh/sdaia,keremberke/garbage-object-detection,keremberke/protective-equipment-detection,keremberke/smoke-object-detection,keshan/clean-si-mc4,keshan/multispeaker-tts-sinhala,khalidalt/tydiqa-primary,kresnik/librispeech_asr_test,ksaml/Stanford_dogs,lafi23333/ds,leviethoang/VBVLSP,m-aliabbas/idrak_splitted_amy_1,malteos/paperswithcode-aspects,marinone94/nst_no,marinone94/nst_sv,matchbench/dbp15k-fr-en,mathaillah/BeritaHoaks-NonHoaks,mbarnig/lb-de-fr-en-pt-12800-TTS-CORPUS,mesolitica/dbp,mesolitica/noisy-en-ms-augmentation,mesolitica/noisy-ms-en-augmentation,mesolitica/translated-SQUAD,metashift,momilla/Ethereum_transacitons,mozilla-foundation/common_voice_2_0,mozilla-foundation/common_voice_3_0,mozilla-foundation/common_voice_4_0,mozilla-foundation/common_voice_5_0,mozilla-foundation/common_voice_5_1,mozilla-foundation/common_voice_6_0,mulcyber/europarl-mono,mwhanna/ACT-Thor,mwitiderrick/arXiv,nateraw/auto-cats-and-dogs,nateraw/imagenet-sketch,nateraw/quickdraw,nateraw/rice-image-dataset,nateraw/rice-image-dataset-2,nateraw/wit,nev/anime-giph,nishita/ade20k-sample,nlphuji/utk_faces,nlphuji/vasr,nuprl/MultiPL-E-raw-data,nvm472001/cvdataset-layoutlmv3,openclimatefix/era5,openclimatefix/nimrod-uk-1km-validation,oyk100/ChaSES-data,parambharat/kannada_asr_corpus,parambharat/mile_dataset,parambharat/telugu_asr_corpus,plncmm/wl-disease,plncmm/wl-family-member,polinaeterna/vox_lingua,pragnakalp/squad_v2_french_translated,raghav66/whisper-gpt,robertmyers/pile_v2,rogerdehe/xfund,rohitp1/librispeech_asr_clean,rossevine/tesis,sanchit-gandhi/librispeech_asr_clean,severo/wit,shanya/crd3,sil-ai/audio-keyword-spotting,sil-ai/audio-kw-in-context,sjpmpzx/qm_ly_gy_soundn,sled-umich/Action-Effect,strombergnlp/broad_twitter_corpus,student/celebA,tau/mrqa,texturedesign/td01_natural-ground-textures,tilos/ASR-CCANTCSC,uva-irlab/trec-cast-2019-multi-turn,valurank/PoliticalBias_AllSides_Txt,voidful/librispeech_asr_text,winvoker/lvis,wmt/europarl,ywchoi/mdpi_sept10,z-uo/female-LJSpeech-italian,zyznull/dureader-retrieval-ranking,zyznull/msmarco-passage-corpus,zyznull/msmarco-passage-ranking"
6e9e2c897c1a987ca020ff2ca26d8694d0c95537
Sylvain Lesage
2023-07-24T14:11:56
feat: 🎸 unblock datasets with at least 3 likes (#1542)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 15a3b2fb..442cbf6e 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -117 +117 @@ parquetAndInfo: - blockedDatasets: "1aurent/icdar-2011,Abuelnour/json_1000_Scientific_Paper,Biomedical-TeMU/ProfNER_corpus_NER,Biomedical-TeMU/ProfNER_corpus_classification,Biomedical-TeMU/SPACCC_Sentence-Splitter,Carlisle/msmarco-passage-non-abs,Champion/vpc2020_clear_anon_speech,CristianaLazar/librispeech500,CristianaLazar/librispeech5k_train,DTU54DL/librispeech5k-augmentated-train-prepared,DavidVivancos/MindBigData2022_Imagenet_IN_Spct,DelgadoPanadero/Pokemon,EfaceD/ElysiumInspirations,GEM/BiSECT,GEM/references,GEM/xsum,Graphcore/gqa,Graphcore/gqa-lxmert,Graphcore/vqa,Graphcore/vqa-lxmert,HamdiJr/Egyptian_hieroglyphs,HuggingFaceM4/COCO,HuggingFaceM4/FairFace,HuggingFaceM4/TextCaps,HuggingFaceM4/VQAv2,HuggingFaceM4/charades,HuggingFaceM4/cm4-synthetic-testing,HuggingFaceM4/epic_kitchens_100,HuggingFaceM4/general-pmd-synthetic-testing,HuggingFaceM4/yttemporal180m,HugoLaurencon/IIIT-5K,HugoLaurencon/libri_light,HugoLaurencon/libri_light_bytes,Isma/librispeech_1000_seed_42,KETI-AIR/vqa,Karavet/ILUR-news-text-classification-corpus,KnutJaegersberg/Interpretable_word_embeddings_large_cskg,KokeCacao/oracle,Lacito/pangloss,LanceaKing/asvspoof2019,Lehrig/GTZAN-Collection,Lehrig/Monkey-Species-Collection,LeoFeng/MLHW_6,Leyo/TGIF,Livingwithmachines/MapReader_Data_SIGSPATIAL_2022,MorVentura/TRBLLmaker,Muennighoff/flores200,Murple/mmcrsc,NLPC-UOM/document_alignment_dataset-Sinhala-Tamil-English,Nart/parallel-ab-ru,Pinguin/images,PolyAI/evi,Poupou/Gitcoin-Grant-DataBuilder,RAYZ/Mixed-Dia,RaphaelOlivier/whisper_adversarial_examples,Rodion/uno_sustainable_development_goals,SamAct/medium_cleaned,Samip/Scotch,SaulLu/Natural_Questions_HTML_reduced_all,SetFit/mnli,SocialGrep/the-reddit-climate-change-dataset,Sreyan88/librispeech_asr,TalTechNLP/VoxLingua107,Tevatron/beir-corpus,Tevatron/wikipedia-curated-corpus,Tevatron/wikipedia-squad,Tevatron/wikipedia-squad-corpus,Tevatron/wikipedia-trivia-corpus,Tevatron/wikipedia-wq-corpus,Tevatron/xor-tydi-corpus,TomTBT/pmc_open_access_figure,TomTBT/pmc_open_access_section,Tristan/olm-october-2022-tokenized-1024-exact-dedup-only,VIMA/VIMA-Data,Voicemod/LibriTTS-100-preproc,Whispering-GPT/linustechtips-transcript-audio,YWjimmy/PeRFception-ScanNet,YWjimmy/PeRFception-v1-1,YWjimmy/PeRFception-v1-2,YWjimmy/PeRFception-v1-3,Yehor/ukrainian-tts-lada,ZihaoLin/zhlds,albertvillanova/TextCaps,alkzar90/CC6204-Hackaton-Cub-Dataset,andreagasparini/librispeech_test_only,andreagasparini/librispeech_train_clean_only,andreagasparini/librispeech_train_other_only,angelolab/ark_example,arpelarpe/nota,asapp/slue,ashraf-ali/quran-data,ashraq/dhivehi-corpus,autoevaluator/shoes-vs-sandals-vs-boots,azraahmadi/autotrain-data-xraydatasetp2,bengaliAI/cvbn,benschill/brain-tumor-collection,bigbio/anat_em,bigbio/ctebmsp,bigbio/distemist,bigbio/ebm_pico,bigcode/the-stack-username-to-repo,biglam/brill_iconclass,biglam/early_printed_books_font_detection,biglam/gallica_literary_fictions,bigscience/massive-probing-results,bio-datasets/e3c,biwi_kinect_head_pose,bnl_newspapers,bruno-cotrim/arch-max,cahya/fleurs,cahya/librivox-indonesia,cameronbc/synthtiger,castorini/msmarco_v1_passage_doc2query-t5_expansions,ccdv/cnn_dailymail,ccdv/mediasum,chenghao/scielo_books,chrisjay/mnist-adversarial-dataset,cjvt/cc_gigafida,cjvt/slo_collocations,cjvt/sloleks,clarin-pl/multiwiki_90k,cmudrc/porous-microstructure-strain-fields,cooleel/xfund_de,corentinm7/MyoQuant-SDH-Data,crystina-z/miracl-bm25-negative,crystina-z/mmarco,crystina-z/mmarco-corpus,crystina-z/msmarco-passage-dl19,crystina-z/msmarco-passage-dl20,crystina-z/no-nonself-mrtydi,crystina-z/xor-tydi-corpus,darkproger/librispeech_asr,dgrnd4/stanford_dog_dataset,dlwh/MultiLegalPile_Wikipedia_Shuffled,echarlaix/gqa-lxmert,echarlaix/vqa,echarlaix/vqa-lxmert,evidence_infer_treatment,fcakyon/gun-object-detection,florianbussmann/train_tickets-yu2020pick,galman33/gal_yair_166000_256x256_fixed,genjib/LAVISHData,gigant/african_accented_french,gigant/m-ailabs_speech_dataset_fr,gigant/romanian_speech_synthesis_0_8_1,grasshoff/lhc_sents,guangguang/azukijpg,hebrew_projectbenyehuda,hr16/Miwano-Rag,huggan/anime-faces,icelab/ntrs_meta,ilhanemirhan/eee543,iluvvatar/RuREBus,imvladikon/paranames,indonesian-nlp/librivox-indonesia,inseq/divemt_attributions,izumaru/os2-datasets,jamescalam/movielens-25m-ratings,jamescalam/unsplash-25k-images,jerpint/imagenette,jimregan/clarinpl_sejmsenat,jimregan/clarinpl_studio,joefox/Mozilla_Common_Voice_ru_test_noise,joelito/MultiLegalPile_Wikipedia_Filtered,jpwahle/dblp-discovery-dataset,kaliansh/sdaia,keremberke/garbage-object-detection,keremberke/nfl-object-detection,keremberke/protective-equipment-detection,keremberke/smoke-object-detection,keshan/clean-si-mc4,keshan/multispeaker-tts-sinhala,khalidalt/tydiqa-primary,kresnik/librispeech_asr_test,ksaml/Stanford_dogs,lafi23333/ds,leviethoang/VBVLSP,m-aliabbas/idrak_splitted_amy_1,malteos/paperswithcode-aspects,marinone94/nst_no,marinone94/nst_sv,matchbench/dbp15k-fr-en,mathaillah/BeritaHoaks-NonHoaks,mbarnig/lb-de-fr-en-pt-12800-TTS-CORPUS,mesolitica/dbp,mesolitica/noisy-en-ms-augmentation,mesolitica/noisy-ms-en-augmentation,mesolitica/translated-SQUAD,metashift,momilla/Ethereum_transacitons,mozilla-foundation/common_voice_1_0,mozilla-foundation/common_voice_2_0,mozilla-foundation/common_voice_3_0,mozilla-foundation/common_voice_4_0,mozilla-foundation/common_voice_5_0,mozilla-foundation/common_voice_5_1,mozilla-foundation/common_voice_6_0,mteb/results,mteb/tatoeba-bitext-mining,muchocine,mulcyber/europarl-mono,mwhanna/ACT-Thor,mwitiderrick/arXiv,nateraw/auto-cats-and-dogs,nateraw/imagenet-sketch,nateraw/quickdraw,nateraw/rice-image-dataset,nateraw/rice-image-dataset-2,nateraw/wit,nev/anime-giph,nishita/ade20k-sample,nlphuji/utk_faces,nlphuji/vasr,nlphuji/winogavil,nuprl/MultiPL-E-raw-data,nvm472001/cvdataset-layoutlmv3,openclimatefix/era5,openclimatefix/nimrod-uk-1km-validation,opus_euconst,oyk100/ChaSES-data,parambharat/kannada_asr_corpus,parambharat/malayalam_asr_corpus,parambharat/mile_dataset,parambharat/telugu_asr_corpus,plncmm/wl-disease,plncmm/wl-family-member,polinaeterna/vox_lingua,pragnakalp/squad_v2_french_translated,raghav66/whisper-gpt,robertmyers/pile_v2,rogerdehe/xfund,rohitp1/librispeech_asr_clean,rossevine/tesis,sanchit-gandhi/librispeech_asr_clean,severo/wit,shanya/crd3,shunk031/cocostuff,shunk031/livedoor-news-corpus,sil-ai/audio-keyword-spotting,sil-ai/audio-kw-in-context,sjpmpzx/qm_ly_gy_soundn,sled-umich/Action-Effect,society-ethics/lila_camera_traps,stas/openwebtext-10k,strombergnlp/broad_twitter_corpus,student/celebA,tab_fact,tau/mrqa,texturedesign/td01_natural-ground-textures,textvqa,tilos/ASR-CCANTCSC,tner/wikiann,uva-irlab/trec-cast-2019-multi-turn,valurank/PoliticalBias_AllSides_Txt,vblagoje/wikipedia_snippets_streamed,voidful/librispeech_asr_text,winvoker/lvis,wmt/europarl,ywchoi/mdpi_sept10,z-uo/female-LJSpeech-italian,zyznull/dureader-retrieval-ranking,zyznull/msmarco-passage-corpus,zyznull/msmarco-passage-ranking" + blockedDatasets: "1aurent/icdar-2011,Abuelnour/json_1000_Scientific_Paper,Biomedical-TeMU/ProfNER_corpus_NER,Biomedical-TeMU/ProfNER_corpus_classification,Biomedical-TeMU/SPACCC_Sentence-Splitter,Carlisle/msmarco-passage-non-abs,Champion/vpc2020_clear_anon_speech,CristianaLazar/librispeech500,CristianaLazar/librispeech5k_train,DTU54DL/librispeech5k-augmentated-train-prepared,DavidVivancos/MindBigData2022_Imagenet_IN_Spct,EfaceD/ElysiumInspirations,GEM/BiSECT,GEM/references,GEM/xsum,Graphcore/gqa,Graphcore/gqa-lxmert,Graphcore/vqa,Graphcore/vqa-lxmert,HamdiJr/Egyptian_hieroglyphs,HuggingFaceM4/TextCaps,HuggingFaceM4/charades,HuggingFaceM4/epic_kitchens_100,HuggingFaceM4/general-pmd-synthetic-testing,HuggingFaceM4/yttemporal180m,HugoLaurencon/IIIT-5K,HugoLaurencon/libri_light,HugoLaurencon/libri_light_bytes,Isma/librispeech_1000_seed_42,KETI-AIR/vqa,Karavet/ILUR-news-text-classification-corpus,KnutJaegersberg/Interpretable_word_embeddings_large_cskg,KokeCacao/oracle,Lacito/pangloss,LanceaKing/asvspoof2019,Lehrig/GTZAN-Collection,Lehrig/Monkey-Species-Collection,LeoFeng/MLHW_6,Leyo/TGIF,Livingwithmachines/MapReader_Data_SIGSPATIAL_2022,MorVentura/TRBLLmaker,Murple/mmcrsc,NLPC-UOM/document_alignment_dataset-Sinhala-Tamil-English,Nart/parallel-ab-ru,Pinguin/images,PolyAI/evi,Poupou/Gitcoin-Grant-DataBuilder,RAYZ/Mixed-Dia,RaphaelOlivier/whisper_adversarial_examples,Rodion/uno_sustainable_development_goals,SamAct/medium_cleaned,Samip/Scotch,SaulLu/Natural_Questions_HTML_reduced_all,SetFit/mnli,SocialGrep/the-reddit-climate-change-dataset,Sreyan88/librispeech_asr,TalTechNLP/VoxLingua107,Tevatron/beir-corpus,Tevatron/wikipedia-curated-corpus,Tevatron/wikipedia-squad,Tevatron/wikipedia-squad-corpus,Tevatron/wikipedia-trivia-corpus,Tevatron/wikipedia-wq-corpus,Tevatron/xor-tydi-corpus,TomTBT/pmc_open_access_figure,TomTBT/pmc_open_access_section,Tristan/olm-october-2022-tokenized-1024-exact-dedup-only,Voicemod/LibriTTS-100-preproc,Whispering-GPT/linustechtips-transcript-audio,YWjimmy/PeRFception-ScanNet,YWjimmy/PeRFception-v1-1,YWjimmy/PeRFception-v1-2,YWjimmy/PeRFception-v1-3,Yehor/ukrainian-tts-lada,ZihaoLin/zhlds,albertvillanova/TextCaps,andreagasparini/librispeech_test_only,andreagasparini/librispeech_train_clean_only,andreagasparini/librispeech_train_other_only,angelolab/ark_example,arpelarpe/nota,ashraq/dhivehi-corpus,autoevaluator/shoes-vs-sandals-vs-boots,azraahmadi/autotrain-data-xraydatasetp2,bengaliAI/cvbn,benschill/brain-tumor-collection,bigbio/anat_em,bigbio/ctebmsp,bigbio/distemist,bigbio/ebm_pico,bigcode/the-stack-username-to-repo,biglam/early_printed_books_font_detection,biglam/gallica_literary_fictions,bigscience/massive-probing-results,bio-datasets/e3c,biwi_kinect_head_pose,bnl_newspapers,bruno-cotrim/arch-max,cahya/fleurs,cahya/librivox-indonesia,cameronbc/synthtiger,castorini/msmarco_v1_passage_doc2query-t5_expansions,chenghao/scielo_books,cjvt/cc_gigafida,cjvt/slo_collocations,cjvt/sloleks,clarin-pl/multiwiki_90k,cmudrc/porous-microstructure-strain-fields,cooleel/xfund_de,corentinm7/MyoQuant-SDH-Data,crystina-z/miracl-bm25-negative,crystina-z/mmarco,crystina-z/mmarco-corpus,crystina-z/msmarco-passage-dl19,crystina-z/msmarco-passage-dl20,crystina-z/no-nonself-mrtydi,crystina-z/xor-tydi-corpus,darkproger/librispeech_asr,dgrnd4/stanford_dog_dataset,dlwh/MultiLegalPile_Wikipedia_Shuffled,echarlaix/gqa-lxmert,echarlaix/vqa,echarlaix/vqa-lxmert,fcakyon/gun-object-detection,florianbussmann/train_tickets-yu2020pick,galman33/gal_yair_166000_256x256_fixed,genjib/LAVISHData,gigant/m-ailabs_speech_dataset_fr,gigant/romanian_speech_synthesis_0_8_1,grasshoff/lhc_sents,guangguang/azukijpg,hebrew_projectbenyehuda,hr16/Miwano-Rag,icelab/ntrs_meta,ilhanemirhan/eee543,iluvvatar/RuREBus,imvladikon/paranames,indonesian-nlp/librivox-indonesia,inseq/divemt_attributions,izumaru/os2-datasets,jamescalam/movielens-25m-ratings,jamescalam/unsplash-25k-images,jerpint/imagenette,jimregan/clarinpl_sejmsenat,jimregan/clarinpl_studio,joefox/Mozilla_Common_Voice_ru_test_noise,joelito/MultiLegalPile_Wikipedia_Filtered,jpwahle/dblp-discovery-dataset,kaliansh/sdaia,keremberke/garbage-object-detection,keremberke/protective-equipment-detection,keremberke/smoke-object-detection,keshan/clean-si-mc4,keshan/multispeaker-tts-sinhala,khalidalt/tydiqa-primary,kresnik/librispeech_asr_test,ksaml/Stanford_dogs,lafi23333/ds,leviethoang/VBVLSP,m-aliabbas/idrak_splitted_amy_1,malteos/paperswithcode-aspects,marinone94/nst_no,marinone94/nst_sv,matchbench/dbp15k-fr-en,mathaillah/BeritaHoaks-NonHoaks,mbarnig/lb-de-fr-en-pt-12800-TTS-CORPUS,mesolitica/dbp,mesolitica/noisy-en-ms-augmentation,mesolitica/noisy-ms-en-augmentation,mesolitica/translated-SQUAD,metashift,momilla/Ethereum_transacitons,mozilla-foundation/common_voice_1_0,mozilla-foundation/common_voice_2_0,mozilla-foundation/common_voice_3_0,mozilla-foundation/common_voice_4_0,mozilla-foundation/common_voice_5_0,mozilla-foundation/common_voice_5_1,mozilla-foundation/common_voice_6_0,mteb/results,mteb/tatoeba-bitext-mining,mulcyber/europarl-mono,mwhanna/ACT-Thor,mwitiderrick/arXiv,nateraw/auto-cats-and-dogs,nateraw/imagenet-sketch,nateraw/quickdraw,nateraw/rice-image-dataset,nateraw/rice-image-dataset-2,nateraw/wit,nev/anime-giph,nishita/ade20k-sample,nlphuji/utk_faces,nlphuji/vasr,nlphuji/winogavil,nuprl/MultiPL-E-raw-data,nvm472001/cvdataset-layoutlmv3,openclimatefix/era5,openclimatefix/nimrod-uk-1km-validation,oyk100/ChaSES-data,parambharat/kannada_asr_corpus,parambharat/mile_dataset,parambharat/telugu_asr_corpus,plncmm/wl-disease,plncmm/wl-family-member,polinaeterna/vox_lingua,pragnakalp/squad_v2_french_translated,raghav66/whisper-gpt,robertmyers/pile_v2,rogerdehe/xfund,rohitp1/librispeech_asr_clean,rossevine/tesis,sanchit-gandhi/librispeech_asr_clean,severo/wit,shanya/crd3,shunk031/cocostuff,shunk031/livedoor-news-corpus,sil-ai/audio-keyword-spotting,sil-ai/audio-kw-in-context,sjpmpzx/qm_ly_gy_soundn,sled-umich/Action-Effect,society-ethics/lila_camera_traps,strombergnlp/broad_twitter_corpus,student/celebA,tab_fact,tau/mrqa,texturedesign/td01_natural-ground-textures,tilos/ASR-CCANTCSC,uva-irlab/trec-cast-2019-multi-turn,valurank/PoliticalBias_AllSides_Txt,vblagoje/wikipedia_snippets_streamed,voidful/librispeech_asr_text,winvoker/lvis,wmt/europarl,ywchoi/mdpi_sept10,z-uo/female-LJSpeech-italian,zyznull/dureader-retrieval-ranking,zyznull/msmarco-passage-corpus,zyznull/msmarco-passage-ranking"
56682aa1bbc6489902cf26603239b4a22fa207c7
Quentin Lhoest
2023-07-24T10:17:30
add auth to first_rows_from_parquet (#1541)
diff --git a/services/worker/src/worker/job_runners/split/first_rows_from_parquet.py b/services/worker/src/worker/job_runners/split/first_rows_from_parquet.py index 472eae18..402c0d70 100644 --- a/services/worker/src/worker/job_runners/split/first_rows_from_parquet.py +++ b/services/worker/src/worker/job_runners/split/first_rows_from_parquet.py @@ -192 +192 @@ class SplitFirstRowsFromParquetJobRunner(SplitJobRunner): - httpfs=HTTPFileSystem(), + httpfs=HTTPFileSystem(headers={"authorization": f"Bearer {self.app_config.common.hf_token}"}),
4b012593a3abecab1940add2bf49e5d572d7c80f
Sylvain Lesage
2023-07-21T18:12:24
feat: 🎸 unblock 26 datasets (5 likes or more) (#1540)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index d5b48476..15a3b2fb 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -117 +117 @@ parquetAndInfo: - blockedDatasets: "1aurent/icdar-2011,Abuelnour/json_1000_Scientific_Paper,Biomedical-TeMU/ProfNER_corpus_NER,Biomedical-TeMU/ProfNER_corpus_classification,Biomedical-TeMU/SPACCC_Sentence-Splitter,Carlisle/msmarco-passage-non-abs,Champion/vpc2020_clear_anon_speech,CodedotAI/code_clippy,CristianaLazar/librispeech500,CristianaLazar/librispeech5k_train,DTU54DL/librispeech5k-augmentated-train-prepared,DavidVivancos/MindBigData2022_Imagenet_IN_Spct,DelgadoPanadero/Pokemon,EfaceD/ElysiumInspirations,GEM/BiSECT,GEM/references,GEM/xsum,Graphcore/gqa,Graphcore/gqa-lxmert,Graphcore/vqa,Graphcore/vqa-lxmert,HamdiJr/Egyptian_hieroglyphs,HuggingFaceM4/COCO,HuggingFaceM4/FairFace,HuggingFaceM4/TGIF,HuggingFaceM4/TextCaps,HuggingFaceM4/VQAv2,HuggingFaceM4/charades,HuggingFaceM4/cm4-synthetic-testing,HuggingFaceM4/epic_kitchens_100,HuggingFaceM4/general-pmd-synthetic-testing,HuggingFaceM4/yttemporal180m,HugoLaurencon/IIIT-5K,HugoLaurencon/libri_light,HugoLaurencon/libri_light_bytes,Isma/librispeech_1000_seed_42,KETI-AIR/vqa,Karavet/ILUR-news-text-classification-corpus,KnutJaegersberg/Interpretable_word_embeddings_large_cskg,KokeCacao/oracle,Lacito/pangloss,LanceaKing/asvspoof2019,Lehrig/GTZAN-Collection,Lehrig/Monkey-Species-Collection,LeoFeng/MLHW_6,Leyo/TGIF,Livingwithmachines/MapReader_Data_SIGSPATIAL_2022,MorVentura/TRBLLmaker,Muennighoff/flores200,Murple/mmcrsc,NLPC-UOM/document_alignment_dataset-Sinhala-Tamil-English,Nart/parallel-ab-ru,Pinguin/images,PolyAI/evi,Poupou/Gitcoin-Grant-DataBuilder,RAYZ/Mixed-Dia,RaphaelOlivier/whisper_adversarial_examples,Rodion/uno_sustainable_development_goals,SLPL/naab-raw,SamAct/medium_cleaned,Samip/Scotch,SaulLu/Natural_Questions_HTML_reduced_all,SetFit/mnli,SocialGrep/ten-million-reddit-answers,SocialGrep/the-reddit-climate-change-dataset,Sreyan88/librispeech_asr,TalTechNLP/VoxLingua107,Tevatron/beir-corpus,Tevatron/wikipedia-curated-corpus,Tevatron/wikipedia-squad,Tevatron/wikipedia-squad-corpus,Tevatron/wikipedia-trivia-corpus,Tevatron/wikipedia-wq-corpus,Tevatron/xor-tydi-corpus,TomTBT/pmc_open_access_figure,TomTBT/pmc_open_access_section,Tristan/olm-october-2022-tokenized-1024-exact-dedup-only,VIMA/VIMA-Data,Voicemod/LibriTTS-100-preproc,Whispering-GPT/linustechtips-transcript-audio,YWjimmy/PeRFception-ScanNet,YWjimmy/PeRFception-v1-1,YWjimmy/PeRFception-v1-2,YWjimmy/PeRFception-v1-3,Yehor/ukrainian-tts-lada,ZihaoLin/zhlds,albertvillanova/TextCaps,alkzar90/CC6204-Hackaton-Cub-Dataset,ami,andreagasparini/librispeech_test_only,andreagasparini/librispeech_train_clean_only,andreagasparini/librispeech_train_other_only,angelolab/ark_example,arpelarpe/nota,asapp/slue,ashraf-ali/quran-data,ashraq/dhivehi-corpus,autoevaluator/shoes-vs-sandals-vs-boots,azraahmadi/autotrain-data-xraydatasetp2,backslashlim/LoRA-Datasets,bengaliAI/cvbn,benschill/brain-tumor-collection,bigbio/anat_em,bigbio/ctebmsp,bigbio/distemist,bigbio/ebm_pico,bigcode/the-stack-username-to-repo,biglam/brill_iconclass,biglam/early_printed_books_font_detection,biglam/gallica_literary_fictions,biglam/nls_chapbook_illustrations,bigscience/massive-probing-results,bio-datasets/e3c,biwi_kinect_head_pose,bnl_newspapers,bruno-cotrim/arch-max,cahya/fleurs,cahya/librivox-indonesia,cameronbc/synthtiger,castorini/msmarco_v1_passage_doc2query-t5_expansions,cats_vs_dogs,ccdv/cnn_dailymail,ccdv/mediasum,chenghao/scielo_books,chrisjay/mnist-adversarial-dataset,cjvt/cc_gigafida,cjvt/slo_collocations,cjvt/sloleks,clarin-pl/multiwiki_90k,cmudrc/porous-microstructure-strain-fields,common_language,cooleel/xfund_de,corentinm7/MyoQuant-SDH-Data,cornell_movie_dialog,crystina-z/miracl-bm25-negative,crystina-z/mmarco,crystina-z/mmarco-corpus,crystina-z/msmarco-passage-dl19,crystina-z/msmarco-passage-dl20,crystina-z/no-nonself-mrtydi,crystina-z/xor-tydi-corpus,dalle-mini/YFCC100M_OpenAI_subset,darkproger/librispeech_asr,dgrnd4/stanford_dog_dataset,dlwh/MultiLegalPile_Wikipedia_Shuffled,echarlaix/gqa-lxmert,echarlaix/vqa,echarlaix/vqa-lxmert,evidence_infer_treatment,fcakyon/gun-object-detection,florianbussmann/train_tickets-yu2020pick,galman33/gal_yair_166000_256x256_fixed,genjib/LAVISHData,gigant/african_accented_french,gigant/m-ailabs_speech_dataset_fr,gigant/romanian_speech_synthesis_0_8_1,grasshoff/lhc_sents,guangguang/azukijpg,hebrew_projectbenyehuda,hr16/Miwano-Rag,huggan/anime-faces,icelab/ntrs_meta,ilhanemirhan/eee543,iluvvatar/RuREBus,imvladikon/paranames,indonesian-nlp/librivox-indonesia,inseq/divemt_attributions,izumaru/os2-datasets,jamescalam/movielens-25m-ratings,jamescalam/unsplash-25k-images,jerpint/imagenette,jimregan/clarinpl_sejmsenat,jimregan/clarinpl_studio,joefox/Mozilla_Common_Voice_ru_test_noise,joelito/MultiLegalPile_Wikipedia_Filtered,joelito/lextreme,jpwahle/dblp-discovery-dataset,kaliansh/sdaia,keremberke/garbage-object-detection,keremberke/nfl-object-detection,keremberke/protective-equipment-detection,keremberke/smoke-object-detection,keshan/clean-si-mc4,keshan/multispeaker-tts-sinhala,khalidalt/tydiqa-primary,kresnik/librispeech_asr_test,ksaml/Stanford_dogs,lafi23333/ds,leviethoang/VBVLSP,lj_speech,m-aliabbas/idrak_splitted_amy_1,malteos/paperswithcode-aspects,marinone94/nst_no,marinone94/nst_sv,matchbench/dbp15k-fr-en,mathaillah/BeritaHoaks-NonHoaks,mbarnig/lb-de-fr-en-pt-12800-TTS-CORPUS,mesolitica/dbp,mesolitica/noisy-en-ms-augmentation,mesolitica/noisy-ms-en-augmentation,mesolitica/translated-SQUAD,metashift,momilla/Ethereum_transacitons,mozilla-foundation/common_voice_10_0,mozilla-foundation/common_voice_1_0,mozilla-foundation/common_voice_2_0,mozilla-foundation/common_voice_3_0,mozilla-foundation/common_voice_4_0,mozilla-foundation/common_voice_5_0,mozilla-foundation/common_voice_5_1,mozilla-foundation/common_voice_6_0,mteb/results,mteb/tatoeba-bitext-mining,muchocine,mulcyber/europarl-mono,multilingual_librispeech,mwhanna/ACT-Thor,mwitiderrick/arXiv,nateraw/auto-cats-and-dogs,nateraw/imagenet-sketch,nateraw/quickdraw,nateraw/rice-image-dataset,nateraw/rice-image-dataset-2,nateraw/wit,nev/anime-giph,nishita/ade20k-sample,nlphuji/utk_faces,nlphuji/vasr,nlphuji/winogavil,nuprl/MultiPL-E,nuprl/MultiPL-E-raw-data,nvm472001/cvdataset-layoutlmv3,nyanko7/yandere-images,openclimatefix/era5,openclimatefix/nimrod-uk-1km-validation,openslr,opus_euconst,orieg/elsevier-oa-cc-by,oyk100/ChaSES-data,parambharat/kannada_asr_corpus,parambharat/malayalam_asr_corpus,parambharat/mile_dataset,parambharat/telugu_asr_corpus,plncmm/wl-disease,plncmm/wl-family-member,polinaeterna/vox_lingua,pragnakalp/squad_v2_french_translated,qanastek/MASSIVE,raghav66/whisper-gpt,robertmyers/pile_v2,rogerdehe/xfund,rohitp1/librispeech_asr_clean,rossevine/tesis,sanchit-gandhi/librispeech_asr_clean,severo/wit,shanya/crd3,shunk031/cocostuff,shunk031/livedoor-news-corpus,sil-ai/audio-keyword-spotting,sil-ai/audio-kw-in-context,sjpmpzx/qm_ly_gy_soundn,sled-umich/Action-Effect,society-ethics/lila_camera_traps,stas/openwebtext-10k,strombergnlp/broad_twitter_corpus,student/celebA,tab_fact,tau/mrqa,tau/scrolls,texturedesign/td01_natural-ground-textures,textvqa,tilos/ASR-CCANTCSC,tner/wikiann,turkic_xwmt,universal_morphologies,uva-irlab/trec-cast-2019-multi-turn,valurank/PoliticalBias_AllSides_Txt,vblagoje/wikipedia_snippets_streamed,vctk,voidful/librispeech_asr_text,web_nlg,winvoker/lvis,wmt/europarl,yhavinga/ccmatrix,ywchoi/mdpi_sept10,z-uo/female-LJSpeech-italian,zyznull/dureader-retrieval-ranking,zyznull/msmarco-passage-corpus,zyznull/msmarco-passage-ranking" + blockedDatasets: "1aurent/icdar-2011,Abuelnour/json_1000_Scientific_Paper,Biomedical-TeMU/ProfNER_corpus_NER,Biomedical-TeMU/ProfNER_corpus_classification,Biomedical-TeMU/SPACCC_Sentence-Splitter,Carlisle/msmarco-passage-non-abs,Champion/vpc2020_clear_anon_speech,CristianaLazar/librispeech500,CristianaLazar/librispeech5k_train,DTU54DL/librispeech5k-augmentated-train-prepared,DavidVivancos/MindBigData2022_Imagenet_IN_Spct,DelgadoPanadero/Pokemon,EfaceD/ElysiumInspirations,GEM/BiSECT,GEM/references,GEM/xsum,Graphcore/gqa,Graphcore/gqa-lxmert,Graphcore/vqa,Graphcore/vqa-lxmert,HamdiJr/Egyptian_hieroglyphs,HuggingFaceM4/COCO,HuggingFaceM4/FairFace,HuggingFaceM4/TextCaps,HuggingFaceM4/VQAv2,HuggingFaceM4/charades,HuggingFaceM4/cm4-synthetic-testing,HuggingFaceM4/epic_kitchens_100,HuggingFaceM4/general-pmd-synthetic-testing,HuggingFaceM4/yttemporal180m,HugoLaurencon/IIIT-5K,HugoLaurencon/libri_light,HugoLaurencon/libri_light_bytes,Isma/librispeech_1000_seed_42,KETI-AIR/vqa,Karavet/ILUR-news-text-classification-corpus,KnutJaegersberg/Interpretable_word_embeddings_large_cskg,KokeCacao/oracle,Lacito/pangloss,LanceaKing/asvspoof2019,Lehrig/GTZAN-Collection,Lehrig/Monkey-Species-Collection,LeoFeng/MLHW_6,Leyo/TGIF,Livingwithmachines/MapReader_Data_SIGSPATIAL_2022,MorVentura/TRBLLmaker,Muennighoff/flores200,Murple/mmcrsc,NLPC-UOM/document_alignment_dataset-Sinhala-Tamil-English,Nart/parallel-ab-ru,Pinguin/images,PolyAI/evi,Poupou/Gitcoin-Grant-DataBuilder,RAYZ/Mixed-Dia,RaphaelOlivier/whisper_adversarial_examples,Rodion/uno_sustainable_development_goals,SamAct/medium_cleaned,Samip/Scotch,SaulLu/Natural_Questions_HTML_reduced_all,SetFit/mnli,SocialGrep/the-reddit-climate-change-dataset,Sreyan88/librispeech_asr,TalTechNLP/VoxLingua107,Tevatron/beir-corpus,Tevatron/wikipedia-curated-corpus,Tevatron/wikipedia-squad,Tevatron/wikipedia-squad-corpus,Tevatron/wikipedia-trivia-corpus,Tevatron/wikipedia-wq-corpus,Tevatron/xor-tydi-corpus,TomTBT/pmc_open_access_figure,TomTBT/pmc_open_access_section,Tristan/olm-october-2022-tokenized-1024-exact-dedup-only,VIMA/VIMA-Data,Voicemod/LibriTTS-100-preproc,Whispering-GPT/linustechtips-transcript-audio,YWjimmy/PeRFception-ScanNet,YWjimmy/PeRFception-v1-1,YWjimmy/PeRFception-v1-2,YWjimmy/PeRFception-v1-3,Yehor/ukrainian-tts-lada,ZihaoLin/zhlds,albertvillanova/TextCaps,alkzar90/CC6204-Hackaton-Cub-Dataset,andreagasparini/librispeech_test_only,andreagasparini/librispeech_train_clean_only,andreagasparini/librispeech_train_other_only,angelolab/ark_example,arpelarpe/nota,asapp/slue,ashraf-ali/quran-data,ashraq/dhivehi-corpus,autoevaluator/shoes-vs-sandals-vs-boots,azraahmadi/autotrain-data-xraydatasetp2,bengaliAI/cvbn,benschill/brain-tumor-collection,bigbio/anat_em,bigbio/ctebmsp,bigbio/distemist,bigbio/ebm_pico,bigcode/the-stack-username-to-repo,biglam/brill_iconclass,biglam/early_printed_books_font_detection,biglam/gallica_literary_fictions,bigscience/massive-probing-results,bio-datasets/e3c,biwi_kinect_head_pose,bnl_newspapers,bruno-cotrim/arch-max,cahya/fleurs,cahya/librivox-indonesia,cameronbc/synthtiger,castorini/msmarco_v1_passage_doc2query-t5_expansions,ccdv/cnn_dailymail,ccdv/mediasum,chenghao/scielo_books,chrisjay/mnist-adversarial-dataset,cjvt/cc_gigafida,cjvt/slo_collocations,cjvt/sloleks,clarin-pl/multiwiki_90k,cmudrc/porous-microstructure-strain-fields,cooleel/xfund_de,corentinm7/MyoQuant-SDH-Data,crystina-z/miracl-bm25-negative,crystina-z/mmarco,crystina-z/mmarco-corpus,crystina-z/msmarco-passage-dl19,crystina-z/msmarco-passage-dl20,crystina-z/no-nonself-mrtydi,crystina-z/xor-tydi-corpus,darkproger/librispeech_asr,dgrnd4/stanford_dog_dataset,dlwh/MultiLegalPile_Wikipedia_Shuffled,echarlaix/gqa-lxmert,echarlaix/vqa,echarlaix/vqa-lxmert,evidence_infer_treatment,fcakyon/gun-object-detection,florianbussmann/train_tickets-yu2020pick,galman33/gal_yair_166000_256x256_fixed,genjib/LAVISHData,gigant/african_accented_french,gigant/m-ailabs_speech_dataset_fr,gigant/romanian_speech_synthesis_0_8_1,grasshoff/lhc_sents,guangguang/azukijpg,hebrew_projectbenyehuda,hr16/Miwano-Rag,huggan/anime-faces,icelab/ntrs_meta,ilhanemirhan/eee543,iluvvatar/RuREBus,imvladikon/paranames,indonesian-nlp/librivox-indonesia,inseq/divemt_attributions,izumaru/os2-datasets,jamescalam/movielens-25m-ratings,jamescalam/unsplash-25k-images,jerpint/imagenette,jimregan/clarinpl_sejmsenat,jimregan/clarinpl_studio,joefox/Mozilla_Common_Voice_ru_test_noise,joelito/MultiLegalPile_Wikipedia_Filtered,jpwahle/dblp-discovery-dataset,kaliansh/sdaia,keremberke/garbage-object-detection,keremberke/nfl-object-detection,keremberke/protective-equipment-detection,keremberke/smoke-object-detection,keshan/clean-si-mc4,keshan/multispeaker-tts-sinhala,khalidalt/tydiqa-primary,kresnik/librispeech_asr_test,ksaml/Stanford_dogs,lafi23333/ds,leviethoang/VBVLSP,m-aliabbas/idrak_splitted_amy_1,malteos/paperswithcode-aspects,marinone94/nst_no,marinone94/nst_sv,matchbench/dbp15k-fr-en,mathaillah/BeritaHoaks-NonHoaks,mbarnig/lb-de-fr-en-pt-12800-TTS-CORPUS,mesolitica/dbp,mesolitica/noisy-en-ms-augmentation,mesolitica/noisy-ms-en-augmentation,mesolitica/translated-SQUAD,metashift,momilla/Ethereum_transacitons,mozilla-foundation/common_voice_1_0,mozilla-foundation/common_voice_2_0,mozilla-foundation/common_voice_3_0,mozilla-foundation/common_voice_4_0,mozilla-foundation/common_voice_5_0,mozilla-foundation/common_voice_5_1,mozilla-foundation/common_voice_6_0,mteb/results,mteb/tatoeba-bitext-mining,muchocine,mulcyber/europarl-mono,mwhanna/ACT-Thor,mwitiderrick/arXiv,nateraw/auto-cats-and-dogs,nateraw/imagenet-sketch,nateraw/quickdraw,nateraw/rice-image-dataset,nateraw/rice-image-dataset-2,nateraw/wit,nev/anime-giph,nishita/ade20k-sample,nlphuji/utk_faces,nlphuji/vasr,nlphuji/winogavil,nuprl/MultiPL-E-raw-data,nvm472001/cvdataset-layoutlmv3,openclimatefix/era5,openclimatefix/nimrod-uk-1km-validation,opus_euconst,oyk100/ChaSES-data,parambharat/kannada_asr_corpus,parambharat/malayalam_asr_corpus,parambharat/mile_dataset,parambharat/telugu_asr_corpus,plncmm/wl-disease,plncmm/wl-family-member,polinaeterna/vox_lingua,pragnakalp/squad_v2_french_translated,raghav66/whisper-gpt,robertmyers/pile_v2,rogerdehe/xfund,rohitp1/librispeech_asr_clean,rossevine/tesis,sanchit-gandhi/librispeech_asr_clean,severo/wit,shanya/crd3,shunk031/cocostuff,shunk031/livedoor-news-corpus,sil-ai/audio-keyword-spotting,sil-ai/audio-kw-in-context,sjpmpzx/qm_ly_gy_soundn,sled-umich/Action-Effect,society-ethics/lila_camera_traps,stas/openwebtext-10k,strombergnlp/broad_twitter_corpus,student/celebA,tab_fact,tau/mrqa,texturedesign/td01_natural-ground-textures,textvqa,tilos/ASR-CCANTCSC,tner/wikiann,uva-irlab/trec-cast-2019-multi-turn,valurank/PoliticalBias_AllSides_Txt,vblagoje/wikipedia_snippets_streamed,voidful/librispeech_asr_text,winvoker/lvis,wmt/europarl,ywchoi/mdpi_sept10,z-uo/female-LJSpeech-italian,zyznull/dureader-retrieval-ranking,zyznull/msmarco-passage-corpus,zyznull/msmarco-passage-ranking"
14c639c80340f913b875f9d6906d86438a126c87
Sylvain Lesage
2023-07-21T16:02:39
feat: 🎸 unblock impactful datasets (#1539)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 370fee1a..d5b48476 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -117 +117 @@ parquetAndInfo: - blockedDatasets: "1aurent/icdar-2011,Abuelnour/json_1000_Scientific_Paper,Biomedical-TeMU/ProfNER_corpus_NER,Biomedical-TeMU/ProfNER_corpus_classification,Biomedical-TeMU/SPACCC_Sentence-Splitter,Carlisle/msmarco-passage-non-abs,Champion/vpc2020_clear_anon_speech,CodedotAI/code_clippy,CristianaLazar/librispeech500,CristianaLazar/librispeech5k_train,DTU54DL/librispeech5k-augmentated-train-prepared,DavidVivancos/MindBigData2022_Imagenet_IN_Spct,DelgadoPanadero/Pokemon,EfaceD/ElysiumInspirations,GEM/BiSECT,GEM/references,GEM/xsum,Graphcore/gqa,Graphcore/gqa-lxmert,Graphcore/vqa,Graphcore/vqa-lxmert,HamdiJr/Egyptian_hieroglyphs,HuggingFaceM4/COCO,HuggingFaceM4/FairFace,HuggingFaceM4/TGIF,HuggingFaceM4/TextCaps,HuggingFaceM4/VQAv2,HuggingFaceM4/charades,HuggingFaceM4/cm4-synthetic-testing,HuggingFaceM4/epic_kitchens_100,HuggingFaceM4/general-pmd-synthetic-testing,HuggingFaceM4/yttemporal180m,HugoLaurencon/IIIT-5K,HugoLaurencon/libri_light,HugoLaurencon/libri_light_bytes,Isma/librispeech_1000_seed_42,KETI-AIR/vqa,Karavet/ILUR-news-text-classification-corpus,KnutJaegersberg/Interpretable_word_embeddings_large_cskg,KokeCacao/oracle,Lacito/pangloss,LanceaKing/asvspoof2019,Lehrig/GTZAN-Collection,Lehrig/Monkey-Species-Collection,LeoFeng/MLHW_6,Leyo/TGIF,Livingwithmachines/MapReader_Data_SIGSPATIAL_2022,MorVentura/TRBLLmaker,Muennighoff/flores200,Murple/mmcrsc,NLPC-UOM/document_alignment_dataset-Sinhala-Tamil-English,Nart/parallel-ab-ru,Pinguin/images,PolyAI/evi,Poupou/Gitcoin-Grant-DataBuilder,RAYZ/Mixed-Dia,RaphaelOlivier/whisper_adversarial_examples,Rodion/uno_sustainable_development_goals,SLPL/naab-raw,SamAct/medium_cleaned,Samip/Scotch,SaulLu/Natural_Questions_HTML_reduced_all,SetFit/mnli,SocialGrep/ten-million-reddit-answers,SocialGrep/the-reddit-climate-change-dataset,Sreyan88/librispeech_asr,TalTechNLP/VoxLingua107,Tevatron/beir-corpus,Tevatron/wikipedia-curated-corpus,Tevatron/wikipedia-squad,Tevatron/wikipedia-squad-corpus,Tevatron/wikipedia-trivia-corpus,Tevatron/wikipedia-wq-corpus,Tevatron/xor-tydi-corpus,TomTBT/pmc_open_access_figure,TomTBT/pmc_open_access_section,Tristan/olm-october-2022-tokenized-1024-exact-dedup-only,VIMA/VIMA-Data,Voicemod/LibriTTS-100-preproc,Whispering-GPT/linustechtips-transcript-audio,YWjimmy/PeRFception-ScanNet,YWjimmy/PeRFception-v1-1,YWjimmy/PeRFception-v1-2,YWjimmy/PeRFception-v1-3,Yehor/ukrainian-tts-lada,ZihaoLin/zhlds,albertvillanova/TextCaps,alkzar90/CC6204-Hackaton-Cub-Dataset,ami,andreagasparini/librispeech_test_only,andreagasparini/librispeech_train_clean_only,andreagasparini/librispeech_train_other_only,angelolab/ark_example,arpelarpe/nota,asapp/slue,ashraf-ali/quran-data,ashraq/dhivehi-corpus,autoevaluator/shoes-vs-sandals-vs-boots,azraahmadi/autotrain-data-xraydatasetp2,backslashlim/LoRA-Datasets,bengaliAI/cvbn,benschill/brain-tumor-collection,beyond/chinese_clean_passages_80m,bigbio/anat_em,bigbio/ctebmsp,bigbio/distemist,bigbio/ebm_pico,bigcode/the-stack-username-to-repo,biglam/brill_iconclass,biglam/early_printed_books_font_detection,biglam/gallica_literary_fictions,biglam/nls_chapbook_illustrations,bigscience/massive-probing-results,bio-datasets/e3c,biwi_kinect_head_pose,bnl_newspapers,bruno-cotrim/arch-max,cahya/fleurs,cahya/librivox-indonesia,cameronbc/synthtiger,castorini/msmarco_v1_passage_doc2query-t5_expansions,cats_vs_dogs,ccdv/arxiv-summarization,ccdv/cnn_dailymail,ccdv/mediasum,chenghao/scielo_books,chrisjay/mnist-adversarial-dataset,cjvt/cc_gigafida,cjvt/slo_collocations,cjvt/sloleks,clarin-pl/multiwiki_90k,cmudrc/porous-microstructure-strain-fields,common_language,competition_math,cooleel/xfund_de,corentinm7/MyoQuant-SDH-Data,cornell_movie_dialog,crystina-z/miracl-bm25-negative,crystina-z/mmarco,crystina-z/mmarco-corpus,crystina-z/msmarco-passage-dl19,crystina-z/msmarco-passage-dl20,crystina-z/no-nonself-mrtydi,crystina-z/xor-tydi-corpus,dalle-mini/YFCC100M_OpenAI_subset,darkproger/librispeech_asr,dgrnd4/stanford_dog_dataset,dlwh/MultiLegalPile_Wikipedia_Shuffled,ds4sd/DocLayNet,echarlaix/gqa-lxmert,echarlaix/vqa,echarlaix/vqa-lxmert,evidence_infer_treatment,fcakyon/gun-object-detection,florianbussmann/train_tickets-yu2020pick,galman33/gal_yair_166000_256x256_fixed,genjib/LAVISHData,gigant/african_accented_french,gigant/m-ailabs_speech_dataset_fr,gigant/romanian_speech_synthesis_0_8_1,grasshoff/lhc_sents,guangguang/azukijpg,hebrew_projectbenyehuda,hr16/Miwano-Rag,huggan/anime-faces,icelab/ntrs_meta,ilhanemirhan/eee543,iluvvatar/RuREBus,imvladikon/paranames,indonesian-nlp/librivox-indonesia,inseq/divemt_attributions,izumaru/os2-datasets,jamescalam/movielens-25m-ratings,jamescalam/unsplash-25k-images,jerpint/imagenette,jimregan/clarinpl_sejmsenat,jimregan/clarinpl_studio,joefox/Mozilla_Common_Voice_ru_test_noise,joelito/MultiLegalPile_Wikipedia_Filtered,joelito/lextreme,jpwahle/dblp-discovery-dataset,kaliansh/sdaia,keremberke/garbage-object-detection,keremberke/nfl-object-detection,keremberke/protective-equipment-detection,keremberke/smoke-object-detection,keshan/clean-si-mc4,keshan/multispeaker-tts-sinhala,khalidalt/tydiqa-primary,kresnik/librispeech_asr_test,ksaml/Stanford_dogs,lafi23333/ds,leviethoang/VBVLSP,lj_speech,m-aliabbas/idrak_splitted_amy_1,malteos/paperswithcode-aspects,marinone94/nst_no,marinone94/nst_sv,matchbench/dbp15k-fr-en,mathaillah/BeritaHoaks-NonHoaks,mbarnig/lb-de-fr-en-pt-12800-TTS-CORPUS,mesolitica/dbp,mesolitica/noisy-en-ms-augmentation,mesolitica/noisy-ms-en-augmentation,mesolitica/translated-SQUAD,metashift,miracl/miracl,momilla/Ethereum_transacitons,mozilla-foundation/common_voice_10_0,mozilla-foundation/common_voice_1_0,mozilla-foundation/common_voice_2_0,mozilla-foundation/common_voice_3_0,mozilla-foundation/common_voice_4_0,mozilla-foundation/common_voice_5_0,mozilla-foundation/common_voice_5_1,mozilla-foundation/common_voice_6_0,mozilla-foundation/common_voice_7_0,mteb/results,mteb/tatoeba-bitext-mining,muchocine,mulcyber/europarl-mono,multilingual_librispeech,mwhanna/ACT-Thor,mwitiderrick/arXiv,nateraw/auto-cats-and-dogs,nateraw/imagenet-sketch,nateraw/quickdraw,nateraw/rice-image-dataset,nateraw/rice-image-dataset-2,nateraw/wit,nev/anime-giph,nishita/ade20k-sample,nlphuji/utk_faces,nlphuji/vasr,nlphuji/winogavil,nuprl/MultiPL-E,nuprl/MultiPL-E-raw-data,nvm472001/cvdataset-layoutlmv3,nyanko7/yandere-images,openclimatefix/era5,openclimatefix/nimrod-uk-1km-validation,openslr,opus_euconst,orieg/elsevier-oa-cc-by,oyk100/ChaSES-data,parambharat/kannada_asr_corpus,parambharat/malayalam_asr_corpus,parambharat/mile_dataset,parambharat/telugu_asr_corpus,plncmm/wl-disease,plncmm/wl-family-member,polinaeterna/vox_lingua,pragnakalp/squad_v2_french_translated,qanastek/MASSIVE,raghav66/whisper-gpt,reazon-research/reazonspeech,robertmyers/pile_v2,rogerdehe/xfund,rohitp1/librispeech_asr_clean,rossevine/tesis,sanchit-gandhi/librispeech_asr_clean,severo/wit,shanya/crd3,shunk031/cocostuff,shunk031/livedoor-news-corpus,sil-ai/audio-keyword-spotting,sil-ai/audio-kw-in-context,sjpmpzx/qm_ly_gy_soundn,sled-umich/Action-Effect,society-ethics/lila_camera_traps,stas/openwebtext-10k,strombergnlp/broad_twitter_corpus,student/celebA,superb,tab_fact,tapaco,tau/mrqa,tau/scrolls,texturedesign/td01_natural-ground-textures,textvqa,tilos/ASR-CCANTCSC,tner/wikiann,turkic_xwmt,universal_morphologies,uva-irlab/trec-cast-2019-multi-turn,valurank/PoliticalBias_AllSides_Txt,vblagoje/wikipedia_snippets_streamed,vctk,voidful/librispeech_asr_text,web_nlg,winvoker/lvis,wmt/europarl,xglue,yhavinga/ccmatrix,ywchoi/mdpi_sept10,z-uo/female-LJSpeech-italian,zyznull/dureader-retrieval-ranking,zyznull/msmarco-passage-corpus,zyznull/msmarco-passage-ranking" + blockedDatasets: "1aurent/icdar-2011,Abuelnour/json_1000_Scientific_Paper,Biomedical-TeMU/ProfNER_corpus_NER,Biomedical-TeMU/ProfNER_corpus_classification,Biomedical-TeMU/SPACCC_Sentence-Splitter,Carlisle/msmarco-passage-non-abs,Champion/vpc2020_clear_anon_speech,CodedotAI/code_clippy,CristianaLazar/librispeech500,CristianaLazar/librispeech5k_train,DTU54DL/librispeech5k-augmentated-train-prepared,DavidVivancos/MindBigData2022_Imagenet_IN_Spct,DelgadoPanadero/Pokemon,EfaceD/ElysiumInspirations,GEM/BiSECT,GEM/references,GEM/xsum,Graphcore/gqa,Graphcore/gqa-lxmert,Graphcore/vqa,Graphcore/vqa-lxmert,HamdiJr/Egyptian_hieroglyphs,HuggingFaceM4/COCO,HuggingFaceM4/FairFace,HuggingFaceM4/TGIF,HuggingFaceM4/TextCaps,HuggingFaceM4/VQAv2,HuggingFaceM4/charades,HuggingFaceM4/cm4-synthetic-testing,HuggingFaceM4/epic_kitchens_100,HuggingFaceM4/general-pmd-synthetic-testing,HuggingFaceM4/yttemporal180m,HugoLaurencon/IIIT-5K,HugoLaurencon/libri_light,HugoLaurencon/libri_light_bytes,Isma/librispeech_1000_seed_42,KETI-AIR/vqa,Karavet/ILUR-news-text-classification-corpus,KnutJaegersberg/Interpretable_word_embeddings_large_cskg,KokeCacao/oracle,Lacito/pangloss,LanceaKing/asvspoof2019,Lehrig/GTZAN-Collection,Lehrig/Monkey-Species-Collection,LeoFeng/MLHW_6,Leyo/TGIF,Livingwithmachines/MapReader_Data_SIGSPATIAL_2022,MorVentura/TRBLLmaker,Muennighoff/flores200,Murple/mmcrsc,NLPC-UOM/document_alignment_dataset-Sinhala-Tamil-English,Nart/parallel-ab-ru,Pinguin/images,PolyAI/evi,Poupou/Gitcoin-Grant-DataBuilder,RAYZ/Mixed-Dia,RaphaelOlivier/whisper_adversarial_examples,Rodion/uno_sustainable_development_goals,SLPL/naab-raw,SamAct/medium_cleaned,Samip/Scotch,SaulLu/Natural_Questions_HTML_reduced_all,SetFit/mnli,SocialGrep/ten-million-reddit-answers,SocialGrep/the-reddit-climate-change-dataset,Sreyan88/librispeech_asr,TalTechNLP/VoxLingua107,Tevatron/beir-corpus,Tevatron/wikipedia-curated-corpus,Tevatron/wikipedia-squad,Tevatron/wikipedia-squad-corpus,Tevatron/wikipedia-trivia-corpus,Tevatron/wikipedia-wq-corpus,Tevatron/xor-tydi-corpus,TomTBT/pmc_open_access_figure,TomTBT/pmc_open_access_section,Tristan/olm-october-2022-tokenized-1024-exact-dedup-only,VIMA/VIMA-Data,Voicemod/LibriTTS-100-preproc,Whispering-GPT/linustechtips-transcript-audio,YWjimmy/PeRFception-ScanNet,YWjimmy/PeRFception-v1-1,YWjimmy/PeRFception-v1-2,YWjimmy/PeRFception-v1-3,Yehor/ukrainian-tts-lada,ZihaoLin/zhlds,albertvillanova/TextCaps,alkzar90/CC6204-Hackaton-Cub-Dataset,ami,andreagasparini/librispeech_test_only,andreagasparini/librispeech_train_clean_only,andreagasparini/librispeech_train_other_only,angelolab/ark_example,arpelarpe/nota,asapp/slue,ashraf-ali/quran-data,ashraq/dhivehi-corpus,autoevaluator/shoes-vs-sandals-vs-boots,azraahmadi/autotrain-data-xraydatasetp2,backslashlim/LoRA-Datasets,bengaliAI/cvbn,benschill/brain-tumor-collection,bigbio/anat_em,bigbio/ctebmsp,bigbio/distemist,bigbio/ebm_pico,bigcode/the-stack-username-to-repo,biglam/brill_iconclass,biglam/early_printed_books_font_detection,biglam/gallica_literary_fictions,biglam/nls_chapbook_illustrations,bigscience/massive-probing-results,bio-datasets/e3c,biwi_kinect_head_pose,bnl_newspapers,bruno-cotrim/arch-max,cahya/fleurs,cahya/librivox-indonesia,cameronbc/synthtiger,castorini/msmarco_v1_passage_doc2query-t5_expansions,cats_vs_dogs,ccdv/cnn_dailymail,ccdv/mediasum,chenghao/scielo_books,chrisjay/mnist-adversarial-dataset,cjvt/cc_gigafida,cjvt/slo_collocations,cjvt/sloleks,clarin-pl/multiwiki_90k,cmudrc/porous-microstructure-strain-fields,common_language,cooleel/xfund_de,corentinm7/MyoQuant-SDH-Data,cornell_movie_dialog,crystina-z/miracl-bm25-negative,crystina-z/mmarco,crystina-z/mmarco-corpus,crystina-z/msmarco-passage-dl19,crystina-z/msmarco-passage-dl20,crystina-z/no-nonself-mrtydi,crystina-z/xor-tydi-corpus,dalle-mini/YFCC100M_OpenAI_subset,darkproger/librispeech_asr,dgrnd4/stanford_dog_dataset,dlwh/MultiLegalPile_Wikipedia_Shuffled,echarlaix/gqa-lxmert,echarlaix/vqa,echarlaix/vqa-lxmert,evidence_infer_treatment,fcakyon/gun-object-detection,florianbussmann/train_tickets-yu2020pick,galman33/gal_yair_166000_256x256_fixed,genjib/LAVISHData,gigant/african_accented_french,gigant/m-ailabs_speech_dataset_fr,gigant/romanian_speech_synthesis_0_8_1,grasshoff/lhc_sents,guangguang/azukijpg,hebrew_projectbenyehuda,hr16/Miwano-Rag,huggan/anime-faces,icelab/ntrs_meta,ilhanemirhan/eee543,iluvvatar/RuREBus,imvladikon/paranames,indonesian-nlp/librivox-indonesia,inseq/divemt_attributions,izumaru/os2-datasets,jamescalam/movielens-25m-ratings,jamescalam/unsplash-25k-images,jerpint/imagenette,jimregan/clarinpl_sejmsenat,jimregan/clarinpl_studio,joefox/Mozilla_Common_Voice_ru_test_noise,joelito/MultiLegalPile_Wikipedia_Filtered,joelito/lextreme,jpwahle/dblp-discovery-dataset,kaliansh/sdaia,keremberke/garbage-object-detection,keremberke/nfl-object-detection,keremberke/protective-equipment-detection,keremberke/smoke-object-detection,keshan/clean-si-mc4,keshan/multispeaker-tts-sinhala,khalidalt/tydiqa-primary,kresnik/librispeech_asr_test,ksaml/Stanford_dogs,lafi23333/ds,leviethoang/VBVLSP,lj_speech,m-aliabbas/idrak_splitted_amy_1,malteos/paperswithcode-aspects,marinone94/nst_no,marinone94/nst_sv,matchbench/dbp15k-fr-en,mathaillah/BeritaHoaks-NonHoaks,mbarnig/lb-de-fr-en-pt-12800-TTS-CORPUS,mesolitica/dbp,mesolitica/noisy-en-ms-augmentation,mesolitica/noisy-ms-en-augmentation,mesolitica/translated-SQUAD,metashift,momilla/Ethereum_transacitons,mozilla-foundation/common_voice_10_0,mozilla-foundation/common_voice_1_0,mozilla-foundation/common_voice_2_0,mozilla-foundation/common_voice_3_0,mozilla-foundation/common_voice_4_0,mozilla-foundation/common_voice_5_0,mozilla-foundation/common_voice_5_1,mozilla-foundation/common_voice_6_0,mteb/results,mteb/tatoeba-bitext-mining,muchocine,mulcyber/europarl-mono,multilingual_librispeech,mwhanna/ACT-Thor,mwitiderrick/arXiv,nateraw/auto-cats-and-dogs,nateraw/imagenet-sketch,nateraw/quickdraw,nateraw/rice-image-dataset,nateraw/rice-image-dataset-2,nateraw/wit,nev/anime-giph,nishita/ade20k-sample,nlphuji/utk_faces,nlphuji/vasr,nlphuji/winogavil,nuprl/MultiPL-E,nuprl/MultiPL-E-raw-data,nvm472001/cvdataset-layoutlmv3,nyanko7/yandere-images,openclimatefix/era5,openclimatefix/nimrod-uk-1km-validation,openslr,opus_euconst,orieg/elsevier-oa-cc-by,oyk100/ChaSES-data,parambharat/kannada_asr_corpus,parambharat/malayalam_asr_corpus,parambharat/mile_dataset,parambharat/telugu_asr_corpus,plncmm/wl-disease,plncmm/wl-family-member,polinaeterna/vox_lingua,pragnakalp/squad_v2_french_translated,qanastek/MASSIVE,raghav66/whisper-gpt,robertmyers/pile_v2,rogerdehe/xfund,rohitp1/librispeech_asr_clean,rossevine/tesis,sanchit-gandhi/librispeech_asr_clean,severo/wit,shanya/crd3,shunk031/cocostuff,shunk031/livedoor-news-corpus,sil-ai/audio-keyword-spotting,sil-ai/audio-kw-in-context,sjpmpzx/qm_ly_gy_soundn,sled-umich/Action-Effect,society-ethics/lila_camera_traps,stas/openwebtext-10k,strombergnlp/broad_twitter_corpus,student/celebA,tab_fact,tau/mrqa,tau/scrolls,texturedesign/td01_natural-ground-textures,textvqa,tilos/ASR-CCANTCSC,tner/wikiann,turkic_xwmt,universal_morphologies,uva-irlab/trec-cast-2019-multi-turn,valurank/PoliticalBias_AllSides_Txt,vblagoje/wikipedia_snippets_streamed,vctk,voidful/librispeech_asr_text,web_nlg,winvoker/lvis,wmt/europarl,yhavinga/ccmatrix,ywchoi/mdpi_sept10,z-uo/female-LJSpeech-italian,zyznull/dureader-retrieval-ranking,zyznull/msmarco-passage-corpus,zyznull/msmarco-passage-ranking" @@ -313 +313 @@ workers: - replicas: 20 + replicas: 60 @@ -330 +330 @@ workers: - replicas: 6 + replicas: 15
0691cb7af3cd3a2293ad0120c684bb686f7aa804
Andrea Francis Soria Jimenez
2023-07-20T21:17:43
Update aiohttp (#1538)
diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 75d6c3b1..904f5f72 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -17 +17 @@ name = "aiohttp" -version = "3.8.4" +version = "3.8.5" @@ -23,87 +23,87 @@ files = [ - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5ce45967538fb747370308d3145aa68a074bdecb4f3a300869590f725ced69c1"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b744c33b6f14ca26b7544e8d8aadff6b765a80ad6164fb1a430bbadd593dfb1a"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1a45865451439eb320784918617ba54b7a377e3501fb70402ab84d38c2cd891b"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86d42d7cba1cec432d47ab13b6637bee393a10f664c425ea7b305d1301ca1a3"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee3c36df21b5714d49fc4580247947aa64bcbe2939d1b77b4c8dcb8f6c9faecc"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:176a64b24c0935869d5bbc4c96e82f89f643bcdf08ec947701b9dbb3c956b7dd"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c844fd628851c0bc309f3c801b3a3d58ce430b2ce5b359cd918a5a76d0b20cb5"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5393fb786a9e23e4799fec788e7e735de18052f83682ce2dfcabaf1c00c2c08e"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e4b09863aae0dc965c3ef36500d891a3ff495a2ea9ae9171e4519963c12ceefd"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:adfbc22e87365a6e564c804c58fc44ff7727deea782d175c33602737b7feadb6"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:147ae376f14b55f4f3c2b118b95be50a369b89b38a971e80a17c3fd623f280c9"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:eafb3e874816ebe2a92f5e155f17260034c8c341dad1df25672fb710627c6949"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6cc15d58053c76eacac5fa9152d7d84b8d67b3fde92709195cb984cfb3475ea"}, - {file = "aiohttp-3.8.4-cp310-cp310-win32.whl", hash = "sha256:59f029a5f6e2d679296db7bee982bb3d20c088e52a2977e3175faf31d6fb75d1"}, - {file = "aiohttp-3.8.4-cp310-cp310-win_amd64.whl", hash = "sha256:fe7ba4a51f33ab275515f66b0a236bcde4fb5561498fe8f898d4e549b2e4509f"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d8ef1a630519a26d6760bc695842579cb09e373c5f227a21b67dc3eb16cfea4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b3f2e06a512e94722886c0827bee9807c86a9f698fac6b3aee841fab49bbfb4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3a80464982d41b1fbfe3154e440ba4904b71c1a53e9cd584098cd41efdb188ef"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b631e26df63e52f7cce0cce6507b7a7f1bc9b0c501fcde69742130b32e8782f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f43255086fe25e36fd5ed8f2ee47477408a73ef00e804cb2b5cba4bf2ac7f5e"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4d347a172f866cd1d93126d9b239fcbe682acb39b48ee0873c73c933dd23bd0f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3fec6a4cb5551721cdd70473eb009d90935b4063acc5f40905d40ecfea23e05"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80a37fe8f7c1e6ce8f2d9c411676e4bc633a8462844e38f46156d07a7d401654"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d1e6a862b76f34395a985b3cd39a0d949ca80a70b6ebdea37d3ab39ceea6698a"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cd468460eefef601ece4428d3cf4562459157c0f6523db89365202c31b6daebb"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:618c901dd3aad4ace71dfa0f5e82e88b46ef57e3239fc7027773cb6d4ed53531"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:652b1bff4f15f6287550b4670546a2947f2a4575b6c6dff7760eafb22eacbf0b"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80575ba9377c5171407a06d0196b2310b679dc752d02a1fcaa2bc20b235dbf24"}, - {file = "aiohttp-3.8.4-cp311-cp311-win32.whl", hash = "sha256:bbcf1a76cf6f6dacf2c7f4d2ebd411438c275faa1dc0c68e46eb84eebd05dd7d"}, - {file = "aiohttp-3.8.4-cp311-cp311-win_amd64.whl", hash = "sha256:6e74dd54f7239fcffe07913ff8b964e28b712f09846e20de78676ce2a3dc0bfc"}, - {file = "aiohttp-3.8.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:880e15bb6dad90549b43f796b391cfffd7af373f4646784795e20d92606b7a51"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb96fa6b56bb536c42d6a4a87dfca570ff8e52de2d63cabebfd6fb67049c34b6"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a6cadebe132e90cefa77e45f2d2f1a4b2ce5c6b1bfc1656c1ddafcfe4ba8131"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f352b62b45dff37b55ddd7b9c0c8672c4dd2eb9c0f9c11d395075a84e2c40f75"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ab43061a0c81198d88f39aaf90dae9a7744620978f7ef3e3708339b8ed2ef01"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9cb1565a7ad52e096a6988e2ee0397f72fe056dadf75d17fa6b5aebaea05622"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:1b3ea7edd2d24538959c1c1abf97c744d879d4e541d38305f9bd7d9b10c9ec41"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:7c7837fe8037e96b6dd5cfcf47263c1620a9d332a87ec06a6ca4564e56bd0f36"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:3b90467ebc3d9fa5b0f9b6489dfb2c304a1db7b9946fa92aa76a831b9d587e99"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:cab9401de3ea52b4b4c6971db5fb5c999bd4260898af972bf23de1c6b5dd9d71"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d1f9282c5f2b5e241034a009779e7b2a1aa045f667ff521e7948ea9b56e0c5ff"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win32.whl", hash = "sha256:5e14f25765a578a0a634d5f0cd1e2c3f53964553a00347998dfdf96b8137f777"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win_amd64.whl", hash = "sha256:4c745b109057e7e5f1848c689ee4fb3a016c8d4d92da52b312f8a509f83aa05e"}, - {file = "aiohttp-3.8.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:aede4df4eeb926c8fa70de46c340a1bc2c6079e1c40ccf7b0eae1313ffd33519"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ddaae3f3d32fc2cb4c53fab020b69a05c8ab1f02e0e59665c6f7a0d3a5be54f"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4eb3b82ca349cf6fadcdc7abcc8b3a50ab74a62e9113ab7a8ebc268aad35bb9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bcb89336efa095ea21b30f9e686763f2be4478f1b0a616969551982c4ee4c3b"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c08e8ed6fa3d477e501ec9db169bfac8140e830aa372d77e4a43084d8dd91ab"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c6cd05ea06daca6ad6a4ca3ba7fe7dc5b5de063ff4daec6170ec0f9979f6c332"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7a00a9ed8d6e725b55ef98b1b35c88013245f35f68b1b12c5cd4100dddac333"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:de04b491d0e5007ee1b63a309956eaed959a49f5bb4e84b26c8f5d49de140fa9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:40653609b3bf50611356e6b6554e3a331f6879fa7116f3959b20e3528783e699"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dbf3a08a06b3f433013c143ebd72c15cac33d2914b8ea4bea7ac2c23578815d6"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:854f422ac44af92bfe172d8e73229c270dc09b96535e8a548f99c84f82dde241"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win32.whl", hash = "sha256:aeb29c84bb53a84b1a81c6c09d24cf33bb8432cc5c39979021cc0f98c1292a1a"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win_amd64.whl", hash = "sha256:db3fc6120bce9f446d13b1b834ea5b15341ca9ff3f335e4a951a6ead31105480"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fabb87dd8850ef0f7fe2b366d44b77d7e6fa2ea87861ab3844da99291e81e60f"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:91f6d540163f90bbaef9387e65f18f73ffd7c79f5225ac3d3f61df7b0d01ad15"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d265f09a75a79a788237d7f9054f929ced2e69eb0bb79de3798c468d8a90f945"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d89efa095ca7d442a6d0cbc755f9e08190ba40069b235c9886a8763b03785da"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4dac314662f4e2aa5009977b652d9b8db7121b46c38f2073bfeed9f4049732cd"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe11310ae1e4cd560035598c3f29d86cef39a83d244c7466f95c27ae04850f10"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ddb2a2026c3f6a68c3998a6c47ab6795e4127315d2e35a09997da21865757f8"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e75b89ac3bd27d2d043b234aa7b734c38ba1b0e43f07787130a0ecac1e12228a"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6e601588f2b502c93c30cd5a45bfc665faaf37bbe835b7cfd461753068232074"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a5d794d1ae64e7753e405ba58e08fcfa73e3fad93ef9b7e31112ef3c9a0efb52"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a1f4689c9a1462f3df0a1f7e797791cd6b124ddbee2b570d34e7f38ade0e2c71"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:3032dcb1c35bc330134a5b8a5d4f68c1a87252dfc6e1262c65a7e30e62298275"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8189c56eb0ddbb95bfadb8f60ea1b22fcfa659396ea36f6adcc521213cd7b44d"}, - {file = "aiohttp-3.8.4-cp38-cp38-win32.whl", hash = "sha256:33587f26dcee66efb2fff3c177547bd0449ab7edf1b73a7f5dea1e38609a0c54"}, - {file = "aiohttp-3.8.4-cp38-cp38-win_amd64.whl", hash = "sha256:e595432ac259af2d4630008bf638873d69346372d38255774c0e286951e8b79f"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5a7bdf9e57126dc345b683c3632e8ba317c31d2a41acd5800c10640387d193ed"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:22f6eab15b6db242499a16de87939a342f5a950ad0abaf1532038e2ce7d31567"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7235604476a76ef249bd64cb8274ed24ccf6995c4a8b51a237005ee7a57e8643"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea9eb976ffdd79d0e893869cfe179a8f60f152d42cb64622fca418cd9b18dc2a"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:92c0cea74a2a81c4c76b62ea1cac163ecb20fb3ba3a75c909b9fa71b4ad493cf"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:493f5bc2f8307286b7799c6d899d388bbaa7dfa6c4caf4f97ef7521b9cb13719"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a63f03189a6fa7c900226e3ef5ba4d3bd047e18f445e69adbd65af433add5a2"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10c8cefcff98fd9168cdd86c4da8b84baaa90bf2da2269c6161984e6737bf23e"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bca5f24726e2919de94f047739d0a4fc01372801a3672708260546aa2601bf57"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:03baa76b730e4e15a45f81dfe29a8d910314143414e528737f8589ec60cf7391"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:8c29c77cc57e40f84acef9bfb904373a4e89a4e8b74e71aa8075c021ec9078c2"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:03543dcf98a6619254b409be2d22b51f21ec66272be4ebda7b04e6412e4b2e14"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17b79c2963db82086229012cff93ea55196ed31f6493bb1ccd2c62f1724324e4"}, - {file = "aiohttp-3.8.4-cp39-cp39-win32.whl", hash = "sha256:34ce9f93a4a68d1272d26030655dd1b58ff727b3ed2a33d80ec433561b03d67a"}, - {file = "aiohttp-3.8.4-cp39-cp39-win_amd64.whl", hash = "sha256:41a86a69bb63bb2fc3dc9ad5ea9f10f1c9c8e282b471931be0268ddd09430b04"}, - {file = "aiohttp-3.8.4.tar.gz", hash = "sha256:bf2e1a9162c1e441bf805a1fd166e249d574ca04e03b34f97e2928769e91ab5c"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a94159871304770da4dd371f4291b20cac04e8c94f11bdea1c3478e557fbe0d8"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:13bf85afc99ce6f9ee3567b04501f18f9f8dbbb2ea11ed1a2e079670403a7c84"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ce2ac5708501afc4847221a521f7e4b245abf5178cf5ddae9d5b3856ddb2f3a"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96943e5dcc37a6529d18766597c491798b7eb7a61d48878611298afc1fca946c"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ad5c3c4590bb3cc28b4382f031f3783f25ec223557124c68754a2231d989e2b"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c413c633d0512df4dc7fd2373ec06cc6a815b7b6d6c2f208ada7e9e93a5061d"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df72ac063b97837a80d80dec8d54c241af059cc9bb42c4de68bd5b61ceb37caa"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c48c5c0271149cfe467c0ff8eb941279fd6e3f65c9a388c984e0e6cf57538e14"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:368a42363c4d70ab52c2c6420a57f190ed3dfaca6a1b19afda8165ee16416a82"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7607ec3ce4993464368505888af5beb446845a014bc676d349efec0e05085905"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0d21c684808288a98914e5aaf2a7c6a3179d4df11d249799c32d1808e79503b5"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:312fcfbacc7880a8da0ae8b6abc6cc7d752e9caa0051a53d217a650b25e9a691"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ad093e823df03bb3fd37e7dec9d4670c34f9e24aeace76808fc20a507cace825"}, + {file = "aiohttp-3.8.5-cp310-cp310-win32.whl", hash = "sha256:33279701c04351a2914e1100b62b2a7fdb9a25995c4a104259f9a5ead7ed4802"}, + {file = "aiohttp-3.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:6e4a280e4b975a2e7745573e3fc9c9ba0d1194a3738ce1cbaa80626cc9b4f4df"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ae871a964e1987a943d83d6709d20ec6103ca1eaf52f7e0d36ee1b5bebb8b9b9"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:461908b2578955045efde733719d62f2b649c404189a09a632d245b445c9c975"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72a860c215e26192379f57cae5ab12b168b75db8271f111019509a1196dfc780"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc14be025665dba6202b6a71cfcdb53210cc498e50068bc088076624471f8bb9"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8af740fc2711ad85f1a5c034a435782fbd5b5f8314c9a3ef071424a8158d7f6b"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:841cd8233cbd2111a0ef0a522ce016357c5e3aff8a8ce92bcfa14cef890d698f"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed1c46fb119f1b59304b5ec89f834f07124cd23ae5b74288e364477641060ff"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84f8ae3e09a34f35c18fa57f015cc394bd1389bce02503fb30c394d04ee6b938"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62360cb771707cb70a6fd114b9871d20d7dd2163a0feafe43fd115cfe4fe845e"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23fb25a9f0a1ca1f24c0a371523546366bb642397c94ab45ad3aedf2941cec6a"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0ba0d15164eae3d878260d4c4df859bbdc6466e9e6689c344a13334f988bb53"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5d20003b635fc6ae3f96d7260281dfaf1894fc3aa24d1888a9b2628e97c241e5"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0175d745d9e85c40dcc51c8f88c74bfbaef9e7afeeeb9d03c37977270303064c"}, + {file = "aiohttp-3.8.5-cp311-cp311-win32.whl", hash = "sha256:2e1b1e51b0774408f091d268648e3d57f7260c1682e7d3a63cb00d22d71bb945"}, + {file = "aiohttp-3.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:043d2299f6dfdc92f0ac5e995dfc56668e1587cea7f9aa9d8a78a1b6554e5755"}, + {file = "aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cae533195e8122584ec87531d6df000ad07737eaa3c81209e85c928854d2195c"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f21e83f355643c345177a5d1d8079f9f28b5133bcd154193b799d380331d5d3"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a7a75ef35f2df54ad55dbf4b73fe1da96f370e51b10c91f08b19603c64004acc"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e2e9839e14dd5308ee773c97115f1e0a1cb1d75cbeeee9f33824fa5144c7634"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44e65da1de4403d0576473e2344828ef9c4c6244d65cf4b75549bb46d40b8dd"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d847e4cde6ecc19125ccbc9bfac4a7ab37c234dd88fbb3c5c524e8e14da543"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:c7a815258e5895d8900aec4454f38dca9aed71085f227537208057853f9d13f2"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:8b929b9bd7cd7c3939f8bcfffa92fae7480bd1aa425279d51a89327d600c704d"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5db3a5b833764280ed7618393832e0853e40f3d3e9aa128ac0ba0f8278d08649"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:a0215ce6041d501f3155dc219712bc41252d0ab76474615b9700d63d4d9292af"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fd1ed388ea7fbed22c4968dd64bab0198de60750a25fe8c0c9d4bef5abe13824"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win32.whl", hash = "sha256:6e6783bcc45f397fdebc118d772103d751b54cddf5b60fbcc958382d7dd64f3e"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win_amd64.whl", hash = "sha256:b5411d82cddd212644cf9360879eb5080f0d5f7d809d03262c50dad02f01421a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:01d4c0c874aa4ddfb8098e85d10b5e875a70adc63db91f1ae65a4b04d3344cda"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5980a746d547a6ba173fd5ee85ce9077e72d118758db05d229044b469d9029a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a482e6da906d5e6e653be079b29bc173a48e381600161c9932d89dfae5942ef"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80bd372b8d0715c66c974cf57fe363621a02f359f1ec81cba97366948c7fc873"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1161b345c0a444ebcf46bf0a740ba5dcf50612fd3d0528883fdc0eff578006a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd56db019015b6acfaaf92e1ac40eb8434847d9bf88b4be4efe5bfd260aee692"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:153c2549f6c004d2754cc60603d4668899c9895b8a89397444a9c4efa282aaf4"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4a01951fabc4ce26ab791da5f3f24dca6d9a6f24121746eb19756416ff2d881b"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bfb9162dcf01f615462b995a516ba03e769de0789de1cadc0f916265c257e5d8"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:7dde0009408969a43b04c16cbbe252c4f5ef4574ac226bc8815cd7342d2028b6"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4149d34c32f9638f38f544b3977a4c24052042affa895352d3636fa8bffd030a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win32.whl", hash = "sha256:68c5a82c8779bdfc6367c967a4a1b2aa52cd3595388bf5961a62158ee8a59e22"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2cf57fb50be5f52bda004b8893e63b48530ed9f0d6c96c84620dc92fe3cd9b9d"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:eca4bf3734c541dc4f374ad6010a68ff6c6748f00451707f39857f429ca36ced"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1274477e4c71ce8cfe6c1ec2f806d57c015ebf84d83373676036e256bc55d690"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28c543e54710d6158fc6f439296c7865b29e0b616629767e685a7185fab4a6b9"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:910bec0c49637d213f5d9877105d26e0c4a4de2f8b1b29405ff37e9fc0ad52b8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5443910d662db951b2e58eb70b0fbe6b6e2ae613477129a5805d0b66c54b6cb7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e460be6978fc24e3df83193dc0cc4de46c9909ed92dd47d349a452ef49325b7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1558def481d84f03b45888473fc5a1f35747b5f334ef4e7a571bc0dfcb11f8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34dd0c107799dcbbf7d48b53be761a013c0adf5571bf50c4ecad5643fe9cfcd0"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aa1990247f02a54185dc0dff92a6904521172a22664c863a03ff64c42f9b5410"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0e584a10f204a617d71d359fe383406305a4b595b333721fa50b867b4a0a1548"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a3cf433f127efa43fee6b90ea4c6edf6c4a17109d1d037d1a52abec84d8f2e42"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:c11f5b099adafb18e65c2c997d57108b5bbeaa9eeee64a84302c0978b1ec948b"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:84de26ddf621d7ac4c975dbea4c945860e08cccde492269db4e1538a6a6f3c35"}, + {file = "aiohttp-3.8.5-cp38-cp38-win32.whl", hash = "sha256:ab88bafedc57dd0aab55fa728ea10c1911f7e4d8b43e1d838a1739f33712921c"}, + {file = "aiohttp-3.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:5798a9aad1879f626589f3df0f8b79b3608a92e9beab10e5fda02c8a2c60db2e"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a6ce61195c6a19c785df04e71a4537e29eaa2c50fe745b732aa937c0c77169f3"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:773dd01706d4db536335fcfae6ea2440a70ceb03dd3e7378f3e815b03c97ab51"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f83a552443a526ea38d064588613aca983d0ee0038801bc93c0c916428310c28"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f7372f7341fcc16f57b2caded43e81ddd18df53320b6f9f042acad41f8e049a"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea353162f249c8097ea63c2169dd1aa55de1e8fecbe63412a9bc50816e87b761"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d47ae48db0b2dcf70bc8a3bc72b3de86e2a590fc299fdbbb15af320d2659de"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d827176898a2b0b09694fbd1088c7a31836d1a505c243811c87ae53a3f6273c1"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3562b06567c06439d8b447037bb655ef69786c590b1de86c7ab81efe1c9c15d8"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4e874cbf8caf8959d2adf572a78bba17cb0e9d7e51bb83d86a3697b686a0ab4d"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6809a00deaf3810e38c628e9a33271892f815b853605a936e2e9e5129762356c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:33776e945d89b29251b33a7e7d006ce86447b2cfd66db5e5ded4e5cd0340585c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eaeed7abfb5d64c539e2db173f63631455f1196c37d9d8d873fc316470dfbacd"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e91d635961bec2d8f19dfeb41a539eb94bd073f075ca6dae6c8dc0ee89ad6f91"}, + {file = "aiohttp-3.8.5-cp39-cp39-win32.whl", hash = "sha256:00ad4b6f185ec67f3e6562e8a1d2b69660be43070bd0ef6fcec5211154c7df67"}, + {file = "aiohttp-3.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:c0a9034379a37ae42dea7ac1e048352d96286626251862e448933c0f59cbd79c"}, + {file = "aiohttp-3.8.5.tar.gz", hash = "sha256:b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"}, diff --git a/libs/libapi/poetry.lock b/libs/libapi/poetry.lock index e283ac7d..1c258452 100644 --- a/libs/libapi/poetry.lock +++ b/libs/libapi/poetry.lock @@ -5 +5 @@ name = "aiohttp" -version = "3.8.4" +version = "3.8.5" @@ -11,87 +11,87 @@ files = [ - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5ce45967538fb747370308d3145aa68a074bdecb4f3a300869590f725ced69c1"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b744c33b6f14ca26b7544e8d8aadff6b765a80ad6164fb1a430bbadd593dfb1a"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1a45865451439eb320784918617ba54b7a377e3501fb70402ab84d38c2cd891b"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86d42d7cba1cec432d47ab13b6637bee393a10f664c425ea7b305d1301ca1a3"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee3c36df21b5714d49fc4580247947aa64bcbe2939d1b77b4c8dcb8f6c9faecc"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:176a64b24c0935869d5bbc4c96e82f89f643bcdf08ec947701b9dbb3c956b7dd"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c844fd628851c0bc309f3c801b3a3d58ce430b2ce5b359cd918a5a76d0b20cb5"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5393fb786a9e23e4799fec788e7e735de18052f83682ce2dfcabaf1c00c2c08e"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e4b09863aae0dc965c3ef36500d891a3ff495a2ea9ae9171e4519963c12ceefd"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:adfbc22e87365a6e564c804c58fc44ff7727deea782d175c33602737b7feadb6"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:147ae376f14b55f4f3c2b118b95be50a369b89b38a971e80a17c3fd623f280c9"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:eafb3e874816ebe2a92f5e155f17260034c8c341dad1df25672fb710627c6949"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6cc15d58053c76eacac5fa9152d7d84b8d67b3fde92709195cb984cfb3475ea"}, - {file = "aiohttp-3.8.4-cp310-cp310-win32.whl", hash = "sha256:59f029a5f6e2d679296db7bee982bb3d20c088e52a2977e3175faf31d6fb75d1"}, - {file = "aiohttp-3.8.4-cp310-cp310-win_amd64.whl", hash = "sha256:fe7ba4a51f33ab275515f66b0a236bcde4fb5561498fe8f898d4e549b2e4509f"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d8ef1a630519a26d6760bc695842579cb09e373c5f227a21b67dc3eb16cfea4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b3f2e06a512e94722886c0827bee9807c86a9f698fac6b3aee841fab49bbfb4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3a80464982d41b1fbfe3154e440ba4904b71c1a53e9cd584098cd41efdb188ef"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b631e26df63e52f7cce0cce6507b7a7f1bc9b0c501fcde69742130b32e8782f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f43255086fe25e36fd5ed8f2ee47477408a73ef00e804cb2b5cba4bf2ac7f5e"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4d347a172f866cd1d93126d9b239fcbe682acb39b48ee0873c73c933dd23bd0f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3fec6a4cb5551721cdd70473eb009d90935b4063acc5f40905d40ecfea23e05"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80a37fe8f7c1e6ce8f2d9c411676e4bc633a8462844e38f46156d07a7d401654"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d1e6a862b76f34395a985b3cd39a0d949ca80a70b6ebdea37d3ab39ceea6698a"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cd468460eefef601ece4428d3cf4562459157c0f6523db89365202c31b6daebb"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:618c901dd3aad4ace71dfa0f5e82e88b46ef57e3239fc7027773cb6d4ed53531"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:652b1bff4f15f6287550b4670546a2947f2a4575b6c6dff7760eafb22eacbf0b"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80575ba9377c5171407a06d0196b2310b679dc752d02a1fcaa2bc20b235dbf24"}, - {file = "aiohttp-3.8.4-cp311-cp311-win32.whl", hash = "sha256:bbcf1a76cf6f6dacf2c7f4d2ebd411438c275faa1dc0c68e46eb84eebd05dd7d"}, - {file = "aiohttp-3.8.4-cp311-cp311-win_amd64.whl", hash = "sha256:6e74dd54f7239fcffe07913ff8b964e28b712f09846e20de78676ce2a3dc0bfc"}, - {file = "aiohttp-3.8.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:880e15bb6dad90549b43f796b391cfffd7af373f4646784795e20d92606b7a51"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb96fa6b56bb536c42d6a4a87dfca570ff8e52de2d63cabebfd6fb67049c34b6"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a6cadebe132e90cefa77e45f2d2f1a4b2ce5c6b1bfc1656c1ddafcfe4ba8131"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f352b62b45dff37b55ddd7b9c0c8672c4dd2eb9c0f9c11d395075a84e2c40f75"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ab43061a0c81198d88f39aaf90dae9a7744620978f7ef3e3708339b8ed2ef01"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9cb1565a7ad52e096a6988e2ee0397f72fe056dadf75d17fa6b5aebaea05622"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:1b3ea7edd2d24538959c1c1abf97c744d879d4e541d38305f9bd7d9b10c9ec41"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:7c7837fe8037e96b6dd5cfcf47263c1620a9d332a87ec06a6ca4564e56bd0f36"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:3b90467ebc3d9fa5b0f9b6489dfb2c304a1db7b9946fa92aa76a831b9d587e99"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:cab9401de3ea52b4b4c6971db5fb5c999bd4260898af972bf23de1c6b5dd9d71"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d1f9282c5f2b5e241034a009779e7b2a1aa045f667ff521e7948ea9b56e0c5ff"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win32.whl", hash = "sha256:5e14f25765a578a0a634d5f0cd1e2c3f53964553a00347998dfdf96b8137f777"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win_amd64.whl", hash = "sha256:4c745b109057e7e5f1848c689ee4fb3a016c8d4d92da52b312f8a509f83aa05e"}, - {file = "aiohttp-3.8.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:aede4df4eeb926c8fa70de46c340a1bc2c6079e1c40ccf7b0eae1313ffd33519"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ddaae3f3d32fc2cb4c53fab020b69a05c8ab1f02e0e59665c6f7a0d3a5be54f"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4eb3b82ca349cf6fadcdc7abcc8b3a50ab74a62e9113ab7a8ebc268aad35bb9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bcb89336efa095ea21b30f9e686763f2be4478f1b0a616969551982c4ee4c3b"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c08e8ed6fa3d477e501ec9db169bfac8140e830aa372d77e4a43084d8dd91ab"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c6cd05ea06daca6ad6a4ca3ba7fe7dc5b5de063ff4daec6170ec0f9979f6c332"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7a00a9ed8d6e725b55ef98b1b35c88013245f35f68b1b12c5cd4100dddac333"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:de04b491d0e5007ee1b63a309956eaed959a49f5bb4e84b26c8f5d49de140fa9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:40653609b3bf50611356e6b6554e3a331f6879fa7116f3959b20e3528783e699"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dbf3a08a06b3f433013c143ebd72c15cac33d2914b8ea4bea7ac2c23578815d6"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:854f422ac44af92bfe172d8e73229c270dc09b96535e8a548f99c84f82dde241"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win32.whl", hash = "sha256:aeb29c84bb53a84b1a81c6c09d24cf33bb8432cc5c39979021cc0f98c1292a1a"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win_amd64.whl", hash = "sha256:db3fc6120bce9f446d13b1b834ea5b15341ca9ff3f335e4a951a6ead31105480"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fabb87dd8850ef0f7fe2b366d44b77d7e6fa2ea87861ab3844da99291e81e60f"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:91f6d540163f90bbaef9387e65f18f73ffd7c79f5225ac3d3f61df7b0d01ad15"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d265f09a75a79a788237d7f9054f929ced2e69eb0bb79de3798c468d8a90f945"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d89efa095ca7d442a6d0cbc755f9e08190ba40069b235c9886a8763b03785da"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4dac314662f4e2aa5009977b652d9b8db7121b46c38f2073bfeed9f4049732cd"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe11310ae1e4cd560035598c3f29d86cef39a83d244c7466f95c27ae04850f10"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ddb2a2026c3f6a68c3998a6c47ab6795e4127315d2e35a09997da21865757f8"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e75b89ac3bd27d2d043b234aa7b734c38ba1b0e43f07787130a0ecac1e12228a"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6e601588f2b502c93c30cd5a45bfc665faaf37bbe835b7cfd461753068232074"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a5d794d1ae64e7753e405ba58e08fcfa73e3fad93ef9b7e31112ef3c9a0efb52"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a1f4689c9a1462f3df0a1f7e797791cd6b124ddbee2b570d34e7f38ade0e2c71"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:3032dcb1c35bc330134a5b8a5d4f68c1a87252dfc6e1262c65a7e30e62298275"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8189c56eb0ddbb95bfadb8f60ea1b22fcfa659396ea36f6adcc521213cd7b44d"}, - {file = "aiohttp-3.8.4-cp38-cp38-win32.whl", hash = "sha256:33587f26dcee66efb2fff3c177547bd0449ab7edf1b73a7f5dea1e38609a0c54"}, - {file = "aiohttp-3.8.4-cp38-cp38-win_amd64.whl", hash = "sha256:e595432ac259af2d4630008bf638873d69346372d38255774c0e286951e8b79f"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5a7bdf9e57126dc345b683c3632e8ba317c31d2a41acd5800c10640387d193ed"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:22f6eab15b6db242499a16de87939a342f5a950ad0abaf1532038e2ce7d31567"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7235604476a76ef249bd64cb8274ed24ccf6995c4a8b51a237005ee7a57e8643"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea9eb976ffdd79d0e893869cfe179a8f60f152d42cb64622fca418cd9b18dc2a"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:92c0cea74a2a81c4c76b62ea1cac163ecb20fb3ba3a75c909b9fa71b4ad493cf"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:493f5bc2f8307286b7799c6d899d388bbaa7dfa6c4caf4f97ef7521b9cb13719"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a63f03189a6fa7c900226e3ef5ba4d3bd047e18f445e69adbd65af433add5a2"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10c8cefcff98fd9168cdd86c4da8b84baaa90bf2da2269c6161984e6737bf23e"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bca5f24726e2919de94f047739d0a4fc01372801a3672708260546aa2601bf57"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:03baa76b730e4e15a45f81dfe29a8d910314143414e528737f8589ec60cf7391"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:8c29c77cc57e40f84acef9bfb904373a4e89a4e8b74e71aa8075c021ec9078c2"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:03543dcf98a6619254b409be2d22b51f21ec66272be4ebda7b04e6412e4b2e14"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17b79c2963db82086229012cff93ea55196ed31f6493bb1ccd2c62f1724324e4"}, - {file = "aiohttp-3.8.4-cp39-cp39-win32.whl", hash = "sha256:34ce9f93a4a68d1272d26030655dd1b58ff727b3ed2a33d80ec433561b03d67a"}, - {file = "aiohttp-3.8.4-cp39-cp39-win_amd64.whl", hash = "sha256:41a86a69bb63bb2fc3dc9ad5ea9f10f1c9c8e282b471931be0268ddd09430b04"}, - {file = "aiohttp-3.8.4.tar.gz", hash = "sha256:bf2e1a9162c1e441bf805a1fd166e249d574ca04e03b34f97e2928769e91ab5c"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a94159871304770da4dd371f4291b20cac04e8c94f11bdea1c3478e557fbe0d8"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:13bf85afc99ce6f9ee3567b04501f18f9f8dbbb2ea11ed1a2e079670403a7c84"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ce2ac5708501afc4847221a521f7e4b245abf5178cf5ddae9d5b3856ddb2f3a"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96943e5dcc37a6529d18766597c491798b7eb7a61d48878611298afc1fca946c"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ad5c3c4590bb3cc28b4382f031f3783f25ec223557124c68754a2231d989e2b"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c413c633d0512df4dc7fd2373ec06cc6a815b7b6d6c2f208ada7e9e93a5061d"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df72ac063b97837a80d80dec8d54c241af059cc9bb42c4de68bd5b61ceb37caa"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c48c5c0271149cfe467c0ff8eb941279fd6e3f65c9a388c984e0e6cf57538e14"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:368a42363c4d70ab52c2c6420a57f190ed3dfaca6a1b19afda8165ee16416a82"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7607ec3ce4993464368505888af5beb446845a014bc676d349efec0e05085905"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0d21c684808288a98914e5aaf2a7c6a3179d4df11d249799c32d1808e79503b5"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:312fcfbacc7880a8da0ae8b6abc6cc7d752e9caa0051a53d217a650b25e9a691"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ad093e823df03bb3fd37e7dec9d4670c34f9e24aeace76808fc20a507cace825"}, + {file = "aiohttp-3.8.5-cp310-cp310-win32.whl", hash = "sha256:33279701c04351a2914e1100b62b2a7fdb9a25995c4a104259f9a5ead7ed4802"}, + {file = "aiohttp-3.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:6e4a280e4b975a2e7745573e3fc9c9ba0d1194a3738ce1cbaa80626cc9b4f4df"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ae871a964e1987a943d83d6709d20ec6103ca1eaf52f7e0d36ee1b5bebb8b9b9"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:461908b2578955045efde733719d62f2b649c404189a09a632d245b445c9c975"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72a860c215e26192379f57cae5ab12b168b75db8271f111019509a1196dfc780"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc14be025665dba6202b6a71cfcdb53210cc498e50068bc088076624471f8bb9"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8af740fc2711ad85f1a5c034a435782fbd5b5f8314c9a3ef071424a8158d7f6b"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:841cd8233cbd2111a0ef0a522ce016357c5e3aff8a8ce92bcfa14cef890d698f"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed1c46fb119f1b59304b5ec89f834f07124cd23ae5b74288e364477641060ff"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84f8ae3e09a34f35c18fa57f015cc394bd1389bce02503fb30c394d04ee6b938"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62360cb771707cb70a6fd114b9871d20d7dd2163a0feafe43fd115cfe4fe845e"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23fb25a9f0a1ca1f24c0a371523546366bb642397c94ab45ad3aedf2941cec6a"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0ba0d15164eae3d878260d4c4df859bbdc6466e9e6689c344a13334f988bb53"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5d20003b635fc6ae3f96d7260281dfaf1894fc3aa24d1888a9b2628e97c241e5"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0175d745d9e85c40dcc51c8f88c74bfbaef9e7afeeeb9d03c37977270303064c"}, + {file = "aiohttp-3.8.5-cp311-cp311-win32.whl", hash = "sha256:2e1b1e51b0774408f091d268648e3d57f7260c1682e7d3a63cb00d22d71bb945"}, + {file = "aiohttp-3.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:043d2299f6dfdc92f0ac5e995dfc56668e1587cea7f9aa9d8a78a1b6554e5755"}, + {file = "aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cae533195e8122584ec87531d6df000ad07737eaa3c81209e85c928854d2195c"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f21e83f355643c345177a5d1d8079f9f28b5133bcd154193b799d380331d5d3"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a7a75ef35f2df54ad55dbf4b73fe1da96f370e51b10c91f08b19603c64004acc"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e2e9839e14dd5308ee773c97115f1e0a1cb1d75cbeeee9f33824fa5144c7634"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44e65da1de4403d0576473e2344828ef9c4c6244d65cf4b75549bb46d40b8dd"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d847e4cde6ecc19125ccbc9bfac4a7ab37c234dd88fbb3c5c524e8e14da543"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:c7a815258e5895d8900aec4454f38dca9aed71085f227537208057853f9d13f2"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:8b929b9bd7cd7c3939f8bcfffa92fae7480bd1aa425279d51a89327d600c704d"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5db3a5b833764280ed7618393832e0853e40f3d3e9aa128ac0ba0f8278d08649"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:a0215ce6041d501f3155dc219712bc41252d0ab76474615b9700d63d4d9292af"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fd1ed388ea7fbed22c4968dd64bab0198de60750a25fe8c0c9d4bef5abe13824"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win32.whl", hash = "sha256:6e6783bcc45f397fdebc118d772103d751b54cddf5b60fbcc958382d7dd64f3e"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win_amd64.whl", hash = "sha256:b5411d82cddd212644cf9360879eb5080f0d5f7d809d03262c50dad02f01421a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:01d4c0c874aa4ddfb8098e85d10b5e875a70adc63db91f1ae65a4b04d3344cda"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5980a746d547a6ba173fd5ee85ce9077e72d118758db05d229044b469d9029a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a482e6da906d5e6e653be079b29bc173a48e381600161c9932d89dfae5942ef"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80bd372b8d0715c66c974cf57fe363621a02f359f1ec81cba97366948c7fc873"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1161b345c0a444ebcf46bf0a740ba5dcf50612fd3d0528883fdc0eff578006a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd56db019015b6acfaaf92e1ac40eb8434847d9bf88b4be4efe5bfd260aee692"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:153c2549f6c004d2754cc60603d4668899c9895b8a89397444a9c4efa282aaf4"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4a01951fabc4ce26ab791da5f3f24dca6d9a6f24121746eb19756416ff2d881b"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bfb9162dcf01f615462b995a516ba03e769de0789de1cadc0f916265c257e5d8"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:7dde0009408969a43b04c16cbbe252c4f5ef4574ac226bc8815cd7342d2028b6"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4149d34c32f9638f38f544b3977a4c24052042affa895352d3636fa8bffd030a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win32.whl", hash = "sha256:68c5a82c8779bdfc6367c967a4a1b2aa52cd3595388bf5961a62158ee8a59e22"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2cf57fb50be5f52bda004b8893e63b48530ed9f0d6c96c84620dc92fe3cd9b9d"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:eca4bf3734c541dc4f374ad6010a68ff6c6748f00451707f39857f429ca36ced"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1274477e4c71ce8cfe6c1ec2f806d57c015ebf84d83373676036e256bc55d690"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28c543e54710d6158fc6f439296c7865b29e0b616629767e685a7185fab4a6b9"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:910bec0c49637d213f5d9877105d26e0c4a4de2f8b1b29405ff37e9fc0ad52b8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5443910d662db951b2e58eb70b0fbe6b6e2ae613477129a5805d0b66c54b6cb7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e460be6978fc24e3df83193dc0cc4de46c9909ed92dd47d349a452ef49325b7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1558def481d84f03b45888473fc5a1f35747b5f334ef4e7a571bc0dfcb11f8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34dd0c107799dcbbf7d48b53be761a013c0adf5571bf50c4ecad5643fe9cfcd0"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aa1990247f02a54185dc0dff92a6904521172a22664c863a03ff64c42f9b5410"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0e584a10f204a617d71d359fe383406305a4b595b333721fa50b867b4a0a1548"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a3cf433f127efa43fee6b90ea4c6edf6c4a17109d1d037d1a52abec84d8f2e42"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:c11f5b099adafb18e65c2c997d57108b5bbeaa9eeee64a84302c0978b1ec948b"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:84de26ddf621d7ac4c975dbea4c945860e08cccde492269db4e1538a6a6f3c35"}, + {file = "aiohttp-3.8.5-cp38-cp38-win32.whl", hash = "sha256:ab88bafedc57dd0aab55fa728ea10c1911f7e4d8b43e1d838a1739f33712921c"}, + {file = "aiohttp-3.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:5798a9aad1879f626589f3df0f8b79b3608a92e9beab10e5fda02c8a2c60db2e"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a6ce61195c6a19c785df04e71a4537e29eaa2c50fe745b732aa937c0c77169f3"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:773dd01706d4db536335fcfae6ea2440a70ceb03dd3e7378f3e815b03c97ab51"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f83a552443a526ea38d064588613aca983d0ee0038801bc93c0c916428310c28"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f7372f7341fcc16f57b2caded43e81ddd18df53320b6f9f042acad41f8e049a"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea353162f249c8097ea63c2169dd1aa55de1e8fecbe63412a9bc50816e87b761"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d47ae48db0b2dcf70bc8a3bc72b3de86e2a590fc299fdbbb15af320d2659de"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d827176898a2b0b09694fbd1088c7a31836d1a505c243811c87ae53a3f6273c1"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3562b06567c06439d8b447037bb655ef69786c590b1de86c7ab81efe1c9c15d8"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4e874cbf8caf8959d2adf572a78bba17cb0e9d7e51bb83d86a3697b686a0ab4d"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6809a00deaf3810e38c628e9a33271892f815b853605a936e2e9e5129762356c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:33776e945d89b29251b33a7e7d006ce86447b2cfd66db5e5ded4e5cd0340585c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eaeed7abfb5d64c539e2db173f63631455f1196c37d9d8d873fc316470dfbacd"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e91d635961bec2d8f19dfeb41a539eb94bd073f075ca6dae6c8dc0ee89ad6f91"}, + {file = "aiohttp-3.8.5-cp39-cp39-win32.whl", hash = "sha256:00ad4b6f185ec67f3e6562e8a1d2b69660be43070bd0ef6fcec5211154c7df67"}, + {file = "aiohttp-3.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:c0a9034379a37ae42dea7ac1e048352d96286626251862e448933c0f59cbd79c"}, + {file = "aiohttp-3.8.5.tar.gz", hash = "sha256:b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"},
47e93d398d839846fa5cb3429b8cd3f43c69b198
Andrea Francis Soria Jimenez
2023-07-20T17:03:39
Update aiohttp (#1537)
diff --git a/jobs/cache_maintenance/poetry.lock b/jobs/cache_maintenance/poetry.lock index 53723665..01d55f22 100644 --- a/jobs/cache_maintenance/poetry.lock +++ b/jobs/cache_maintenance/poetry.lock @@ -5 +5 @@ name = "aiohttp" -version = "3.8.4" +version = "3.8.5" @@ -11,87 +11,87 @@ files = [ - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5ce45967538fb747370308d3145aa68a074bdecb4f3a300869590f725ced69c1"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b744c33b6f14ca26b7544e8d8aadff6b765a80ad6164fb1a430bbadd593dfb1a"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1a45865451439eb320784918617ba54b7a377e3501fb70402ab84d38c2cd891b"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86d42d7cba1cec432d47ab13b6637bee393a10f664c425ea7b305d1301ca1a3"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee3c36df21b5714d49fc4580247947aa64bcbe2939d1b77b4c8dcb8f6c9faecc"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:176a64b24c0935869d5bbc4c96e82f89f643bcdf08ec947701b9dbb3c956b7dd"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c844fd628851c0bc309f3c801b3a3d58ce430b2ce5b359cd918a5a76d0b20cb5"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5393fb786a9e23e4799fec788e7e735de18052f83682ce2dfcabaf1c00c2c08e"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e4b09863aae0dc965c3ef36500d891a3ff495a2ea9ae9171e4519963c12ceefd"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:adfbc22e87365a6e564c804c58fc44ff7727deea782d175c33602737b7feadb6"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:147ae376f14b55f4f3c2b118b95be50a369b89b38a971e80a17c3fd623f280c9"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:eafb3e874816ebe2a92f5e155f17260034c8c341dad1df25672fb710627c6949"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6cc15d58053c76eacac5fa9152d7d84b8d67b3fde92709195cb984cfb3475ea"}, - {file = "aiohttp-3.8.4-cp310-cp310-win32.whl", hash = "sha256:59f029a5f6e2d679296db7bee982bb3d20c088e52a2977e3175faf31d6fb75d1"}, - {file = "aiohttp-3.8.4-cp310-cp310-win_amd64.whl", hash = "sha256:fe7ba4a51f33ab275515f66b0a236bcde4fb5561498fe8f898d4e549b2e4509f"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d8ef1a630519a26d6760bc695842579cb09e373c5f227a21b67dc3eb16cfea4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b3f2e06a512e94722886c0827bee9807c86a9f698fac6b3aee841fab49bbfb4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3a80464982d41b1fbfe3154e440ba4904b71c1a53e9cd584098cd41efdb188ef"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b631e26df63e52f7cce0cce6507b7a7f1bc9b0c501fcde69742130b32e8782f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f43255086fe25e36fd5ed8f2ee47477408a73ef00e804cb2b5cba4bf2ac7f5e"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4d347a172f866cd1d93126d9b239fcbe682acb39b48ee0873c73c933dd23bd0f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3fec6a4cb5551721cdd70473eb009d90935b4063acc5f40905d40ecfea23e05"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80a37fe8f7c1e6ce8f2d9c411676e4bc633a8462844e38f46156d07a7d401654"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d1e6a862b76f34395a985b3cd39a0d949ca80a70b6ebdea37d3ab39ceea6698a"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cd468460eefef601ece4428d3cf4562459157c0f6523db89365202c31b6daebb"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:618c901dd3aad4ace71dfa0f5e82e88b46ef57e3239fc7027773cb6d4ed53531"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:652b1bff4f15f6287550b4670546a2947f2a4575b6c6dff7760eafb22eacbf0b"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80575ba9377c5171407a06d0196b2310b679dc752d02a1fcaa2bc20b235dbf24"}, - {file = "aiohttp-3.8.4-cp311-cp311-win32.whl", hash = "sha256:bbcf1a76cf6f6dacf2c7f4d2ebd411438c275faa1dc0c68e46eb84eebd05dd7d"}, - {file = "aiohttp-3.8.4-cp311-cp311-win_amd64.whl", hash = "sha256:6e74dd54f7239fcffe07913ff8b964e28b712f09846e20de78676ce2a3dc0bfc"}, - {file = "aiohttp-3.8.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:880e15bb6dad90549b43f796b391cfffd7af373f4646784795e20d92606b7a51"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb96fa6b56bb536c42d6a4a87dfca570ff8e52de2d63cabebfd6fb67049c34b6"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a6cadebe132e90cefa77e45f2d2f1a4b2ce5c6b1bfc1656c1ddafcfe4ba8131"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f352b62b45dff37b55ddd7b9c0c8672c4dd2eb9c0f9c11d395075a84e2c40f75"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ab43061a0c81198d88f39aaf90dae9a7744620978f7ef3e3708339b8ed2ef01"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9cb1565a7ad52e096a6988e2ee0397f72fe056dadf75d17fa6b5aebaea05622"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:1b3ea7edd2d24538959c1c1abf97c744d879d4e541d38305f9bd7d9b10c9ec41"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:7c7837fe8037e96b6dd5cfcf47263c1620a9d332a87ec06a6ca4564e56bd0f36"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:3b90467ebc3d9fa5b0f9b6489dfb2c304a1db7b9946fa92aa76a831b9d587e99"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:cab9401de3ea52b4b4c6971db5fb5c999bd4260898af972bf23de1c6b5dd9d71"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d1f9282c5f2b5e241034a009779e7b2a1aa045f667ff521e7948ea9b56e0c5ff"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win32.whl", hash = "sha256:5e14f25765a578a0a634d5f0cd1e2c3f53964553a00347998dfdf96b8137f777"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win_amd64.whl", hash = "sha256:4c745b109057e7e5f1848c689ee4fb3a016c8d4d92da52b312f8a509f83aa05e"}, - {file = "aiohttp-3.8.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:aede4df4eeb926c8fa70de46c340a1bc2c6079e1c40ccf7b0eae1313ffd33519"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ddaae3f3d32fc2cb4c53fab020b69a05c8ab1f02e0e59665c6f7a0d3a5be54f"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4eb3b82ca349cf6fadcdc7abcc8b3a50ab74a62e9113ab7a8ebc268aad35bb9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bcb89336efa095ea21b30f9e686763f2be4478f1b0a616969551982c4ee4c3b"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c08e8ed6fa3d477e501ec9db169bfac8140e830aa372d77e4a43084d8dd91ab"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c6cd05ea06daca6ad6a4ca3ba7fe7dc5b5de063ff4daec6170ec0f9979f6c332"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7a00a9ed8d6e725b55ef98b1b35c88013245f35f68b1b12c5cd4100dddac333"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:de04b491d0e5007ee1b63a309956eaed959a49f5bb4e84b26c8f5d49de140fa9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:40653609b3bf50611356e6b6554e3a331f6879fa7116f3959b20e3528783e699"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dbf3a08a06b3f433013c143ebd72c15cac33d2914b8ea4bea7ac2c23578815d6"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:854f422ac44af92bfe172d8e73229c270dc09b96535e8a548f99c84f82dde241"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win32.whl", hash = "sha256:aeb29c84bb53a84b1a81c6c09d24cf33bb8432cc5c39979021cc0f98c1292a1a"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win_amd64.whl", hash = "sha256:db3fc6120bce9f446d13b1b834ea5b15341ca9ff3f335e4a951a6ead31105480"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fabb87dd8850ef0f7fe2b366d44b77d7e6fa2ea87861ab3844da99291e81e60f"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:91f6d540163f90bbaef9387e65f18f73ffd7c79f5225ac3d3f61df7b0d01ad15"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d265f09a75a79a788237d7f9054f929ced2e69eb0bb79de3798c468d8a90f945"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d89efa095ca7d442a6d0cbc755f9e08190ba40069b235c9886a8763b03785da"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4dac314662f4e2aa5009977b652d9b8db7121b46c38f2073bfeed9f4049732cd"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe11310ae1e4cd560035598c3f29d86cef39a83d244c7466f95c27ae04850f10"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ddb2a2026c3f6a68c3998a6c47ab6795e4127315d2e35a09997da21865757f8"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e75b89ac3bd27d2d043b234aa7b734c38ba1b0e43f07787130a0ecac1e12228a"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6e601588f2b502c93c30cd5a45bfc665faaf37bbe835b7cfd461753068232074"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a5d794d1ae64e7753e405ba58e08fcfa73e3fad93ef9b7e31112ef3c9a0efb52"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a1f4689c9a1462f3df0a1f7e797791cd6b124ddbee2b570d34e7f38ade0e2c71"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:3032dcb1c35bc330134a5b8a5d4f68c1a87252dfc6e1262c65a7e30e62298275"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8189c56eb0ddbb95bfadb8f60ea1b22fcfa659396ea36f6adcc521213cd7b44d"}, - {file = "aiohttp-3.8.4-cp38-cp38-win32.whl", hash = "sha256:33587f26dcee66efb2fff3c177547bd0449ab7edf1b73a7f5dea1e38609a0c54"}, - {file = "aiohttp-3.8.4-cp38-cp38-win_amd64.whl", hash = "sha256:e595432ac259af2d4630008bf638873d69346372d38255774c0e286951e8b79f"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5a7bdf9e57126dc345b683c3632e8ba317c31d2a41acd5800c10640387d193ed"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:22f6eab15b6db242499a16de87939a342f5a950ad0abaf1532038e2ce7d31567"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7235604476a76ef249bd64cb8274ed24ccf6995c4a8b51a237005ee7a57e8643"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea9eb976ffdd79d0e893869cfe179a8f60f152d42cb64622fca418cd9b18dc2a"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:92c0cea74a2a81c4c76b62ea1cac163ecb20fb3ba3a75c909b9fa71b4ad493cf"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:493f5bc2f8307286b7799c6d899d388bbaa7dfa6c4caf4f97ef7521b9cb13719"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a63f03189a6fa7c900226e3ef5ba4d3bd047e18f445e69adbd65af433add5a2"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10c8cefcff98fd9168cdd86c4da8b84baaa90bf2da2269c6161984e6737bf23e"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bca5f24726e2919de94f047739d0a4fc01372801a3672708260546aa2601bf57"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:03baa76b730e4e15a45f81dfe29a8d910314143414e528737f8589ec60cf7391"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:8c29c77cc57e40f84acef9bfb904373a4e89a4e8b74e71aa8075c021ec9078c2"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:03543dcf98a6619254b409be2d22b51f21ec66272be4ebda7b04e6412e4b2e14"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17b79c2963db82086229012cff93ea55196ed31f6493bb1ccd2c62f1724324e4"}, - {file = "aiohttp-3.8.4-cp39-cp39-win32.whl", hash = "sha256:34ce9f93a4a68d1272d26030655dd1b58ff727b3ed2a33d80ec433561b03d67a"}, - {file = "aiohttp-3.8.4-cp39-cp39-win_amd64.whl", hash = "sha256:41a86a69bb63bb2fc3dc9ad5ea9f10f1c9c8e282b471931be0268ddd09430b04"}, - {file = "aiohttp-3.8.4.tar.gz", hash = "sha256:bf2e1a9162c1e441bf805a1fd166e249d574ca04e03b34f97e2928769e91ab5c"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a94159871304770da4dd371f4291b20cac04e8c94f11bdea1c3478e557fbe0d8"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:13bf85afc99ce6f9ee3567b04501f18f9f8dbbb2ea11ed1a2e079670403a7c84"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ce2ac5708501afc4847221a521f7e4b245abf5178cf5ddae9d5b3856ddb2f3a"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96943e5dcc37a6529d18766597c491798b7eb7a61d48878611298afc1fca946c"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ad5c3c4590bb3cc28b4382f031f3783f25ec223557124c68754a2231d989e2b"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c413c633d0512df4dc7fd2373ec06cc6a815b7b6d6c2f208ada7e9e93a5061d"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df72ac063b97837a80d80dec8d54c241af059cc9bb42c4de68bd5b61ceb37caa"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c48c5c0271149cfe467c0ff8eb941279fd6e3f65c9a388c984e0e6cf57538e14"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:368a42363c4d70ab52c2c6420a57f190ed3dfaca6a1b19afda8165ee16416a82"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7607ec3ce4993464368505888af5beb446845a014bc676d349efec0e05085905"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0d21c684808288a98914e5aaf2a7c6a3179d4df11d249799c32d1808e79503b5"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:312fcfbacc7880a8da0ae8b6abc6cc7d752e9caa0051a53d217a650b25e9a691"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ad093e823df03bb3fd37e7dec9d4670c34f9e24aeace76808fc20a507cace825"}, + {file = "aiohttp-3.8.5-cp310-cp310-win32.whl", hash = "sha256:33279701c04351a2914e1100b62b2a7fdb9a25995c4a104259f9a5ead7ed4802"}, + {file = "aiohttp-3.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:6e4a280e4b975a2e7745573e3fc9c9ba0d1194a3738ce1cbaa80626cc9b4f4df"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ae871a964e1987a943d83d6709d20ec6103ca1eaf52f7e0d36ee1b5bebb8b9b9"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:461908b2578955045efde733719d62f2b649c404189a09a632d245b445c9c975"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72a860c215e26192379f57cae5ab12b168b75db8271f111019509a1196dfc780"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc14be025665dba6202b6a71cfcdb53210cc498e50068bc088076624471f8bb9"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8af740fc2711ad85f1a5c034a435782fbd5b5f8314c9a3ef071424a8158d7f6b"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:841cd8233cbd2111a0ef0a522ce016357c5e3aff8a8ce92bcfa14cef890d698f"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed1c46fb119f1b59304b5ec89f834f07124cd23ae5b74288e364477641060ff"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84f8ae3e09a34f35c18fa57f015cc394bd1389bce02503fb30c394d04ee6b938"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62360cb771707cb70a6fd114b9871d20d7dd2163a0feafe43fd115cfe4fe845e"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23fb25a9f0a1ca1f24c0a371523546366bb642397c94ab45ad3aedf2941cec6a"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0ba0d15164eae3d878260d4c4df859bbdc6466e9e6689c344a13334f988bb53"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5d20003b635fc6ae3f96d7260281dfaf1894fc3aa24d1888a9b2628e97c241e5"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0175d745d9e85c40dcc51c8f88c74bfbaef9e7afeeeb9d03c37977270303064c"}, + {file = "aiohttp-3.8.5-cp311-cp311-win32.whl", hash = "sha256:2e1b1e51b0774408f091d268648e3d57f7260c1682e7d3a63cb00d22d71bb945"}, + {file = "aiohttp-3.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:043d2299f6dfdc92f0ac5e995dfc56668e1587cea7f9aa9d8a78a1b6554e5755"}, + {file = "aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cae533195e8122584ec87531d6df000ad07737eaa3c81209e85c928854d2195c"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f21e83f355643c345177a5d1d8079f9f28b5133bcd154193b799d380331d5d3"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a7a75ef35f2df54ad55dbf4b73fe1da96f370e51b10c91f08b19603c64004acc"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e2e9839e14dd5308ee773c97115f1e0a1cb1d75cbeeee9f33824fa5144c7634"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44e65da1de4403d0576473e2344828ef9c4c6244d65cf4b75549bb46d40b8dd"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d847e4cde6ecc19125ccbc9bfac4a7ab37c234dd88fbb3c5c524e8e14da543"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:c7a815258e5895d8900aec4454f38dca9aed71085f227537208057853f9d13f2"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:8b929b9bd7cd7c3939f8bcfffa92fae7480bd1aa425279d51a89327d600c704d"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5db3a5b833764280ed7618393832e0853e40f3d3e9aa128ac0ba0f8278d08649"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:a0215ce6041d501f3155dc219712bc41252d0ab76474615b9700d63d4d9292af"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fd1ed388ea7fbed22c4968dd64bab0198de60750a25fe8c0c9d4bef5abe13824"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win32.whl", hash = "sha256:6e6783bcc45f397fdebc118d772103d751b54cddf5b60fbcc958382d7dd64f3e"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win_amd64.whl", hash = "sha256:b5411d82cddd212644cf9360879eb5080f0d5f7d809d03262c50dad02f01421a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:01d4c0c874aa4ddfb8098e85d10b5e875a70adc63db91f1ae65a4b04d3344cda"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5980a746d547a6ba173fd5ee85ce9077e72d118758db05d229044b469d9029a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a482e6da906d5e6e653be079b29bc173a48e381600161c9932d89dfae5942ef"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80bd372b8d0715c66c974cf57fe363621a02f359f1ec81cba97366948c7fc873"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1161b345c0a444ebcf46bf0a740ba5dcf50612fd3d0528883fdc0eff578006a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd56db019015b6acfaaf92e1ac40eb8434847d9bf88b4be4efe5bfd260aee692"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:153c2549f6c004d2754cc60603d4668899c9895b8a89397444a9c4efa282aaf4"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4a01951fabc4ce26ab791da5f3f24dca6d9a6f24121746eb19756416ff2d881b"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bfb9162dcf01f615462b995a516ba03e769de0789de1cadc0f916265c257e5d8"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:7dde0009408969a43b04c16cbbe252c4f5ef4574ac226bc8815cd7342d2028b6"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4149d34c32f9638f38f544b3977a4c24052042affa895352d3636fa8bffd030a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win32.whl", hash = "sha256:68c5a82c8779bdfc6367c967a4a1b2aa52cd3595388bf5961a62158ee8a59e22"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2cf57fb50be5f52bda004b8893e63b48530ed9f0d6c96c84620dc92fe3cd9b9d"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:eca4bf3734c541dc4f374ad6010a68ff6c6748f00451707f39857f429ca36ced"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1274477e4c71ce8cfe6c1ec2f806d57c015ebf84d83373676036e256bc55d690"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28c543e54710d6158fc6f439296c7865b29e0b616629767e685a7185fab4a6b9"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:910bec0c49637d213f5d9877105d26e0c4a4de2f8b1b29405ff37e9fc0ad52b8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5443910d662db951b2e58eb70b0fbe6b6e2ae613477129a5805d0b66c54b6cb7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e460be6978fc24e3df83193dc0cc4de46c9909ed92dd47d349a452ef49325b7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1558def481d84f03b45888473fc5a1f35747b5f334ef4e7a571bc0dfcb11f8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34dd0c107799dcbbf7d48b53be761a013c0adf5571bf50c4ecad5643fe9cfcd0"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aa1990247f02a54185dc0dff92a6904521172a22664c863a03ff64c42f9b5410"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0e584a10f204a617d71d359fe383406305a4b595b333721fa50b867b4a0a1548"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a3cf433f127efa43fee6b90ea4c6edf6c4a17109d1d037d1a52abec84d8f2e42"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:c11f5b099adafb18e65c2c997d57108b5bbeaa9eeee64a84302c0978b1ec948b"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:84de26ddf621d7ac4c975dbea4c945860e08cccde492269db4e1538a6a6f3c35"}, + {file = "aiohttp-3.8.5-cp38-cp38-win32.whl", hash = "sha256:ab88bafedc57dd0aab55fa728ea10c1911f7e4d8b43e1d838a1739f33712921c"}, + {file = "aiohttp-3.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:5798a9aad1879f626589f3df0f8b79b3608a92e9beab10e5fda02c8a2c60db2e"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a6ce61195c6a19c785df04e71a4537e29eaa2c50fe745b732aa937c0c77169f3"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:773dd01706d4db536335fcfae6ea2440a70ceb03dd3e7378f3e815b03c97ab51"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f83a552443a526ea38d064588613aca983d0ee0038801bc93c0c916428310c28"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f7372f7341fcc16f57b2caded43e81ddd18df53320b6f9f042acad41f8e049a"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea353162f249c8097ea63c2169dd1aa55de1e8fecbe63412a9bc50816e87b761"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d47ae48db0b2dcf70bc8a3bc72b3de86e2a590fc299fdbbb15af320d2659de"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d827176898a2b0b09694fbd1088c7a31836d1a505c243811c87ae53a3f6273c1"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3562b06567c06439d8b447037bb655ef69786c590b1de86c7ab81efe1c9c15d8"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4e874cbf8caf8959d2adf572a78bba17cb0e9d7e51bb83d86a3697b686a0ab4d"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6809a00deaf3810e38c628e9a33271892f815b853605a936e2e9e5129762356c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:33776e945d89b29251b33a7e7d006ce86447b2cfd66db5e5ded4e5cd0340585c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eaeed7abfb5d64c539e2db173f63631455f1196c37d9d8d873fc316470dfbacd"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e91d635961bec2d8f19dfeb41a539eb94bd073f075ca6dae6c8dc0ee89ad6f91"}, + {file = "aiohttp-3.8.5-cp39-cp39-win32.whl", hash = "sha256:00ad4b6f185ec67f3e6562e8a1d2b69660be43070bd0ef6fcec5211154c7df67"}, + {file = "aiohttp-3.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:c0a9034379a37ae42dea7ac1e048352d96286626251862e448933c0f59cbd79c"}, + {file = "aiohttp-3.8.5.tar.gz", hash = "sha256:b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"}, diff --git a/jobs/mongodb_migration/poetry.lock b/jobs/mongodb_migration/poetry.lock index 53723665..01d55f22 100644 --- a/jobs/mongodb_migration/poetry.lock +++ b/jobs/mongodb_migration/poetry.lock @@ -5 +5 @@ name = "aiohttp" -version = "3.8.4" +version = "3.8.5" @@ -11,87 +11,87 @@ files = [ - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5ce45967538fb747370308d3145aa68a074bdecb4f3a300869590f725ced69c1"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b744c33b6f14ca26b7544e8d8aadff6b765a80ad6164fb1a430bbadd593dfb1a"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1a45865451439eb320784918617ba54b7a377e3501fb70402ab84d38c2cd891b"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86d42d7cba1cec432d47ab13b6637bee393a10f664c425ea7b305d1301ca1a3"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee3c36df21b5714d49fc4580247947aa64bcbe2939d1b77b4c8dcb8f6c9faecc"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:176a64b24c0935869d5bbc4c96e82f89f643bcdf08ec947701b9dbb3c956b7dd"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c844fd628851c0bc309f3c801b3a3d58ce430b2ce5b359cd918a5a76d0b20cb5"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5393fb786a9e23e4799fec788e7e735de18052f83682ce2dfcabaf1c00c2c08e"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e4b09863aae0dc965c3ef36500d891a3ff495a2ea9ae9171e4519963c12ceefd"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:adfbc22e87365a6e564c804c58fc44ff7727deea782d175c33602737b7feadb6"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:147ae376f14b55f4f3c2b118b95be50a369b89b38a971e80a17c3fd623f280c9"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:eafb3e874816ebe2a92f5e155f17260034c8c341dad1df25672fb710627c6949"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6cc15d58053c76eacac5fa9152d7d84b8d67b3fde92709195cb984cfb3475ea"}, - {file = "aiohttp-3.8.4-cp310-cp310-win32.whl", hash = "sha256:59f029a5f6e2d679296db7bee982bb3d20c088e52a2977e3175faf31d6fb75d1"}, - {file = "aiohttp-3.8.4-cp310-cp310-win_amd64.whl", hash = "sha256:fe7ba4a51f33ab275515f66b0a236bcde4fb5561498fe8f898d4e549b2e4509f"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d8ef1a630519a26d6760bc695842579cb09e373c5f227a21b67dc3eb16cfea4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b3f2e06a512e94722886c0827bee9807c86a9f698fac6b3aee841fab49bbfb4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3a80464982d41b1fbfe3154e440ba4904b71c1a53e9cd584098cd41efdb188ef"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b631e26df63e52f7cce0cce6507b7a7f1bc9b0c501fcde69742130b32e8782f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f43255086fe25e36fd5ed8f2ee47477408a73ef00e804cb2b5cba4bf2ac7f5e"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4d347a172f866cd1d93126d9b239fcbe682acb39b48ee0873c73c933dd23bd0f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3fec6a4cb5551721cdd70473eb009d90935b4063acc5f40905d40ecfea23e05"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80a37fe8f7c1e6ce8f2d9c411676e4bc633a8462844e38f46156d07a7d401654"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d1e6a862b76f34395a985b3cd39a0d949ca80a70b6ebdea37d3ab39ceea6698a"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cd468460eefef601ece4428d3cf4562459157c0f6523db89365202c31b6daebb"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:618c901dd3aad4ace71dfa0f5e82e88b46ef57e3239fc7027773cb6d4ed53531"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:652b1bff4f15f6287550b4670546a2947f2a4575b6c6dff7760eafb22eacbf0b"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80575ba9377c5171407a06d0196b2310b679dc752d02a1fcaa2bc20b235dbf24"}, - {file = "aiohttp-3.8.4-cp311-cp311-win32.whl", hash = "sha256:bbcf1a76cf6f6dacf2c7f4d2ebd411438c275faa1dc0c68e46eb84eebd05dd7d"}, - {file = "aiohttp-3.8.4-cp311-cp311-win_amd64.whl", hash = "sha256:6e74dd54f7239fcffe07913ff8b964e28b712f09846e20de78676ce2a3dc0bfc"}, - {file = "aiohttp-3.8.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:880e15bb6dad90549b43f796b391cfffd7af373f4646784795e20d92606b7a51"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb96fa6b56bb536c42d6a4a87dfca570ff8e52de2d63cabebfd6fb67049c34b6"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a6cadebe132e90cefa77e45f2d2f1a4b2ce5c6b1bfc1656c1ddafcfe4ba8131"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f352b62b45dff37b55ddd7b9c0c8672c4dd2eb9c0f9c11d395075a84e2c40f75"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ab43061a0c81198d88f39aaf90dae9a7744620978f7ef3e3708339b8ed2ef01"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9cb1565a7ad52e096a6988e2ee0397f72fe056dadf75d17fa6b5aebaea05622"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:1b3ea7edd2d24538959c1c1abf97c744d879d4e541d38305f9bd7d9b10c9ec41"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:7c7837fe8037e96b6dd5cfcf47263c1620a9d332a87ec06a6ca4564e56bd0f36"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:3b90467ebc3d9fa5b0f9b6489dfb2c304a1db7b9946fa92aa76a831b9d587e99"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:cab9401de3ea52b4b4c6971db5fb5c999bd4260898af972bf23de1c6b5dd9d71"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d1f9282c5f2b5e241034a009779e7b2a1aa045f667ff521e7948ea9b56e0c5ff"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win32.whl", hash = "sha256:5e14f25765a578a0a634d5f0cd1e2c3f53964553a00347998dfdf96b8137f777"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win_amd64.whl", hash = "sha256:4c745b109057e7e5f1848c689ee4fb3a016c8d4d92da52b312f8a509f83aa05e"}, - {file = "aiohttp-3.8.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:aede4df4eeb926c8fa70de46c340a1bc2c6079e1c40ccf7b0eae1313ffd33519"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ddaae3f3d32fc2cb4c53fab020b69a05c8ab1f02e0e59665c6f7a0d3a5be54f"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4eb3b82ca349cf6fadcdc7abcc8b3a50ab74a62e9113ab7a8ebc268aad35bb9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bcb89336efa095ea21b30f9e686763f2be4478f1b0a616969551982c4ee4c3b"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c08e8ed6fa3d477e501ec9db169bfac8140e830aa372d77e4a43084d8dd91ab"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c6cd05ea06daca6ad6a4ca3ba7fe7dc5b5de063ff4daec6170ec0f9979f6c332"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7a00a9ed8d6e725b55ef98b1b35c88013245f35f68b1b12c5cd4100dddac333"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:de04b491d0e5007ee1b63a309956eaed959a49f5bb4e84b26c8f5d49de140fa9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:40653609b3bf50611356e6b6554e3a331f6879fa7116f3959b20e3528783e699"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dbf3a08a06b3f433013c143ebd72c15cac33d2914b8ea4bea7ac2c23578815d6"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:854f422ac44af92bfe172d8e73229c270dc09b96535e8a548f99c84f82dde241"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win32.whl", hash = "sha256:aeb29c84bb53a84b1a81c6c09d24cf33bb8432cc5c39979021cc0f98c1292a1a"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win_amd64.whl", hash = "sha256:db3fc6120bce9f446d13b1b834ea5b15341ca9ff3f335e4a951a6ead31105480"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fabb87dd8850ef0f7fe2b366d44b77d7e6fa2ea87861ab3844da99291e81e60f"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:91f6d540163f90bbaef9387e65f18f73ffd7c79f5225ac3d3f61df7b0d01ad15"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d265f09a75a79a788237d7f9054f929ced2e69eb0bb79de3798c468d8a90f945"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d89efa095ca7d442a6d0cbc755f9e08190ba40069b235c9886a8763b03785da"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4dac314662f4e2aa5009977b652d9b8db7121b46c38f2073bfeed9f4049732cd"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe11310ae1e4cd560035598c3f29d86cef39a83d244c7466f95c27ae04850f10"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ddb2a2026c3f6a68c3998a6c47ab6795e4127315d2e35a09997da21865757f8"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e75b89ac3bd27d2d043b234aa7b734c38ba1b0e43f07787130a0ecac1e12228a"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6e601588f2b502c93c30cd5a45bfc665faaf37bbe835b7cfd461753068232074"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a5d794d1ae64e7753e405ba58e08fcfa73e3fad93ef9b7e31112ef3c9a0efb52"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a1f4689c9a1462f3df0a1f7e797791cd6b124ddbee2b570d34e7f38ade0e2c71"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:3032dcb1c35bc330134a5b8a5d4f68c1a87252dfc6e1262c65a7e30e62298275"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8189c56eb0ddbb95bfadb8f60ea1b22fcfa659396ea36f6adcc521213cd7b44d"}, - {file = "aiohttp-3.8.4-cp38-cp38-win32.whl", hash = "sha256:33587f26dcee66efb2fff3c177547bd0449ab7edf1b73a7f5dea1e38609a0c54"}, - {file = "aiohttp-3.8.4-cp38-cp38-win_amd64.whl", hash = "sha256:e595432ac259af2d4630008bf638873d69346372d38255774c0e286951e8b79f"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5a7bdf9e57126dc345b683c3632e8ba317c31d2a41acd5800c10640387d193ed"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:22f6eab15b6db242499a16de87939a342f5a950ad0abaf1532038e2ce7d31567"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7235604476a76ef249bd64cb8274ed24ccf6995c4a8b51a237005ee7a57e8643"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea9eb976ffdd79d0e893869cfe179a8f60f152d42cb64622fca418cd9b18dc2a"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:92c0cea74a2a81c4c76b62ea1cac163ecb20fb3ba3a75c909b9fa71b4ad493cf"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:493f5bc2f8307286b7799c6d899d388bbaa7dfa6c4caf4f97ef7521b9cb13719"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a63f03189a6fa7c900226e3ef5ba4d3bd047e18f445e69adbd65af433add5a2"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10c8cefcff98fd9168cdd86c4da8b84baaa90bf2da2269c6161984e6737bf23e"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bca5f24726e2919de94f047739d0a4fc01372801a3672708260546aa2601bf57"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:03baa76b730e4e15a45f81dfe29a8d910314143414e528737f8589ec60cf7391"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:8c29c77cc57e40f84acef9bfb904373a4e89a4e8b74e71aa8075c021ec9078c2"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:03543dcf98a6619254b409be2d22b51f21ec66272be4ebda7b04e6412e4b2e14"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17b79c2963db82086229012cff93ea55196ed31f6493bb1ccd2c62f1724324e4"}, - {file = "aiohttp-3.8.4-cp39-cp39-win32.whl", hash = "sha256:34ce9f93a4a68d1272d26030655dd1b58ff727b3ed2a33d80ec433561b03d67a"}, - {file = "aiohttp-3.8.4-cp39-cp39-win_amd64.whl", hash = "sha256:41a86a69bb63bb2fc3dc9ad5ea9f10f1c9c8e282b471931be0268ddd09430b04"}, - {file = "aiohttp-3.8.4.tar.gz", hash = "sha256:bf2e1a9162c1e441bf805a1fd166e249d574ca04e03b34f97e2928769e91ab5c"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a94159871304770da4dd371f4291b20cac04e8c94f11bdea1c3478e557fbe0d8"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:13bf85afc99ce6f9ee3567b04501f18f9f8dbbb2ea11ed1a2e079670403a7c84"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ce2ac5708501afc4847221a521f7e4b245abf5178cf5ddae9d5b3856ddb2f3a"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96943e5dcc37a6529d18766597c491798b7eb7a61d48878611298afc1fca946c"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ad5c3c4590bb3cc28b4382f031f3783f25ec223557124c68754a2231d989e2b"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c413c633d0512df4dc7fd2373ec06cc6a815b7b6d6c2f208ada7e9e93a5061d"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df72ac063b97837a80d80dec8d54c241af059cc9bb42c4de68bd5b61ceb37caa"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c48c5c0271149cfe467c0ff8eb941279fd6e3f65c9a388c984e0e6cf57538e14"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:368a42363c4d70ab52c2c6420a57f190ed3dfaca6a1b19afda8165ee16416a82"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7607ec3ce4993464368505888af5beb446845a014bc676d349efec0e05085905"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0d21c684808288a98914e5aaf2a7c6a3179d4df11d249799c32d1808e79503b5"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:312fcfbacc7880a8da0ae8b6abc6cc7d752e9caa0051a53d217a650b25e9a691"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ad093e823df03bb3fd37e7dec9d4670c34f9e24aeace76808fc20a507cace825"}, + {file = "aiohttp-3.8.5-cp310-cp310-win32.whl", hash = "sha256:33279701c04351a2914e1100b62b2a7fdb9a25995c4a104259f9a5ead7ed4802"}, + {file = "aiohttp-3.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:6e4a280e4b975a2e7745573e3fc9c9ba0d1194a3738ce1cbaa80626cc9b4f4df"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ae871a964e1987a943d83d6709d20ec6103ca1eaf52f7e0d36ee1b5bebb8b9b9"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:461908b2578955045efde733719d62f2b649c404189a09a632d245b445c9c975"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72a860c215e26192379f57cae5ab12b168b75db8271f111019509a1196dfc780"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc14be025665dba6202b6a71cfcdb53210cc498e50068bc088076624471f8bb9"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8af740fc2711ad85f1a5c034a435782fbd5b5f8314c9a3ef071424a8158d7f6b"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:841cd8233cbd2111a0ef0a522ce016357c5e3aff8a8ce92bcfa14cef890d698f"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed1c46fb119f1b59304b5ec89f834f07124cd23ae5b74288e364477641060ff"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84f8ae3e09a34f35c18fa57f015cc394bd1389bce02503fb30c394d04ee6b938"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62360cb771707cb70a6fd114b9871d20d7dd2163a0feafe43fd115cfe4fe845e"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23fb25a9f0a1ca1f24c0a371523546366bb642397c94ab45ad3aedf2941cec6a"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0ba0d15164eae3d878260d4c4df859bbdc6466e9e6689c344a13334f988bb53"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5d20003b635fc6ae3f96d7260281dfaf1894fc3aa24d1888a9b2628e97c241e5"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0175d745d9e85c40dcc51c8f88c74bfbaef9e7afeeeb9d03c37977270303064c"}, + {file = "aiohttp-3.8.5-cp311-cp311-win32.whl", hash = "sha256:2e1b1e51b0774408f091d268648e3d57f7260c1682e7d3a63cb00d22d71bb945"}, + {file = "aiohttp-3.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:043d2299f6dfdc92f0ac5e995dfc56668e1587cea7f9aa9d8a78a1b6554e5755"}, + {file = "aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cae533195e8122584ec87531d6df000ad07737eaa3c81209e85c928854d2195c"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f21e83f355643c345177a5d1d8079f9f28b5133bcd154193b799d380331d5d3"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a7a75ef35f2df54ad55dbf4b73fe1da96f370e51b10c91f08b19603c64004acc"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e2e9839e14dd5308ee773c97115f1e0a1cb1d75cbeeee9f33824fa5144c7634"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44e65da1de4403d0576473e2344828ef9c4c6244d65cf4b75549bb46d40b8dd"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d847e4cde6ecc19125ccbc9bfac4a7ab37c234dd88fbb3c5c524e8e14da543"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:c7a815258e5895d8900aec4454f38dca9aed71085f227537208057853f9d13f2"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:8b929b9bd7cd7c3939f8bcfffa92fae7480bd1aa425279d51a89327d600c704d"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5db3a5b833764280ed7618393832e0853e40f3d3e9aa128ac0ba0f8278d08649"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:a0215ce6041d501f3155dc219712bc41252d0ab76474615b9700d63d4d9292af"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fd1ed388ea7fbed22c4968dd64bab0198de60750a25fe8c0c9d4bef5abe13824"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win32.whl", hash = "sha256:6e6783bcc45f397fdebc118d772103d751b54cddf5b60fbcc958382d7dd64f3e"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win_amd64.whl", hash = "sha256:b5411d82cddd212644cf9360879eb5080f0d5f7d809d03262c50dad02f01421a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:01d4c0c874aa4ddfb8098e85d10b5e875a70adc63db91f1ae65a4b04d3344cda"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5980a746d547a6ba173fd5ee85ce9077e72d118758db05d229044b469d9029a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a482e6da906d5e6e653be079b29bc173a48e381600161c9932d89dfae5942ef"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80bd372b8d0715c66c974cf57fe363621a02f359f1ec81cba97366948c7fc873"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1161b345c0a444ebcf46bf0a740ba5dcf50612fd3d0528883fdc0eff578006a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd56db019015b6acfaaf92e1ac40eb8434847d9bf88b4be4efe5bfd260aee692"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:153c2549f6c004d2754cc60603d4668899c9895b8a89397444a9c4efa282aaf4"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4a01951fabc4ce26ab791da5f3f24dca6d9a6f24121746eb19756416ff2d881b"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bfb9162dcf01f615462b995a516ba03e769de0789de1cadc0f916265c257e5d8"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:7dde0009408969a43b04c16cbbe252c4f5ef4574ac226bc8815cd7342d2028b6"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4149d34c32f9638f38f544b3977a4c24052042affa895352d3636fa8bffd030a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win32.whl", hash = "sha256:68c5a82c8779bdfc6367c967a4a1b2aa52cd3595388bf5961a62158ee8a59e22"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2cf57fb50be5f52bda004b8893e63b48530ed9f0d6c96c84620dc92fe3cd9b9d"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:eca4bf3734c541dc4f374ad6010a68ff6c6748f00451707f39857f429ca36ced"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1274477e4c71ce8cfe6c1ec2f806d57c015ebf84d83373676036e256bc55d690"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28c543e54710d6158fc6f439296c7865b29e0b616629767e685a7185fab4a6b9"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:910bec0c49637d213f5d9877105d26e0c4a4de2f8b1b29405ff37e9fc0ad52b8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5443910d662db951b2e58eb70b0fbe6b6e2ae613477129a5805d0b66c54b6cb7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e460be6978fc24e3df83193dc0cc4de46c9909ed92dd47d349a452ef49325b7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1558def481d84f03b45888473fc5a1f35747b5f334ef4e7a571bc0dfcb11f8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34dd0c107799dcbbf7d48b53be761a013c0adf5571bf50c4ecad5643fe9cfcd0"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aa1990247f02a54185dc0dff92a6904521172a22664c863a03ff64c42f9b5410"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0e584a10f204a617d71d359fe383406305a4b595b333721fa50b867b4a0a1548"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a3cf433f127efa43fee6b90ea4c6edf6c4a17109d1d037d1a52abec84d8f2e42"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:c11f5b099adafb18e65c2c997d57108b5bbeaa9eeee64a84302c0978b1ec948b"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:84de26ddf621d7ac4c975dbea4c945860e08cccde492269db4e1538a6a6f3c35"}, + {file = "aiohttp-3.8.5-cp38-cp38-win32.whl", hash = "sha256:ab88bafedc57dd0aab55fa728ea10c1911f7e4d8b43e1d838a1739f33712921c"}, + {file = "aiohttp-3.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:5798a9aad1879f626589f3df0f8b79b3608a92e9beab10e5fda02c8a2c60db2e"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a6ce61195c6a19c785df04e71a4537e29eaa2c50fe745b732aa937c0c77169f3"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:773dd01706d4db536335fcfae6ea2440a70ceb03dd3e7378f3e815b03c97ab51"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f83a552443a526ea38d064588613aca983d0ee0038801bc93c0c916428310c28"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f7372f7341fcc16f57b2caded43e81ddd18df53320b6f9f042acad41f8e049a"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea353162f249c8097ea63c2169dd1aa55de1e8fecbe63412a9bc50816e87b761"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d47ae48db0b2dcf70bc8a3bc72b3de86e2a590fc299fdbbb15af320d2659de"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d827176898a2b0b09694fbd1088c7a31836d1a505c243811c87ae53a3f6273c1"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3562b06567c06439d8b447037bb655ef69786c590b1de86c7ab81efe1c9c15d8"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4e874cbf8caf8959d2adf572a78bba17cb0e9d7e51bb83d86a3697b686a0ab4d"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6809a00deaf3810e38c628e9a33271892f815b853605a936e2e9e5129762356c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:33776e945d89b29251b33a7e7d006ce86447b2cfd66db5e5ded4e5cd0340585c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eaeed7abfb5d64c539e2db173f63631455f1196c37d9d8d873fc316470dfbacd"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e91d635961bec2d8f19dfeb41a539eb94bd073f075ca6dae6c8dc0ee89ad6f91"}, + {file = "aiohttp-3.8.5-cp39-cp39-win32.whl", hash = "sha256:00ad4b6f185ec67f3e6562e8a1d2b69660be43070bd0ef6fcec5211154c7df67"}, + {file = "aiohttp-3.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:c0a9034379a37ae42dea7ac1e048352d96286626251862e448933c0f59cbd79c"}, + {file = "aiohttp-3.8.5.tar.gz", hash = "sha256:b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"}, diff --git a/libs/libcommon/poetry.lock b/libs/libcommon/poetry.lock index 53d04013..a4cf1131 100644 --- a/libs/libcommon/poetry.lock +++ b/libs/libcommon/poetry.lock @@ -5 +5 @@ name = "aiohttp" -version = "3.8.4" +version = "3.8.5" @@ -11,87 +11,87 @@ files = [ - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5ce45967538fb747370308d3145aa68a074bdecb4f3a300869590f725ced69c1"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b744c33b6f14ca26b7544e8d8aadff6b765a80ad6164fb1a430bbadd593dfb1a"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1a45865451439eb320784918617ba54b7a377e3501fb70402ab84d38c2cd891b"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86d42d7cba1cec432d47ab13b6637bee393a10f664c425ea7b305d1301ca1a3"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee3c36df21b5714d49fc4580247947aa64bcbe2939d1b77b4c8dcb8f6c9faecc"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:176a64b24c0935869d5bbc4c96e82f89f643bcdf08ec947701b9dbb3c956b7dd"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c844fd628851c0bc309f3c801b3a3d58ce430b2ce5b359cd918a5a76d0b20cb5"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5393fb786a9e23e4799fec788e7e735de18052f83682ce2dfcabaf1c00c2c08e"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e4b09863aae0dc965c3ef36500d891a3ff495a2ea9ae9171e4519963c12ceefd"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:adfbc22e87365a6e564c804c58fc44ff7727deea782d175c33602737b7feadb6"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:147ae376f14b55f4f3c2b118b95be50a369b89b38a971e80a17c3fd623f280c9"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:eafb3e874816ebe2a92f5e155f17260034c8c341dad1df25672fb710627c6949"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6cc15d58053c76eacac5fa9152d7d84b8d67b3fde92709195cb984cfb3475ea"}, - {file = "aiohttp-3.8.4-cp310-cp310-win32.whl", hash = "sha256:59f029a5f6e2d679296db7bee982bb3d20c088e52a2977e3175faf31d6fb75d1"}, - {file = "aiohttp-3.8.4-cp310-cp310-win_amd64.whl", hash = "sha256:fe7ba4a51f33ab275515f66b0a236bcde4fb5561498fe8f898d4e549b2e4509f"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d8ef1a630519a26d6760bc695842579cb09e373c5f227a21b67dc3eb16cfea4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b3f2e06a512e94722886c0827bee9807c86a9f698fac6b3aee841fab49bbfb4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3a80464982d41b1fbfe3154e440ba4904b71c1a53e9cd584098cd41efdb188ef"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b631e26df63e52f7cce0cce6507b7a7f1bc9b0c501fcde69742130b32e8782f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f43255086fe25e36fd5ed8f2ee47477408a73ef00e804cb2b5cba4bf2ac7f5e"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4d347a172f866cd1d93126d9b239fcbe682acb39b48ee0873c73c933dd23bd0f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3fec6a4cb5551721cdd70473eb009d90935b4063acc5f40905d40ecfea23e05"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80a37fe8f7c1e6ce8f2d9c411676e4bc633a8462844e38f46156d07a7d401654"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d1e6a862b76f34395a985b3cd39a0d949ca80a70b6ebdea37d3ab39ceea6698a"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cd468460eefef601ece4428d3cf4562459157c0f6523db89365202c31b6daebb"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:618c901dd3aad4ace71dfa0f5e82e88b46ef57e3239fc7027773cb6d4ed53531"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:652b1bff4f15f6287550b4670546a2947f2a4575b6c6dff7760eafb22eacbf0b"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80575ba9377c5171407a06d0196b2310b679dc752d02a1fcaa2bc20b235dbf24"}, - {file = "aiohttp-3.8.4-cp311-cp311-win32.whl", hash = "sha256:bbcf1a76cf6f6dacf2c7f4d2ebd411438c275faa1dc0c68e46eb84eebd05dd7d"}, - {file = "aiohttp-3.8.4-cp311-cp311-win_amd64.whl", hash = "sha256:6e74dd54f7239fcffe07913ff8b964e28b712f09846e20de78676ce2a3dc0bfc"}, - {file = "aiohttp-3.8.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:880e15bb6dad90549b43f796b391cfffd7af373f4646784795e20d92606b7a51"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb96fa6b56bb536c42d6a4a87dfca570ff8e52de2d63cabebfd6fb67049c34b6"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a6cadebe132e90cefa77e45f2d2f1a4b2ce5c6b1bfc1656c1ddafcfe4ba8131"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f352b62b45dff37b55ddd7b9c0c8672c4dd2eb9c0f9c11d395075a84e2c40f75"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ab43061a0c81198d88f39aaf90dae9a7744620978f7ef3e3708339b8ed2ef01"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9cb1565a7ad52e096a6988e2ee0397f72fe056dadf75d17fa6b5aebaea05622"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:1b3ea7edd2d24538959c1c1abf97c744d879d4e541d38305f9bd7d9b10c9ec41"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:7c7837fe8037e96b6dd5cfcf47263c1620a9d332a87ec06a6ca4564e56bd0f36"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:3b90467ebc3d9fa5b0f9b6489dfb2c304a1db7b9946fa92aa76a831b9d587e99"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:cab9401de3ea52b4b4c6971db5fb5c999bd4260898af972bf23de1c6b5dd9d71"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d1f9282c5f2b5e241034a009779e7b2a1aa045f667ff521e7948ea9b56e0c5ff"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win32.whl", hash = "sha256:5e14f25765a578a0a634d5f0cd1e2c3f53964553a00347998dfdf96b8137f777"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win_amd64.whl", hash = "sha256:4c745b109057e7e5f1848c689ee4fb3a016c8d4d92da52b312f8a509f83aa05e"}, - {file = "aiohttp-3.8.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:aede4df4eeb926c8fa70de46c340a1bc2c6079e1c40ccf7b0eae1313ffd33519"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ddaae3f3d32fc2cb4c53fab020b69a05c8ab1f02e0e59665c6f7a0d3a5be54f"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4eb3b82ca349cf6fadcdc7abcc8b3a50ab74a62e9113ab7a8ebc268aad35bb9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bcb89336efa095ea21b30f9e686763f2be4478f1b0a616969551982c4ee4c3b"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c08e8ed6fa3d477e501ec9db169bfac8140e830aa372d77e4a43084d8dd91ab"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c6cd05ea06daca6ad6a4ca3ba7fe7dc5b5de063ff4daec6170ec0f9979f6c332"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7a00a9ed8d6e725b55ef98b1b35c88013245f35f68b1b12c5cd4100dddac333"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:de04b491d0e5007ee1b63a309956eaed959a49f5bb4e84b26c8f5d49de140fa9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:40653609b3bf50611356e6b6554e3a331f6879fa7116f3959b20e3528783e699"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dbf3a08a06b3f433013c143ebd72c15cac33d2914b8ea4bea7ac2c23578815d6"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:854f422ac44af92bfe172d8e73229c270dc09b96535e8a548f99c84f82dde241"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win32.whl", hash = "sha256:aeb29c84bb53a84b1a81c6c09d24cf33bb8432cc5c39979021cc0f98c1292a1a"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win_amd64.whl", hash = "sha256:db3fc6120bce9f446d13b1b834ea5b15341ca9ff3f335e4a951a6ead31105480"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fabb87dd8850ef0f7fe2b366d44b77d7e6fa2ea87861ab3844da99291e81e60f"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:91f6d540163f90bbaef9387e65f18f73ffd7c79f5225ac3d3f61df7b0d01ad15"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d265f09a75a79a788237d7f9054f929ced2e69eb0bb79de3798c468d8a90f945"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d89efa095ca7d442a6d0cbc755f9e08190ba40069b235c9886a8763b03785da"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4dac314662f4e2aa5009977b652d9b8db7121b46c38f2073bfeed9f4049732cd"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe11310ae1e4cd560035598c3f29d86cef39a83d244c7466f95c27ae04850f10"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ddb2a2026c3f6a68c3998a6c47ab6795e4127315d2e35a09997da21865757f8"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e75b89ac3bd27d2d043b234aa7b734c38ba1b0e43f07787130a0ecac1e12228a"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6e601588f2b502c93c30cd5a45bfc665faaf37bbe835b7cfd461753068232074"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a5d794d1ae64e7753e405ba58e08fcfa73e3fad93ef9b7e31112ef3c9a0efb52"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a1f4689c9a1462f3df0a1f7e797791cd6b124ddbee2b570d34e7f38ade0e2c71"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:3032dcb1c35bc330134a5b8a5d4f68c1a87252dfc6e1262c65a7e30e62298275"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8189c56eb0ddbb95bfadb8f60ea1b22fcfa659396ea36f6adcc521213cd7b44d"}, - {file = "aiohttp-3.8.4-cp38-cp38-win32.whl", hash = "sha256:33587f26dcee66efb2fff3c177547bd0449ab7edf1b73a7f5dea1e38609a0c54"}, - {file = "aiohttp-3.8.4-cp38-cp38-win_amd64.whl", hash = "sha256:e595432ac259af2d4630008bf638873d69346372d38255774c0e286951e8b79f"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5a7bdf9e57126dc345b683c3632e8ba317c31d2a41acd5800c10640387d193ed"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:22f6eab15b6db242499a16de87939a342f5a950ad0abaf1532038e2ce7d31567"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7235604476a76ef249bd64cb8274ed24ccf6995c4a8b51a237005ee7a57e8643"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea9eb976ffdd79d0e893869cfe179a8f60f152d42cb64622fca418cd9b18dc2a"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:92c0cea74a2a81c4c76b62ea1cac163ecb20fb3ba3a75c909b9fa71b4ad493cf"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:493f5bc2f8307286b7799c6d899d388bbaa7dfa6c4caf4f97ef7521b9cb13719"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a63f03189a6fa7c900226e3ef5ba4d3bd047e18f445e69adbd65af433add5a2"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10c8cefcff98fd9168cdd86c4da8b84baaa90bf2da2269c6161984e6737bf23e"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bca5f24726e2919de94f047739d0a4fc01372801a3672708260546aa2601bf57"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:03baa76b730e4e15a45f81dfe29a8d910314143414e528737f8589ec60cf7391"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:8c29c77cc57e40f84acef9bfb904373a4e89a4e8b74e71aa8075c021ec9078c2"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:03543dcf98a6619254b409be2d22b51f21ec66272be4ebda7b04e6412e4b2e14"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17b79c2963db82086229012cff93ea55196ed31f6493bb1ccd2c62f1724324e4"}, - {file = "aiohttp-3.8.4-cp39-cp39-win32.whl", hash = "sha256:34ce9f93a4a68d1272d26030655dd1b58ff727b3ed2a33d80ec433561b03d67a"}, - {file = "aiohttp-3.8.4-cp39-cp39-win_amd64.whl", hash = "sha256:41a86a69bb63bb2fc3dc9ad5ea9f10f1c9c8e282b471931be0268ddd09430b04"}, - {file = "aiohttp-3.8.4.tar.gz", hash = "sha256:bf2e1a9162c1e441bf805a1fd166e249d574ca04e03b34f97e2928769e91ab5c"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a94159871304770da4dd371f4291b20cac04e8c94f11bdea1c3478e557fbe0d8"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:13bf85afc99ce6f9ee3567b04501f18f9f8dbbb2ea11ed1a2e079670403a7c84"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ce2ac5708501afc4847221a521f7e4b245abf5178cf5ddae9d5b3856ddb2f3a"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96943e5dcc37a6529d18766597c491798b7eb7a61d48878611298afc1fca946c"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ad5c3c4590bb3cc28b4382f031f3783f25ec223557124c68754a2231d989e2b"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c413c633d0512df4dc7fd2373ec06cc6a815b7b6d6c2f208ada7e9e93a5061d"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df72ac063b97837a80d80dec8d54c241af059cc9bb42c4de68bd5b61ceb37caa"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c48c5c0271149cfe467c0ff8eb941279fd6e3f65c9a388c984e0e6cf57538e14"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:368a42363c4d70ab52c2c6420a57f190ed3dfaca6a1b19afda8165ee16416a82"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7607ec3ce4993464368505888af5beb446845a014bc676d349efec0e05085905"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0d21c684808288a98914e5aaf2a7c6a3179d4df11d249799c32d1808e79503b5"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:312fcfbacc7880a8da0ae8b6abc6cc7d752e9caa0051a53d217a650b25e9a691"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ad093e823df03bb3fd37e7dec9d4670c34f9e24aeace76808fc20a507cace825"}, + {file = "aiohttp-3.8.5-cp310-cp310-win32.whl", hash = "sha256:33279701c04351a2914e1100b62b2a7fdb9a25995c4a104259f9a5ead7ed4802"}, + {file = "aiohttp-3.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:6e4a280e4b975a2e7745573e3fc9c9ba0d1194a3738ce1cbaa80626cc9b4f4df"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ae871a964e1987a943d83d6709d20ec6103ca1eaf52f7e0d36ee1b5bebb8b9b9"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:461908b2578955045efde733719d62f2b649c404189a09a632d245b445c9c975"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72a860c215e26192379f57cae5ab12b168b75db8271f111019509a1196dfc780"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc14be025665dba6202b6a71cfcdb53210cc498e50068bc088076624471f8bb9"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8af740fc2711ad85f1a5c034a435782fbd5b5f8314c9a3ef071424a8158d7f6b"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:841cd8233cbd2111a0ef0a522ce016357c5e3aff8a8ce92bcfa14cef890d698f"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed1c46fb119f1b59304b5ec89f834f07124cd23ae5b74288e364477641060ff"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84f8ae3e09a34f35c18fa57f015cc394bd1389bce02503fb30c394d04ee6b938"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62360cb771707cb70a6fd114b9871d20d7dd2163a0feafe43fd115cfe4fe845e"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23fb25a9f0a1ca1f24c0a371523546366bb642397c94ab45ad3aedf2941cec6a"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0ba0d15164eae3d878260d4c4df859bbdc6466e9e6689c344a13334f988bb53"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5d20003b635fc6ae3f96d7260281dfaf1894fc3aa24d1888a9b2628e97c241e5"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0175d745d9e85c40dcc51c8f88c74bfbaef9e7afeeeb9d03c37977270303064c"}, + {file = "aiohttp-3.8.5-cp311-cp311-win32.whl", hash = "sha256:2e1b1e51b0774408f091d268648e3d57f7260c1682e7d3a63cb00d22d71bb945"}, + {file = "aiohttp-3.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:043d2299f6dfdc92f0ac5e995dfc56668e1587cea7f9aa9d8a78a1b6554e5755"}, + {file = "aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cae533195e8122584ec87531d6df000ad07737eaa3c81209e85c928854d2195c"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f21e83f355643c345177a5d1d8079f9f28b5133bcd154193b799d380331d5d3"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a7a75ef35f2df54ad55dbf4b73fe1da96f370e51b10c91f08b19603c64004acc"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e2e9839e14dd5308ee773c97115f1e0a1cb1d75cbeeee9f33824fa5144c7634"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44e65da1de4403d0576473e2344828ef9c4c6244d65cf4b75549bb46d40b8dd"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d847e4cde6ecc19125ccbc9bfac4a7ab37c234dd88fbb3c5c524e8e14da543"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:c7a815258e5895d8900aec4454f38dca9aed71085f227537208057853f9d13f2"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:8b929b9bd7cd7c3939f8bcfffa92fae7480bd1aa425279d51a89327d600c704d"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5db3a5b833764280ed7618393832e0853e40f3d3e9aa128ac0ba0f8278d08649"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:a0215ce6041d501f3155dc219712bc41252d0ab76474615b9700d63d4d9292af"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fd1ed388ea7fbed22c4968dd64bab0198de60750a25fe8c0c9d4bef5abe13824"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win32.whl", hash = "sha256:6e6783bcc45f397fdebc118d772103d751b54cddf5b60fbcc958382d7dd64f3e"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win_amd64.whl", hash = "sha256:b5411d82cddd212644cf9360879eb5080f0d5f7d809d03262c50dad02f01421a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:01d4c0c874aa4ddfb8098e85d10b5e875a70adc63db91f1ae65a4b04d3344cda"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5980a746d547a6ba173fd5ee85ce9077e72d118758db05d229044b469d9029a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a482e6da906d5e6e653be079b29bc173a48e381600161c9932d89dfae5942ef"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80bd372b8d0715c66c974cf57fe363621a02f359f1ec81cba97366948c7fc873"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1161b345c0a444ebcf46bf0a740ba5dcf50612fd3d0528883fdc0eff578006a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd56db019015b6acfaaf92e1ac40eb8434847d9bf88b4be4efe5bfd260aee692"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:153c2549f6c004d2754cc60603d4668899c9895b8a89397444a9c4efa282aaf4"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4a01951fabc4ce26ab791da5f3f24dca6d9a6f24121746eb19756416ff2d881b"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bfb9162dcf01f615462b995a516ba03e769de0789de1cadc0f916265c257e5d8"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:7dde0009408969a43b04c16cbbe252c4f5ef4574ac226bc8815cd7342d2028b6"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4149d34c32f9638f38f544b3977a4c24052042affa895352d3636fa8bffd030a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win32.whl", hash = "sha256:68c5a82c8779bdfc6367c967a4a1b2aa52cd3595388bf5961a62158ee8a59e22"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2cf57fb50be5f52bda004b8893e63b48530ed9f0d6c96c84620dc92fe3cd9b9d"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:eca4bf3734c541dc4f374ad6010a68ff6c6748f00451707f39857f429ca36ced"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1274477e4c71ce8cfe6c1ec2f806d57c015ebf84d83373676036e256bc55d690"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28c543e54710d6158fc6f439296c7865b29e0b616629767e685a7185fab4a6b9"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:910bec0c49637d213f5d9877105d26e0c4a4de2f8b1b29405ff37e9fc0ad52b8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5443910d662db951b2e58eb70b0fbe6b6e2ae613477129a5805d0b66c54b6cb7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e460be6978fc24e3df83193dc0cc4de46c9909ed92dd47d349a452ef49325b7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1558def481d84f03b45888473fc5a1f35747b5f334ef4e7a571bc0dfcb11f8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34dd0c107799dcbbf7d48b53be761a013c0adf5571bf50c4ecad5643fe9cfcd0"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aa1990247f02a54185dc0dff92a6904521172a22664c863a03ff64c42f9b5410"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0e584a10f204a617d71d359fe383406305a4b595b333721fa50b867b4a0a1548"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a3cf433f127efa43fee6b90ea4c6edf6c4a17109d1d037d1a52abec84d8f2e42"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:c11f5b099adafb18e65c2c997d57108b5bbeaa9eeee64a84302c0978b1ec948b"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:84de26ddf621d7ac4c975dbea4c945860e08cccde492269db4e1538a6a6f3c35"}, + {file = "aiohttp-3.8.5-cp38-cp38-win32.whl", hash = "sha256:ab88bafedc57dd0aab55fa728ea10c1911f7e4d8b43e1d838a1739f33712921c"}, + {file = "aiohttp-3.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:5798a9aad1879f626589f3df0f8b79b3608a92e9beab10e5fda02c8a2c60db2e"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a6ce61195c6a19c785df04e71a4537e29eaa2c50fe745b732aa937c0c77169f3"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:773dd01706d4db536335fcfae6ea2440a70ceb03dd3e7378f3e815b03c97ab51"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f83a552443a526ea38d064588613aca983d0ee0038801bc93c0c916428310c28"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f7372f7341fcc16f57b2caded43e81ddd18df53320b6f9f042acad41f8e049a"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea353162f249c8097ea63c2169dd1aa55de1e8fecbe63412a9bc50816e87b761"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d47ae48db0b2dcf70bc8a3bc72b3de86e2a590fc299fdbbb15af320d2659de"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d827176898a2b0b09694fbd1088c7a31836d1a505c243811c87ae53a3f6273c1"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3562b06567c06439d8b447037bb655ef69786c590b1de86c7ab81efe1c9c15d8"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4e874cbf8caf8959d2adf572a78bba17cb0e9d7e51bb83d86a3697b686a0ab4d"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6809a00deaf3810e38c628e9a33271892f815b853605a936e2e9e5129762356c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:33776e945d89b29251b33a7e7d006ce86447b2cfd66db5e5ded4e5cd0340585c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eaeed7abfb5d64c539e2db173f63631455f1196c37d9d8d873fc316470dfbacd"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e91d635961bec2d8f19dfeb41a539eb94bd073f075ca6dae6c8dc0ee89ad6f91"}, + {file = "aiohttp-3.8.5-cp39-cp39-win32.whl", hash = "sha256:00ad4b6f185ec67f3e6562e8a1d2b69660be43070bd0ef6fcec5211154c7df67"}, + {file = "aiohttp-3.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:c0a9034379a37ae42dea7ac1e048352d96286626251862e448933c0f59cbd79c"}, + {file = "aiohttp-3.8.5.tar.gz", hash = "sha256:b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"}, diff --git a/services/admin/poetry.lock b/services/admin/poetry.lock index 080aa777..878ee866 100644 --- a/services/admin/poetry.lock +++ b/services/admin/poetry.lock @@ -5 +5 @@ name = "aiohttp" -version = "3.8.4" +version = "3.8.5" @@ -11,87 +11,87 @@ files = [ - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5ce45967538fb747370308d3145aa68a074bdecb4f3a300869590f725ced69c1"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b744c33b6f14ca26b7544e8d8aadff6b765a80ad6164fb1a430bbadd593dfb1a"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1a45865451439eb320784918617ba54b7a377e3501fb70402ab84d38c2cd891b"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86d42d7cba1cec432d47ab13b6637bee393a10f664c425ea7b305d1301ca1a3"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee3c36df21b5714d49fc4580247947aa64bcbe2939d1b77b4c8dcb8f6c9faecc"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:176a64b24c0935869d5bbc4c96e82f89f643bcdf08ec947701b9dbb3c956b7dd"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c844fd628851c0bc309f3c801b3a3d58ce430b2ce5b359cd918a5a76d0b20cb5"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5393fb786a9e23e4799fec788e7e735de18052f83682ce2dfcabaf1c00c2c08e"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e4b09863aae0dc965c3ef36500d891a3ff495a2ea9ae9171e4519963c12ceefd"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:adfbc22e87365a6e564c804c58fc44ff7727deea782d175c33602737b7feadb6"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:147ae376f14b55f4f3c2b118b95be50a369b89b38a971e80a17c3fd623f280c9"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:eafb3e874816ebe2a92f5e155f17260034c8c341dad1df25672fb710627c6949"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6cc15d58053c76eacac5fa9152d7d84b8d67b3fde92709195cb984cfb3475ea"}, - {file = "aiohttp-3.8.4-cp310-cp310-win32.whl", hash = "sha256:59f029a5f6e2d679296db7bee982bb3d20c088e52a2977e3175faf31d6fb75d1"}, - {file = "aiohttp-3.8.4-cp310-cp310-win_amd64.whl", hash = "sha256:fe7ba4a51f33ab275515f66b0a236bcde4fb5561498fe8f898d4e549b2e4509f"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d8ef1a630519a26d6760bc695842579cb09e373c5f227a21b67dc3eb16cfea4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b3f2e06a512e94722886c0827bee9807c86a9f698fac6b3aee841fab49bbfb4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3a80464982d41b1fbfe3154e440ba4904b71c1a53e9cd584098cd41efdb188ef"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b631e26df63e52f7cce0cce6507b7a7f1bc9b0c501fcde69742130b32e8782f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f43255086fe25e36fd5ed8f2ee47477408a73ef00e804cb2b5cba4bf2ac7f5e"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4d347a172f866cd1d93126d9b239fcbe682acb39b48ee0873c73c933dd23bd0f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3fec6a4cb5551721cdd70473eb009d90935b4063acc5f40905d40ecfea23e05"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80a37fe8f7c1e6ce8f2d9c411676e4bc633a8462844e38f46156d07a7d401654"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d1e6a862b76f34395a985b3cd39a0d949ca80a70b6ebdea37d3ab39ceea6698a"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cd468460eefef601ece4428d3cf4562459157c0f6523db89365202c31b6daebb"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:618c901dd3aad4ace71dfa0f5e82e88b46ef57e3239fc7027773cb6d4ed53531"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:652b1bff4f15f6287550b4670546a2947f2a4575b6c6dff7760eafb22eacbf0b"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80575ba9377c5171407a06d0196b2310b679dc752d02a1fcaa2bc20b235dbf24"}, - {file = "aiohttp-3.8.4-cp311-cp311-win32.whl", hash = "sha256:bbcf1a76cf6f6dacf2c7f4d2ebd411438c275faa1dc0c68e46eb84eebd05dd7d"}, - {file = "aiohttp-3.8.4-cp311-cp311-win_amd64.whl", hash = "sha256:6e74dd54f7239fcffe07913ff8b964e28b712f09846e20de78676ce2a3dc0bfc"}, - {file = "aiohttp-3.8.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:880e15bb6dad90549b43f796b391cfffd7af373f4646784795e20d92606b7a51"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb96fa6b56bb536c42d6a4a87dfca570ff8e52de2d63cabebfd6fb67049c34b6"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a6cadebe132e90cefa77e45f2d2f1a4b2ce5c6b1bfc1656c1ddafcfe4ba8131"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f352b62b45dff37b55ddd7b9c0c8672c4dd2eb9c0f9c11d395075a84e2c40f75"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ab43061a0c81198d88f39aaf90dae9a7744620978f7ef3e3708339b8ed2ef01"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9cb1565a7ad52e096a6988e2ee0397f72fe056dadf75d17fa6b5aebaea05622"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:1b3ea7edd2d24538959c1c1abf97c744d879d4e541d38305f9bd7d9b10c9ec41"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:7c7837fe8037e96b6dd5cfcf47263c1620a9d332a87ec06a6ca4564e56bd0f36"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:3b90467ebc3d9fa5b0f9b6489dfb2c304a1db7b9946fa92aa76a831b9d587e99"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:cab9401de3ea52b4b4c6971db5fb5c999bd4260898af972bf23de1c6b5dd9d71"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d1f9282c5f2b5e241034a009779e7b2a1aa045f667ff521e7948ea9b56e0c5ff"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win32.whl", hash = "sha256:5e14f25765a578a0a634d5f0cd1e2c3f53964553a00347998dfdf96b8137f777"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win_amd64.whl", hash = "sha256:4c745b109057e7e5f1848c689ee4fb3a016c8d4d92da52b312f8a509f83aa05e"}, - {file = "aiohttp-3.8.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:aede4df4eeb926c8fa70de46c340a1bc2c6079e1c40ccf7b0eae1313ffd33519"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ddaae3f3d32fc2cb4c53fab020b69a05c8ab1f02e0e59665c6f7a0d3a5be54f"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4eb3b82ca349cf6fadcdc7abcc8b3a50ab74a62e9113ab7a8ebc268aad35bb9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bcb89336efa095ea21b30f9e686763f2be4478f1b0a616969551982c4ee4c3b"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c08e8ed6fa3d477e501ec9db169bfac8140e830aa372d77e4a43084d8dd91ab"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c6cd05ea06daca6ad6a4ca3ba7fe7dc5b5de063ff4daec6170ec0f9979f6c332"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7a00a9ed8d6e725b55ef98b1b35c88013245f35f68b1b12c5cd4100dddac333"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:de04b491d0e5007ee1b63a309956eaed959a49f5bb4e84b26c8f5d49de140fa9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:40653609b3bf50611356e6b6554e3a331f6879fa7116f3959b20e3528783e699"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dbf3a08a06b3f433013c143ebd72c15cac33d2914b8ea4bea7ac2c23578815d6"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:854f422ac44af92bfe172d8e73229c270dc09b96535e8a548f99c84f82dde241"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win32.whl", hash = "sha256:aeb29c84bb53a84b1a81c6c09d24cf33bb8432cc5c39979021cc0f98c1292a1a"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win_amd64.whl", hash = "sha256:db3fc6120bce9f446d13b1b834ea5b15341ca9ff3f335e4a951a6ead31105480"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fabb87dd8850ef0f7fe2b366d44b77d7e6fa2ea87861ab3844da99291e81e60f"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:91f6d540163f90bbaef9387e65f18f73ffd7c79f5225ac3d3f61df7b0d01ad15"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d265f09a75a79a788237d7f9054f929ced2e69eb0bb79de3798c468d8a90f945"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d89efa095ca7d442a6d0cbc755f9e08190ba40069b235c9886a8763b03785da"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4dac314662f4e2aa5009977b652d9b8db7121b46c38f2073bfeed9f4049732cd"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe11310ae1e4cd560035598c3f29d86cef39a83d244c7466f95c27ae04850f10"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ddb2a2026c3f6a68c3998a6c47ab6795e4127315d2e35a09997da21865757f8"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e75b89ac3bd27d2d043b234aa7b734c38ba1b0e43f07787130a0ecac1e12228a"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6e601588f2b502c93c30cd5a45bfc665faaf37bbe835b7cfd461753068232074"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a5d794d1ae64e7753e405ba58e08fcfa73e3fad93ef9b7e31112ef3c9a0efb52"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a1f4689c9a1462f3df0a1f7e797791cd6b124ddbee2b570d34e7f38ade0e2c71"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:3032dcb1c35bc330134a5b8a5d4f68c1a87252dfc6e1262c65a7e30e62298275"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8189c56eb0ddbb95bfadb8f60ea1b22fcfa659396ea36f6adcc521213cd7b44d"}, - {file = "aiohttp-3.8.4-cp38-cp38-win32.whl", hash = "sha256:33587f26dcee66efb2fff3c177547bd0449ab7edf1b73a7f5dea1e38609a0c54"}, - {file = "aiohttp-3.8.4-cp38-cp38-win_amd64.whl", hash = "sha256:e595432ac259af2d4630008bf638873d69346372d38255774c0e286951e8b79f"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5a7bdf9e57126dc345b683c3632e8ba317c31d2a41acd5800c10640387d193ed"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:22f6eab15b6db242499a16de87939a342f5a950ad0abaf1532038e2ce7d31567"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7235604476a76ef249bd64cb8274ed24ccf6995c4a8b51a237005ee7a57e8643"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea9eb976ffdd79d0e893869cfe179a8f60f152d42cb64622fca418cd9b18dc2a"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:92c0cea74a2a81c4c76b62ea1cac163ecb20fb3ba3a75c909b9fa71b4ad493cf"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:493f5bc2f8307286b7799c6d899d388bbaa7dfa6c4caf4f97ef7521b9cb13719"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a63f03189a6fa7c900226e3ef5ba4d3bd047e18f445e69adbd65af433add5a2"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10c8cefcff98fd9168cdd86c4da8b84baaa90bf2da2269c6161984e6737bf23e"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bca5f24726e2919de94f047739d0a4fc01372801a3672708260546aa2601bf57"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:03baa76b730e4e15a45f81dfe29a8d910314143414e528737f8589ec60cf7391"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:8c29c77cc57e40f84acef9bfb904373a4e89a4e8b74e71aa8075c021ec9078c2"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:03543dcf98a6619254b409be2d22b51f21ec66272be4ebda7b04e6412e4b2e14"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17b79c2963db82086229012cff93ea55196ed31f6493bb1ccd2c62f1724324e4"}, - {file = "aiohttp-3.8.4-cp39-cp39-win32.whl", hash = "sha256:34ce9f93a4a68d1272d26030655dd1b58ff727b3ed2a33d80ec433561b03d67a"}, - {file = "aiohttp-3.8.4-cp39-cp39-win_amd64.whl", hash = "sha256:41a86a69bb63bb2fc3dc9ad5ea9f10f1c9c8e282b471931be0268ddd09430b04"}, - {file = "aiohttp-3.8.4.tar.gz", hash = "sha256:bf2e1a9162c1e441bf805a1fd166e249d574ca04e03b34f97e2928769e91ab5c"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a94159871304770da4dd371f4291b20cac04e8c94f11bdea1c3478e557fbe0d8"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:13bf85afc99ce6f9ee3567b04501f18f9f8dbbb2ea11ed1a2e079670403a7c84"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ce2ac5708501afc4847221a521f7e4b245abf5178cf5ddae9d5b3856ddb2f3a"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96943e5dcc37a6529d18766597c491798b7eb7a61d48878611298afc1fca946c"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ad5c3c4590bb3cc28b4382f031f3783f25ec223557124c68754a2231d989e2b"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c413c633d0512df4dc7fd2373ec06cc6a815b7b6d6c2f208ada7e9e93a5061d"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df72ac063b97837a80d80dec8d54c241af059cc9bb42c4de68bd5b61ceb37caa"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c48c5c0271149cfe467c0ff8eb941279fd6e3f65c9a388c984e0e6cf57538e14"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:368a42363c4d70ab52c2c6420a57f190ed3dfaca6a1b19afda8165ee16416a82"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7607ec3ce4993464368505888af5beb446845a014bc676d349efec0e05085905"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0d21c684808288a98914e5aaf2a7c6a3179d4df11d249799c32d1808e79503b5"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:312fcfbacc7880a8da0ae8b6abc6cc7d752e9caa0051a53d217a650b25e9a691"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ad093e823df03bb3fd37e7dec9d4670c34f9e24aeace76808fc20a507cace825"}, + {file = "aiohttp-3.8.5-cp310-cp310-win32.whl", hash = "sha256:33279701c04351a2914e1100b62b2a7fdb9a25995c4a104259f9a5ead7ed4802"}, + {file = "aiohttp-3.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:6e4a280e4b975a2e7745573e3fc9c9ba0d1194a3738ce1cbaa80626cc9b4f4df"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ae871a964e1987a943d83d6709d20ec6103ca1eaf52f7e0d36ee1b5bebb8b9b9"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:461908b2578955045efde733719d62f2b649c404189a09a632d245b445c9c975"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72a860c215e26192379f57cae5ab12b168b75db8271f111019509a1196dfc780"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc14be025665dba6202b6a71cfcdb53210cc498e50068bc088076624471f8bb9"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8af740fc2711ad85f1a5c034a435782fbd5b5f8314c9a3ef071424a8158d7f6b"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:841cd8233cbd2111a0ef0a522ce016357c5e3aff8a8ce92bcfa14cef890d698f"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed1c46fb119f1b59304b5ec89f834f07124cd23ae5b74288e364477641060ff"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84f8ae3e09a34f35c18fa57f015cc394bd1389bce02503fb30c394d04ee6b938"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62360cb771707cb70a6fd114b9871d20d7dd2163a0feafe43fd115cfe4fe845e"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23fb25a9f0a1ca1f24c0a371523546366bb642397c94ab45ad3aedf2941cec6a"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0ba0d15164eae3d878260d4c4df859bbdc6466e9e6689c344a13334f988bb53"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5d20003b635fc6ae3f96d7260281dfaf1894fc3aa24d1888a9b2628e97c241e5"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0175d745d9e85c40dcc51c8f88c74bfbaef9e7afeeeb9d03c37977270303064c"}, + {file = "aiohttp-3.8.5-cp311-cp311-win32.whl", hash = "sha256:2e1b1e51b0774408f091d268648e3d57f7260c1682e7d3a63cb00d22d71bb945"}, + {file = "aiohttp-3.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:043d2299f6dfdc92f0ac5e995dfc56668e1587cea7f9aa9d8a78a1b6554e5755"}, + {file = "aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cae533195e8122584ec87531d6df000ad07737eaa3c81209e85c928854d2195c"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f21e83f355643c345177a5d1d8079f9f28b5133bcd154193b799d380331d5d3"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a7a75ef35f2df54ad55dbf4b73fe1da96f370e51b10c91f08b19603c64004acc"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e2e9839e14dd5308ee773c97115f1e0a1cb1d75cbeeee9f33824fa5144c7634"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44e65da1de4403d0576473e2344828ef9c4c6244d65cf4b75549bb46d40b8dd"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d847e4cde6ecc19125ccbc9bfac4a7ab37c234dd88fbb3c5c524e8e14da543"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:c7a815258e5895d8900aec4454f38dca9aed71085f227537208057853f9d13f2"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:8b929b9bd7cd7c3939f8bcfffa92fae7480bd1aa425279d51a89327d600c704d"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5db3a5b833764280ed7618393832e0853e40f3d3e9aa128ac0ba0f8278d08649"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:a0215ce6041d501f3155dc219712bc41252d0ab76474615b9700d63d4d9292af"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fd1ed388ea7fbed22c4968dd64bab0198de60750a25fe8c0c9d4bef5abe13824"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win32.whl", hash = "sha256:6e6783bcc45f397fdebc118d772103d751b54cddf5b60fbcc958382d7dd64f3e"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win_amd64.whl", hash = "sha256:b5411d82cddd212644cf9360879eb5080f0d5f7d809d03262c50dad02f01421a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:01d4c0c874aa4ddfb8098e85d10b5e875a70adc63db91f1ae65a4b04d3344cda"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5980a746d547a6ba173fd5ee85ce9077e72d118758db05d229044b469d9029a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a482e6da906d5e6e653be079b29bc173a48e381600161c9932d89dfae5942ef"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80bd372b8d0715c66c974cf57fe363621a02f359f1ec81cba97366948c7fc873"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1161b345c0a444ebcf46bf0a740ba5dcf50612fd3d0528883fdc0eff578006a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd56db019015b6acfaaf92e1ac40eb8434847d9bf88b4be4efe5bfd260aee692"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:153c2549f6c004d2754cc60603d4668899c9895b8a89397444a9c4efa282aaf4"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4a01951fabc4ce26ab791da5f3f24dca6d9a6f24121746eb19756416ff2d881b"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bfb9162dcf01f615462b995a516ba03e769de0789de1cadc0f916265c257e5d8"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:7dde0009408969a43b04c16cbbe252c4f5ef4574ac226bc8815cd7342d2028b6"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4149d34c32f9638f38f544b3977a4c24052042affa895352d3636fa8bffd030a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win32.whl", hash = "sha256:68c5a82c8779bdfc6367c967a4a1b2aa52cd3595388bf5961a62158ee8a59e22"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2cf57fb50be5f52bda004b8893e63b48530ed9f0d6c96c84620dc92fe3cd9b9d"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:eca4bf3734c541dc4f374ad6010a68ff6c6748f00451707f39857f429ca36ced"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1274477e4c71ce8cfe6c1ec2f806d57c015ebf84d83373676036e256bc55d690"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28c543e54710d6158fc6f439296c7865b29e0b616629767e685a7185fab4a6b9"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:910bec0c49637d213f5d9877105d26e0c4a4de2f8b1b29405ff37e9fc0ad52b8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5443910d662db951b2e58eb70b0fbe6b6e2ae613477129a5805d0b66c54b6cb7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e460be6978fc24e3df83193dc0cc4de46c9909ed92dd47d349a452ef49325b7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1558def481d84f03b45888473fc5a1f35747b5f334ef4e7a571bc0dfcb11f8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34dd0c107799dcbbf7d48b53be761a013c0adf5571bf50c4ecad5643fe9cfcd0"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aa1990247f02a54185dc0dff92a6904521172a22664c863a03ff64c42f9b5410"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0e584a10f204a617d71d359fe383406305a4b595b333721fa50b867b4a0a1548"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a3cf433f127efa43fee6b90ea4c6edf6c4a17109d1d037d1a52abec84d8f2e42"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:c11f5b099adafb18e65c2c997d57108b5bbeaa9eeee64a84302c0978b1ec948b"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:84de26ddf621d7ac4c975dbea4c945860e08cccde492269db4e1538a6a6f3c35"}, + {file = "aiohttp-3.8.5-cp38-cp38-win32.whl", hash = "sha256:ab88bafedc57dd0aab55fa728ea10c1911f7e4d8b43e1d838a1739f33712921c"}, + {file = "aiohttp-3.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:5798a9aad1879f626589f3df0f8b79b3608a92e9beab10e5fda02c8a2c60db2e"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a6ce61195c6a19c785df04e71a4537e29eaa2c50fe745b732aa937c0c77169f3"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:773dd01706d4db536335fcfae6ea2440a70ceb03dd3e7378f3e815b03c97ab51"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f83a552443a526ea38d064588613aca983d0ee0038801bc93c0c916428310c28"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f7372f7341fcc16f57b2caded43e81ddd18df53320b6f9f042acad41f8e049a"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea353162f249c8097ea63c2169dd1aa55de1e8fecbe63412a9bc50816e87b761"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d47ae48db0b2dcf70bc8a3bc72b3de86e2a590fc299fdbbb15af320d2659de"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d827176898a2b0b09694fbd1088c7a31836d1a505c243811c87ae53a3f6273c1"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3562b06567c06439d8b447037bb655ef69786c590b1de86c7ab81efe1c9c15d8"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4e874cbf8caf8959d2adf572a78bba17cb0e9d7e51bb83d86a3697b686a0ab4d"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6809a00deaf3810e38c628e9a33271892f815b853605a936e2e9e5129762356c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:33776e945d89b29251b33a7e7d006ce86447b2cfd66db5e5ded4e5cd0340585c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eaeed7abfb5d64c539e2db173f63631455f1196c37d9d8d873fc316470dfbacd"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e91d635961bec2d8f19dfeb41a539eb94bd073f075ca6dae6c8dc0ee89ad6f91"}, + {file = "aiohttp-3.8.5-cp39-cp39-win32.whl", hash = "sha256:00ad4b6f185ec67f3e6562e8a1d2b69660be43070bd0ef6fcec5211154c7df67"}, + {file = "aiohttp-3.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:c0a9034379a37ae42dea7ac1e048352d96286626251862e448933c0f59cbd79c"}, + {file = "aiohttp-3.8.5.tar.gz", hash = "sha256:b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"}, diff --git a/services/api/poetry.lock b/services/api/poetry.lock index be55a10d..d809a126 100644 --- a/services/api/poetry.lock +++ b/services/api/poetry.lock @@ -5 +5 @@ name = "aiohttp" -version = "3.8.4" +version = "3.8.5" @@ -11,87 +11,87 @@ files = [ - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5ce45967538fb747370308d3145aa68a074bdecb4f3a300869590f725ced69c1"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b744c33b6f14ca26b7544e8d8aadff6b765a80ad6164fb1a430bbadd593dfb1a"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1a45865451439eb320784918617ba54b7a377e3501fb70402ab84d38c2cd891b"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86d42d7cba1cec432d47ab13b6637bee393a10f664c425ea7b305d1301ca1a3"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee3c36df21b5714d49fc4580247947aa64bcbe2939d1b77b4c8dcb8f6c9faecc"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:176a64b24c0935869d5bbc4c96e82f89f643bcdf08ec947701b9dbb3c956b7dd"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c844fd628851c0bc309f3c801b3a3d58ce430b2ce5b359cd918a5a76d0b20cb5"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5393fb786a9e23e4799fec788e7e735de18052f83682ce2dfcabaf1c00c2c08e"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e4b09863aae0dc965c3ef36500d891a3ff495a2ea9ae9171e4519963c12ceefd"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:adfbc22e87365a6e564c804c58fc44ff7727deea782d175c33602737b7feadb6"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:147ae376f14b55f4f3c2b118b95be50a369b89b38a971e80a17c3fd623f280c9"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:eafb3e874816ebe2a92f5e155f17260034c8c341dad1df25672fb710627c6949"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6cc15d58053c76eacac5fa9152d7d84b8d67b3fde92709195cb984cfb3475ea"}, - {file = "aiohttp-3.8.4-cp310-cp310-win32.whl", hash = "sha256:59f029a5f6e2d679296db7bee982bb3d20c088e52a2977e3175faf31d6fb75d1"}, - {file = "aiohttp-3.8.4-cp310-cp310-win_amd64.whl", hash = "sha256:fe7ba4a51f33ab275515f66b0a236bcde4fb5561498fe8f898d4e549b2e4509f"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d8ef1a630519a26d6760bc695842579cb09e373c5f227a21b67dc3eb16cfea4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b3f2e06a512e94722886c0827bee9807c86a9f698fac6b3aee841fab49bbfb4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3a80464982d41b1fbfe3154e440ba4904b71c1a53e9cd584098cd41efdb188ef"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b631e26df63e52f7cce0cce6507b7a7f1bc9b0c501fcde69742130b32e8782f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f43255086fe25e36fd5ed8f2ee47477408a73ef00e804cb2b5cba4bf2ac7f5e"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4d347a172f866cd1d93126d9b239fcbe682acb39b48ee0873c73c933dd23bd0f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3fec6a4cb5551721cdd70473eb009d90935b4063acc5f40905d40ecfea23e05"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80a37fe8f7c1e6ce8f2d9c411676e4bc633a8462844e38f46156d07a7d401654"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d1e6a862b76f34395a985b3cd39a0d949ca80a70b6ebdea37d3ab39ceea6698a"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cd468460eefef601ece4428d3cf4562459157c0f6523db89365202c31b6daebb"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:618c901dd3aad4ace71dfa0f5e82e88b46ef57e3239fc7027773cb6d4ed53531"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:652b1bff4f15f6287550b4670546a2947f2a4575b6c6dff7760eafb22eacbf0b"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80575ba9377c5171407a06d0196b2310b679dc752d02a1fcaa2bc20b235dbf24"}, - {file = "aiohttp-3.8.4-cp311-cp311-win32.whl", hash = "sha256:bbcf1a76cf6f6dacf2c7f4d2ebd411438c275faa1dc0c68e46eb84eebd05dd7d"}, - {file = "aiohttp-3.8.4-cp311-cp311-win_amd64.whl", hash = "sha256:6e74dd54f7239fcffe07913ff8b964e28b712f09846e20de78676ce2a3dc0bfc"}, - {file = "aiohttp-3.8.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:880e15bb6dad90549b43f796b391cfffd7af373f4646784795e20d92606b7a51"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb96fa6b56bb536c42d6a4a87dfca570ff8e52de2d63cabebfd6fb67049c34b6"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a6cadebe132e90cefa77e45f2d2f1a4b2ce5c6b1bfc1656c1ddafcfe4ba8131"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f352b62b45dff37b55ddd7b9c0c8672c4dd2eb9c0f9c11d395075a84e2c40f75"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ab43061a0c81198d88f39aaf90dae9a7744620978f7ef3e3708339b8ed2ef01"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9cb1565a7ad52e096a6988e2ee0397f72fe056dadf75d17fa6b5aebaea05622"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:1b3ea7edd2d24538959c1c1abf97c744d879d4e541d38305f9bd7d9b10c9ec41"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:7c7837fe8037e96b6dd5cfcf47263c1620a9d332a87ec06a6ca4564e56bd0f36"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:3b90467ebc3d9fa5b0f9b6489dfb2c304a1db7b9946fa92aa76a831b9d587e99"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:cab9401de3ea52b4b4c6971db5fb5c999bd4260898af972bf23de1c6b5dd9d71"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d1f9282c5f2b5e241034a009779e7b2a1aa045f667ff521e7948ea9b56e0c5ff"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win32.whl", hash = "sha256:5e14f25765a578a0a634d5f0cd1e2c3f53964553a00347998dfdf96b8137f777"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win_amd64.whl", hash = "sha256:4c745b109057e7e5f1848c689ee4fb3a016c8d4d92da52b312f8a509f83aa05e"}, - {file = "aiohttp-3.8.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:aede4df4eeb926c8fa70de46c340a1bc2c6079e1c40ccf7b0eae1313ffd33519"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ddaae3f3d32fc2cb4c53fab020b69a05c8ab1f02e0e59665c6f7a0d3a5be54f"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4eb3b82ca349cf6fadcdc7abcc8b3a50ab74a62e9113ab7a8ebc268aad35bb9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bcb89336efa095ea21b30f9e686763f2be4478f1b0a616969551982c4ee4c3b"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c08e8ed6fa3d477e501ec9db169bfac8140e830aa372d77e4a43084d8dd91ab"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c6cd05ea06daca6ad6a4ca3ba7fe7dc5b5de063ff4daec6170ec0f9979f6c332"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7a00a9ed8d6e725b55ef98b1b35c88013245f35f68b1b12c5cd4100dddac333"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:de04b491d0e5007ee1b63a309956eaed959a49f5bb4e84b26c8f5d49de140fa9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:40653609b3bf50611356e6b6554e3a331f6879fa7116f3959b20e3528783e699"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dbf3a08a06b3f433013c143ebd72c15cac33d2914b8ea4bea7ac2c23578815d6"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:854f422ac44af92bfe172d8e73229c270dc09b96535e8a548f99c84f82dde241"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win32.whl", hash = "sha256:aeb29c84bb53a84b1a81c6c09d24cf33bb8432cc5c39979021cc0f98c1292a1a"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win_amd64.whl", hash = "sha256:db3fc6120bce9f446d13b1b834ea5b15341ca9ff3f335e4a951a6ead31105480"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fabb87dd8850ef0f7fe2b366d44b77d7e6fa2ea87861ab3844da99291e81e60f"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:91f6d540163f90bbaef9387e65f18f73ffd7c79f5225ac3d3f61df7b0d01ad15"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d265f09a75a79a788237d7f9054f929ced2e69eb0bb79de3798c468d8a90f945"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d89efa095ca7d442a6d0cbc755f9e08190ba40069b235c9886a8763b03785da"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4dac314662f4e2aa5009977b652d9b8db7121b46c38f2073bfeed9f4049732cd"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe11310ae1e4cd560035598c3f29d86cef39a83d244c7466f95c27ae04850f10"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ddb2a2026c3f6a68c3998a6c47ab6795e4127315d2e35a09997da21865757f8"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e75b89ac3bd27d2d043b234aa7b734c38ba1b0e43f07787130a0ecac1e12228a"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6e601588f2b502c93c30cd5a45bfc665faaf37bbe835b7cfd461753068232074"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a5d794d1ae64e7753e405ba58e08fcfa73e3fad93ef9b7e31112ef3c9a0efb52"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a1f4689c9a1462f3df0a1f7e797791cd6b124ddbee2b570d34e7f38ade0e2c71"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:3032dcb1c35bc330134a5b8a5d4f68c1a87252dfc6e1262c65a7e30e62298275"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8189c56eb0ddbb95bfadb8f60ea1b22fcfa659396ea36f6adcc521213cd7b44d"}, - {file = "aiohttp-3.8.4-cp38-cp38-win32.whl", hash = "sha256:33587f26dcee66efb2fff3c177547bd0449ab7edf1b73a7f5dea1e38609a0c54"}, - {file = "aiohttp-3.8.4-cp38-cp38-win_amd64.whl", hash = "sha256:e595432ac259af2d4630008bf638873d69346372d38255774c0e286951e8b79f"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5a7bdf9e57126dc345b683c3632e8ba317c31d2a41acd5800c10640387d193ed"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:22f6eab15b6db242499a16de87939a342f5a950ad0abaf1532038e2ce7d31567"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7235604476a76ef249bd64cb8274ed24ccf6995c4a8b51a237005ee7a57e8643"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea9eb976ffdd79d0e893869cfe179a8f60f152d42cb64622fca418cd9b18dc2a"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:92c0cea74a2a81c4c76b62ea1cac163ecb20fb3ba3a75c909b9fa71b4ad493cf"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:493f5bc2f8307286b7799c6d899d388bbaa7dfa6c4caf4f97ef7521b9cb13719"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a63f03189a6fa7c900226e3ef5ba4d3bd047e18f445e69adbd65af433add5a2"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10c8cefcff98fd9168cdd86c4da8b84baaa90bf2da2269c6161984e6737bf23e"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bca5f24726e2919de94f047739d0a4fc01372801a3672708260546aa2601bf57"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:03baa76b730e4e15a45f81dfe29a8d910314143414e528737f8589ec60cf7391"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:8c29c77cc57e40f84acef9bfb904373a4e89a4e8b74e71aa8075c021ec9078c2"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:03543dcf98a6619254b409be2d22b51f21ec66272be4ebda7b04e6412e4b2e14"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17b79c2963db82086229012cff93ea55196ed31f6493bb1ccd2c62f1724324e4"}, - {file = "aiohttp-3.8.4-cp39-cp39-win32.whl", hash = "sha256:34ce9f93a4a68d1272d26030655dd1b58ff727b3ed2a33d80ec433561b03d67a"}, - {file = "aiohttp-3.8.4-cp39-cp39-win_amd64.whl", hash = "sha256:41a86a69bb63bb2fc3dc9ad5ea9f10f1c9c8e282b471931be0268ddd09430b04"}, - {file = "aiohttp-3.8.4.tar.gz", hash = "sha256:bf2e1a9162c1e441bf805a1fd166e249d574ca04e03b34f97e2928769e91ab5c"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a94159871304770da4dd371f4291b20cac04e8c94f11bdea1c3478e557fbe0d8"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:13bf85afc99ce6f9ee3567b04501f18f9f8dbbb2ea11ed1a2e079670403a7c84"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ce2ac5708501afc4847221a521f7e4b245abf5178cf5ddae9d5b3856ddb2f3a"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96943e5dcc37a6529d18766597c491798b7eb7a61d48878611298afc1fca946c"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ad5c3c4590bb3cc28b4382f031f3783f25ec223557124c68754a2231d989e2b"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c413c633d0512df4dc7fd2373ec06cc6a815b7b6d6c2f208ada7e9e93a5061d"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df72ac063b97837a80d80dec8d54c241af059cc9bb42c4de68bd5b61ceb37caa"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c48c5c0271149cfe467c0ff8eb941279fd6e3f65c9a388c984e0e6cf57538e14"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:368a42363c4d70ab52c2c6420a57f190ed3dfaca6a1b19afda8165ee16416a82"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7607ec3ce4993464368505888af5beb446845a014bc676d349efec0e05085905"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0d21c684808288a98914e5aaf2a7c6a3179d4df11d249799c32d1808e79503b5"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:312fcfbacc7880a8da0ae8b6abc6cc7d752e9caa0051a53d217a650b25e9a691"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ad093e823df03bb3fd37e7dec9d4670c34f9e24aeace76808fc20a507cace825"}, + {file = "aiohttp-3.8.5-cp310-cp310-win32.whl", hash = "sha256:33279701c04351a2914e1100b62b2a7fdb9a25995c4a104259f9a5ead7ed4802"}, + {file = "aiohttp-3.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:6e4a280e4b975a2e7745573e3fc9c9ba0d1194a3738ce1cbaa80626cc9b4f4df"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ae871a964e1987a943d83d6709d20ec6103ca1eaf52f7e0d36ee1b5bebb8b9b9"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:461908b2578955045efde733719d62f2b649c404189a09a632d245b445c9c975"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72a860c215e26192379f57cae5ab12b168b75db8271f111019509a1196dfc780"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc14be025665dba6202b6a71cfcdb53210cc498e50068bc088076624471f8bb9"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8af740fc2711ad85f1a5c034a435782fbd5b5f8314c9a3ef071424a8158d7f6b"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:841cd8233cbd2111a0ef0a522ce016357c5e3aff8a8ce92bcfa14cef890d698f"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed1c46fb119f1b59304b5ec89f834f07124cd23ae5b74288e364477641060ff"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84f8ae3e09a34f35c18fa57f015cc394bd1389bce02503fb30c394d04ee6b938"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62360cb771707cb70a6fd114b9871d20d7dd2163a0feafe43fd115cfe4fe845e"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23fb25a9f0a1ca1f24c0a371523546366bb642397c94ab45ad3aedf2941cec6a"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0ba0d15164eae3d878260d4c4df859bbdc6466e9e6689c344a13334f988bb53"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5d20003b635fc6ae3f96d7260281dfaf1894fc3aa24d1888a9b2628e97c241e5"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0175d745d9e85c40dcc51c8f88c74bfbaef9e7afeeeb9d03c37977270303064c"}, + {file = "aiohttp-3.8.5-cp311-cp311-win32.whl", hash = "sha256:2e1b1e51b0774408f091d268648e3d57f7260c1682e7d3a63cb00d22d71bb945"}, + {file = "aiohttp-3.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:043d2299f6dfdc92f0ac5e995dfc56668e1587cea7f9aa9d8a78a1b6554e5755"}, + {file = "aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cae533195e8122584ec87531d6df000ad07737eaa3c81209e85c928854d2195c"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f21e83f355643c345177a5d1d8079f9f28b5133bcd154193b799d380331d5d3"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a7a75ef35f2df54ad55dbf4b73fe1da96f370e51b10c91f08b19603c64004acc"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e2e9839e14dd5308ee773c97115f1e0a1cb1d75cbeeee9f33824fa5144c7634"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44e65da1de4403d0576473e2344828ef9c4c6244d65cf4b75549bb46d40b8dd"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d847e4cde6ecc19125ccbc9bfac4a7ab37c234dd88fbb3c5c524e8e14da543"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:c7a815258e5895d8900aec4454f38dca9aed71085f227537208057853f9d13f2"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:8b929b9bd7cd7c3939f8bcfffa92fae7480bd1aa425279d51a89327d600c704d"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5db3a5b833764280ed7618393832e0853e40f3d3e9aa128ac0ba0f8278d08649"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:a0215ce6041d501f3155dc219712bc41252d0ab76474615b9700d63d4d9292af"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fd1ed388ea7fbed22c4968dd64bab0198de60750a25fe8c0c9d4bef5abe13824"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win32.whl", hash = "sha256:6e6783bcc45f397fdebc118d772103d751b54cddf5b60fbcc958382d7dd64f3e"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win_amd64.whl", hash = "sha256:b5411d82cddd212644cf9360879eb5080f0d5f7d809d03262c50dad02f01421a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:01d4c0c874aa4ddfb8098e85d10b5e875a70adc63db91f1ae65a4b04d3344cda"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5980a746d547a6ba173fd5ee85ce9077e72d118758db05d229044b469d9029a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a482e6da906d5e6e653be079b29bc173a48e381600161c9932d89dfae5942ef"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80bd372b8d0715c66c974cf57fe363621a02f359f1ec81cba97366948c7fc873"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1161b345c0a444ebcf46bf0a740ba5dcf50612fd3d0528883fdc0eff578006a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd56db019015b6acfaaf92e1ac40eb8434847d9bf88b4be4efe5bfd260aee692"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:153c2549f6c004d2754cc60603d4668899c9895b8a89397444a9c4efa282aaf4"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4a01951fabc4ce26ab791da5f3f24dca6d9a6f24121746eb19756416ff2d881b"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bfb9162dcf01f615462b995a516ba03e769de0789de1cadc0f916265c257e5d8"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:7dde0009408969a43b04c16cbbe252c4f5ef4574ac226bc8815cd7342d2028b6"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4149d34c32f9638f38f544b3977a4c24052042affa895352d3636fa8bffd030a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win32.whl", hash = "sha256:68c5a82c8779bdfc6367c967a4a1b2aa52cd3595388bf5961a62158ee8a59e22"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2cf57fb50be5f52bda004b8893e63b48530ed9f0d6c96c84620dc92fe3cd9b9d"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:eca4bf3734c541dc4f374ad6010a68ff6c6748f00451707f39857f429ca36ced"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1274477e4c71ce8cfe6c1ec2f806d57c015ebf84d83373676036e256bc55d690"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28c543e54710d6158fc6f439296c7865b29e0b616629767e685a7185fab4a6b9"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:910bec0c49637d213f5d9877105d26e0c4a4de2f8b1b29405ff37e9fc0ad52b8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5443910d662db951b2e58eb70b0fbe6b6e2ae613477129a5805d0b66c54b6cb7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e460be6978fc24e3df83193dc0cc4de46c9909ed92dd47d349a452ef49325b7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1558def481d84f03b45888473fc5a1f35747b5f334ef4e7a571bc0dfcb11f8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34dd0c107799dcbbf7d48b53be761a013c0adf5571bf50c4ecad5643fe9cfcd0"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aa1990247f02a54185dc0dff92a6904521172a22664c863a03ff64c42f9b5410"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0e584a10f204a617d71d359fe383406305a4b595b333721fa50b867b4a0a1548"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a3cf433f127efa43fee6b90ea4c6edf6c4a17109d1d037d1a52abec84d8f2e42"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:c11f5b099adafb18e65c2c997d57108b5bbeaa9eeee64a84302c0978b1ec948b"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:84de26ddf621d7ac4c975dbea4c945860e08cccde492269db4e1538a6a6f3c35"}, + {file = "aiohttp-3.8.5-cp38-cp38-win32.whl", hash = "sha256:ab88bafedc57dd0aab55fa728ea10c1911f7e4d8b43e1d838a1739f33712921c"}, + {file = "aiohttp-3.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:5798a9aad1879f626589f3df0f8b79b3608a92e9beab10e5fda02c8a2c60db2e"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a6ce61195c6a19c785df04e71a4537e29eaa2c50fe745b732aa937c0c77169f3"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:773dd01706d4db536335fcfae6ea2440a70ceb03dd3e7378f3e815b03c97ab51"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f83a552443a526ea38d064588613aca983d0ee0038801bc93c0c916428310c28"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f7372f7341fcc16f57b2caded43e81ddd18df53320b6f9f042acad41f8e049a"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea353162f249c8097ea63c2169dd1aa55de1e8fecbe63412a9bc50816e87b761"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d47ae48db0b2dcf70bc8a3bc72b3de86e2a590fc299fdbbb15af320d2659de"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d827176898a2b0b09694fbd1088c7a31836d1a505c243811c87ae53a3f6273c1"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3562b06567c06439d8b447037bb655ef69786c590b1de86c7ab81efe1c9c15d8"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4e874cbf8caf8959d2adf572a78bba17cb0e9d7e51bb83d86a3697b686a0ab4d"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6809a00deaf3810e38c628e9a33271892f815b853605a936e2e9e5129762356c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:33776e945d89b29251b33a7e7d006ce86447b2cfd66db5e5ded4e5cd0340585c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eaeed7abfb5d64c539e2db173f63631455f1196c37d9d8d873fc316470dfbacd"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e91d635961bec2d8f19dfeb41a539eb94bd073f075ca6dae6c8dc0ee89ad6f91"}, + {file = "aiohttp-3.8.5-cp39-cp39-win32.whl", hash = "sha256:00ad4b6f185ec67f3e6562e8a1d2b69660be43070bd0ef6fcec5211154c7df67"}, + {file = "aiohttp-3.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:c0a9034379a37ae42dea7ac1e048352d96286626251862e448933c0f59cbd79c"}, + {file = "aiohttp-3.8.5.tar.gz", hash = "sha256:b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"}, diff --git a/services/rows/poetry.lock b/services/rows/poetry.lock index 8ce03889..d7b2ed35 100644 --- a/services/rows/poetry.lock +++ b/services/rows/poetry.lock @@ -5 +5 @@ name = "aiohttp" -version = "3.8.4" +version = "3.8.5" @@ -11,87 +11,87 @@ files = [ - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5ce45967538fb747370308d3145aa68a074bdecb4f3a300869590f725ced69c1"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b744c33b6f14ca26b7544e8d8aadff6b765a80ad6164fb1a430bbadd593dfb1a"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1a45865451439eb320784918617ba54b7a377e3501fb70402ab84d38c2cd891b"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86d42d7cba1cec432d47ab13b6637bee393a10f664c425ea7b305d1301ca1a3"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee3c36df21b5714d49fc4580247947aa64bcbe2939d1b77b4c8dcb8f6c9faecc"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:176a64b24c0935869d5bbc4c96e82f89f643bcdf08ec947701b9dbb3c956b7dd"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c844fd628851c0bc309f3c801b3a3d58ce430b2ce5b359cd918a5a76d0b20cb5"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5393fb786a9e23e4799fec788e7e735de18052f83682ce2dfcabaf1c00c2c08e"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e4b09863aae0dc965c3ef36500d891a3ff495a2ea9ae9171e4519963c12ceefd"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:adfbc22e87365a6e564c804c58fc44ff7727deea782d175c33602737b7feadb6"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:147ae376f14b55f4f3c2b118b95be50a369b89b38a971e80a17c3fd623f280c9"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:eafb3e874816ebe2a92f5e155f17260034c8c341dad1df25672fb710627c6949"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6cc15d58053c76eacac5fa9152d7d84b8d67b3fde92709195cb984cfb3475ea"}, - {file = "aiohttp-3.8.4-cp310-cp310-win32.whl", hash = "sha256:59f029a5f6e2d679296db7bee982bb3d20c088e52a2977e3175faf31d6fb75d1"}, - {file = "aiohttp-3.8.4-cp310-cp310-win_amd64.whl", hash = "sha256:fe7ba4a51f33ab275515f66b0a236bcde4fb5561498fe8f898d4e549b2e4509f"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d8ef1a630519a26d6760bc695842579cb09e373c5f227a21b67dc3eb16cfea4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b3f2e06a512e94722886c0827bee9807c86a9f698fac6b3aee841fab49bbfb4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3a80464982d41b1fbfe3154e440ba4904b71c1a53e9cd584098cd41efdb188ef"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b631e26df63e52f7cce0cce6507b7a7f1bc9b0c501fcde69742130b32e8782f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f43255086fe25e36fd5ed8f2ee47477408a73ef00e804cb2b5cba4bf2ac7f5e"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4d347a172f866cd1d93126d9b239fcbe682acb39b48ee0873c73c933dd23bd0f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3fec6a4cb5551721cdd70473eb009d90935b4063acc5f40905d40ecfea23e05"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80a37fe8f7c1e6ce8f2d9c411676e4bc633a8462844e38f46156d07a7d401654"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d1e6a862b76f34395a985b3cd39a0d949ca80a70b6ebdea37d3ab39ceea6698a"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cd468460eefef601ece4428d3cf4562459157c0f6523db89365202c31b6daebb"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:618c901dd3aad4ace71dfa0f5e82e88b46ef57e3239fc7027773cb6d4ed53531"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:652b1bff4f15f6287550b4670546a2947f2a4575b6c6dff7760eafb22eacbf0b"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80575ba9377c5171407a06d0196b2310b679dc752d02a1fcaa2bc20b235dbf24"}, - {file = "aiohttp-3.8.4-cp311-cp311-win32.whl", hash = "sha256:bbcf1a76cf6f6dacf2c7f4d2ebd411438c275faa1dc0c68e46eb84eebd05dd7d"}, - {file = "aiohttp-3.8.4-cp311-cp311-win_amd64.whl", hash = "sha256:6e74dd54f7239fcffe07913ff8b964e28b712f09846e20de78676ce2a3dc0bfc"}, - {file = "aiohttp-3.8.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:880e15bb6dad90549b43f796b391cfffd7af373f4646784795e20d92606b7a51"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb96fa6b56bb536c42d6a4a87dfca570ff8e52de2d63cabebfd6fb67049c34b6"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a6cadebe132e90cefa77e45f2d2f1a4b2ce5c6b1bfc1656c1ddafcfe4ba8131"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f352b62b45dff37b55ddd7b9c0c8672c4dd2eb9c0f9c11d395075a84e2c40f75"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ab43061a0c81198d88f39aaf90dae9a7744620978f7ef3e3708339b8ed2ef01"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9cb1565a7ad52e096a6988e2ee0397f72fe056dadf75d17fa6b5aebaea05622"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:1b3ea7edd2d24538959c1c1abf97c744d879d4e541d38305f9bd7d9b10c9ec41"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:7c7837fe8037e96b6dd5cfcf47263c1620a9d332a87ec06a6ca4564e56bd0f36"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:3b90467ebc3d9fa5b0f9b6489dfb2c304a1db7b9946fa92aa76a831b9d587e99"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:cab9401de3ea52b4b4c6971db5fb5c999bd4260898af972bf23de1c6b5dd9d71"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d1f9282c5f2b5e241034a009779e7b2a1aa045f667ff521e7948ea9b56e0c5ff"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win32.whl", hash = "sha256:5e14f25765a578a0a634d5f0cd1e2c3f53964553a00347998dfdf96b8137f777"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win_amd64.whl", hash = "sha256:4c745b109057e7e5f1848c689ee4fb3a016c8d4d92da52b312f8a509f83aa05e"}, - {file = "aiohttp-3.8.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:aede4df4eeb926c8fa70de46c340a1bc2c6079e1c40ccf7b0eae1313ffd33519"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ddaae3f3d32fc2cb4c53fab020b69a05c8ab1f02e0e59665c6f7a0d3a5be54f"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4eb3b82ca349cf6fadcdc7abcc8b3a50ab74a62e9113ab7a8ebc268aad35bb9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bcb89336efa095ea21b30f9e686763f2be4478f1b0a616969551982c4ee4c3b"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c08e8ed6fa3d477e501ec9db169bfac8140e830aa372d77e4a43084d8dd91ab"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c6cd05ea06daca6ad6a4ca3ba7fe7dc5b5de063ff4daec6170ec0f9979f6c332"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7a00a9ed8d6e725b55ef98b1b35c88013245f35f68b1b12c5cd4100dddac333"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:de04b491d0e5007ee1b63a309956eaed959a49f5bb4e84b26c8f5d49de140fa9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:40653609b3bf50611356e6b6554e3a331f6879fa7116f3959b20e3528783e699"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dbf3a08a06b3f433013c143ebd72c15cac33d2914b8ea4bea7ac2c23578815d6"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:854f422ac44af92bfe172d8e73229c270dc09b96535e8a548f99c84f82dde241"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win32.whl", hash = "sha256:aeb29c84bb53a84b1a81c6c09d24cf33bb8432cc5c39979021cc0f98c1292a1a"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win_amd64.whl", hash = "sha256:db3fc6120bce9f446d13b1b834ea5b15341ca9ff3f335e4a951a6ead31105480"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fabb87dd8850ef0f7fe2b366d44b77d7e6fa2ea87861ab3844da99291e81e60f"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:91f6d540163f90bbaef9387e65f18f73ffd7c79f5225ac3d3f61df7b0d01ad15"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d265f09a75a79a788237d7f9054f929ced2e69eb0bb79de3798c468d8a90f945"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d89efa095ca7d442a6d0cbc755f9e08190ba40069b235c9886a8763b03785da"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4dac314662f4e2aa5009977b652d9b8db7121b46c38f2073bfeed9f4049732cd"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe11310ae1e4cd560035598c3f29d86cef39a83d244c7466f95c27ae04850f10"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ddb2a2026c3f6a68c3998a6c47ab6795e4127315d2e35a09997da21865757f8"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e75b89ac3bd27d2d043b234aa7b734c38ba1b0e43f07787130a0ecac1e12228a"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6e601588f2b502c93c30cd5a45bfc665faaf37bbe835b7cfd461753068232074"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a5d794d1ae64e7753e405ba58e08fcfa73e3fad93ef9b7e31112ef3c9a0efb52"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a1f4689c9a1462f3df0a1f7e797791cd6b124ddbee2b570d34e7f38ade0e2c71"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:3032dcb1c35bc330134a5b8a5d4f68c1a87252dfc6e1262c65a7e30e62298275"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8189c56eb0ddbb95bfadb8f60ea1b22fcfa659396ea36f6adcc521213cd7b44d"}, - {file = "aiohttp-3.8.4-cp38-cp38-win32.whl", hash = "sha256:33587f26dcee66efb2fff3c177547bd0449ab7edf1b73a7f5dea1e38609a0c54"}, - {file = "aiohttp-3.8.4-cp38-cp38-win_amd64.whl", hash = "sha256:e595432ac259af2d4630008bf638873d69346372d38255774c0e286951e8b79f"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5a7bdf9e57126dc345b683c3632e8ba317c31d2a41acd5800c10640387d193ed"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:22f6eab15b6db242499a16de87939a342f5a950ad0abaf1532038e2ce7d31567"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7235604476a76ef249bd64cb8274ed24ccf6995c4a8b51a237005ee7a57e8643"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea9eb976ffdd79d0e893869cfe179a8f60f152d42cb64622fca418cd9b18dc2a"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:92c0cea74a2a81c4c76b62ea1cac163ecb20fb3ba3a75c909b9fa71b4ad493cf"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:493f5bc2f8307286b7799c6d899d388bbaa7dfa6c4caf4f97ef7521b9cb13719"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a63f03189a6fa7c900226e3ef5ba4d3bd047e18f445e69adbd65af433add5a2"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10c8cefcff98fd9168cdd86c4da8b84baaa90bf2da2269c6161984e6737bf23e"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bca5f24726e2919de94f047739d0a4fc01372801a3672708260546aa2601bf57"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:03baa76b730e4e15a45f81dfe29a8d910314143414e528737f8589ec60cf7391"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:8c29c77cc57e40f84acef9bfb904373a4e89a4e8b74e71aa8075c021ec9078c2"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:03543dcf98a6619254b409be2d22b51f21ec66272be4ebda7b04e6412e4b2e14"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17b79c2963db82086229012cff93ea55196ed31f6493bb1ccd2c62f1724324e4"}, - {file = "aiohttp-3.8.4-cp39-cp39-win32.whl", hash = "sha256:34ce9f93a4a68d1272d26030655dd1b58ff727b3ed2a33d80ec433561b03d67a"}, - {file = "aiohttp-3.8.4-cp39-cp39-win_amd64.whl", hash = "sha256:41a86a69bb63bb2fc3dc9ad5ea9f10f1c9c8e282b471931be0268ddd09430b04"}, - {file = "aiohttp-3.8.4.tar.gz", hash = "sha256:bf2e1a9162c1e441bf805a1fd166e249d574ca04e03b34f97e2928769e91ab5c"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a94159871304770da4dd371f4291b20cac04e8c94f11bdea1c3478e557fbe0d8"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:13bf85afc99ce6f9ee3567b04501f18f9f8dbbb2ea11ed1a2e079670403a7c84"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ce2ac5708501afc4847221a521f7e4b245abf5178cf5ddae9d5b3856ddb2f3a"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96943e5dcc37a6529d18766597c491798b7eb7a61d48878611298afc1fca946c"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ad5c3c4590bb3cc28b4382f031f3783f25ec223557124c68754a2231d989e2b"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c413c633d0512df4dc7fd2373ec06cc6a815b7b6d6c2f208ada7e9e93a5061d"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df72ac063b97837a80d80dec8d54c241af059cc9bb42c4de68bd5b61ceb37caa"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c48c5c0271149cfe467c0ff8eb941279fd6e3f65c9a388c984e0e6cf57538e14"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:368a42363c4d70ab52c2c6420a57f190ed3dfaca6a1b19afda8165ee16416a82"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7607ec3ce4993464368505888af5beb446845a014bc676d349efec0e05085905"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0d21c684808288a98914e5aaf2a7c6a3179d4df11d249799c32d1808e79503b5"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:312fcfbacc7880a8da0ae8b6abc6cc7d752e9caa0051a53d217a650b25e9a691"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ad093e823df03bb3fd37e7dec9d4670c34f9e24aeace76808fc20a507cace825"}, + {file = "aiohttp-3.8.5-cp310-cp310-win32.whl", hash = "sha256:33279701c04351a2914e1100b62b2a7fdb9a25995c4a104259f9a5ead7ed4802"}, + {file = "aiohttp-3.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:6e4a280e4b975a2e7745573e3fc9c9ba0d1194a3738ce1cbaa80626cc9b4f4df"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ae871a964e1987a943d83d6709d20ec6103ca1eaf52f7e0d36ee1b5bebb8b9b9"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:461908b2578955045efde733719d62f2b649c404189a09a632d245b445c9c975"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72a860c215e26192379f57cae5ab12b168b75db8271f111019509a1196dfc780"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc14be025665dba6202b6a71cfcdb53210cc498e50068bc088076624471f8bb9"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8af740fc2711ad85f1a5c034a435782fbd5b5f8314c9a3ef071424a8158d7f6b"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:841cd8233cbd2111a0ef0a522ce016357c5e3aff8a8ce92bcfa14cef890d698f"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed1c46fb119f1b59304b5ec89f834f07124cd23ae5b74288e364477641060ff"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84f8ae3e09a34f35c18fa57f015cc394bd1389bce02503fb30c394d04ee6b938"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62360cb771707cb70a6fd114b9871d20d7dd2163a0feafe43fd115cfe4fe845e"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23fb25a9f0a1ca1f24c0a371523546366bb642397c94ab45ad3aedf2941cec6a"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0ba0d15164eae3d878260d4c4df859bbdc6466e9e6689c344a13334f988bb53"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5d20003b635fc6ae3f96d7260281dfaf1894fc3aa24d1888a9b2628e97c241e5"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0175d745d9e85c40dcc51c8f88c74bfbaef9e7afeeeb9d03c37977270303064c"}, + {file = "aiohttp-3.8.5-cp311-cp311-win32.whl", hash = "sha256:2e1b1e51b0774408f091d268648e3d57f7260c1682e7d3a63cb00d22d71bb945"}, + {file = "aiohttp-3.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:043d2299f6dfdc92f0ac5e995dfc56668e1587cea7f9aa9d8a78a1b6554e5755"}, + {file = "aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cae533195e8122584ec87531d6df000ad07737eaa3c81209e85c928854d2195c"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f21e83f355643c345177a5d1d8079f9f28b5133bcd154193b799d380331d5d3"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a7a75ef35f2df54ad55dbf4b73fe1da96f370e51b10c91f08b19603c64004acc"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e2e9839e14dd5308ee773c97115f1e0a1cb1d75cbeeee9f33824fa5144c7634"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44e65da1de4403d0576473e2344828ef9c4c6244d65cf4b75549bb46d40b8dd"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d847e4cde6ecc19125ccbc9bfac4a7ab37c234dd88fbb3c5c524e8e14da543"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:c7a815258e5895d8900aec4454f38dca9aed71085f227537208057853f9d13f2"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:8b929b9bd7cd7c3939f8bcfffa92fae7480bd1aa425279d51a89327d600c704d"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5db3a5b833764280ed7618393832e0853e40f3d3e9aa128ac0ba0f8278d08649"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:a0215ce6041d501f3155dc219712bc41252d0ab76474615b9700d63d4d9292af"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fd1ed388ea7fbed22c4968dd64bab0198de60750a25fe8c0c9d4bef5abe13824"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win32.whl", hash = "sha256:6e6783bcc45f397fdebc118d772103d751b54cddf5b60fbcc958382d7dd64f3e"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win_amd64.whl", hash = "sha256:b5411d82cddd212644cf9360879eb5080f0d5f7d809d03262c50dad02f01421a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:01d4c0c874aa4ddfb8098e85d10b5e875a70adc63db91f1ae65a4b04d3344cda"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5980a746d547a6ba173fd5ee85ce9077e72d118758db05d229044b469d9029a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a482e6da906d5e6e653be079b29bc173a48e381600161c9932d89dfae5942ef"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80bd372b8d0715c66c974cf57fe363621a02f359f1ec81cba97366948c7fc873"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1161b345c0a444ebcf46bf0a740ba5dcf50612fd3d0528883fdc0eff578006a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd56db019015b6acfaaf92e1ac40eb8434847d9bf88b4be4efe5bfd260aee692"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:153c2549f6c004d2754cc60603d4668899c9895b8a89397444a9c4efa282aaf4"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4a01951fabc4ce26ab791da5f3f24dca6d9a6f24121746eb19756416ff2d881b"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bfb9162dcf01f615462b995a516ba03e769de0789de1cadc0f916265c257e5d8"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:7dde0009408969a43b04c16cbbe252c4f5ef4574ac226bc8815cd7342d2028b6"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4149d34c32f9638f38f544b3977a4c24052042affa895352d3636fa8bffd030a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win32.whl", hash = "sha256:68c5a82c8779bdfc6367c967a4a1b2aa52cd3595388bf5961a62158ee8a59e22"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2cf57fb50be5f52bda004b8893e63b48530ed9f0d6c96c84620dc92fe3cd9b9d"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:eca4bf3734c541dc4f374ad6010a68ff6c6748f00451707f39857f429ca36ced"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1274477e4c71ce8cfe6c1ec2f806d57c015ebf84d83373676036e256bc55d690"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28c543e54710d6158fc6f439296c7865b29e0b616629767e685a7185fab4a6b9"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:910bec0c49637d213f5d9877105d26e0c4a4de2f8b1b29405ff37e9fc0ad52b8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5443910d662db951b2e58eb70b0fbe6b6e2ae613477129a5805d0b66c54b6cb7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e460be6978fc24e3df83193dc0cc4de46c9909ed92dd47d349a452ef49325b7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1558def481d84f03b45888473fc5a1f35747b5f334ef4e7a571bc0dfcb11f8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34dd0c107799dcbbf7d48b53be761a013c0adf5571bf50c4ecad5643fe9cfcd0"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aa1990247f02a54185dc0dff92a6904521172a22664c863a03ff64c42f9b5410"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0e584a10f204a617d71d359fe383406305a4b595b333721fa50b867b4a0a1548"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a3cf433f127efa43fee6b90ea4c6edf6c4a17109d1d037d1a52abec84d8f2e42"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:c11f5b099adafb18e65c2c997d57108b5bbeaa9eeee64a84302c0978b1ec948b"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:84de26ddf621d7ac4c975dbea4c945860e08cccde492269db4e1538a6a6f3c35"}, + {file = "aiohttp-3.8.5-cp38-cp38-win32.whl", hash = "sha256:ab88bafedc57dd0aab55fa728ea10c1911f7e4d8b43e1d838a1739f33712921c"}, + {file = "aiohttp-3.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:5798a9aad1879f626589f3df0f8b79b3608a92e9beab10e5fda02c8a2c60db2e"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a6ce61195c6a19c785df04e71a4537e29eaa2c50fe745b732aa937c0c77169f3"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:773dd01706d4db536335fcfae6ea2440a70ceb03dd3e7378f3e815b03c97ab51"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f83a552443a526ea38d064588613aca983d0ee0038801bc93c0c916428310c28"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f7372f7341fcc16f57b2caded43e81ddd18df53320b6f9f042acad41f8e049a"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea353162f249c8097ea63c2169dd1aa55de1e8fecbe63412a9bc50816e87b761"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d47ae48db0b2dcf70bc8a3bc72b3de86e2a590fc299fdbbb15af320d2659de"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d827176898a2b0b09694fbd1088c7a31836d1a505c243811c87ae53a3f6273c1"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3562b06567c06439d8b447037bb655ef69786c590b1de86c7ab81efe1c9c15d8"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4e874cbf8caf8959d2adf572a78bba17cb0e9d7e51bb83d86a3697b686a0ab4d"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6809a00deaf3810e38c628e9a33271892f815b853605a936e2e9e5129762356c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:33776e945d89b29251b33a7e7d006ce86447b2cfd66db5e5ded4e5cd0340585c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eaeed7abfb5d64c539e2db173f63631455f1196c37d9d8d873fc316470dfbacd"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e91d635961bec2d8f19dfeb41a539eb94bd073f075ca6dae6c8dc0ee89ad6f91"}, + {file = "aiohttp-3.8.5-cp39-cp39-win32.whl", hash = "sha256:00ad4b6f185ec67f3e6562e8a1d2b69660be43070bd0ef6fcec5211154c7df67"}, + {file = "aiohttp-3.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:c0a9034379a37ae42dea7ac1e048352d96286626251862e448933c0f59cbd79c"}, + {file = "aiohttp-3.8.5.tar.gz", hash = "sha256:b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"}, diff --git a/services/worker/poetry.lock b/services/worker/poetry.lock index af2ec8a8..12de9f24 100644 --- a/services/worker/poetry.lock +++ b/services/worker/poetry.lock @@ -17 +17 @@ name = "aiohttp" -version = "3.8.4" +version = "3.8.5" @@ -23,87 +23,87 @@ files = [ - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:5ce45967538fb747370308d3145aa68a074bdecb4f3a300869590f725ced69c1"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:b744c33b6f14ca26b7544e8d8aadff6b765a80ad6164fb1a430bbadd593dfb1a"}, - {file = "aiohttp-3.8.4-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:1a45865451439eb320784918617ba54b7a377e3501fb70402ab84d38c2cd891b"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a86d42d7cba1cec432d47ab13b6637bee393a10f664c425ea7b305d1301ca1a3"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee3c36df21b5714d49fc4580247947aa64bcbe2939d1b77b4c8dcb8f6c9faecc"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:176a64b24c0935869d5bbc4c96e82f89f643bcdf08ec947701b9dbb3c956b7dd"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c844fd628851c0bc309f3c801b3a3d58ce430b2ce5b359cd918a5a76d0b20cb5"}, - {file = "aiohttp-3.8.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5393fb786a9e23e4799fec788e7e735de18052f83682ce2dfcabaf1c00c2c08e"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:e4b09863aae0dc965c3ef36500d891a3ff495a2ea9ae9171e4519963c12ceefd"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:adfbc22e87365a6e564c804c58fc44ff7727deea782d175c33602737b7feadb6"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:147ae376f14b55f4f3c2b118b95be50a369b89b38a971e80a17c3fd623f280c9"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:eafb3e874816ebe2a92f5e155f17260034c8c341dad1df25672fb710627c6949"}, - {file = "aiohttp-3.8.4-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:c6cc15d58053c76eacac5fa9152d7d84b8d67b3fde92709195cb984cfb3475ea"}, - {file = "aiohttp-3.8.4-cp310-cp310-win32.whl", hash = "sha256:59f029a5f6e2d679296db7bee982bb3d20c088e52a2977e3175faf31d6fb75d1"}, - {file = "aiohttp-3.8.4-cp310-cp310-win_amd64.whl", hash = "sha256:fe7ba4a51f33ab275515f66b0a236bcde4fb5561498fe8f898d4e549b2e4509f"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3d8ef1a630519a26d6760bc695842579cb09e373c5f227a21b67dc3eb16cfea4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5b3f2e06a512e94722886c0827bee9807c86a9f698fac6b3aee841fab49bbfb4"}, - {file = "aiohttp-3.8.4-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:3a80464982d41b1fbfe3154e440ba4904b71c1a53e9cd584098cd41efdb188ef"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b631e26df63e52f7cce0cce6507b7a7f1bc9b0c501fcde69742130b32e8782f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3f43255086fe25e36fd5ed8f2ee47477408a73ef00e804cb2b5cba4bf2ac7f5e"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4d347a172f866cd1d93126d9b239fcbe682acb39b48ee0873c73c933dd23bd0f"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a3fec6a4cb5551721cdd70473eb009d90935b4063acc5f40905d40ecfea23e05"}, - {file = "aiohttp-3.8.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:80a37fe8f7c1e6ce8f2d9c411676e4bc633a8462844e38f46156d07a7d401654"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:d1e6a862b76f34395a985b3cd39a0d949ca80a70b6ebdea37d3ab39ceea6698a"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:cd468460eefef601ece4428d3cf4562459157c0f6523db89365202c31b6daebb"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:618c901dd3aad4ace71dfa0f5e82e88b46ef57e3239fc7027773cb6d4ed53531"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:652b1bff4f15f6287550b4670546a2947f2a4575b6c6dff7760eafb22eacbf0b"}, - {file = "aiohttp-3.8.4-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:80575ba9377c5171407a06d0196b2310b679dc752d02a1fcaa2bc20b235dbf24"}, - {file = "aiohttp-3.8.4-cp311-cp311-win32.whl", hash = "sha256:bbcf1a76cf6f6dacf2c7f4d2ebd411438c275faa1dc0c68e46eb84eebd05dd7d"}, - {file = "aiohttp-3.8.4-cp311-cp311-win_amd64.whl", hash = "sha256:6e74dd54f7239fcffe07913ff8b964e28b712f09846e20de78676ce2a3dc0bfc"}, - {file = "aiohttp-3.8.4-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:880e15bb6dad90549b43f796b391cfffd7af373f4646784795e20d92606b7a51"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bb96fa6b56bb536c42d6a4a87dfca570ff8e52de2d63cabebfd6fb67049c34b6"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4a6cadebe132e90cefa77e45f2d2f1a4b2ce5c6b1bfc1656c1ddafcfe4ba8131"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f352b62b45dff37b55ddd7b9c0c8672c4dd2eb9c0f9c11d395075a84e2c40f75"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ab43061a0c81198d88f39aaf90dae9a7744620978f7ef3e3708339b8ed2ef01"}, - {file = "aiohttp-3.8.4-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c9cb1565a7ad52e096a6988e2ee0397f72fe056dadf75d17fa6b5aebaea05622"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:1b3ea7edd2d24538959c1c1abf97c744d879d4e541d38305f9bd7d9b10c9ec41"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:7c7837fe8037e96b6dd5cfcf47263c1620a9d332a87ec06a6ca4564e56bd0f36"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:3b90467ebc3d9fa5b0f9b6489dfb2c304a1db7b9946fa92aa76a831b9d587e99"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:cab9401de3ea52b4b4c6971db5fb5c999bd4260898af972bf23de1c6b5dd9d71"}, - {file = "aiohttp-3.8.4-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:d1f9282c5f2b5e241034a009779e7b2a1aa045f667ff521e7948ea9b56e0c5ff"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win32.whl", hash = "sha256:5e14f25765a578a0a634d5f0cd1e2c3f53964553a00347998dfdf96b8137f777"}, - {file = "aiohttp-3.8.4-cp36-cp36m-win_amd64.whl", hash = "sha256:4c745b109057e7e5f1848c689ee4fb3a016c8d4d92da52b312f8a509f83aa05e"}, - {file = "aiohttp-3.8.4-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:aede4df4eeb926c8fa70de46c340a1bc2c6079e1c40ccf7b0eae1313ffd33519"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4ddaae3f3d32fc2cb4c53fab020b69a05c8ab1f02e0e59665c6f7a0d3a5be54f"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:c4eb3b82ca349cf6fadcdc7abcc8b3a50ab74a62e9113ab7a8ebc268aad35bb9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9bcb89336efa095ea21b30f9e686763f2be4478f1b0a616969551982c4ee4c3b"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c08e8ed6fa3d477e501ec9db169bfac8140e830aa372d77e4a43084d8dd91ab"}, - {file = "aiohttp-3.8.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c6cd05ea06daca6ad6a4ca3ba7fe7dc5b5de063ff4daec6170ec0f9979f6c332"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:b7a00a9ed8d6e725b55ef98b1b35c88013245f35f68b1b12c5cd4100dddac333"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:de04b491d0e5007ee1b63a309956eaed959a49f5bb4e84b26c8f5d49de140fa9"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:40653609b3bf50611356e6b6554e3a331f6879fa7116f3959b20e3528783e699"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:dbf3a08a06b3f433013c143ebd72c15cac33d2914b8ea4bea7ac2c23578815d6"}, - {file = "aiohttp-3.8.4-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:854f422ac44af92bfe172d8e73229c270dc09b96535e8a548f99c84f82dde241"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win32.whl", hash = "sha256:aeb29c84bb53a84b1a81c6c09d24cf33bb8432cc5c39979021cc0f98c1292a1a"}, - {file = "aiohttp-3.8.4-cp37-cp37m-win_amd64.whl", hash = "sha256:db3fc6120bce9f446d13b1b834ea5b15341ca9ff3f335e4a951a6ead31105480"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:fabb87dd8850ef0f7fe2b366d44b77d7e6fa2ea87861ab3844da99291e81e60f"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:91f6d540163f90bbaef9387e65f18f73ffd7c79f5225ac3d3f61df7b0d01ad15"}, - {file = "aiohttp-3.8.4-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:d265f09a75a79a788237d7f9054f929ced2e69eb0bb79de3798c468d8a90f945"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3d89efa095ca7d442a6d0cbc755f9e08190ba40069b235c9886a8763b03785da"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4dac314662f4e2aa5009977b652d9b8db7121b46c38f2073bfeed9f4049732cd"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:fe11310ae1e4cd560035598c3f29d86cef39a83d244c7466f95c27ae04850f10"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6ddb2a2026c3f6a68c3998a6c47ab6795e4127315d2e35a09997da21865757f8"}, - {file = "aiohttp-3.8.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e75b89ac3bd27d2d043b234aa7b734c38ba1b0e43f07787130a0ecac1e12228a"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:6e601588f2b502c93c30cd5a45bfc665faaf37bbe835b7cfd461753068232074"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:a5d794d1ae64e7753e405ba58e08fcfa73e3fad93ef9b7e31112ef3c9a0efb52"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a1f4689c9a1462f3df0a1f7e797791cd6b124ddbee2b570d34e7f38ade0e2c71"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:3032dcb1c35bc330134a5b8a5d4f68c1a87252dfc6e1262c65a7e30e62298275"}, - {file = "aiohttp-3.8.4-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:8189c56eb0ddbb95bfadb8f60ea1b22fcfa659396ea36f6adcc521213cd7b44d"}, - {file = "aiohttp-3.8.4-cp38-cp38-win32.whl", hash = "sha256:33587f26dcee66efb2fff3c177547bd0449ab7edf1b73a7f5dea1e38609a0c54"}, - {file = "aiohttp-3.8.4-cp38-cp38-win_amd64.whl", hash = "sha256:e595432ac259af2d4630008bf638873d69346372d38255774c0e286951e8b79f"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:5a7bdf9e57126dc345b683c3632e8ba317c31d2a41acd5800c10640387d193ed"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:22f6eab15b6db242499a16de87939a342f5a950ad0abaf1532038e2ce7d31567"}, - {file = "aiohttp-3.8.4-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:7235604476a76ef249bd64cb8274ed24ccf6995c4a8b51a237005ee7a57e8643"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ea9eb976ffdd79d0e893869cfe179a8f60f152d42cb64622fca418cd9b18dc2a"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:92c0cea74a2a81c4c76b62ea1cac163ecb20fb3ba3a75c909b9fa71b4ad493cf"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:493f5bc2f8307286b7799c6d899d388bbaa7dfa6c4caf4f97ef7521b9cb13719"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0a63f03189a6fa7c900226e3ef5ba4d3bd047e18f445e69adbd65af433add5a2"}, - {file = "aiohttp-3.8.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10c8cefcff98fd9168cdd86c4da8b84baaa90bf2da2269c6161984e6737bf23e"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:bca5f24726e2919de94f047739d0a4fc01372801a3672708260546aa2601bf57"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:03baa76b730e4e15a45f81dfe29a8d910314143414e528737f8589ec60cf7391"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:8c29c77cc57e40f84acef9bfb904373a4e89a4e8b74e71aa8075c021ec9078c2"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:03543dcf98a6619254b409be2d22b51f21ec66272be4ebda7b04e6412e4b2e14"}, - {file = "aiohttp-3.8.4-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:17b79c2963db82086229012cff93ea55196ed31f6493bb1ccd2c62f1724324e4"}, - {file = "aiohttp-3.8.4-cp39-cp39-win32.whl", hash = "sha256:34ce9f93a4a68d1272d26030655dd1b58ff727b3ed2a33d80ec433561b03d67a"}, - {file = "aiohttp-3.8.4-cp39-cp39-win_amd64.whl", hash = "sha256:41a86a69bb63bb2fc3dc9ad5ea9f10f1c9c8e282b471931be0268ddd09430b04"}, - {file = "aiohttp-3.8.4.tar.gz", hash = "sha256:bf2e1a9162c1e441bf805a1fd166e249d574ca04e03b34f97e2928769e91ab5c"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:a94159871304770da4dd371f4291b20cac04e8c94f11bdea1c3478e557fbe0d8"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:13bf85afc99ce6f9ee3567b04501f18f9f8dbbb2ea11ed1a2e079670403a7c84"}, + {file = "aiohttp-3.8.5-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2ce2ac5708501afc4847221a521f7e4b245abf5178cf5ddae9d5b3856ddb2f3a"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96943e5dcc37a6529d18766597c491798b7eb7a61d48878611298afc1fca946c"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2ad5c3c4590bb3cc28b4382f031f3783f25ec223557124c68754a2231d989e2b"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:0c413c633d0512df4dc7fd2373ec06cc6a815b7b6d6c2f208ada7e9e93a5061d"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:df72ac063b97837a80d80dec8d54c241af059cc9bb42c4de68bd5b61ceb37caa"}, + {file = "aiohttp-3.8.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c48c5c0271149cfe467c0ff8eb941279fd6e3f65c9a388c984e0e6cf57538e14"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:368a42363c4d70ab52c2c6420a57f190ed3dfaca6a1b19afda8165ee16416a82"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:7607ec3ce4993464368505888af5beb446845a014bc676d349efec0e05085905"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_ppc64le.whl", hash = "sha256:0d21c684808288a98914e5aaf2a7c6a3179d4df11d249799c32d1808e79503b5"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_s390x.whl", hash = "sha256:312fcfbacc7880a8da0ae8b6abc6cc7d752e9caa0051a53d217a650b25e9a691"}, + {file = "aiohttp-3.8.5-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:ad093e823df03bb3fd37e7dec9d4670c34f9e24aeace76808fc20a507cace825"}, + {file = "aiohttp-3.8.5-cp310-cp310-win32.whl", hash = "sha256:33279701c04351a2914e1100b62b2a7fdb9a25995c4a104259f9a5ead7ed4802"}, + {file = "aiohttp-3.8.5-cp310-cp310-win_amd64.whl", hash = "sha256:6e4a280e4b975a2e7745573e3fc9c9ba0d1194a3738ce1cbaa80626cc9b4f4df"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:ae871a964e1987a943d83d6709d20ec6103ca1eaf52f7e0d36ee1b5bebb8b9b9"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:461908b2578955045efde733719d62f2b649c404189a09a632d245b445c9c975"}, + {file = "aiohttp-3.8.5-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:72a860c215e26192379f57cae5ab12b168b75db8271f111019509a1196dfc780"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cc14be025665dba6202b6a71cfcdb53210cc498e50068bc088076624471f8bb9"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8af740fc2711ad85f1a5c034a435782fbd5b5f8314c9a3ef071424a8158d7f6b"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:841cd8233cbd2111a0ef0a522ce016357c5e3aff8a8ce92bcfa14cef890d698f"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5ed1c46fb119f1b59304b5ec89f834f07124cd23ae5b74288e364477641060ff"}, + {file = "aiohttp-3.8.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:84f8ae3e09a34f35c18fa57f015cc394bd1389bce02503fb30c394d04ee6b938"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:62360cb771707cb70a6fd114b9871d20d7dd2163a0feafe43fd115cfe4fe845e"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:23fb25a9f0a1ca1f24c0a371523546366bb642397c94ab45ad3aedf2941cec6a"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_ppc64le.whl", hash = "sha256:b0ba0d15164eae3d878260d4c4df859bbdc6466e9e6689c344a13334f988bb53"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_s390x.whl", hash = "sha256:5d20003b635fc6ae3f96d7260281dfaf1894fc3aa24d1888a9b2628e97c241e5"}, + {file = "aiohttp-3.8.5-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:0175d745d9e85c40dcc51c8f88c74bfbaef9e7afeeeb9d03c37977270303064c"}, + {file = "aiohttp-3.8.5-cp311-cp311-win32.whl", hash = "sha256:2e1b1e51b0774408f091d268648e3d57f7260c1682e7d3a63cb00d22d71bb945"}, + {file = "aiohttp-3.8.5-cp311-cp311-win_amd64.whl", hash = "sha256:043d2299f6dfdc92f0ac5e995dfc56668e1587cea7f9aa9d8a78a1b6554e5755"}, + {file = "aiohttp-3.8.5-cp36-cp36m-macosx_10_9_x86_64.whl", hash = "sha256:cae533195e8122584ec87531d6df000ad07737eaa3c81209e85c928854d2195c"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4f21e83f355643c345177a5d1d8079f9f28b5133bcd154193b799d380331d5d3"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:a7a75ef35f2df54ad55dbf4b73fe1da96f370e51b10c91f08b19603c64004acc"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e2e9839e14dd5308ee773c97115f1e0a1cb1d75cbeeee9f33824fa5144c7634"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c44e65da1de4403d0576473e2344828ef9c4c6244d65cf4b75549bb46d40b8dd"}, + {file = "aiohttp-3.8.5-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:78d847e4cde6ecc19125ccbc9bfac4a7ab37c234dd88fbb3c5c524e8e14da543"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_aarch64.whl", hash = "sha256:c7a815258e5895d8900aec4454f38dca9aed71085f227537208057853f9d13f2"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_i686.whl", hash = "sha256:8b929b9bd7cd7c3939f8bcfffa92fae7480bd1aa425279d51a89327d600c704d"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_ppc64le.whl", hash = "sha256:5db3a5b833764280ed7618393832e0853e40f3d3e9aa128ac0ba0f8278d08649"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_s390x.whl", hash = "sha256:a0215ce6041d501f3155dc219712bc41252d0ab76474615b9700d63d4d9292af"}, + {file = "aiohttp-3.8.5-cp36-cp36m-musllinux_1_1_x86_64.whl", hash = "sha256:fd1ed388ea7fbed22c4968dd64bab0198de60750a25fe8c0c9d4bef5abe13824"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win32.whl", hash = "sha256:6e6783bcc45f397fdebc118d772103d751b54cddf5b60fbcc958382d7dd64f3e"}, + {file = "aiohttp-3.8.5-cp36-cp36m-win_amd64.whl", hash = "sha256:b5411d82cddd212644cf9360879eb5080f0d5f7d809d03262c50dad02f01421a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-macosx_10_9_x86_64.whl", hash = "sha256:01d4c0c874aa4ddfb8098e85d10b5e875a70adc63db91f1ae65a4b04d3344cda"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e5980a746d547a6ba173fd5ee85ce9077e72d118758db05d229044b469d9029a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:2a482e6da906d5e6e653be079b29bc173a48e381600161c9932d89dfae5942ef"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:80bd372b8d0715c66c974cf57fe363621a02f359f1ec81cba97366948c7fc873"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1161b345c0a444ebcf46bf0a740ba5dcf50612fd3d0528883fdc0eff578006a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:cd56db019015b6acfaaf92e1ac40eb8434847d9bf88b4be4efe5bfd260aee692"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_aarch64.whl", hash = "sha256:153c2549f6c004d2754cc60603d4668899c9895b8a89397444a9c4efa282aaf4"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_i686.whl", hash = "sha256:4a01951fabc4ce26ab791da5f3f24dca6d9a6f24121746eb19756416ff2d881b"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_ppc64le.whl", hash = "sha256:bfb9162dcf01f615462b995a516ba03e769de0789de1cadc0f916265c257e5d8"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_s390x.whl", hash = "sha256:7dde0009408969a43b04c16cbbe252c4f5ef4574ac226bc8815cd7342d2028b6"}, + {file = "aiohttp-3.8.5-cp37-cp37m-musllinux_1_1_x86_64.whl", hash = "sha256:4149d34c32f9638f38f544b3977a4c24052042affa895352d3636fa8bffd030a"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win32.whl", hash = "sha256:68c5a82c8779bdfc6367c967a4a1b2aa52cd3595388bf5961a62158ee8a59e22"}, + {file = "aiohttp-3.8.5-cp37-cp37m-win_amd64.whl", hash = "sha256:2cf57fb50be5f52bda004b8893e63b48530ed9f0d6c96c84620dc92fe3cd9b9d"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_universal2.whl", hash = "sha256:eca4bf3734c541dc4f374ad6010a68ff6c6748f00451707f39857f429ca36ced"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:1274477e4c71ce8cfe6c1ec2f806d57c015ebf84d83373676036e256bc55d690"}, + {file = "aiohttp-3.8.5-cp38-cp38-macosx_11_0_arm64.whl", hash = "sha256:28c543e54710d6158fc6f439296c7865b29e0b616629767e685a7185fab4a6b9"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:910bec0c49637d213f5d9877105d26e0c4a4de2f8b1b29405ff37e9fc0ad52b8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5443910d662db951b2e58eb70b0fbe6b6e2ae613477129a5805d0b66c54b6cb7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2e460be6978fc24e3df83193dc0cc4de46c9909ed92dd47d349a452ef49325b7"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fb1558def481d84f03b45888473fc5a1f35747b5f334ef4e7a571bc0dfcb11f8"}, + {file = "aiohttp-3.8.5-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:34dd0c107799dcbbf7d48b53be761a013c0adf5571bf50c4ecad5643fe9cfcd0"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_aarch64.whl", hash = "sha256:aa1990247f02a54185dc0dff92a6904521172a22664c863a03ff64c42f9b5410"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_i686.whl", hash = "sha256:0e584a10f204a617d71d359fe383406305a4b595b333721fa50b867b4a0a1548"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_ppc64le.whl", hash = "sha256:a3cf433f127efa43fee6b90ea4c6edf6c4a17109d1d037d1a52abec84d8f2e42"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_s390x.whl", hash = "sha256:c11f5b099adafb18e65c2c997d57108b5bbeaa9eeee64a84302c0978b1ec948b"}, + {file = "aiohttp-3.8.5-cp38-cp38-musllinux_1_1_x86_64.whl", hash = "sha256:84de26ddf621d7ac4c975dbea4c945860e08cccde492269db4e1538a6a6f3c35"}, + {file = "aiohttp-3.8.5-cp38-cp38-win32.whl", hash = "sha256:ab88bafedc57dd0aab55fa728ea10c1911f7e4d8b43e1d838a1739f33712921c"}, + {file = "aiohttp-3.8.5-cp38-cp38-win_amd64.whl", hash = "sha256:5798a9aad1879f626589f3df0f8b79b3608a92e9beab10e5fda02c8a2c60db2e"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_universal2.whl", hash = "sha256:a6ce61195c6a19c785df04e71a4537e29eaa2c50fe745b732aa937c0c77169f3"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:773dd01706d4db536335fcfae6ea2440a70ceb03dd3e7378f3e815b03c97ab51"}, + {file = "aiohttp-3.8.5-cp39-cp39-macosx_11_0_arm64.whl", hash = "sha256:f83a552443a526ea38d064588613aca983d0ee0038801bc93c0c916428310c28"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f7372f7341fcc16f57b2caded43e81ddd18df53320b6f9f042acad41f8e049a"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ea353162f249c8097ea63c2169dd1aa55de1e8fecbe63412a9bc50816e87b761"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e5d47ae48db0b2dcf70bc8a3bc72b3de86e2a590fc299fdbbb15af320d2659de"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d827176898a2b0b09694fbd1088c7a31836d1a505c243811c87ae53a3f6273c1"}, + {file = "aiohttp-3.8.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:3562b06567c06439d8b447037bb655ef69786c590b1de86c7ab81efe1c9c15d8"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_aarch64.whl", hash = "sha256:4e874cbf8caf8959d2adf572a78bba17cb0e9d7e51bb83d86a3697b686a0ab4d"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_i686.whl", hash = "sha256:6809a00deaf3810e38c628e9a33271892f815b853605a936e2e9e5129762356c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_ppc64le.whl", hash = "sha256:33776e945d89b29251b33a7e7d006ce86447b2cfd66db5e5ded4e5cd0340585c"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_s390x.whl", hash = "sha256:eaeed7abfb5d64c539e2db173f63631455f1196c37d9d8d873fc316470dfbacd"}, + {file = "aiohttp-3.8.5-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:e91d635961bec2d8f19dfeb41a539eb94bd073f075ca6dae6c8dc0ee89ad6f91"}, + {file = "aiohttp-3.8.5-cp39-cp39-win32.whl", hash = "sha256:00ad4b6f185ec67f3e6562e8a1d2b69660be43070bd0ef6fcec5211154c7df67"}, + {file = "aiohttp-3.8.5-cp39-cp39-win_amd64.whl", hash = "sha256:c0a9034379a37ae42dea7ac1e048352d96286626251862e448933c0f59cbd79c"}, + {file = "aiohttp-3.8.5.tar.gz", hash = "sha256:b9552ec52cc147dbf1944ac7ac98af7602e51ea2dcd076ed194ca3c0d1c7d0bc"},
70d56e3261e95c95286d48c6c52c19a073521a20
Sylvain Lesage
2023-07-20T16:24:24
Remove datasets from the blocklist (#1534)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index f57408ce..370fee1a 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -116 +116,2 @@ parquetAndInfo: - blockedDatasets: "1aurent/icdar-2011,abdusahmbzuai/masc_dev,Abuelnour/json_1000_Scientific_Paper,ACL-OCL/acl-anthology-corpus,adamlin/daily_dialog,albertvillanova/TextCaps,alkzar90/CC6204-Hackaton-Cub-Dataset,allenai/nllb,ami,andite/riyo-tag,andreagasparini/librispeech_test_only,andreagasparini/librispeech_train_clean_only,andreagasparini/librispeech_train_other_only,angelolab/ark_example,anonymousdeepcc/DeepCC,arpelarpe/nota,asapp/slue,ashraf-ali/quran-data,ashraq/dhivehi-corpus,autoevaluator/shoes-vs-sandals-vs-boots,azraahmadi/autotrain-data-xraydatasetp2,backslashlim/LoRA-Datasets,bengaliAI/cvbn,benschill/brain-tumor-collection,beyond/chinese_clean_passages_80m,bigbio/anat_em,bigbio/ctebmsp,bigbio/distemist,bigbio/ebm_pico,bigcode/the-stack-username-to-repo,biglam/brill_iconclass,biglam/early_printed_books_font_detection,biglam/gallica_literary_fictions,biglam/nls_chapbook_illustrations,bigscience-biomedical/anat_em,bigscience-biomedical/ebm_pico,bigscience-biomedical/evidence_inference,bigscience/massive-probing-results,bigscience/P3,bigscience/xP3,bio-datasets/e3c,Biomedical-TeMU/ProfNER_corpus_classification,Biomedical-TeMU/ProfNER_corpus_NER,Biomedical-TeMU/SPACCC_Sentence-Splitter,biwi_kinect_head_pose,bnl_newspapers,bruno-cotrim/arch-max,cahya/fleurs,cahya/librivox-indonesia,cameronbc/synthtiger,Carlisle/msmarco-passage-non-abs,castorini/msmarco_v1_passage_doc2query-t5_expansions,cats_vs_dogs,ccdv/arxiv-summarization,ccdv/cnn_dailymail,ccdv/mediasum,ChaiML/AnthropicRLHFPreferenceData,Champion/vpc2020_clear_anon_speech,chenghao/scielo_books,chrisjay/mnist-adversarial-dataset,cjvt/cc_gigafida,cjvt/slo_collocations,cjvt/sloleks,clarin-pl/multiwiki_90k,cmudrc/porous-microstructure-strain-fields,CodedotAI/code_clippy,common_language,competition_math,cooleel/xfund_de,corentinm7/MyoQuant-SDH-Data,cornell_movie_dialog,CristianaLazar/librispeech500,CristianaLazar/librispeech5k_train,crystina-z/miracl-bm25-negative,crystina-z/mmarco,crystina-z/mmarco-corpus,crystina-z/msmarco-passage-dl19,crystina-z/msmarco-passage-dl20,crystina-z/no-nonself-mrtydi,crystina-z/xor-tydi-corpus,dalle-mini/YFCC100M_OpenAI_subset,darkproger/librispeech_asr,DavidVivancos/MindBigData2022_Imagenet_IN_Spct,DelgadoPanadero/Pokemon,dgrnd4/stanford_dog_dataset,dlwh/MultiLegalPile_Wikipedia_Shuffled,dog/punks,ds4sd/DocLayNet,DTU54DL/librispeech5k-augmentated-train-prepared,echarlaix/gqa-lxmert,echarlaix/vqa,echarlaix/vqa-lxmert,EfaceD/ElysiumInspirations,evidence_infer_treatment,fcakyon/gun-object-detection,florianbussmann/train_tickets-yu2020pick,galman33/gal_yair_166000_256x256_fixed,GEM/BiSECT,GEM/references,GEM/xsum,genjib/LAVISHData,gigant/african_accented_french,gigant/m-ailabs_speech_dataset_fr,gigant/romanian_speech_synthesis_0_8_1,google/fleurs,Graphcore/gqa,Graphcore/gqa-lxmert,Graphcore/vqa,Graphcore/vqa-lxmert,grasshoff/lhc_sents,guangguang/azukijpg,HamdiJr/Egyptian_hieroglyphs,hebrew_projectbenyehuda,helena-balabin/sentences,hr16/Miwano-Rag,huggan/anime-faces,HuggingFaceM4/charades,HuggingFaceM4/cm4-synthetic-testing,HuggingFaceM4/COCO,HuggingFaceM4/epic_kitchens_100,HuggingFaceM4/FairFace,HuggingFaceM4/general-pmd-synthetic-testing,HuggingFaceM4/TextCaps,HuggingFaceM4/TGIF,HuggingFaceM4/VQAv2,HuggingFaceM4/yttemporal180m,HugoLaurencon/IIIT-5K,HugoLaurencon/libri_light,HugoLaurencon/libri_light_bytes,icelab/ntrs_meta,ilhanemirhan/eee543,iluvvatar/RuREBus,imvladikon/paranames,indonesian-nlp/librivox-indonesia,inseq/divemt_attributions,Isma/librispeech_1000_seed_42,izumaru/os2-datasets,jamescalam/movielens-25m-ratings,jamescalam/unsplash-25k-images,jerpint/imagenette,jimregan/clarinpl_sejmsenat,jimregan/clarinpl_studio,joefox/Mozilla_Common_Voice_ru_test_noise,joelito/lextreme,joelito/MultiLegalPile_Wikipedia_Filtered,jpwahle/dblp-discovery-dataset,kaliansh/sdaia,Karavet/ILUR-news-text-classification-corpus,keremberke/garbage-object-detection,keremberke/nfl-object-detection,keremberke/protective-equipment-detection,keremberke/smoke-object-detection,keshan/clean-si-mc4,keshan/multispeaker-tts-sinhala,KETI-AIR/vqa,khalidalt/tydiqa-primary,KnutJaegersberg/Interpretable_word_embeddings_large_cskg,KokeCacao/oracle,kresnik/librispeech_asr_test,ksaml/Stanford_dogs,Lacito/pangloss,lafi23333/ds,LanceaKing/asvspoof2019,Lehrig/GTZAN-Collection,Lehrig/Monkey-Species-Collection,LeoFeng/MLHW_6,leviethoang/VBVLSP,Leyo/TGIF,Livingwithmachines/MapReader_Data_SIGSPATIAL_2022,lj_speech,Lykon/OnePiece,m-aliabbas/idrak_splitted_amy_1,malteos/paperswithcode-aspects,marinone94/nst_no,marinone94/nst_sv,matallanas/linustechtips-transcript-audio-mp3,matallanas/linustechtips-transcript-audio-ogg,matallanas/linustechtips-transcript-audio-wav,matchbench/dbp15k-fr-en,mathaillah/BeritaHoaks-NonHoaks,mbarnig/lb-de-fr-en-pt-12800-TTS-CORPUS,mc4,mesolitica/dbp,mesolitica/noisy-en-ms-augmentation,mesolitica/noisy-ms-en-augmentation,mesolitica/translated-SQUAD,metashift,miracl/miracl,momilla/Ethereum_transacitons,MorVentura/TRBLLmaker,mozilla-foundation/common_voice_1_0,mozilla-foundation/common_voice_10_0,mozilla-foundation/common_voice_2_0,mozilla-foundation/common_voice_3_0,mozilla-foundation/common_voice_4_0,mozilla-foundation/common_voice_5_0,mozilla-foundation/common_voice_5_1,mozilla-foundation/common_voice_6_0,mozilla-foundation/common_voice_7_0,mteb/results,mteb/tatoeba-bitext-mining,muchocine,Muennighoff/flores200,mulcyber/europarl-mono,multilingual_librispeech,Murple/mmcrsc,mwhanna/ACT-Thor,mwitiderrick/arXiv,nanom/splittedspanish3bwc,Nart/parallel-ab-ru,nateraw/auto-cats-and-dogs,nateraw/imagenet-sketch,nateraw/quickdraw,nateraw/rice-image-dataset,nateraw/rice-image-dataset-2,nateraw/wit,NeuroSenko/senko_anime_full,nev/anime-giph,nishita/ade20k-sample,NLPC-UOM/document_alignment_dataset-Sinhala-Tamil-English,nlphuji/utk_faces,nlphuji/vasr,nlphuji/winogavil,nuprl/MultiPL-E,nuprl/MultiPL-E-raw-data,nvm472001/cvdataset-layoutlmv3,nyanko7/yandere-images,openclimatefix/era5,openclimatefix/nimrod-uk-1km-validation,openslr,opus_euconst,orieg/elsevier-oa-cc-by,oyk100/ChaSES-data,parambharat/kannada_asr_corpus,parambharat/malayalam_asr_corpus,parambharat/mile_dataset,parambharat/telugu_asr_corpus,Pinguin/images,plncmm/wl-disease,plncmm/wl-family-member,polinaeterna/vox_lingua,PolyAI/evi,Poupou/Gitcoin-Grant-DataBuilder,pragnakalp/squad_v2_french_translated,qanastek/MASSIVE,qanastek/QUAERO,raghav66/whisper-gpt,RaphaelOlivier/whisper_adversarial_examples,RAYZ/Mixed-Dia,reazon-research/reazonspeech,robertmyers/pile_v2,Rodion/uno_sustainable_development_goals,rogerdehe/xfund,rohitp1/librispeech_asr_clean,rossevine/tesis,SamAct/medium_cleaned,Samip/Scotch,sanchit-gandhi/librispeech_asr_clean,SaulLu/Natural_Questions_HTML_reduced_all,SDbiaseval/dataset-dalle,SetFit/mnli,severo/wit,shanya/crd3,shunk031/cocostuff,shunk031/livedoor-news-corpus,sil-ai/audio-keyword-spotting,sil-ai/audio-kw-in-context,sjpmpzx/qm_ly_gy_soundn,sled-umich/Action-Effect,SLPL/naab-raw,SocialGrep/ten-million-reddit-answers,SocialGrep/the-reddit-climate-change-dataset,society-ethics/lila_camera_traps,Sreyan88/librispeech_asr,stas/openwebtext-10k,strombergnlp/broad_twitter_corpus,student/celebA,superb,tab_fact,TalTechNLP/VoxLingua107,tapaco,tau/mrqa,tau/scrolls,tensorcat/wikipedia-japanese,Tevatron/beir-corpus,Tevatron/wikipedia-curated-corpus,Tevatron/wikipedia-squad,Tevatron/wikipedia-squad-corpus,Tevatron/wikipedia-trivia-corpus,Tevatron/wikipedia-wq-corpus,Tevatron/xor-tydi-corpus,texturedesign/td01_natural-ground-textures,textvqa,the_pile,tilos/ASR-CCANTCSC,tner/wikiann,TomTBT/pmc_open_access_figure,TomTBT/pmc_open_access_section,Tristan/olm-october-2022-tokenized-1024-exact-dedup-only,turkic_xwmt,universal_morphologies,uva-irlab/trec-cast-2019-multi-turn,valurank/PoliticalBias_AllSides_Txt,vblagoje/wikipedia_snippets_streamed,vctk,VIMA/VIMA-Data,Voicemod/LibriTTS-100-preproc,voidful/librispeech_asr_text,web_nlg,Whispering-GPT/linustechtips-transcript-audio,winvoker/lvis,wmt/europarl,xglue,Yehor/ukrainian-tts-lada,yhavinga/ccmatrix,ywchoi/mdpi_sept10,YWjimmy/PeRFception-ScanNet,YWjimmy/PeRFception-v1,YWjimmy/PeRFception-v1-1,YWjimmy/PeRFception-v1-2,YWjimmy/PeRFception-v1-3,z-uo/female-LJSpeech-italian,ZihaoLin/zhlds,zyznull/dureader-retrieval-ranking,zyznull/msmarco-passage-corpus,zyznull/msmarco-passage-ranking" + # See https://observablehq.com/@huggingface/blocked-datasets + blockedDatasets: "1aurent/icdar-2011,Abuelnour/json_1000_Scientific_Paper,Biomedical-TeMU/ProfNER_corpus_NER,Biomedical-TeMU/ProfNER_corpus_classification,Biomedical-TeMU/SPACCC_Sentence-Splitter,Carlisle/msmarco-passage-non-abs,Champion/vpc2020_clear_anon_speech,CodedotAI/code_clippy,CristianaLazar/librispeech500,CristianaLazar/librispeech5k_train,DTU54DL/librispeech5k-augmentated-train-prepared,DavidVivancos/MindBigData2022_Imagenet_IN_Spct,DelgadoPanadero/Pokemon,EfaceD/ElysiumInspirations,GEM/BiSECT,GEM/references,GEM/xsum,Graphcore/gqa,Graphcore/gqa-lxmert,Graphcore/vqa,Graphcore/vqa-lxmert,HamdiJr/Egyptian_hieroglyphs,HuggingFaceM4/COCO,HuggingFaceM4/FairFace,HuggingFaceM4/TGIF,HuggingFaceM4/TextCaps,HuggingFaceM4/VQAv2,HuggingFaceM4/charades,HuggingFaceM4/cm4-synthetic-testing,HuggingFaceM4/epic_kitchens_100,HuggingFaceM4/general-pmd-synthetic-testing,HuggingFaceM4/yttemporal180m,HugoLaurencon/IIIT-5K,HugoLaurencon/libri_light,HugoLaurencon/libri_light_bytes,Isma/librispeech_1000_seed_42,KETI-AIR/vqa,Karavet/ILUR-news-text-classification-corpus,KnutJaegersberg/Interpretable_word_embeddings_large_cskg,KokeCacao/oracle,Lacito/pangloss,LanceaKing/asvspoof2019,Lehrig/GTZAN-Collection,Lehrig/Monkey-Species-Collection,LeoFeng/MLHW_6,Leyo/TGIF,Livingwithmachines/MapReader_Data_SIGSPATIAL_2022,MorVentura/TRBLLmaker,Muennighoff/flores200,Murple/mmcrsc,NLPC-UOM/document_alignment_dataset-Sinhala-Tamil-English,Nart/parallel-ab-ru,Pinguin/images,PolyAI/evi,Poupou/Gitcoin-Grant-DataBuilder,RAYZ/Mixed-Dia,RaphaelOlivier/whisper_adversarial_examples,Rodion/uno_sustainable_development_goals,SLPL/naab-raw,SamAct/medium_cleaned,Samip/Scotch,SaulLu/Natural_Questions_HTML_reduced_all,SetFit/mnli,SocialGrep/ten-million-reddit-answers,SocialGrep/the-reddit-climate-change-dataset,Sreyan88/librispeech_asr,TalTechNLP/VoxLingua107,Tevatron/beir-corpus,Tevatron/wikipedia-curated-corpus,Tevatron/wikipedia-squad,Tevatron/wikipedia-squad-corpus,Tevatron/wikipedia-trivia-corpus,Tevatron/wikipedia-wq-corpus,Tevatron/xor-tydi-corpus,TomTBT/pmc_open_access_figure,TomTBT/pmc_open_access_section,Tristan/olm-october-2022-tokenized-1024-exact-dedup-only,VIMA/VIMA-Data,Voicemod/LibriTTS-100-preproc,Whispering-GPT/linustechtips-transcript-audio,YWjimmy/PeRFception-ScanNet,YWjimmy/PeRFception-v1-1,YWjimmy/PeRFception-v1-2,YWjimmy/PeRFception-v1-3,Yehor/ukrainian-tts-lada,ZihaoLin/zhlds,albertvillanova/TextCaps,alkzar90/CC6204-Hackaton-Cub-Dataset,ami,andreagasparini/librispeech_test_only,andreagasparini/librispeech_train_clean_only,andreagasparini/librispeech_train_other_only,angelolab/ark_example,arpelarpe/nota,asapp/slue,ashraf-ali/quran-data,ashraq/dhivehi-corpus,autoevaluator/shoes-vs-sandals-vs-boots,azraahmadi/autotrain-data-xraydatasetp2,backslashlim/LoRA-Datasets,bengaliAI/cvbn,benschill/brain-tumor-collection,beyond/chinese_clean_passages_80m,bigbio/anat_em,bigbio/ctebmsp,bigbio/distemist,bigbio/ebm_pico,bigcode/the-stack-username-to-repo,biglam/brill_iconclass,biglam/early_printed_books_font_detection,biglam/gallica_literary_fictions,biglam/nls_chapbook_illustrations,bigscience/massive-probing-results,bio-datasets/e3c,biwi_kinect_head_pose,bnl_newspapers,bruno-cotrim/arch-max,cahya/fleurs,cahya/librivox-indonesia,cameronbc/synthtiger,castorini/msmarco_v1_passage_doc2query-t5_expansions,cats_vs_dogs,ccdv/arxiv-summarization,ccdv/cnn_dailymail,ccdv/mediasum,chenghao/scielo_books,chrisjay/mnist-adversarial-dataset,cjvt/cc_gigafida,cjvt/slo_collocations,cjvt/sloleks,clarin-pl/multiwiki_90k,cmudrc/porous-microstructure-strain-fields,common_language,competition_math,cooleel/xfund_de,corentinm7/MyoQuant-SDH-Data,cornell_movie_dialog,crystina-z/miracl-bm25-negative,crystina-z/mmarco,crystina-z/mmarco-corpus,crystina-z/msmarco-passage-dl19,crystina-z/msmarco-passage-dl20,crystina-z/no-nonself-mrtydi,crystina-z/xor-tydi-corpus,dalle-mini/YFCC100M_OpenAI_subset,darkproger/librispeech_asr,dgrnd4/stanford_dog_dataset,dlwh/MultiLegalPile_Wikipedia_Shuffled,ds4sd/DocLayNet,echarlaix/gqa-lxmert,echarlaix/vqa,echarlaix/vqa-lxmert,evidence_infer_treatment,fcakyon/gun-object-detection,florianbussmann/train_tickets-yu2020pick,galman33/gal_yair_166000_256x256_fixed,genjib/LAVISHData,gigant/african_accented_french,gigant/m-ailabs_speech_dataset_fr,gigant/romanian_speech_synthesis_0_8_1,grasshoff/lhc_sents,guangguang/azukijpg,hebrew_projectbenyehuda,hr16/Miwano-Rag,huggan/anime-faces,icelab/ntrs_meta,ilhanemirhan/eee543,iluvvatar/RuREBus,imvladikon/paranames,indonesian-nlp/librivox-indonesia,inseq/divemt_attributions,izumaru/os2-datasets,jamescalam/movielens-25m-ratings,jamescalam/unsplash-25k-images,jerpint/imagenette,jimregan/clarinpl_sejmsenat,jimregan/clarinpl_studio,joefox/Mozilla_Common_Voice_ru_test_noise,joelito/MultiLegalPile_Wikipedia_Filtered,joelito/lextreme,jpwahle/dblp-discovery-dataset,kaliansh/sdaia,keremberke/garbage-object-detection,keremberke/nfl-object-detection,keremberke/protective-equipment-detection,keremberke/smoke-object-detection,keshan/clean-si-mc4,keshan/multispeaker-tts-sinhala,khalidalt/tydiqa-primary,kresnik/librispeech_asr_test,ksaml/Stanford_dogs,lafi23333/ds,leviethoang/VBVLSP,lj_speech,m-aliabbas/idrak_splitted_amy_1,malteos/paperswithcode-aspects,marinone94/nst_no,marinone94/nst_sv,matchbench/dbp15k-fr-en,mathaillah/BeritaHoaks-NonHoaks,mbarnig/lb-de-fr-en-pt-12800-TTS-CORPUS,mesolitica/dbp,mesolitica/noisy-en-ms-augmentation,mesolitica/noisy-ms-en-augmentation,mesolitica/translated-SQUAD,metashift,miracl/miracl,momilla/Ethereum_transacitons,mozilla-foundation/common_voice_10_0,mozilla-foundation/common_voice_1_0,mozilla-foundation/common_voice_2_0,mozilla-foundation/common_voice_3_0,mozilla-foundation/common_voice_4_0,mozilla-foundation/common_voice_5_0,mozilla-foundation/common_voice_5_1,mozilla-foundation/common_voice_6_0,mozilla-foundation/common_voice_7_0,mteb/results,mteb/tatoeba-bitext-mining,muchocine,mulcyber/europarl-mono,multilingual_librispeech,mwhanna/ACT-Thor,mwitiderrick/arXiv,nateraw/auto-cats-and-dogs,nateraw/imagenet-sketch,nateraw/quickdraw,nateraw/rice-image-dataset,nateraw/rice-image-dataset-2,nateraw/wit,nev/anime-giph,nishita/ade20k-sample,nlphuji/utk_faces,nlphuji/vasr,nlphuji/winogavil,nuprl/MultiPL-E,nuprl/MultiPL-E-raw-data,nvm472001/cvdataset-layoutlmv3,nyanko7/yandere-images,openclimatefix/era5,openclimatefix/nimrod-uk-1km-validation,openslr,opus_euconst,orieg/elsevier-oa-cc-by,oyk100/ChaSES-data,parambharat/kannada_asr_corpus,parambharat/malayalam_asr_corpus,parambharat/mile_dataset,parambharat/telugu_asr_corpus,plncmm/wl-disease,plncmm/wl-family-member,polinaeterna/vox_lingua,pragnakalp/squad_v2_french_translated,qanastek/MASSIVE,raghav66/whisper-gpt,reazon-research/reazonspeech,robertmyers/pile_v2,rogerdehe/xfund,rohitp1/librispeech_asr_clean,rossevine/tesis,sanchit-gandhi/librispeech_asr_clean,severo/wit,shanya/crd3,shunk031/cocostuff,shunk031/livedoor-news-corpus,sil-ai/audio-keyword-spotting,sil-ai/audio-kw-in-context,sjpmpzx/qm_ly_gy_soundn,sled-umich/Action-Effect,society-ethics/lila_camera_traps,stas/openwebtext-10k,strombergnlp/broad_twitter_corpus,student/celebA,superb,tab_fact,tapaco,tau/mrqa,tau/scrolls,texturedesign/td01_natural-ground-textures,textvqa,tilos/ASR-CCANTCSC,tner/wikiann,turkic_xwmt,universal_morphologies,uva-irlab/trec-cast-2019-multi-turn,valurank/PoliticalBias_AllSides_Txt,vblagoje/wikipedia_snippets_streamed,vctk,voidful/librispeech_asr_text,web_nlg,winvoker/lvis,wmt/europarl,xglue,yhavinga/ccmatrix,ywchoi/mdpi_sept10,z-uo/female-LJSpeech-italian,zyznull/dureader-retrieval-ranking,zyznull/msmarco-passage-corpus,zyznull/msmarco-passage-ranking"
c4c3501355f12dbc982e119bd46c1f4b543f0de7
Quentin Lhoest
2023-07-20T13:17:35
Separate parquet metadata by split (#1533)
diff --git a/libs/libcommon/src/libcommon/viewer_utils/parquet_metadata.py b/libs/libcommon/src/libcommon/viewer_utils/parquet_metadata.py index 2c5c248c..028d54ff 100644 --- a/libs/libcommon/src/libcommon/viewer_utils/parquet_metadata.py +++ b/libs/libcommon/src/libcommon/viewer_utils/parquet_metadata.py @@ -14,3 +14,5 @@ PARQUET_METADATA_DIR_MODE = 0o755 -def create_parquet_metadata_dir(dataset: str, config: str, parquet_metadata_directory: StrPath) -> Tuple[Path, str]: - dir_path = Path(parquet_metadata_directory).resolve() / dataset / DATASET_SEPARATOR / config - parquet_metadata_dir_subpath = f"{dataset}/{DATASET_SEPARATOR}/{config}" +def create_parquet_metadata_dir( + dataset: str, config: str, split: str, parquet_metadata_directory: StrPath +) -> Tuple[Path, str]: + dir_path = Path(parquet_metadata_directory).resolve() / dataset / DATASET_SEPARATOR / config / split + parquet_metadata_dir_subpath = f"{dataset}/{DATASET_SEPARATOR}/{config}/{split}" @@ -23,0 +26 @@ def create_parquet_metadata_file( + split: str, @@ -31,0 +35 @@ def create_parquet_metadata_file( + split=split, diff --git a/services/worker/src/worker/job_runners/config/parquet_metadata.py b/services/worker/src/worker/job_runners/config/parquet_metadata.py index e739b213..a89ca497 100644 --- a/services/worker/src/worker/job_runners/config/parquet_metadata.py +++ b/services/worker/src/worker/job_runners/config/parquet_metadata.py @@ -41,0 +42 @@ def create_parquet_metadata_file_from_remote_parquet( + split=parquet_file_item["split"], diff --git a/services/worker/tests/job_runners/config/test_parquet_metadata.py b/services/worker/tests/job_runners/config/test_parquet_metadata.py index 537e90c4..2808b419 100644 --- a/services/worker/tests/job_runners/config/test_parquet_metadata.py +++ b/services/worker/tests/job_runners/config/test_parquet_metadata.py @@ -120 +120 @@ def get_job_runner( - parquet_metadata_subpath="ok/--/config_1/filename1", + parquet_metadata_subpath="ok/--/config_1/train/filename1", @@ -130 +130 @@ def get_job_runner( - parquet_metadata_subpath="ok/--/config_1/filename2", + parquet_metadata_subpath="ok/--/config_1/train/filename2",
39671925f6e172502e1b3771919fbd2237459dc4
Quentin Lhoest
2023-07-19T12:02:36
add Hub API convenience endpoint in parquet docs (#1526)
diff --git a/docs/source/parquet.mdx b/docs/source/parquet.mdx index 927a5a1e..c9a20bc3 100644 --- a/docs/source/parquet.mdx +++ b/docs/source/parquet.mdx @@ -166 +166,122 @@ Big datasets are partitioned into Parquet files (shards) of about 500MB each. Th -To read and query the Parquet files, take a look at the [Query datasets from Datasets Server](parquet_process) guide. \ No newline at end of file +To read and query the Parquet files, take a look at the [Query datasets from Datasets Server](parquet_process) guide. + +## Using the Hugging Face Hub API + +For convenience, you can directly use the Hugging Face Hub `/api/parquet` endpoint which returns the list of Parquet URLs: + +<inferencesnippet> +<python> +```python +import requests +headers = {"Authorization": f"Bearer {API_TOKEN}"} +API_URL = "https://huggingface.co/api/datasets/duorc/parquet" +def query(): + response = requests.get(API_URL, headers=headers) + return response.json() +urls = query() +``` +</python> +<js> +```js +import fetch from "node-fetch"; +async function query(data) { + const response = await fetch( + "https://huggingface.co/api/datasets/duorc/parquet", + { + headers: { Authorization: `Bearer ${API_TOKEN}` }, + method: "GET" + } + ); + const urls = await response.json(); + return urls; +} +query().then((response) => { + console.log(JSON.stringify(response)); +}); +``` +</js> +<curl> +```curl +curl https://huggingface.co/api/datasets/duorc/parquet \ + -X GET \ + -H "Authorization: Bearer ${API_TOKEN}" +``` +</curl> +</inferencesnippet> + +The endpoint response is a JSON containing a list of the dataset's files URLs in the Parquet format for each split and configuration. For example, the [`duorc`](https://huggingface.co/datasets/duorc) dataset has one Parquet file for the train split of the "ParaphraseRC" configuration (see the [List splits and configurations](./splits) guide for more details about splits and configurations). + +```json +{ + "ParaphraseRC": { + "test": [ + "https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/ParaphraseRC/duorc-test.parquet" + ], + "train": [ + "https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/ParaphraseRC/duorc-train.parquet" + ], + "validation": [ + "https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/ParaphraseRC/duorc-validation.parquet" + ] + }, + "SelfRC": { + "test": [ + "https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/SelfRC/duorc-test.parquet" + ], + "train": [ + "https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/SelfRC/duorc-train.parquet" + ], + "validation": [ + "https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/SelfRC/duorc-validation.parquet" + ] + } +} +``` + +Optionally you can specify which configuration name to return, as well as which split: + +<inferencesnippet> +<python> +```python +import requests +headers = {"Authorization": f"Bearer {API_TOKEN}"} +API_URL = "https://huggingface.co/api/datasets/duorc/parquet/ParaphraseRC/train" +def query(): + response = requests.get(API_URL, headers=headers) + return response.json() +urls = query() +``` +</python> +<js> +```js +import fetch from "node-fetch"; +async function query(data) { + const response = await fetch( + "https://huggingface.co/api/datasets/duorc/parquet/ParaphraseRC/train", + { + headers: { Authorization: `Bearer ${API_TOKEN}` }, + method: "GET" + } + ); + const urls = await response.json(); + return urls; +} +query().then((response) => { + console.log(JSON.stringify(response)); +}); +``` +</js> +<curl> +```curl +curl https://huggingface.co/api/datasets/duorc/parquet/ParaphraseRC/train \ + -X GET \ + -H "Authorization: Bearer ${API_TOKEN}" +``` +</curl> +</inferencesnippet> + +```json +["https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/ParaphraseRC/duorc-train.parquet"] +``` + +Each parquet file can also be accessed using its shard index: `https://huggingface.co/api/datasets/duorc/parquet/ParaphraseRC/train/0.parquet` redirects to `https://huggingface.co/datasets/duorc/resolve/refs%2Fconvert%2Fparquet/ParaphraseRC/duorc-train.parquet` for example.
17afb711d8e9f6cd563de6de98e598e2d5235d48
Quentin Lhoest
2023-07-19T11:35:09
fix libapi in dev docker (#1531)
diff --git a/tools/docker-compose-dev-base.yml b/tools/docker-compose-dev-base.yml index 59ed778e..96319ed2 100644 --- a/tools/docker-compose-dev-base.yml +++ b/tools/docker-compose-dev-base.yml @@ -46,0 +47 @@ services: + - ../libs/libapi/src:/src/libs/libapi/src @@ -47,0 +49,9 @@ services: + rows: + extends: + service: common + environment: + NUMBA_CACHE_DIR: ${NUMBA_CACHE_DIR-/numba-cache} + # volumes to local source directory for development + volumes: + - ../libs/libapi/src:/src/libs/libapi/src + - ../services/rows/src:/src/services/rows/src diff --git a/tools/docker-compose-dev-datasets-server.yml b/tools/docker-compose-dev-datasets-server.yml index deafb635..aabcca1e 100644 --- a/tools/docker-compose-dev-datasets-server.yml +++ b/tools/docker-compose-dev-datasets-server.yml @@ -87 +87 @@ services: - service: api + service: rows
8359f646a9679e6dc0d61e1b8346a33b1543b0cb
Andrea Francis Soria Jimenez
2023-07-18T20:49:54
Moving some /rows shared utils (#1530)
diff --git a/libs/libapi/pyproject.toml b/libs/libapi/pyproject.toml index adc11924..42d43247 100644 --- a/libs/libapi/pyproject.toml +++ b/libs/libapi/pyproject.toml @@ -51,0 +52 @@ module = [ + "datasets.*", @@ -52,0 +54 @@ module = [ + "pyarrow.*" diff --git a/libs/libapi/src/libapi/exceptions.py b/libs/libapi/src/libapi/exceptions.py index b867f9de..2f14c6fd 100644 --- a/libs/libapi/src/libapi/exceptions.py +++ b/libs/libapi/src/libapi/exceptions.py @@ -19,0 +20 @@ ApiErrorCode = Literal[ + "TransformRowsProcessingError", @@ -100,0 +102,7 @@ class ResponseNotReadyError(ApiError): +class TransformRowsProcessingError(ApiError): + """Raised when there was an error when transforming rows to list.""" + + def __init__(self, message: str, cause: Optional[BaseException] = None): + super().__init__(message, HTTPStatus.INTERNAL_SERVER_ERROR, "TransformRowsProcessingError", cause, True) + + diff --git a/libs/libapi/src/libapi/utils.py b/libs/libapi/src/libapi/utils.py index 65e7f50f..11837371 100644 --- a/libs/libapi/src/libapi/utils.py +++ b/libs/libapi/src/libapi/utils.py @@ -7,0 +8,2 @@ from typing import Any, Callable, Coroutine, List, Optional +import pyarrow as pa +from datasets import Features @@ -12 +14,3 @@ from libcommon.processing_graph import ProcessingGraph, ProcessingStep -from libcommon.utils import Priority, orjson_dumps +from libcommon.rows_utils import transform_rows +from libcommon.storage import StrPath +from libcommon.utils import Priority, RowItem, orjson_dumps @@ -16 +20,5 @@ from starlette.responses import JSONResponse, Response -from libapi.exceptions import ResponseNotFoundError, ResponseNotReadyError +from libapi.exceptions import ( + ResponseNotFoundError, + ResponseNotReadyError, + TransformRowsProcessingError, +) @@ -121,0 +130,41 @@ Endpoint = Callable[[Request], Coroutine[Any, Any, Response]] + + +def to_rows_list( + pa_table: pa.Table, + dataset: str, + config: str, + split: str, + cached_assets_base_url: str, + cached_assets_directory: StrPath, + offset: int, + features: Features, + unsupported_columns: List[str], +) -> List[RowItem]: + num_rows = pa_table.num_rows + for idx, (column, feature) in enumerate(features.items()): + if column in unsupported_columns: + pa_table = pa_table.add_column(idx, column, pa.array([None] * num_rows)) + # transform the rows, if needed (e.g. save the images or audio to the assets, and return their URL) + try: + transformed_rows = transform_rows( + dataset=dataset, + config=config, + split=split, + rows=pa_table.to_pylist(), + features=features, + cached_assets_base_url=cached_assets_base_url, + cached_assets_directory=cached_assets_directory, + offset=offset, + ) + except Exception as err: + raise TransformRowsProcessingError( + "Server error while post-processing the split rows. Please report the issue." + ) from err + return [ + { + "row_idx": idx + offset, + "row": row, + "truncated_cells": [], + } + for idx, row in enumerate(transformed_rows) + ] diff --git a/libs/libcommon/src/libcommon/parquet_utils.py b/libs/libcommon/src/libcommon/parquet_utils.py index 00105f80..98605220 100644 --- a/libs/libcommon/src/libcommon/parquet_utils.py +++ b/libs/libcommon/src/libcommon/parquet_utils.py @@ -6 +5,0 @@ from functools import lru_cache, partial -from os import PathLike @@ -19,2 +18 @@ from libcommon.simple_cache import get_previous_step_or_raise - -StrPath = Union[str, PathLike[str]] +from libcommon.storage import StrPath diff --git a/libs/libcommon/src/libcommon/rows_utils.py b/libs/libcommon/src/libcommon/rows_utils.py new file mode 100644 index 00000000..4dac9c80 --- /dev/null +++ b/libs/libcommon/src/libcommon/rows_utils.py @@ -0,0 +1,39 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2023 The HuggingFace Authors. + +from typing import List + +from datasets import Features + +from libcommon.storage import StrPath +from libcommon.utils import Row +from libcommon.viewer_utils.features import get_cell_value + + +def transform_rows( + dataset: str, + config: str, + split: str, + rows: List[Row], + features: Features, + cached_assets_base_url: str, + cached_assets_directory: StrPath, + offset: int, +) -> List[Row]: + return [ + { + featureName: get_cell_value( + dataset=dataset, + config=config, + split=split, + row_idx=offset + row_idx, + cell=row[featureName] if featureName in row else None, + featureName=featureName, + fieldType=fieldType, + assets_base_url=cached_assets_base_url, + assets_directory=cached_assets_directory, + ) + for (featureName, fieldType) in features.items() + } + for row_idx, row in enumerate(rows) + ] diff --git a/libs/libcommon/src/libcommon/utils.py b/libs/libcommon/src/libcommon/utils.py index 1fe129e7..2e5af029 100644 --- a/libs/libcommon/src/libcommon/utils.py +++ b/libs/libcommon/src/libcommon/utils.py @@ -9 +9 @@ from http import HTTPStatus -from typing import Any, Mapping, Optional, TypedDict +from typing import Any, List, Mapping, Optional, TypedDict @@ -78,0 +79,15 @@ class SplitHubFile(TypedDict): +class RowItem(TypedDict): + row_idx: int + row: Mapping[str, Any] + truncated_cells: List[str] + + +Row = Mapping[str, Any] + + +class FeatureItem(TypedDict): + feature_idx: int + name: str + type: Row + + diff --git a/libs/libcommon/src/libcommon/viewer_utils/features.py b/libs/libcommon/src/libcommon/viewer_utils/features.py index 3bd2702f..c85eb38e 100644 --- a/libs/libcommon/src/libcommon/viewer_utils/features.py +++ b/libs/libcommon/src/libcommon/viewer_utils/features.py @@ -15,0 +16 @@ from datasets import ( + Features, @@ -25,0 +27 @@ from libcommon.storage import StrPath +from libcommon.utils import FeatureItem @@ -279,0 +282,19 @@ def get_cell_value( + + +# in JSON, dicts do not carry any order, so we need to return a list +# +# > An object is an *unordered* collection of zero or more name/value pairs, where a name is a string and a value +# is a string, number, boolean, null, object, or array. +# > An array is an *ordered* sequence of zero or more values. +# > The terms "object" and "array" come from the conventions of JavaScript. +# from https://stackoverflow.com/a/7214312/7351594 / https://www.rfc-editor.org/rfc/rfc7159.html +def to_features_list(features: Features) -> List[FeatureItem]: + features_dict = features.to_dict() + return [ + { + "feature_idx": idx, + "name": name, + "type": features_dict[name], + } + for idx, name in enumerate(features) + ] diff --git a/services/rows/src/rows/routes/rows.py b/services/rows/src/rows/routes/rows.py index efa0a503..d6f9f578 100644 --- a/services/rows/src/rows/routes/rows.py +++ b/services/rows/src/rows/routes/rows.py @@ -9 +9 @@ from itertools import islice -from typing import Any, List, Literal, Mapping, Optional, TypedDict, Union +from typing import Any, List, Literal, Optional, Union @@ -25,0 +26 @@ from libapi.utils import ( + to_rows_list, @@ -28 +29 @@ from libapi.utils import ( -from libcommon.parquet_utils import Indexer, StrPath +from libcommon.parquet_utils import Indexer @@ -31,0 +33 @@ from libcommon.simple_cache import CachedArtifactError +from libcommon.storage import StrPath @@ -36 +38 @@ from libcommon.viewer_utils.asset import ( -from libcommon.viewer_utils.features import get_cell_value +from libcommon.viewer_utils.features import to_features_list @@ -46,4 +47,0 @@ MAX_ROWS = 100 -class ParquetDataProcessingError(Exception): - pass - - @@ -55,103 +52,0 @@ UNSUPPORTED_FEATURES_MAGIC_STRINGS = ["'binary'", "Audio("] -Row = Mapping[str, Any] - - -class FeatureItem(TypedDict): - feature_idx: int - name: str - type: Row - - -# in JSON, dicts do not carry any order, so we need to return a list -# -# > An object is an *unordered* collection of zero or more name/value pairs, where a name is a string and a value -# is a string, number, boolean, null, object, or array. -# > An array is an *ordered* sequence of zero or more values. -# > The terms "object" and "array" come from the conventions of JavaScript. -# from https://stackoverflow.com/a/7214312/7351594 / https://www.rfc-editor.org/rfc/rfc7159.html -def to_features_list(features: Features) -> List[FeatureItem]: - features_dict = features.to_dict() - return [ - { - "feature_idx": idx, - "name": name, - "type": features_dict[name], - } - for idx, name in enumerate(features) - ] - - -class RowItem(TypedDict): - row_idx: int - row: Mapping[str, Any] - truncated_cells: List[str] - - -def to_rows_list( - pa_table: pa.Table, - dataset: str, - config: str, - split: str, - cached_assets_base_url: str, - cached_assets_directory: StrPath, - offset: int, - features: Features, - unsupported_columns: List[str], -) -> List[RowItem]: - num_rows = pa_table.num_rows - for idx, (column, feature) in enumerate(features.items()): - if column in unsupported_columns: - pa_table = pa_table.add_column(idx, column, pa.array([None] * num_rows)) - # transform the rows, if needed (e.g. save the images or audio to the assets, and return their URL) - try: - transformed_rows = transform_rows( - dataset=dataset, - config=config, - split=split, - rows=pa_table.to_pylist(), - features=features, - cached_assets_base_url=cached_assets_base_url, - cached_assets_directory=cached_assets_directory, - offset=offset, - ) - except Exception as err: - raise ParquetDataProcessingError( - "Server error while post-processing the split rows. Please report the issue." - ) from err - return [ - { - "row_idx": idx + offset, - "row": row, - "truncated_cells": [], - } - for idx, row in enumerate(transformed_rows) - ] - - -def transform_rows( - dataset: str, - config: str, - split: str, - rows: List[Row], - features: Features, - cached_assets_base_url: str, - cached_assets_directory: StrPath, - offset: int, -) -> List[Row]: - return [ - { - featureName: get_cell_value( - dataset=dataset, - config=config, - split=split, - row_idx=offset + row_idx, - cell=row[featureName] if featureName in row else None, - featureName=featureName, - fieldType=fieldType, - assets_base_url=cached_assets_base_url, - assets_directory=cached_assets_directory, - ) - for (featureName, fieldType) in features.items() - } - for row_idx, row in enumerate(rows) - ] - diff --git a/services/worker/src/worker/dtos.py b/services/worker/src/worker/dtos.py index ad008a4b..859ffadb 100644 --- a/services/worker/src/worker/dtos.py +++ b/services/worker/src/worker/dtos.py @@ -7 +7 @@ from typing import Any, Dict, List, Mapping, Optional, TypedDict -from libcommon.utils import SplitHubFile +from libcommon.utils import FeatureItem, RowItem, SplitHubFile @@ -61,12 +60,0 @@ class PreviousJob(SplitItem): -class FeatureItem(TypedDict): - feature_idx: int - name: str - type: Mapping[str, Any] - - -class RowItem(TypedDict): - row_idx: int - row: Mapping[str, Any] - truncated_cells: List[str] - - diff --git a/services/worker/src/worker/job_runners/split/first_rows_from_parquet.py b/services/worker/src/worker/job_runners/split/first_rows_from_parquet.py index ba42e24e..472eae18 100644 --- a/services/worker/src/worker/job_runners/split/first_rows_from_parquet.py +++ b/services/worker/src/worker/job_runners/split/first_rows_from_parquet.py @@ -21,2 +21,2 @@ from libcommon.storage import StrPath -from libcommon.utils import JobInfo -from libcommon.viewer_utils.features import get_cell_value +from libcommon.utils import JobInfo, RowItem +from libcommon.viewer_utils.features import get_cell_value, to_features_list @@ -25,7 +25 @@ from worker.config import AppConfig, FirstRowsConfig -from worker.dtos import ( - CompleteJobResult, - JobRunnerInfo, - Row, - RowItem, - SplitFirstRowsResponse, -) +from worker.dtos import CompleteJobResult, JobRunnerInfo, Row, SplitFirstRowsResponse @@ -33 +27 @@ from worker.job_runners.split.split_job_runner import SplitJobRunner -from worker.utils import create_truncated_row_items, get_json_size, to_features_list +from worker.utils import create_truncated_row_items, get_json_size diff --git a/services/worker/src/worker/job_runners/split/first_rows_from_streaming.py b/services/worker/src/worker/job_runners/split/first_rows_from_streaming.py index a9694d04..4ae1ec0b 100644 --- a/services/worker/src/worker/job_runners/split/first_rows_from_streaming.py +++ b/services/worker/src/worker/job_runners/split/first_rows_from_streaming.py @@ -33 +33 @@ from libcommon.utils import JobInfo -from libcommon.viewer_utils.features import get_cell_value +from libcommon.viewer_utils.features import get_cell_value, to_features_list @@ -38,6 +38 @@ from worker.job_runners.split.split_job_runner import SplitJobRunnerWithDatasets -from worker.utils import ( - create_truncated_row_items, - get_json_size, - get_rows_or_raise, - to_features_list, -) +from worker.utils import create_truncated_row_items, get_json_size, get_rows_or_raise diff --git a/services/worker/src/worker/utils.py b/services/worker/src/worker/utils.py index 56308fc3..93eca415 100644 --- a/services/worker/src/worker/utils.py +++ b/services/worker/src/worker/utils.py @@ -25,8 +25 @@ import requests -from datasets import ( - Dataset, - DatasetInfo, - DownloadConfig, - Features, - IterableDataset, - load_dataset, -) +from datasets import Dataset, DatasetInfo, DownloadConfig, IterableDataset, load_dataset @@ -42 +35 @@ from libcommon.exceptions import ( -from libcommon.utils import orjson_dumps +from libcommon.utils import Row, RowItem, orjson_dumps @@ -45 +38 @@ from pyarrow.parquet import ParquetFile -from worker.dtos import FeatureItem, Row, RowItem, RowsContent +from worker.dtos import RowsContent @@ -51,19 +43,0 @@ MAX_IMAGE_PIXELS = 10_000_000_000 -# in JSON, dicts do not carry any order, so we need to return a list -# -# > An object is an *unordered* collection of zero or more name/value pairs, where a name is a string and a value -# is a string, number, boolean, null, object, or array. -# > An array is an *ordered* sequence of zero or more values. -# > The terms "object" and "array" come from the conventions of JavaScript. -# from https://stackoverflow.com/a/7214312/7351594 / https://www.rfc-editor.org/rfc/rfc7159.html -def to_features_list(features: Features) -> List[FeatureItem]: - features_dict = features.to_dict() - return [ - { - "feature_idx": idx, - "name": name, - "type": features_dict[name], - } - for idx, name in enumerate(features) - ] - -
c8746cda40438ab386304da5ab3378b1b76ee788
Andrea Francis Soria Jimenez
2023-07-18T20:20:00
Update dependencies cryptography and scipy (#1525)
diff --git a/e2e/tests/fixtures/hub.py b/e2e/tests/fixtures/hub.py index 4d960ac7..f31f1529 100644 --- a/e2e/tests/fixtures/hub.py +++ b/e2e/tests/fixtures/hub.py @@ -30,2 +30,2 @@ CI_HUB_USER_SESSION_TOKEN = ( - "oMidckPVQYumfKrAHNYKqnbacRoLaMppHRRlfNbupNahzAHCz" - "InBVbhgGosDneYXHVTKkkWygoMDxBfFUkFPIPiVWBtZtSTYIYTScnEKAJYkyGBAcbVTbokAygCCTWvH" + "ePTgRpKDHjwQZylcViCgFywZqECKWIutEsEercqQPAeADPKGt" + "CLuLEvMpNIGhruoHbnIbDhGLlpTpTlZhOygCpHzbfTHboxEwuPdlHjNlfcxFuYHvfSivfoBXQxWUUek" diff --git a/front/admin_ui/poetry.lock b/front/admin_ui/poetry.lock index 0de28c38..75d6c3b1 100644 --- a/front/admin_ui/poetry.lock +++ b/front/admin_ui/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry 1.4.0 and should not be changed by hand. +# This file is automatically @generated by Poetry and should not be changed by hand. @@ -2649 +2649 @@ name = "scipy" -version = "1.10.1" +version = "1.11.1" @@ -2653,23 +2653,21 @@ optional = false -python-versions = "<3.12,>=3.8" -files = [ - {file = "scipy-1.10.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e7354fd7527a4b0377ce55f286805b34e8c54b91be865bac273f527e1b839019"}, - {file = "scipy-1.10.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:4b3f429188c66603a1a5c549fb414e4d3bdc2a24792e061ffbd607d3d75fd84e"}, - {file = "scipy-1.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1553b5dcddd64ba9a0d95355e63fe6c3fc303a8fd77c7bc91e77d61363f7433f"}, - {file = "scipy-1.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c0ff64b06b10e35215abce517252b375e580a6125fd5fdf6421b98efbefb2d2"}, - {file = "scipy-1.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:fae8a7b898c42dffe3f7361c40d5952b6bf32d10c4569098d276b4c547905ee1"}, - {file = "scipy-1.10.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0f1564ea217e82c1bbe75ddf7285ba0709ecd503f048cb1236ae9995f64217bd"}, - {file = "scipy-1.10.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:d925fa1c81b772882aa55bcc10bf88324dadb66ff85d548c71515f6689c6dac5"}, - {file = "scipy-1.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaea0a6be54462ec027de54fca511540980d1e9eea68b2d5c1dbfe084797be35"}, - {file = "scipy-1.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15a35c4242ec5f292c3dd364a7c71a61be87a3d4ddcc693372813c0b73c9af1d"}, - {file = "scipy-1.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:43b8e0bcb877faf0abfb613d51026cd5cc78918e9530e375727bf0625c82788f"}, - {file = "scipy-1.10.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5678f88c68ea866ed9ebe3a989091088553ba12c6090244fdae3e467b1139c35"}, - {file = "scipy-1.10.1-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:39becb03541f9e58243f4197584286e339029e8908c46f7221abeea4b749fa88"}, - {file = "scipy-1.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bce5869c8d68cf383ce240e44c1d9ae7c06078a9396df68ce88a1230f93a30c1"}, - {file = "scipy-1.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07c3457ce0b3ad5124f98a86533106b643dd811dd61b548e78cf4c8786652f6f"}, - {file = "scipy-1.10.1-cp38-cp38-win_amd64.whl", hash = "sha256:049a8bbf0ad95277ffba9b3b7d23e5369cc39e66406d60422c8cfef40ccc8415"}, - {file = "scipy-1.10.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cd9f1027ff30d90618914a64ca9b1a77a431159df0e2a195d8a9e8a04c78abf9"}, - {file = "scipy-1.10.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:79c8e5a6c6ffaf3a2262ef1be1e108a035cf4f05c14df56057b64acc5bebffb6"}, - {file = "scipy-1.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51af417a000d2dbe1ec6c372dfe688e041a7084da4fdd350aeb139bd3fb55353"}, - {file = "scipy-1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b4735d6c28aad3cdcf52117e0e91d6b39acd4272f3f5cd9907c24ee931ad601"}, - {file = "scipy-1.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:7ff7f37b1bf4417baca958d254e8e2875d0cc23aaadbe65b3d5b3077b0eb23ea"}, - {file = "scipy-1.10.1.tar.gz", hash = "sha256:2cf9dfb80a7b4589ba4c40ce7588986d6d5cebc5457cad2c2880f6bc2d42f3a5"}, +python-versions = "<3.13,>=3.9" +files = [ + {file = "scipy-1.11.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:aec8c62fbe52914f9cf28d846cf0401dd80ab80788bbab909434eb336ed07c04"}, + {file = "scipy-1.11.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:3b9963798df1d8a52db41a6fc0e6fa65b1c60e85d73da27ae8bb754de4792481"}, + {file = "scipy-1.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e8eb42db36526b130dfbc417609498a6192381abc1975b91e3eb238e0b41c1a"}, + {file = "scipy-1.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:366a6a937110d80dca4f63b3f5b00cc89d36f678b2d124a01067b154e692bab1"}, + {file = "scipy-1.11.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:08d957ca82d3535b3b9ba6c8ff355d78fe975271874e2af267cb5add5bd78625"}, + {file = "scipy-1.11.1-cp310-cp310-win_amd64.whl", hash = "sha256:e866514bc2d660608447b6ba95c8900d591f2865c07cca0aa4f7ff3c4ca70f30"}, + {file = "scipy-1.11.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ba94eeef3c9caa4cea7b402a35bb02a5714ee1ee77eb98aca1eed4543beb0f4c"}, + {file = "scipy-1.11.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:512fdc18c65f76dadaca139348e525646d440220d8d05f6d21965b8d4466bccd"}, + {file = "scipy-1.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cce154372f0ebe88556ed06d7b196e9c2e0c13080ecb58d0f35062dc7cc28b47"}, + {file = "scipy-1.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4bb943010203465ac81efa392e4645265077b4d9e99b66cf3ed33ae12254173"}, + {file = "scipy-1.11.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:249cfa465c379c9bb2c20123001e151ff5e29b351cbb7f9c91587260602c58d0"}, + {file = "scipy-1.11.1-cp311-cp311-win_amd64.whl", hash = "sha256:ffb28e3fa31b9c376d0fb1f74c1f13911c8c154a760312fbee87a21eb21efe31"}, + {file = "scipy-1.11.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:39154437654260a52871dfde852adf1b93b1d1bc5dc0ffa70068f16ec0be2624"}, + {file = "scipy-1.11.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:b588311875c58d1acd4ef17c983b9f1ab5391755a47c3d70b6bd503a45bfaf71"}, + {file = "scipy-1.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d51565560565a0307ed06fa0ec4c6f21ff094947d4844d6068ed04400c72d0c3"}, + {file = "scipy-1.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b41a0f322b4eb51b078cb3441e950ad661ede490c3aca66edef66f4b37ab1877"}, + {file = "scipy-1.11.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:396fae3f8c12ad14c5f3eb40499fd06a6fef8393a6baa352a652ecd51e74e029"}, + {file = "scipy-1.11.1-cp39-cp39-win_amd64.whl", hash = "sha256:be8c962a821957fdde8c4044efdab7a140c13294997a407eaee777acf63cbf0c"}, + {file = "scipy-1.11.1.tar.gz", hash = "sha256:fb5b492fa035334fd249f0973cc79ecad8b09c604b42a127a677b45a9a3d4289"}, @@ -2679 +2677 @@ files = [ -numpy = ">=1.19.5,<1.27.0" +numpy = ">=1.21.6,<1.28.0" @@ -2682,2 +2680,2 @@ numpy = ">=1.19.5,<1.27.0" -dev = ["click", "doit (>=0.36.0)", "flake8", "mypy", "pycodestyle", "pydevtool", "rich-click", "typing_extensions"] -doc = ["matplotlib (>2)", "numpydoc", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] +dev = ["click", "cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy", "pycodestyle", "pydevtool", "rich-click", "ruff", "types-psutil", "typing_extensions"] +doc = ["jupytext", "matplotlib (>2)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] diff --git a/jobs/cache_maintenance/poetry.lock b/jobs/cache_maintenance/poetry.lock index acc68895..53723665 100644 --- a/jobs/cache_maintenance/poetry.lock +++ b/jobs/cache_maintenance/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry 1.4.0 and should not be changed by hand. +# This file is automatically @generated by Poetry and should not be changed by hand. @@ -2453 +2453 @@ name = "scipy" -version = "1.10.1" +version = "1.11.1" @@ -2457,23 +2457,21 @@ optional = false -python-versions = "<3.12,>=3.8" -files = [ - {file = "scipy-1.10.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e7354fd7527a4b0377ce55f286805b34e8c54b91be865bac273f527e1b839019"}, - {file = "scipy-1.10.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:4b3f429188c66603a1a5c549fb414e4d3bdc2a24792e061ffbd607d3d75fd84e"}, - {file = "scipy-1.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1553b5dcddd64ba9a0d95355e63fe6c3fc303a8fd77c7bc91e77d61363f7433f"}, - {file = "scipy-1.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c0ff64b06b10e35215abce517252b375e580a6125fd5fdf6421b98efbefb2d2"}, - {file = "scipy-1.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:fae8a7b898c42dffe3f7361c40d5952b6bf32d10c4569098d276b4c547905ee1"}, - {file = "scipy-1.10.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0f1564ea217e82c1bbe75ddf7285ba0709ecd503f048cb1236ae9995f64217bd"}, - {file = "scipy-1.10.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:d925fa1c81b772882aa55bcc10bf88324dadb66ff85d548c71515f6689c6dac5"}, - {file = "scipy-1.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaea0a6be54462ec027de54fca511540980d1e9eea68b2d5c1dbfe084797be35"}, - {file = "scipy-1.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15a35c4242ec5f292c3dd364a7c71a61be87a3d4ddcc693372813c0b73c9af1d"}, - {file = "scipy-1.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:43b8e0bcb877faf0abfb613d51026cd5cc78918e9530e375727bf0625c82788f"}, - {file = "scipy-1.10.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5678f88c68ea866ed9ebe3a989091088553ba12c6090244fdae3e467b1139c35"}, - {file = "scipy-1.10.1-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:39becb03541f9e58243f4197584286e339029e8908c46f7221abeea4b749fa88"}, - {file = "scipy-1.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bce5869c8d68cf383ce240e44c1d9ae7c06078a9396df68ce88a1230f93a30c1"}, - {file = "scipy-1.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07c3457ce0b3ad5124f98a86533106b643dd811dd61b548e78cf4c8786652f6f"}, - {file = "scipy-1.10.1-cp38-cp38-win_amd64.whl", hash = "sha256:049a8bbf0ad95277ffba9b3b7d23e5369cc39e66406d60422c8cfef40ccc8415"}, - {file = "scipy-1.10.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cd9f1027ff30d90618914a64ca9b1a77a431159df0e2a195d8a9e8a04c78abf9"}, - {file = "scipy-1.10.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:79c8e5a6c6ffaf3a2262ef1be1e108a035cf4f05c14df56057b64acc5bebffb6"}, - {file = "scipy-1.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51af417a000d2dbe1ec6c372dfe688e041a7084da4fdd350aeb139bd3fb55353"}, - {file = "scipy-1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b4735d6c28aad3cdcf52117e0e91d6b39acd4272f3f5cd9907c24ee931ad601"}, - {file = "scipy-1.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:7ff7f37b1bf4417baca958d254e8e2875d0cc23aaadbe65b3d5b3077b0eb23ea"}, - {file = "scipy-1.10.1.tar.gz", hash = "sha256:2cf9dfb80a7b4589ba4c40ce7588986d6d5cebc5457cad2c2880f6bc2d42f3a5"}, +python-versions = "<3.13,>=3.9" +files = [ + {file = "scipy-1.11.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:aec8c62fbe52914f9cf28d846cf0401dd80ab80788bbab909434eb336ed07c04"}, + {file = "scipy-1.11.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:3b9963798df1d8a52db41a6fc0e6fa65b1c60e85d73da27ae8bb754de4792481"}, + {file = "scipy-1.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e8eb42db36526b130dfbc417609498a6192381abc1975b91e3eb238e0b41c1a"}, + {file = "scipy-1.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:366a6a937110d80dca4f63b3f5b00cc89d36f678b2d124a01067b154e692bab1"}, + {file = "scipy-1.11.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:08d957ca82d3535b3b9ba6c8ff355d78fe975271874e2af267cb5add5bd78625"}, + {file = "scipy-1.11.1-cp310-cp310-win_amd64.whl", hash = "sha256:e866514bc2d660608447b6ba95c8900d591f2865c07cca0aa4f7ff3c4ca70f30"}, + {file = "scipy-1.11.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ba94eeef3c9caa4cea7b402a35bb02a5714ee1ee77eb98aca1eed4543beb0f4c"}, + {file = "scipy-1.11.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:512fdc18c65f76dadaca139348e525646d440220d8d05f6d21965b8d4466bccd"}, + {file = "scipy-1.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cce154372f0ebe88556ed06d7b196e9c2e0c13080ecb58d0f35062dc7cc28b47"}, + {file = "scipy-1.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4bb943010203465ac81efa392e4645265077b4d9e99b66cf3ed33ae12254173"}, + {file = "scipy-1.11.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:249cfa465c379c9bb2c20123001e151ff5e29b351cbb7f9c91587260602c58d0"}, + {file = "scipy-1.11.1-cp311-cp311-win_amd64.whl", hash = "sha256:ffb28e3fa31b9c376d0fb1f74c1f13911c8c154a760312fbee87a21eb21efe31"}, + {file = "scipy-1.11.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:39154437654260a52871dfde852adf1b93b1d1bc5dc0ffa70068f16ec0be2624"}, + {file = "scipy-1.11.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:b588311875c58d1acd4ef17c983b9f1ab5391755a47c3d70b6bd503a45bfaf71"}, + {file = "scipy-1.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d51565560565a0307ed06fa0ec4c6f21ff094947d4844d6068ed04400c72d0c3"}, + {file = "scipy-1.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b41a0f322b4eb51b078cb3441e950ad661ede490c3aca66edef66f4b37ab1877"}, + {file = "scipy-1.11.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:396fae3f8c12ad14c5f3eb40499fd06a6fef8393a6baa352a652ecd51e74e029"}, + {file = "scipy-1.11.1-cp39-cp39-win_amd64.whl", hash = "sha256:be8c962a821957fdde8c4044efdab7a140c13294997a407eaee777acf63cbf0c"}, + {file = "scipy-1.11.1.tar.gz", hash = "sha256:fb5b492fa035334fd249f0973cc79ecad8b09c604b42a127a677b45a9a3d4289"}, @@ -2483 +2481 @@ files = [ -numpy = ">=1.19.5,<1.27.0" +numpy = ">=1.21.6,<1.28.0" @@ -2486,2 +2484,2 @@ numpy = ">=1.19.5,<1.27.0" -dev = ["click", "doit (>=0.36.0)", "flake8", "mypy", "pycodestyle", "pydevtool", "rich-click", "typing_extensions"] -doc = ["matplotlib (>2)", "numpydoc", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] +dev = ["click", "cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy", "pycodestyle", "pydevtool", "rich-click", "ruff", "types-psutil", "typing_extensions"] +doc = ["jupytext", "matplotlib (>2)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] diff --git a/jobs/mongodb_migration/poetry.lock b/jobs/mongodb_migration/poetry.lock index acc68895..53723665 100644 --- a/jobs/mongodb_migration/poetry.lock +++ b/jobs/mongodb_migration/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry 1.4.0 and should not be changed by hand. +# This file is automatically @generated by Poetry and should not be changed by hand. @@ -2453 +2453 @@ name = "scipy" -version = "1.10.1" +version = "1.11.1" @@ -2457,23 +2457,21 @@ optional = false -python-versions = "<3.12,>=3.8" -files = [ - {file = "scipy-1.10.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e7354fd7527a4b0377ce55f286805b34e8c54b91be865bac273f527e1b839019"}, - {file = "scipy-1.10.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:4b3f429188c66603a1a5c549fb414e4d3bdc2a24792e061ffbd607d3d75fd84e"}, - {file = "scipy-1.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1553b5dcddd64ba9a0d95355e63fe6c3fc303a8fd77c7bc91e77d61363f7433f"}, - {file = "scipy-1.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c0ff64b06b10e35215abce517252b375e580a6125fd5fdf6421b98efbefb2d2"}, - {file = "scipy-1.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:fae8a7b898c42dffe3f7361c40d5952b6bf32d10c4569098d276b4c547905ee1"}, - {file = "scipy-1.10.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0f1564ea217e82c1bbe75ddf7285ba0709ecd503f048cb1236ae9995f64217bd"}, - {file = "scipy-1.10.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:d925fa1c81b772882aa55bcc10bf88324dadb66ff85d548c71515f6689c6dac5"}, - {file = "scipy-1.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaea0a6be54462ec027de54fca511540980d1e9eea68b2d5c1dbfe084797be35"}, - {file = "scipy-1.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15a35c4242ec5f292c3dd364a7c71a61be87a3d4ddcc693372813c0b73c9af1d"}, - {file = "scipy-1.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:43b8e0bcb877faf0abfb613d51026cd5cc78918e9530e375727bf0625c82788f"}, - {file = "scipy-1.10.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5678f88c68ea866ed9ebe3a989091088553ba12c6090244fdae3e467b1139c35"}, - {file = "scipy-1.10.1-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:39becb03541f9e58243f4197584286e339029e8908c46f7221abeea4b749fa88"}, - {file = "scipy-1.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bce5869c8d68cf383ce240e44c1d9ae7c06078a9396df68ce88a1230f93a30c1"}, - {file = "scipy-1.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07c3457ce0b3ad5124f98a86533106b643dd811dd61b548e78cf4c8786652f6f"}, - {file = "scipy-1.10.1-cp38-cp38-win_amd64.whl", hash = "sha256:049a8bbf0ad95277ffba9b3b7d23e5369cc39e66406d60422c8cfef40ccc8415"}, - {file = "scipy-1.10.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cd9f1027ff30d90618914a64ca9b1a77a431159df0e2a195d8a9e8a04c78abf9"}, - {file = "scipy-1.10.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:79c8e5a6c6ffaf3a2262ef1be1e108a035cf4f05c14df56057b64acc5bebffb6"}, - {file = "scipy-1.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51af417a000d2dbe1ec6c372dfe688e041a7084da4fdd350aeb139bd3fb55353"}, - {file = "scipy-1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b4735d6c28aad3cdcf52117e0e91d6b39acd4272f3f5cd9907c24ee931ad601"}, - {file = "scipy-1.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:7ff7f37b1bf4417baca958d254e8e2875d0cc23aaadbe65b3d5b3077b0eb23ea"}, - {file = "scipy-1.10.1.tar.gz", hash = "sha256:2cf9dfb80a7b4589ba4c40ce7588986d6d5cebc5457cad2c2880f6bc2d42f3a5"}, +python-versions = "<3.13,>=3.9" +files = [ + {file = "scipy-1.11.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:aec8c62fbe52914f9cf28d846cf0401dd80ab80788bbab909434eb336ed07c04"}, + {file = "scipy-1.11.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:3b9963798df1d8a52db41a6fc0e6fa65b1c60e85d73da27ae8bb754de4792481"}, + {file = "scipy-1.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e8eb42db36526b130dfbc417609498a6192381abc1975b91e3eb238e0b41c1a"}, + {file = "scipy-1.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:366a6a937110d80dca4f63b3f5b00cc89d36f678b2d124a01067b154e692bab1"}, + {file = "scipy-1.11.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:08d957ca82d3535b3b9ba6c8ff355d78fe975271874e2af267cb5add5bd78625"}, + {file = "scipy-1.11.1-cp310-cp310-win_amd64.whl", hash = "sha256:e866514bc2d660608447b6ba95c8900d591f2865c07cca0aa4f7ff3c4ca70f30"}, + {file = "scipy-1.11.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ba94eeef3c9caa4cea7b402a35bb02a5714ee1ee77eb98aca1eed4543beb0f4c"}, + {file = "scipy-1.11.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:512fdc18c65f76dadaca139348e525646d440220d8d05f6d21965b8d4466bccd"}, + {file = "scipy-1.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cce154372f0ebe88556ed06d7b196e9c2e0c13080ecb58d0f35062dc7cc28b47"}, + {file = "scipy-1.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4bb943010203465ac81efa392e4645265077b4d9e99b66cf3ed33ae12254173"}, + {file = "scipy-1.11.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:249cfa465c379c9bb2c20123001e151ff5e29b351cbb7f9c91587260602c58d0"}, + {file = "scipy-1.11.1-cp311-cp311-win_amd64.whl", hash = "sha256:ffb28e3fa31b9c376d0fb1f74c1f13911c8c154a760312fbee87a21eb21efe31"}, + {file = "scipy-1.11.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:39154437654260a52871dfde852adf1b93b1d1bc5dc0ffa70068f16ec0be2624"}, + {file = "scipy-1.11.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:b588311875c58d1acd4ef17c983b9f1ab5391755a47c3d70b6bd503a45bfaf71"}, + {file = "scipy-1.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d51565560565a0307ed06fa0ec4c6f21ff094947d4844d6068ed04400c72d0c3"}, + {file = "scipy-1.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b41a0f322b4eb51b078cb3441e950ad661ede490c3aca66edef66f4b37ab1877"}, + {file = "scipy-1.11.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:396fae3f8c12ad14c5f3eb40499fd06a6fef8393a6baa352a652ecd51e74e029"}, + {file = "scipy-1.11.1-cp39-cp39-win_amd64.whl", hash = "sha256:be8c962a821957fdde8c4044efdab7a140c13294997a407eaee777acf63cbf0c"}, + {file = "scipy-1.11.1.tar.gz", hash = "sha256:fb5b492fa035334fd249f0973cc79ecad8b09c604b42a127a677b45a9a3d4289"}, @@ -2483 +2481 @@ files = [ -numpy = ">=1.19.5,<1.27.0" +numpy = ">=1.21.6,<1.28.0" @@ -2486,2 +2484,2 @@ numpy = ">=1.19.5,<1.27.0" -dev = ["click", "doit (>=0.36.0)", "flake8", "mypy", "pycodestyle", "pydevtool", "rich-click", "typing_extensions"] -doc = ["matplotlib (>2)", "numpydoc", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] +dev = ["click", "cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy", "pycodestyle", "pydevtool", "rich-click", "ruff", "types-psutil", "typing_extensions"] +doc = ["jupytext", "matplotlib (>2)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] diff --git a/libs/libapi/poetry.lock b/libs/libapi/poetry.lock index c970667c..e283ac7d 100644 --- a/libs/libapi/poetry.lock +++ b/libs/libapi/poetry.lock @@ -561 +561 @@ name = "cryptography" -version = "41.0.1" +version = "41.0.2" @@ -567,19 +567,23 @@ files = [ - {file = "cryptography-41.0.1-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:f73bff05db2a3e5974a6fd248af2566134d8981fd7ab012e5dd4ddb1d9a70699"}, - {file = "cryptography-41.0.1-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:1a5472d40c8f8e91ff7a3d8ac6dfa363d8e3138b961529c996f3e2df0c7a411a"}, - {file = "cryptography-41.0.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7fa01527046ca5facdf973eef2535a27fec4cb651e4daec4d043ef63f6ecd4ca"}, - {file = "cryptography-41.0.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b46e37db3cc267b4dea1f56da7346c9727e1209aa98487179ee8ebed09d21e43"}, - {file = "cryptography-41.0.1-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:d198820aba55660b4d74f7b5fd1f17db3aa5eb3e6893b0a41b75e84e4f9e0e4b"}, - {file = "cryptography-41.0.1-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:948224d76c4b6457349d47c0c98657557f429b4e93057cf5a2f71d603e2fc3a3"}, - {file = "cryptography-41.0.1-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:059e348f9a3c1950937e1b5d7ba1f8e968508ab181e75fc32b879452f08356db"}, - {file = "cryptography-41.0.1-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:b4ceb5324b998ce2003bc17d519080b4ec8d5b7b70794cbd2836101406a9be31"}, - {file = "cryptography-41.0.1-cp37-abi3-win32.whl", hash = "sha256:8f4ab7021127a9b4323537300a2acfb450124b2def3756f64dc3a3d2160ee4b5"}, - {file = "cryptography-41.0.1-cp37-abi3-win_amd64.whl", hash = "sha256:1fee5aacc7367487b4e22484d3c7e547992ed726d14864ee33c0176ae43b0d7c"}, - {file = "cryptography-41.0.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:9a6c7a3c87d595608a39980ebaa04d5a37f94024c9f24eb7d10262b92f739ddb"}, - {file = "cryptography-41.0.1-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5d092fdfedaec4cbbffbf98cddc915ba145313a6fdaab83c6e67f4e6c218e6f3"}, - {file = "cryptography-41.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:1a8e6c2de6fbbcc5e14fd27fb24414507cb3333198ea9ab1258d916f00bc3039"}, - {file = "cryptography-41.0.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:cb33ccf15e89f7ed89b235cff9d49e2e62c6c981a6061c9c8bb47ed7951190bc"}, - {file = "cryptography-41.0.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5f0ff6e18d13a3de56f609dd1fd11470918f770c6bd5d00d632076c727d35485"}, - {file = "cryptography-41.0.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7bfc55a5eae8b86a287747053140ba221afc65eb06207bedf6e019b8934b477c"}, - {file = "cryptography-41.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:eb8163f5e549a22888c18b0d53d6bb62a20510060a22fd5a995ec8a05268df8a"}, - {file = "cryptography-41.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:8dde71c4169ec5ccc1087bb7521d54251c016f126f922ab2dfe6649170a3b8c5"}, - {file = "cryptography-41.0.1.tar.gz", hash = "sha256:d34579085401d3f49762d2f7d6634d6b6c2ae1242202e860f4d26b046e3a1006"}, + {file = "cryptography-41.0.2-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:01f1d9e537f9a15b037d5d9ee442b8c22e3ae11ce65ea1f3316a41c78756b711"}, + {file = "cryptography-41.0.2-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:079347de771f9282fbfe0e0236c716686950c19dee1b76240ab09ce1624d76d7"}, + {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:439c3cc4c0d42fa999b83ded80a9a1fb54d53c58d6e59234cfe97f241e6c781d"}, + {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f14ad275364c8b4e525d018f6716537ae7b6d369c094805cae45300847e0894f"}, + {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:84609ade00a6ec59a89729e87a503c6e36af98ddcd566d5f3be52e29ba993182"}, + {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:49c3222bb8f8e800aead2e376cbef687bc9e3cb9b58b29a261210456a7783d83"}, + {file = "cryptography-41.0.2-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:d73f419a56d74fef257955f51b18d046f3506270a5fd2ac5febbfa259d6c0fa5"}, + {file = "cryptography-41.0.2-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:2a034bf7d9ca894720f2ec1d8b7b5832d7e363571828037f9e0c4f18c1b58a58"}, + {file = "cryptography-41.0.2-cp37-abi3-win32.whl", hash = "sha256:d124682c7a23c9764e54ca9ab5b308b14b18eba02722b8659fb238546de83a76"}, + {file = "cryptography-41.0.2-cp37-abi3-win_amd64.whl", hash = "sha256:9c3fe6534d59d071ee82081ca3d71eed3210f76ebd0361798c74abc2bcf347d4"}, + {file = "cryptography-41.0.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a719399b99377b218dac6cf547b6ec54e6ef20207b6165126a280b0ce97e0d2a"}, + {file = "cryptography-41.0.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:182be4171f9332b6741ee818ec27daff9fb00349f706629f5cbf417bd50e66fd"}, + {file = "cryptography-41.0.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:7a9a3bced53b7f09da251685224d6a260c3cb291768f54954e28f03ef14e3766"}, + {file = "cryptography-41.0.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:f0dc40e6f7aa37af01aba07277d3d64d5a03dc66d682097541ec4da03cc140ee"}, + {file = "cryptography-41.0.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:674b669d5daa64206c38e507808aae49904c988fa0a71c935e7006a3e1e83831"}, + {file = "cryptography-41.0.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7af244b012711a26196450d34f483357e42aeddb04128885d95a69bd8b14b69b"}, + {file = "cryptography-41.0.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:9b6d717393dbae53d4e52684ef4f022444fc1cce3c48c38cb74fca29e1f08eaa"}, + {file = "cryptography-41.0.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:192255f539d7a89f2102d07d7375b1e0a81f7478925b3bc2e0549ebf739dae0e"}, + {file = "cryptography-41.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f772610fe364372de33d76edcd313636a25684edb94cee53fd790195f5989d14"}, + {file = "cryptography-41.0.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:b332cba64d99a70c1e0836902720887fb4529ea49ea7f5462cf6640e095e11d2"}, + {file = "cryptography-41.0.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:9a6673c1828db6270b76b22cc696f40cde9043eb90373da5c2f8f2158957f42f"}, + {file = "cryptography-41.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:342f3767e25876751e14f8459ad85e77e660537ca0a066e10e75df9c9e9099f0"}, + {file = "cryptography-41.0.2.tar.gz", hash = "sha256:7d230bf856164de164ecb615ccc14c7fc6de6906ddd5b491f3af90d3514c925c"}, @@ -1869,0 +1874 @@ files = [ + {file = "Pillow-10.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:bc2ec7c7b5d66b8ec9ce9f720dbb5fa4bace0f545acd34870eff4a369b44bf37"}, @@ -1878,0 +1884 @@ files = [ + {file = "Pillow-10.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:1ce91b6ec08d866b14413d3f0bbdea7e24dfdc8e59f562bb77bc3fe60b6144ca"}, @@ -2715 +2720,0 @@ files = [ - {file = "soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc"}, diff --git a/libs/libcommon/poetry.lock b/libs/libcommon/poetry.lock index aa8af056..53d04013 100644 --- a/libs/libcommon/poetry.lock +++ b/libs/libcommon/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry 1.4.0 and should not be changed by hand. +# This file is automatically @generated by Poetry and should not be changed by hand. @@ -2434 +2434 @@ name = "scipy" -version = "1.10.1" +version = "1.11.1" @@ -2438,23 +2438,21 @@ optional = false -python-versions = "<3.12,>=3.8" -files = [ - {file = "scipy-1.10.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e7354fd7527a4b0377ce55f286805b34e8c54b91be865bac273f527e1b839019"}, - {file = "scipy-1.10.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:4b3f429188c66603a1a5c549fb414e4d3bdc2a24792e061ffbd607d3d75fd84e"}, - {file = "scipy-1.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1553b5dcddd64ba9a0d95355e63fe6c3fc303a8fd77c7bc91e77d61363f7433f"}, - {file = "scipy-1.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c0ff64b06b10e35215abce517252b375e580a6125fd5fdf6421b98efbefb2d2"}, - {file = "scipy-1.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:fae8a7b898c42dffe3f7361c40d5952b6bf32d10c4569098d276b4c547905ee1"}, - {file = "scipy-1.10.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0f1564ea217e82c1bbe75ddf7285ba0709ecd503f048cb1236ae9995f64217bd"}, - {file = "scipy-1.10.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:d925fa1c81b772882aa55bcc10bf88324dadb66ff85d548c71515f6689c6dac5"}, - {file = "scipy-1.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaea0a6be54462ec027de54fca511540980d1e9eea68b2d5c1dbfe084797be35"}, - {file = "scipy-1.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15a35c4242ec5f292c3dd364a7c71a61be87a3d4ddcc693372813c0b73c9af1d"}, - {file = "scipy-1.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:43b8e0bcb877faf0abfb613d51026cd5cc78918e9530e375727bf0625c82788f"}, - {file = "scipy-1.10.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5678f88c68ea866ed9ebe3a989091088553ba12c6090244fdae3e467b1139c35"}, - {file = "scipy-1.10.1-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:39becb03541f9e58243f4197584286e339029e8908c46f7221abeea4b749fa88"}, - {file = "scipy-1.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bce5869c8d68cf383ce240e44c1d9ae7c06078a9396df68ce88a1230f93a30c1"}, - {file = "scipy-1.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07c3457ce0b3ad5124f98a86533106b643dd811dd61b548e78cf4c8786652f6f"}, - {file = "scipy-1.10.1-cp38-cp38-win_amd64.whl", hash = "sha256:049a8bbf0ad95277ffba9b3b7d23e5369cc39e66406d60422c8cfef40ccc8415"}, - {file = "scipy-1.10.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cd9f1027ff30d90618914a64ca9b1a77a431159df0e2a195d8a9e8a04c78abf9"}, - {file = "scipy-1.10.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:79c8e5a6c6ffaf3a2262ef1be1e108a035cf4f05c14df56057b64acc5bebffb6"}, - {file = "scipy-1.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51af417a000d2dbe1ec6c372dfe688e041a7084da4fdd350aeb139bd3fb55353"}, - {file = "scipy-1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b4735d6c28aad3cdcf52117e0e91d6b39acd4272f3f5cd9907c24ee931ad601"}, - {file = "scipy-1.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:7ff7f37b1bf4417baca958d254e8e2875d0cc23aaadbe65b3d5b3077b0eb23ea"}, - {file = "scipy-1.10.1.tar.gz", hash = "sha256:2cf9dfb80a7b4589ba4c40ce7588986d6d5cebc5457cad2c2880f6bc2d42f3a5"}, +python-versions = "<3.13,>=3.9" +files = [ + {file = "scipy-1.11.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:aec8c62fbe52914f9cf28d846cf0401dd80ab80788bbab909434eb336ed07c04"}, + {file = "scipy-1.11.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:3b9963798df1d8a52db41a6fc0e6fa65b1c60e85d73da27ae8bb754de4792481"}, + {file = "scipy-1.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e8eb42db36526b130dfbc417609498a6192381abc1975b91e3eb238e0b41c1a"}, + {file = "scipy-1.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:366a6a937110d80dca4f63b3f5b00cc89d36f678b2d124a01067b154e692bab1"}, + {file = "scipy-1.11.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:08d957ca82d3535b3b9ba6c8ff355d78fe975271874e2af267cb5add5bd78625"}, + {file = "scipy-1.11.1-cp310-cp310-win_amd64.whl", hash = "sha256:e866514bc2d660608447b6ba95c8900d591f2865c07cca0aa4f7ff3c4ca70f30"}, + {file = "scipy-1.11.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ba94eeef3c9caa4cea7b402a35bb02a5714ee1ee77eb98aca1eed4543beb0f4c"}, + {file = "scipy-1.11.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:512fdc18c65f76dadaca139348e525646d440220d8d05f6d21965b8d4466bccd"}, + {file = "scipy-1.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cce154372f0ebe88556ed06d7b196e9c2e0c13080ecb58d0f35062dc7cc28b47"}, + {file = "scipy-1.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4bb943010203465ac81efa392e4645265077b4d9e99b66cf3ed33ae12254173"}, + {file = "scipy-1.11.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:249cfa465c379c9bb2c20123001e151ff5e29b351cbb7f9c91587260602c58d0"}, + {file = "scipy-1.11.1-cp311-cp311-win_amd64.whl", hash = "sha256:ffb28e3fa31b9c376d0fb1f74c1f13911c8c154a760312fbee87a21eb21efe31"}, + {file = "scipy-1.11.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:39154437654260a52871dfde852adf1b93b1d1bc5dc0ffa70068f16ec0be2624"}, + {file = "scipy-1.11.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:b588311875c58d1acd4ef17c983b9f1ab5391755a47c3d70b6bd503a45bfaf71"}, + {file = "scipy-1.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d51565560565a0307ed06fa0ec4c6f21ff094947d4844d6068ed04400c72d0c3"}, + {file = "scipy-1.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b41a0f322b4eb51b078cb3441e950ad661ede490c3aca66edef66f4b37ab1877"}, + {file = "scipy-1.11.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:396fae3f8c12ad14c5f3eb40499fd06a6fef8393a6baa352a652ecd51e74e029"}, + {file = "scipy-1.11.1-cp39-cp39-win_amd64.whl", hash = "sha256:be8c962a821957fdde8c4044efdab7a140c13294997a407eaee777acf63cbf0c"}, + {file = "scipy-1.11.1.tar.gz", hash = "sha256:fb5b492fa035334fd249f0973cc79ecad8b09c604b42a127a677b45a9a3d4289"}, @@ -2464 +2462 @@ files = [ -numpy = ">=1.19.5,<1.27.0" +numpy = ">=1.21.6,<1.28.0" @@ -2467,2 +2465,2 @@ numpy = ">=1.19.5,<1.27.0" -dev = ["click", "doit (>=0.36.0)", "flake8", "mypy", "pycodestyle", "pydevtool", "rich-click", "typing_extensions"] -doc = ["matplotlib (>2)", "numpydoc", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] +dev = ["click", "cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy", "pycodestyle", "pydevtool", "rich-click", "ruff", "types-psutil", "typing_extensions"] +doc = ["jupytext", "matplotlib (>2)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] diff --git a/services/admin/poetry.lock b/services/admin/poetry.lock index bea23aef..080aa777 100644 --- a/services/admin/poetry.lock +++ b/services/admin/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry 1.4.0 and should not be changed by hand. +# This file is automatically @generated by Poetry and should not be changed by hand. @@ -2548 +2548 @@ name = "scipy" -version = "1.10.1" +version = "1.11.1" @@ -2552,23 +2552,21 @@ optional = false -python-versions = "<3.12,>=3.8" -files = [ - {file = "scipy-1.10.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e7354fd7527a4b0377ce55f286805b34e8c54b91be865bac273f527e1b839019"}, - {file = "scipy-1.10.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:4b3f429188c66603a1a5c549fb414e4d3bdc2a24792e061ffbd607d3d75fd84e"}, - {file = "scipy-1.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1553b5dcddd64ba9a0d95355e63fe6c3fc303a8fd77c7bc91e77d61363f7433f"}, - {file = "scipy-1.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c0ff64b06b10e35215abce517252b375e580a6125fd5fdf6421b98efbefb2d2"}, - {file = "scipy-1.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:fae8a7b898c42dffe3f7361c40d5952b6bf32d10c4569098d276b4c547905ee1"}, - {file = "scipy-1.10.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0f1564ea217e82c1bbe75ddf7285ba0709ecd503f048cb1236ae9995f64217bd"}, - {file = "scipy-1.10.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:d925fa1c81b772882aa55bcc10bf88324dadb66ff85d548c71515f6689c6dac5"}, - {file = "scipy-1.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaea0a6be54462ec027de54fca511540980d1e9eea68b2d5c1dbfe084797be35"}, - {file = "scipy-1.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15a35c4242ec5f292c3dd364a7c71a61be87a3d4ddcc693372813c0b73c9af1d"}, - {file = "scipy-1.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:43b8e0bcb877faf0abfb613d51026cd5cc78918e9530e375727bf0625c82788f"}, - {file = "scipy-1.10.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5678f88c68ea866ed9ebe3a989091088553ba12c6090244fdae3e467b1139c35"}, - {file = "scipy-1.10.1-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:39becb03541f9e58243f4197584286e339029e8908c46f7221abeea4b749fa88"}, - {file = "scipy-1.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bce5869c8d68cf383ce240e44c1d9ae7c06078a9396df68ce88a1230f93a30c1"}, - {file = "scipy-1.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07c3457ce0b3ad5124f98a86533106b643dd811dd61b548e78cf4c8786652f6f"}, - {file = "scipy-1.10.1-cp38-cp38-win_amd64.whl", hash = "sha256:049a8bbf0ad95277ffba9b3b7d23e5369cc39e66406d60422c8cfef40ccc8415"}, - {file = "scipy-1.10.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cd9f1027ff30d90618914a64ca9b1a77a431159df0e2a195d8a9e8a04c78abf9"}, - {file = "scipy-1.10.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:79c8e5a6c6ffaf3a2262ef1be1e108a035cf4f05c14df56057b64acc5bebffb6"}, - {file = "scipy-1.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51af417a000d2dbe1ec6c372dfe688e041a7084da4fdd350aeb139bd3fb55353"}, - {file = "scipy-1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b4735d6c28aad3cdcf52117e0e91d6b39acd4272f3f5cd9907c24ee931ad601"}, - {file = "scipy-1.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:7ff7f37b1bf4417baca958d254e8e2875d0cc23aaadbe65b3d5b3077b0eb23ea"}, - {file = "scipy-1.10.1.tar.gz", hash = "sha256:2cf9dfb80a7b4589ba4c40ce7588986d6d5cebc5457cad2c2880f6bc2d42f3a5"}, +python-versions = "<3.13,>=3.9" +files = [ + {file = "scipy-1.11.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:aec8c62fbe52914f9cf28d846cf0401dd80ab80788bbab909434eb336ed07c04"}, + {file = "scipy-1.11.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:3b9963798df1d8a52db41a6fc0e6fa65b1c60e85d73da27ae8bb754de4792481"}, + {file = "scipy-1.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e8eb42db36526b130dfbc417609498a6192381abc1975b91e3eb238e0b41c1a"}, + {file = "scipy-1.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:366a6a937110d80dca4f63b3f5b00cc89d36f678b2d124a01067b154e692bab1"}, + {file = "scipy-1.11.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:08d957ca82d3535b3b9ba6c8ff355d78fe975271874e2af267cb5add5bd78625"}, + {file = "scipy-1.11.1-cp310-cp310-win_amd64.whl", hash = "sha256:e866514bc2d660608447b6ba95c8900d591f2865c07cca0aa4f7ff3c4ca70f30"}, + {file = "scipy-1.11.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ba94eeef3c9caa4cea7b402a35bb02a5714ee1ee77eb98aca1eed4543beb0f4c"}, + {file = "scipy-1.11.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:512fdc18c65f76dadaca139348e525646d440220d8d05f6d21965b8d4466bccd"}, + {file = "scipy-1.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cce154372f0ebe88556ed06d7b196e9c2e0c13080ecb58d0f35062dc7cc28b47"}, + {file = "scipy-1.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4bb943010203465ac81efa392e4645265077b4d9e99b66cf3ed33ae12254173"}, + {file = "scipy-1.11.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:249cfa465c379c9bb2c20123001e151ff5e29b351cbb7f9c91587260602c58d0"}, + {file = "scipy-1.11.1-cp311-cp311-win_amd64.whl", hash = "sha256:ffb28e3fa31b9c376d0fb1f74c1f13911c8c154a760312fbee87a21eb21efe31"}, + {file = "scipy-1.11.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:39154437654260a52871dfde852adf1b93b1d1bc5dc0ffa70068f16ec0be2624"}, + {file = "scipy-1.11.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:b588311875c58d1acd4ef17c983b9f1ab5391755a47c3d70b6bd503a45bfaf71"}, + {file = "scipy-1.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d51565560565a0307ed06fa0ec4c6f21ff094947d4844d6068ed04400c72d0c3"}, + {file = "scipy-1.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b41a0f322b4eb51b078cb3441e950ad661ede490c3aca66edef66f4b37ab1877"}, + {file = "scipy-1.11.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:396fae3f8c12ad14c5f3eb40499fd06a6fef8393a6baa352a652ecd51e74e029"}, + {file = "scipy-1.11.1-cp39-cp39-win_amd64.whl", hash = "sha256:be8c962a821957fdde8c4044efdab7a140c13294997a407eaee777acf63cbf0c"}, + {file = "scipy-1.11.1.tar.gz", hash = "sha256:fb5b492fa035334fd249f0973cc79ecad8b09c604b42a127a677b45a9a3d4289"}, @@ -2578 +2576 @@ files = [ -numpy = ">=1.19.5,<1.27.0" +numpy = ">=1.21.6,<1.28.0" @@ -2581,2 +2579,2 @@ numpy = ">=1.19.5,<1.27.0" -dev = ["click", "doit (>=0.36.0)", "flake8", "mypy", "pycodestyle", "pydevtool", "rich-click", "typing_extensions"] -doc = ["matplotlib (>2)", "numpydoc", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] +dev = ["click", "cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy", "pycodestyle", "pydevtool", "rich-click", "ruff", "types-psutil", "typing_extensions"] +doc = ["jupytext", "matplotlib (>2)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] diff --git a/services/api/poetry.lock b/services/api/poetry.lock index c60d328a..be55a10d 100644 --- a/services/api/poetry.lock +++ b/services/api/poetry.lock @@ -561 +561 @@ name = "cryptography" -version = "41.0.1" +version = "41.0.2" @@ -567,19 +567,23 @@ files = [ - {file = "cryptography-41.0.1-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:f73bff05db2a3e5974a6fd248af2566134d8981fd7ab012e5dd4ddb1d9a70699"}, - {file = "cryptography-41.0.1-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:1a5472d40c8f8e91ff7a3d8ac6dfa363d8e3138b961529c996f3e2df0c7a411a"}, - {file = "cryptography-41.0.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7fa01527046ca5facdf973eef2535a27fec4cb651e4daec4d043ef63f6ecd4ca"}, - {file = "cryptography-41.0.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b46e37db3cc267b4dea1f56da7346c9727e1209aa98487179ee8ebed09d21e43"}, - {file = "cryptography-41.0.1-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:d198820aba55660b4d74f7b5fd1f17db3aa5eb3e6893b0a41b75e84e4f9e0e4b"}, - {file = "cryptography-41.0.1-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:948224d76c4b6457349d47c0c98657557f429b4e93057cf5a2f71d603e2fc3a3"}, - {file = "cryptography-41.0.1-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:059e348f9a3c1950937e1b5d7ba1f8e968508ab181e75fc32b879452f08356db"}, - {file = "cryptography-41.0.1-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:b4ceb5324b998ce2003bc17d519080b4ec8d5b7b70794cbd2836101406a9be31"}, - {file = "cryptography-41.0.1-cp37-abi3-win32.whl", hash = "sha256:8f4ab7021127a9b4323537300a2acfb450124b2def3756f64dc3a3d2160ee4b5"}, - {file = "cryptography-41.0.1-cp37-abi3-win_amd64.whl", hash = "sha256:1fee5aacc7367487b4e22484d3c7e547992ed726d14864ee33c0176ae43b0d7c"}, - {file = "cryptography-41.0.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:9a6c7a3c87d595608a39980ebaa04d5a37f94024c9f24eb7d10262b92f739ddb"}, - {file = "cryptography-41.0.1-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5d092fdfedaec4cbbffbf98cddc915ba145313a6fdaab83c6e67f4e6c218e6f3"}, - {file = "cryptography-41.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:1a8e6c2de6fbbcc5e14fd27fb24414507cb3333198ea9ab1258d916f00bc3039"}, - {file = "cryptography-41.0.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:cb33ccf15e89f7ed89b235cff9d49e2e62c6c981a6061c9c8bb47ed7951190bc"}, - {file = "cryptography-41.0.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5f0ff6e18d13a3de56f609dd1fd11470918f770c6bd5d00d632076c727d35485"}, - {file = "cryptography-41.0.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7bfc55a5eae8b86a287747053140ba221afc65eb06207bedf6e019b8934b477c"}, - {file = "cryptography-41.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:eb8163f5e549a22888c18b0d53d6bb62a20510060a22fd5a995ec8a05268df8a"}, - {file = "cryptography-41.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:8dde71c4169ec5ccc1087bb7521d54251c016f126f922ab2dfe6649170a3b8c5"}, - {file = "cryptography-41.0.1.tar.gz", hash = "sha256:d34579085401d3f49762d2f7d6634d6b6c2ae1242202e860f4d26b046e3a1006"}, + {file = "cryptography-41.0.2-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:01f1d9e537f9a15b037d5d9ee442b8c22e3ae11ce65ea1f3316a41c78756b711"}, + {file = "cryptography-41.0.2-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:079347de771f9282fbfe0e0236c716686950c19dee1b76240ab09ce1624d76d7"}, + {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:439c3cc4c0d42fa999b83ded80a9a1fb54d53c58d6e59234cfe97f241e6c781d"}, + {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f14ad275364c8b4e525d018f6716537ae7b6d369c094805cae45300847e0894f"}, + {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:84609ade00a6ec59a89729e87a503c6e36af98ddcd566d5f3be52e29ba993182"}, + {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:49c3222bb8f8e800aead2e376cbef687bc9e3cb9b58b29a261210456a7783d83"}, + {file = "cryptography-41.0.2-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:d73f419a56d74fef257955f51b18d046f3506270a5fd2ac5febbfa259d6c0fa5"}, + {file = "cryptography-41.0.2-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:2a034bf7d9ca894720f2ec1d8b7b5832d7e363571828037f9e0c4f18c1b58a58"}, + {file = "cryptography-41.0.2-cp37-abi3-win32.whl", hash = "sha256:d124682c7a23c9764e54ca9ab5b308b14b18eba02722b8659fb238546de83a76"}, + {file = "cryptography-41.0.2-cp37-abi3-win_amd64.whl", hash = "sha256:9c3fe6534d59d071ee82081ca3d71eed3210f76ebd0361798c74abc2bcf347d4"}, + {file = "cryptography-41.0.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a719399b99377b218dac6cf547b6ec54e6ef20207b6165126a280b0ce97e0d2a"}, + {file = "cryptography-41.0.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:182be4171f9332b6741ee818ec27daff9fb00349f706629f5cbf417bd50e66fd"}, + {file = "cryptography-41.0.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:7a9a3bced53b7f09da251685224d6a260c3cb291768f54954e28f03ef14e3766"}, + {file = "cryptography-41.0.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:f0dc40e6f7aa37af01aba07277d3d64d5a03dc66d682097541ec4da03cc140ee"}, + {file = "cryptography-41.0.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:674b669d5daa64206c38e507808aae49904c988fa0a71c935e7006a3e1e83831"}, + {file = "cryptography-41.0.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7af244b012711a26196450d34f483357e42aeddb04128885d95a69bd8b14b69b"}, + {file = "cryptography-41.0.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:9b6d717393dbae53d4e52684ef4f022444fc1cce3c48c38cb74fca29e1f08eaa"}, + {file = "cryptography-41.0.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:192255f539d7a89f2102d07d7375b1e0a81f7478925b3bc2e0549ebf739dae0e"}, + {file = "cryptography-41.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f772610fe364372de33d76edcd313636a25684edb94cee53fd790195f5989d14"}, + {file = "cryptography-41.0.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:b332cba64d99a70c1e0836902720887fb4529ea49ea7f5462cf6640e095e11d2"}, + {file = "cryptography-41.0.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:9a6673c1828db6270b76b22cc696f40cde9043eb90373da5c2f8f2158957f42f"}, + {file = "cryptography-41.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:342f3767e25876751e14f8459ad85e77e660537ca0a066e10e75df9c9e9099f0"}, + {file = "cryptography-41.0.2.tar.gz", hash = "sha256:7d230bf856164de164ecb615ccc14c7fc6de6906ddd5b491f3af90d3514c925c"}, @@ -2688 +2692 @@ name = "scipy" -version = "1.10.1" +version = "1.11.1" @@ -2692,23 +2696,21 @@ optional = false -python-versions = "<3.12,>=3.8" -files = [ - {file = "scipy-1.10.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e7354fd7527a4b0377ce55f286805b34e8c54b91be865bac273f527e1b839019"}, - {file = "scipy-1.10.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:4b3f429188c66603a1a5c549fb414e4d3bdc2a24792e061ffbd607d3d75fd84e"}, - {file = "scipy-1.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1553b5dcddd64ba9a0d95355e63fe6c3fc303a8fd77c7bc91e77d61363f7433f"}, - {file = "scipy-1.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c0ff64b06b10e35215abce517252b375e580a6125fd5fdf6421b98efbefb2d2"}, - {file = "scipy-1.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:fae8a7b898c42dffe3f7361c40d5952b6bf32d10c4569098d276b4c547905ee1"}, - {file = "scipy-1.10.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0f1564ea217e82c1bbe75ddf7285ba0709ecd503f048cb1236ae9995f64217bd"}, - {file = "scipy-1.10.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:d925fa1c81b772882aa55bcc10bf88324dadb66ff85d548c71515f6689c6dac5"}, - {file = "scipy-1.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaea0a6be54462ec027de54fca511540980d1e9eea68b2d5c1dbfe084797be35"}, - {file = "scipy-1.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15a35c4242ec5f292c3dd364a7c71a61be87a3d4ddcc693372813c0b73c9af1d"}, - {file = "scipy-1.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:43b8e0bcb877faf0abfb613d51026cd5cc78918e9530e375727bf0625c82788f"}, - {file = "scipy-1.10.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5678f88c68ea866ed9ebe3a989091088553ba12c6090244fdae3e467b1139c35"}, - {file = "scipy-1.10.1-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:39becb03541f9e58243f4197584286e339029e8908c46f7221abeea4b749fa88"}, - {file = "scipy-1.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bce5869c8d68cf383ce240e44c1d9ae7c06078a9396df68ce88a1230f93a30c1"}, - {file = "scipy-1.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07c3457ce0b3ad5124f98a86533106b643dd811dd61b548e78cf4c8786652f6f"}, - {file = "scipy-1.10.1-cp38-cp38-win_amd64.whl", hash = "sha256:049a8bbf0ad95277ffba9b3b7d23e5369cc39e66406d60422c8cfef40ccc8415"}, - {file = "scipy-1.10.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cd9f1027ff30d90618914a64ca9b1a77a431159df0e2a195d8a9e8a04c78abf9"}, - {file = "scipy-1.10.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:79c8e5a6c6ffaf3a2262ef1be1e108a035cf4f05c14df56057b64acc5bebffb6"}, - {file = "scipy-1.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51af417a000d2dbe1ec6c372dfe688e041a7084da4fdd350aeb139bd3fb55353"}, - {file = "scipy-1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b4735d6c28aad3cdcf52117e0e91d6b39acd4272f3f5cd9907c24ee931ad601"}, - {file = "scipy-1.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:7ff7f37b1bf4417baca958d254e8e2875d0cc23aaadbe65b3d5b3077b0eb23ea"}, - {file = "scipy-1.10.1.tar.gz", hash = "sha256:2cf9dfb80a7b4589ba4c40ce7588986d6d5cebc5457cad2c2880f6bc2d42f3a5"}, +python-versions = "<3.13,>=3.9" +files = [ + {file = "scipy-1.11.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:aec8c62fbe52914f9cf28d846cf0401dd80ab80788bbab909434eb336ed07c04"}, + {file = "scipy-1.11.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:3b9963798df1d8a52db41a6fc0e6fa65b1c60e85d73da27ae8bb754de4792481"}, + {file = "scipy-1.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e8eb42db36526b130dfbc417609498a6192381abc1975b91e3eb238e0b41c1a"}, + {file = "scipy-1.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:366a6a937110d80dca4f63b3f5b00cc89d36f678b2d124a01067b154e692bab1"}, + {file = "scipy-1.11.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:08d957ca82d3535b3b9ba6c8ff355d78fe975271874e2af267cb5add5bd78625"}, + {file = "scipy-1.11.1-cp310-cp310-win_amd64.whl", hash = "sha256:e866514bc2d660608447b6ba95c8900d591f2865c07cca0aa4f7ff3c4ca70f30"}, + {file = "scipy-1.11.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ba94eeef3c9caa4cea7b402a35bb02a5714ee1ee77eb98aca1eed4543beb0f4c"}, + {file = "scipy-1.11.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:512fdc18c65f76dadaca139348e525646d440220d8d05f6d21965b8d4466bccd"}, + {file = "scipy-1.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cce154372f0ebe88556ed06d7b196e9c2e0c13080ecb58d0f35062dc7cc28b47"}, + {file = "scipy-1.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4bb943010203465ac81efa392e4645265077b4d9e99b66cf3ed33ae12254173"}, + {file = "scipy-1.11.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:249cfa465c379c9bb2c20123001e151ff5e29b351cbb7f9c91587260602c58d0"}, + {file = "scipy-1.11.1-cp311-cp311-win_amd64.whl", hash = "sha256:ffb28e3fa31b9c376d0fb1f74c1f13911c8c154a760312fbee87a21eb21efe31"}, + {file = "scipy-1.11.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:39154437654260a52871dfde852adf1b93b1d1bc5dc0ffa70068f16ec0be2624"}, + {file = "scipy-1.11.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:b588311875c58d1acd4ef17c983b9f1ab5391755a47c3d70b6bd503a45bfaf71"}, + {file = "scipy-1.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d51565560565a0307ed06fa0ec4c6f21ff094947d4844d6068ed04400c72d0c3"}, + {file = "scipy-1.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b41a0f322b4eb51b078cb3441e950ad661ede490c3aca66edef66f4b37ab1877"}, + {file = "scipy-1.11.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:396fae3f8c12ad14c5f3eb40499fd06a6fef8393a6baa352a652ecd51e74e029"}, + {file = "scipy-1.11.1-cp39-cp39-win_amd64.whl", hash = "sha256:be8c962a821957fdde8c4044efdab7a140c13294997a407eaee777acf63cbf0c"}, + {file = "scipy-1.11.1.tar.gz", hash = "sha256:fb5b492fa035334fd249f0973cc79ecad8b09c604b42a127a677b45a9a3d4289"}, @@ -2718 +2720 @@ files = [ -numpy = ">=1.19.5,<1.27.0" +numpy = ">=1.21.6,<1.28.0" @@ -2721,2 +2723,2 @@ numpy = ">=1.19.5,<1.27.0" -dev = ["click", "doit (>=0.36.0)", "flake8", "mypy", "pycodestyle", "pydevtool", "rich-click", "typing_extensions"] -doc = ["matplotlib (>2)", "numpydoc", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] +dev = ["click", "cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy", "pycodestyle", "pydevtool", "rich-click", "ruff", "types-psutil", "typing_extensions"] +doc = ["jupytext", "matplotlib (>2)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] @@ -2801 +2802,0 @@ files = [ - {file = "soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc"}, diff --git a/services/rows/poetry.lock b/services/rows/poetry.lock index 31d00257..8ce03889 100644 --- a/services/rows/poetry.lock +++ b/services/rows/poetry.lock @@ -561 +561 @@ name = "cryptography" -version = "41.0.1" +version = "41.0.2" @@ -567,19 +567,23 @@ files = [ - {file = "cryptography-41.0.1-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:f73bff05db2a3e5974a6fd248af2566134d8981fd7ab012e5dd4ddb1d9a70699"}, - {file = "cryptography-41.0.1-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:1a5472d40c8f8e91ff7a3d8ac6dfa363d8e3138b961529c996f3e2df0c7a411a"}, - {file = "cryptography-41.0.1-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:7fa01527046ca5facdf973eef2535a27fec4cb651e4daec4d043ef63f6ecd4ca"}, - {file = "cryptography-41.0.1-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b46e37db3cc267b4dea1f56da7346c9727e1209aa98487179ee8ebed09d21e43"}, - {file = "cryptography-41.0.1-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:d198820aba55660b4d74f7b5fd1f17db3aa5eb3e6893b0a41b75e84e4f9e0e4b"}, - {file = "cryptography-41.0.1-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:948224d76c4b6457349d47c0c98657557f429b4e93057cf5a2f71d603e2fc3a3"}, - {file = "cryptography-41.0.1-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:059e348f9a3c1950937e1b5d7ba1f8e968508ab181e75fc32b879452f08356db"}, - {file = "cryptography-41.0.1-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:b4ceb5324b998ce2003bc17d519080b4ec8d5b7b70794cbd2836101406a9be31"}, - {file = "cryptography-41.0.1-cp37-abi3-win32.whl", hash = "sha256:8f4ab7021127a9b4323537300a2acfb450124b2def3756f64dc3a3d2160ee4b5"}, - {file = "cryptography-41.0.1-cp37-abi3-win_amd64.whl", hash = "sha256:1fee5aacc7367487b4e22484d3c7e547992ed726d14864ee33c0176ae43b0d7c"}, - {file = "cryptography-41.0.1-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:9a6c7a3c87d595608a39980ebaa04d5a37f94024c9f24eb7d10262b92f739ddb"}, - {file = "cryptography-41.0.1-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:5d092fdfedaec4cbbffbf98cddc915ba145313a6fdaab83c6e67f4e6c218e6f3"}, - {file = "cryptography-41.0.1-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:1a8e6c2de6fbbcc5e14fd27fb24414507cb3333198ea9ab1258d916f00bc3039"}, - {file = "cryptography-41.0.1-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:cb33ccf15e89f7ed89b235cff9d49e2e62c6c981a6061c9c8bb47ed7951190bc"}, - {file = "cryptography-41.0.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:5f0ff6e18d13a3de56f609dd1fd11470918f770c6bd5d00d632076c727d35485"}, - {file = "cryptography-41.0.1-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7bfc55a5eae8b86a287747053140ba221afc65eb06207bedf6e019b8934b477c"}, - {file = "cryptography-41.0.1-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:eb8163f5e549a22888c18b0d53d6bb62a20510060a22fd5a995ec8a05268df8a"}, - {file = "cryptography-41.0.1-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:8dde71c4169ec5ccc1087bb7521d54251c016f126f922ab2dfe6649170a3b8c5"}, - {file = "cryptography-41.0.1.tar.gz", hash = "sha256:d34579085401d3f49762d2f7d6634d6b6c2ae1242202e860f4d26b046e3a1006"}, + {file = "cryptography-41.0.2-cp37-abi3-macosx_10_12_universal2.whl", hash = "sha256:01f1d9e537f9a15b037d5d9ee442b8c22e3ae11ce65ea1f3316a41c78756b711"}, + {file = "cryptography-41.0.2-cp37-abi3-macosx_10_12_x86_64.whl", hash = "sha256:079347de771f9282fbfe0e0236c716686950c19dee1b76240ab09ce1624d76d7"}, + {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:439c3cc4c0d42fa999b83ded80a9a1fb54d53c58d6e59234cfe97f241e6c781d"}, + {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f14ad275364c8b4e525d018f6716537ae7b6d369c094805cae45300847e0894f"}, + {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_28_aarch64.whl", hash = "sha256:84609ade00a6ec59a89729e87a503c6e36af98ddcd566d5f3be52e29ba993182"}, + {file = "cryptography-41.0.2-cp37-abi3-manylinux_2_28_x86_64.whl", hash = "sha256:49c3222bb8f8e800aead2e376cbef687bc9e3cb9b58b29a261210456a7783d83"}, + {file = "cryptography-41.0.2-cp37-abi3-musllinux_1_1_aarch64.whl", hash = "sha256:d73f419a56d74fef257955f51b18d046f3506270a5fd2ac5febbfa259d6c0fa5"}, + {file = "cryptography-41.0.2-cp37-abi3-musllinux_1_1_x86_64.whl", hash = "sha256:2a034bf7d9ca894720f2ec1d8b7b5832d7e363571828037f9e0c4f18c1b58a58"}, + {file = "cryptography-41.0.2-cp37-abi3-win32.whl", hash = "sha256:d124682c7a23c9764e54ca9ab5b308b14b18eba02722b8659fb238546de83a76"}, + {file = "cryptography-41.0.2-cp37-abi3-win_amd64.whl", hash = "sha256:9c3fe6534d59d071ee82081ca3d71eed3210f76ebd0361798c74abc2bcf347d4"}, + {file = "cryptography-41.0.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:a719399b99377b218dac6cf547b6ec54e6ef20207b6165126a280b0ce97e0d2a"}, + {file = "cryptography-41.0.2-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:182be4171f9332b6741ee818ec27daff9fb00349f706629f5cbf417bd50e66fd"}, + {file = "cryptography-41.0.2-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:7a9a3bced53b7f09da251685224d6a260c3cb291768f54954e28f03ef14e3766"}, + {file = "cryptography-41.0.2-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:f0dc40e6f7aa37af01aba07277d3d64d5a03dc66d682097541ec4da03cc140ee"}, + {file = "cryptography-41.0.2-pp38-pypy38_pp73-macosx_10_12_x86_64.whl", hash = "sha256:674b669d5daa64206c38e507808aae49904c988fa0a71c935e7006a3e1e83831"}, + {file = "cryptography-41.0.2-pp38-pypy38_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:7af244b012711a26196450d34f483357e42aeddb04128885d95a69bd8b14b69b"}, + {file = "cryptography-41.0.2-pp38-pypy38_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:9b6d717393dbae53d4e52684ef4f022444fc1cce3c48c38cb74fca29e1f08eaa"}, + {file = "cryptography-41.0.2-pp38-pypy38_pp73-win_amd64.whl", hash = "sha256:192255f539d7a89f2102d07d7375b1e0a81f7478925b3bc2e0549ebf739dae0e"}, + {file = "cryptography-41.0.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl", hash = "sha256:f772610fe364372de33d76edcd313636a25684edb94cee53fd790195f5989d14"}, + {file = "cryptography-41.0.2-pp39-pypy39_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:b332cba64d99a70c1e0836902720887fb4529ea49ea7f5462cf6640e095e11d2"}, + {file = "cryptography-41.0.2-pp39-pypy39_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:9a6673c1828db6270b76b22cc696f40cde9043eb90373da5c2f8f2158957f42f"}, + {file = "cryptography-41.0.2-pp39-pypy39_pp73-win_amd64.whl", hash = "sha256:342f3767e25876751e14f8459ad85e77e660537ca0a066e10e75df9c9e9099f0"}, + {file = "cryptography-41.0.2.tar.gz", hash = "sha256:7d230bf856164de164ecb615ccc14c7fc6de6906ddd5b491f3af90d3514c925c"}, @@ -1926,0 +1931 @@ files = [ + {file = "Pillow-10.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:bc2ec7c7b5d66b8ec9ce9f720dbb5fa4bace0f545acd34870eff4a369b44bf37"}, @@ -1935,0 +1941 @@ files = [ + {file = "Pillow-10.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:1ce91b6ec08d866b14413d3f0bbdea7e24dfdc8e59f562bb77bc3fe60b6144ca"}, @@ -2812 +2817,0 @@ files = [ - {file = "soundfile-0.12.1-py2.py3-none-manylinux_2_17_x86_64.whl", hash = "sha256:2dc3685bed7187c072a46ab4ffddd38cef7de9ae5eb05c03df2ad569cf4dacbc"}, diff --git a/services/worker/poetry.lock b/services/worker/poetry.lock index b1e40e89..af2ec8a8 100644 --- a/services/worker/poetry.lock +++ b/services/worker/poetry.lock @@ -4328 +4328 @@ name = "scipy" -version = "1.10.1" +version = "1.11.1" @@ -4332,23 +4332,21 @@ optional = false -python-versions = "<3.12,>=3.8" -files = [ - {file = "scipy-1.10.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e7354fd7527a4b0377ce55f286805b34e8c54b91be865bac273f527e1b839019"}, - {file = "scipy-1.10.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:4b3f429188c66603a1a5c549fb414e4d3bdc2a24792e061ffbd607d3d75fd84e"}, - {file = "scipy-1.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1553b5dcddd64ba9a0d95355e63fe6c3fc303a8fd77c7bc91e77d61363f7433f"}, - {file = "scipy-1.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4c0ff64b06b10e35215abce517252b375e580a6125fd5fdf6421b98efbefb2d2"}, - {file = "scipy-1.10.1-cp310-cp310-win_amd64.whl", hash = "sha256:fae8a7b898c42dffe3f7361c40d5952b6bf32d10c4569098d276b4c547905ee1"}, - {file = "scipy-1.10.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:0f1564ea217e82c1bbe75ddf7285ba0709ecd503f048cb1236ae9995f64217bd"}, - {file = "scipy-1.10.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:d925fa1c81b772882aa55bcc10bf88324dadb66ff85d548c71515f6689c6dac5"}, - {file = "scipy-1.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:aaea0a6be54462ec027de54fca511540980d1e9eea68b2d5c1dbfe084797be35"}, - {file = "scipy-1.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15a35c4242ec5f292c3dd364a7c71a61be87a3d4ddcc693372813c0b73c9af1d"}, - {file = "scipy-1.10.1-cp311-cp311-win_amd64.whl", hash = "sha256:43b8e0bcb877faf0abfb613d51026cd5cc78918e9530e375727bf0625c82788f"}, - {file = "scipy-1.10.1-cp38-cp38-macosx_10_9_x86_64.whl", hash = "sha256:5678f88c68ea866ed9ebe3a989091088553ba12c6090244fdae3e467b1139c35"}, - {file = "scipy-1.10.1-cp38-cp38-macosx_12_0_arm64.whl", hash = "sha256:39becb03541f9e58243f4197584286e339029e8908c46f7221abeea4b749fa88"}, - {file = "scipy-1.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bce5869c8d68cf383ce240e44c1d9ae7c06078a9396df68ce88a1230f93a30c1"}, - {file = "scipy-1.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:07c3457ce0b3ad5124f98a86533106b643dd811dd61b548e78cf4c8786652f6f"}, - {file = "scipy-1.10.1-cp38-cp38-win_amd64.whl", hash = "sha256:049a8bbf0ad95277ffba9b3b7d23e5369cc39e66406d60422c8cfef40ccc8415"}, - {file = "scipy-1.10.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:cd9f1027ff30d90618914a64ca9b1a77a431159df0e2a195d8a9e8a04c78abf9"}, - {file = "scipy-1.10.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:79c8e5a6c6ffaf3a2262ef1be1e108a035cf4f05c14df56057b64acc5bebffb6"}, - {file = "scipy-1.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51af417a000d2dbe1ec6c372dfe688e041a7084da4fdd350aeb139bd3fb55353"}, - {file = "scipy-1.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1b4735d6c28aad3cdcf52117e0e91d6b39acd4272f3f5cd9907c24ee931ad601"}, - {file = "scipy-1.10.1-cp39-cp39-win_amd64.whl", hash = "sha256:7ff7f37b1bf4417baca958d254e8e2875d0cc23aaadbe65b3d5b3077b0eb23ea"}, - {file = "scipy-1.10.1.tar.gz", hash = "sha256:2cf9dfb80a7b4589ba4c40ce7588986d6d5cebc5457cad2c2880f6bc2d42f3a5"}, +python-versions = "<3.13,>=3.9" +files = [ + {file = "scipy-1.11.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:aec8c62fbe52914f9cf28d846cf0401dd80ab80788bbab909434eb336ed07c04"}, + {file = "scipy-1.11.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:3b9963798df1d8a52db41a6fc0e6fa65b1c60e85d73da27ae8bb754de4792481"}, + {file = "scipy-1.11.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3e8eb42db36526b130dfbc417609498a6192381abc1975b91e3eb238e0b41c1a"}, + {file = "scipy-1.11.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:366a6a937110d80dca4f63b3f5b00cc89d36f678b2d124a01067b154e692bab1"}, + {file = "scipy-1.11.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:08d957ca82d3535b3b9ba6c8ff355d78fe975271874e2af267cb5add5bd78625"}, + {file = "scipy-1.11.1-cp310-cp310-win_amd64.whl", hash = "sha256:e866514bc2d660608447b6ba95c8900d591f2865c07cca0aa4f7ff3c4ca70f30"}, + {file = "scipy-1.11.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:ba94eeef3c9caa4cea7b402a35bb02a5714ee1ee77eb98aca1eed4543beb0f4c"}, + {file = "scipy-1.11.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:512fdc18c65f76dadaca139348e525646d440220d8d05f6d21965b8d4466bccd"}, + {file = "scipy-1.11.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cce154372f0ebe88556ed06d7b196e9c2e0c13080ecb58d0f35062dc7cc28b47"}, + {file = "scipy-1.11.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b4bb943010203465ac81efa392e4645265077b4d9e99b66cf3ed33ae12254173"}, + {file = "scipy-1.11.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:249cfa465c379c9bb2c20123001e151ff5e29b351cbb7f9c91587260602c58d0"}, + {file = "scipy-1.11.1-cp311-cp311-win_amd64.whl", hash = "sha256:ffb28e3fa31b9c376d0fb1f74c1f13911c8c154a760312fbee87a21eb21efe31"}, + {file = "scipy-1.11.1-cp39-cp39-macosx_10_9_x86_64.whl", hash = "sha256:39154437654260a52871dfde852adf1b93b1d1bc5dc0ffa70068f16ec0be2624"}, + {file = "scipy-1.11.1-cp39-cp39-macosx_12_0_arm64.whl", hash = "sha256:b588311875c58d1acd4ef17c983b9f1ab5391755a47c3d70b6bd503a45bfaf71"}, + {file = "scipy-1.11.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d51565560565a0307ed06fa0ec4c6f21ff094947d4844d6068ed04400c72d0c3"}, + {file = "scipy-1.11.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b41a0f322b4eb51b078cb3441e950ad661ede490c3aca66edef66f4b37ab1877"}, + {file = "scipy-1.11.1-cp39-cp39-musllinux_1_1_x86_64.whl", hash = "sha256:396fae3f8c12ad14c5f3eb40499fd06a6fef8393a6baa352a652ecd51e74e029"}, + {file = "scipy-1.11.1-cp39-cp39-win_amd64.whl", hash = "sha256:be8c962a821957fdde8c4044efdab7a140c13294997a407eaee777acf63cbf0c"}, + {file = "scipy-1.11.1.tar.gz", hash = "sha256:fb5b492fa035334fd249f0973cc79ecad8b09c604b42a127a677b45a9a3d4289"}, @@ -4358 +4356 @@ files = [ -numpy = ">=1.19.5,<1.27.0" +numpy = ">=1.21.6,<1.28.0" @@ -4361,2 +4359,2 @@ numpy = ">=1.19.5,<1.27.0" -dev = ["click", "doit (>=0.36.0)", "flake8", "mypy", "pycodestyle", "pydevtool", "rich-click", "typing_extensions"] -doc = ["matplotlib (>2)", "numpydoc", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"] +dev = ["click", "cython-lint (>=0.12.2)", "doit (>=0.36.0)", "mypy", "pycodestyle", "pydevtool", "rich-click", "ruff", "types-psutil", "typing_extensions"] +doc = ["jupytext", "matplotlib (>2)", "myst-nb", "numpydoc", "pooch", "pydata-sphinx-theme (==0.9.0)", "sphinx (!=4.1.0)", "sphinx-design (>=0.2.0)"]
1a660191ba0a51d708b917b8cfe734ef77178f2d
Sylvain Lesage
2023-07-18T19:12:03
feat: 🎸 unblock allenai/c4 (#1529)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 2e1bf021..f57408ce 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -116 +116 @@ parquetAndInfo: - blockedDatasets: "matallanas/linustechtips-transcript-audio-wav,KnutJaegersberg/Interpretable_word_embeddings_large_cskg,ashraf-ali/quran-data,cjvt/cc_gigafida,cmudrc/porous-microstructure-strain-fields,dlwh/MultiLegalPile_Wikipedia_Shuffled,izumaru/os2-datasets,joelito/MultiLegalPile_Wikipedia_Filtered,leviethoang/VBVLSP,nyanko7/yandere-images,severo/wit,texturedesign/td01_natural-ground-textures,Tristan/olm-october-2022-tokenized-1024-exact-dedup-only,Whispering-GPT/linustechtips-transcript-audio,beyond/chinese_clean_passages_80m,bigscience/xP3,dalle-mini/YFCC100M_OpenAI_subset,galman33/gal_yair_166000_256x256_fixed,matallanas/linustechtips-transcript-audio-mp3,mwitiderrick/arXiv,sjpmpzx/qm_ly_gy_soundn,tilos/ASR-CCANTCSC,matallanas/linustechtips-transcript-audio-ogg,VIMA/VIMA-Data,severo/wit,wmt/europarl,chrisjay/mnist-adversarial-dataset,mwitiderrick/arXiv,HuggingFaceM4/TextCaps,CristianaLazar/librispeech5k_train,texturedesign/td01_natural-ground-textures,cjvt/cc_gigafida,Yehor/ukrainian-tts-lada,YWjimmy/PeRFception-v1,SDbiaseval/dataset-dalle,Pinguin/images,DTU54DL/librispeech5k-augmentated-train-prepared,CristianaLazar/librispeech500,abdusahmbzuai/masc_dev,anonymousdeepcc/DeepCC,bigcode/the-stack-username-to-repo,bigscience/massive-probing-results,dgrnd4/stanford_dog_dataset,gigant/romanian_speech_synthesis_0_8_1,helena-balabin/sentences,icelab/ntrs_meta,joefox/Mozilla_Common_Voice_ru_test_noise,m-aliabbas/idrak_splitted_amy_1,marinone94/nst_sv,mbarnig/lb-de-fr-en-pt-12800-TTS-CORPUS,momilla/Ethereum_transacitons,nev/anime-giph,openclimatefix/nimrod-uk-1km-validation,raghav66/whisper-gpt,strombergnlp/broad_twitter_corpus,z-uo/female-LJSpeech-italian,Champion/vpc2020_clear_anon_speech,DelgadoPanadero/Pokemon,GEM/references,HuggingFaceM4/FairFace,Karavet/ILUR-news-text-classification-corpus,Voicemod/LibriTTS-100-preproc,YWjimmy/PeRFception-v1-1,albertvillanova/TextCaps,allenai/c4,dog/punks,chenghao/scielo_books,YWjimmy/PeRFception-v1-2,openclimatefix/era5,Carlisle/msmarco-passage-non-abs,SetFit/mnli,valurank/PoliticalBias_AllSides_Txt,Biomedical-TeMU/ProfNER_corpus_classification,LeoFeng/MLHW_6,pragnakalp/squad_v2_french_translated,textvqa,polinaeterna/vox_lingua,nishita/ade20k-sample,oyk100/ChaSES-data,YWjimmy/PeRFception-v1-3,YWjimmy/PeRFception-ScanNet,ChaiML/AnthropicRLHFPreferenceData,voidful/librispeech_asr_text,Isma/librispeech_1000_seed_42,Graphcore/vqa-lxmert,Tevatron/wikipedia-curated-corpus,adamlin/daily_dialog,cameronbc/synthtiger,clarin-pl/multiwiki_90k,echarlaix/vqa-lxmert,gigant/african_accented_french,Graphcore/vqa,echarlaix/vqa,jimregan/clarinpl_studio,GEM/xsum,Tevatron/wikipedia-squad-corpus,mulcyber/europarl-mono,nateraw/wit,bigscience/P3,tau/mrqa,uva-irlab/trec-cast-2019-multi-turn,vblagoje/wikipedia_snippets_streamed,Tevatron/wikipedia-wq-corpus,malteos/paperswithcode-aspects,Samip/Scotch,iluvvatar/RuREBus,nateraw/quickdraw,tau/scrolls,qanastek/MASSIVE,TalTechNLP/VoxLingua107,shanya/crd3,HugoLaurencon/libri_light,jerpint/imagenette,Leyo/TGIF,crystina-z/msmarco-passage-dl20,HuggingFaceM4/epic_kitchens_100,HuggingFaceM4/yttemporal180m,andreagasparini/librispeech_train_other_only,allenai/nllb,biglam/nls_chapbook_illustrations,winvoker/lvis,Lacito/pangloss,indonesian-nlp/librivox-indonesia,Graphcore/gqa-lxmert,nanom/splittedspanish3bwc,cahya/librivox-indonesia,asapp/slue,sil-ai/audio-keyword-spotting,tner/wikiann,rogerdehe/xfund,arpelarpe/nota,mwhanna/ACT-Thor,sanchit-gandhi/librispeech_asr_clean,echarlaix/gqa-lxmert,shunk031/cocostuff,gigant/m-ailabs_speech_dataset_fr,jimregan/clarinpl_sejmsenat,1aurent/icdar-2011,marinone94/nst_no,jamescalam/unsplash-25k-images,stas/openwebtext-10k,florianbussmann/train_tickets-yu2020pick,benschill/brain-tumor-collection,imvladikon/paranames,PolyAI/evi,bengaliAI/cvbn,Sreyan88/librispeech_asr,superb,mozilla-foundation/common_voice_10_0,darkproger/librispeech_asr,kresnik/librispeech_asr_test,Lehrig/Monkey-Species-Collection,HuggingFaceM4/TGIF,crystina-z/miracl-bm25-negative,cats_vs_dogs,biglam/gallica_literary_fictions,common_language,competition_math,cornell_movie_dialog,evidence_infer_treatment,hebrew_projectbenyehuda,lj_speech,mc4,muchocine,opus_euconst,tab_fact,the_pile,tapaco,turkic_xwmt,web_nlg,vctk,mathaillah/BeritaHoaks-NonHoaks,universal_morphologies,LanceaKing/asvspoof2019,andreagasparini/librispeech_train_clean_only,nuprl/MultiPL-E,SLPL/naab-raw,mteb/results,SocialGrep/the-reddit-climate-change-dataset,bigscience-biomedical/anat_em,crystina-z/xor-tydi-corpus,qanastek/QUAERO,TomTBT/pmc_open_access_section,jamescalam/movielens-25m-ratings,HuggingFaceM4/charades,Tevatron/xor-tydi-corpus,khalidalt/tydiqa-primary,nvm472001/cvdataset-layoutlmv3,Lehrig/GTZAN-Collection,mteb/tatoeba-bitext-mining,sled-umich/Action-Effect,HamdiJr/Egyptian_hieroglyphs,joelito/lextreme,cooleel/xfund_de,mozilla-foundation/common_voice_7_0,KETI-AIR/vqa,Livingwithmachines/MapReader_Data_SIGSPATIAL_2022,NLPC-UOM/document_alignment_dataset-Sinhala-Tamil-English,miracl/miracl,Muennighoff/flores200,Murple/mmcrsc,mesolitica/dbp,CodedotAI/code_clippy,keshan/clean-si-mc4,yhavinga/ccmatrix,metashift,google/fleurs,HugoLaurencon/libri_light_bytes,biwi_kinect_head_pose,ami,bigscience-biomedical/ebm_pico,HuggingFaceM4/general-pmd-synthetic-testing,crystina-z/mmarco,robertmyers/pile_v2,bigbio/anat_em,biglam/early_printed_books_font_detection,nateraw/imagenet-sketch,jpwahle/dblp-discovery-dataset,andreagasparini/librispeech_test_only,crystina-z/mmarco-corpus,mozilla-foundation/common_voice_6_0,biglam/brill_iconclass,bigscience-biomedical/evidence_inference,HuggingFaceM4/cm4-synthetic-testing,SocialGrep/ten-million-reddit-answers,bnl_newspapers,multilingual_librispeech,openslr,GEM/BiSECT,Graphcore/gqa,SaulLu/Natural_Questions_HTML_reduced_all,ccdv/cnn_dailymail,mozilla-foundation/common_voice_1_0,huggan/anime-faces,Biomedical-TeMU/ProfNER_corpus_NER,MorVentura/TRBLLmaker,student/celebA,Rodion/uno_sustainable_development_goals,Nart/parallel-ab-ru,HuggingFaceM4/VQAv2,mesolitica/noisy-ms-en-augmentation,nateraw/rice-image-dataset,tensorcat/wikipedia-japanese,angelolab/ark_example,RAYZ/Mixed-Dia,ywchoi/mdpi_sept10,TomTBT/pmc_open_access_figure,society-ethics/lila_camera_traps,autoevaluator/shoes-vs-sandals-vs-boots,cjvt/slo_collocations,parambharat/mile_dataset,rossevine/tesis,ksaml/Stanford_dogs,nuprl/MultiPL-E-raw-data,ZihaoLin/zhlds,ACL-OCL/acl-anthology-corpus,mozilla-foundation/common_voice_2_0,Biomedical-TeMU/SPACCC_Sentence-Splitter,nateraw/rice-image-dataset-2,mesolitica/noisy-en-ms-augmentation,bigbio/ctebmsp,bigbio/distemist,nlphuji/vasr,parambharat/malayalam_asr_corpus,cjvt/sloleks,DavidVivancos/MindBigData2022_Imagenet_IN_Spct,KokeCacao/oracle,keremberke/nfl-object-detection,lafi23333/ds,Lykon/OnePiece,kaliansh/sdaia,sil-ai/audio-kw-in-context,andite/riyo-tag,ilhanemirhan/eee543,backslashlim/LoRA-Datasets,hr16/Miwano-Rag,ccdv/mediasum,mozilla-foundation/common_voice_3_0,mozilla-foundation/common_voice_4_0,bigbio/ebm_pico,parambharat/kannada_asr_corpus,parambharat/telugu_asr_corpus,Abuelnour/json_1000_Scientific_Paper,reazon-research/reazonspeech,shunk031/livedoor-news-corpus,mesolitica/translated-SQUAD,SamAct/medium_cleaned,EfaceD/ElysiumInspirations,cahya/fleurs,guangguang/azukijpg,genjib/LAVISHData,rohitp1/librispeech_asr_clean,azraahmadi/autotrain-data-xraydatasetp2,HuggingFaceM4/COCO,bio-datasets/e3c,nateraw/auto-cats-and-dogs,keremberke/smoke-object-detection,ds4sd/DocLayNet,nlphuji/utk_faces,corentinm7/MyoQuant-SDH-Data,xglue,grasshoff/lhc_sents,HugoLaurencon/IIIT-5K,alkzar90/CC6204-Hackaton-Cub-Dataset,RaphaelOlivier/whisper_adversarial_examples,bruno-cotrim/arch-max,keshan/multispeaker-tts-sinhala,Tevatron/beir-corpus,fcakyon/gun-object-detection,ccdv/arxiv-summarization,keremberke/protective-equipment-detection,mozilla-foundation/common_voice_5_0,nlphuji/winogavil,Poupou/Gitcoin-Grant-DataBuilder,orieg/elsevier-oa-cc-by,castorini/msmarco_v1_passage_doc2query-t5_expansions,inseq/divemt_attributions,crystina-z/msmarco-passage-dl19,mozilla-foundation/common_voice_5_1,matchbench/dbp15k-fr-en,keremberke/garbage-object-detection,crystina-z/no-nonself-mrtydi,ashraq/dhivehi-corpus,zyznull/dureader-retrieval-ranking,zyznull/msmarco-passage-corpus,zyznull/msmarco-passage-ranking,Tevatron/wikipedia-squad,Tevatron/wikipedia-trivia-corpus,NeuroSenko/senko_anime_full,plncmm/wl-disease,plncmm/wl-family-member" + blockedDatasets: "1aurent/icdar-2011,abdusahmbzuai/masc_dev,Abuelnour/json_1000_Scientific_Paper,ACL-OCL/acl-anthology-corpus,adamlin/daily_dialog,albertvillanova/TextCaps,alkzar90/CC6204-Hackaton-Cub-Dataset,allenai/nllb,ami,andite/riyo-tag,andreagasparini/librispeech_test_only,andreagasparini/librispeech_train_clean_only,andreagasparini/librispeech_train_other_only,angelolab/ark_example,anonymousdeepcc/DeepCC,arpelarpe/nota,asapp/slue,ashraf-ali/quran-data,ashraq/dhivehi-corpus,autoevaluator/shoes-vs-sandals-vs-boots,azraahmadi/autotrain-data-xraydatasetp2,backslashlim/LoRA-Datasets,bengaliAI/cvbn,benschill/brain-tumor-collection,beyond/chinese_clean_passages_80m,bigbio/anat_em,bigbio/ctebmsp,bigbio/distemist,bigbio/ebm_pico,bigcode/the-stack-username-to-repo,biglam/brill_iconclass,biglam/early_printed_books_font_detection,biglam/gallica_literary_fictions,biglam/nls_chapbook_illustrations,bigscience-biomedical/anat_em,bigscience-biomedical/ebm_pico,bigscience-biomedical/evidence_inference,bigscience/massive-probing-results,bigscience/P3,bigscience/xP3,bio-datasets/e3c,Biomedical-TeMU/ProfNER_corpus_classification,Biomedical-TeMU/ProfNER_corpus_NER,Biomedical-TeMU/SPACCC_Sentence-Splitter,biwi_kinect_head_pose,bnl_newspapers,bruno-cotrim/arch-max,cahya/fleurs,cahya/librivox-indonesia,cameronbc/synthtiger,Carlisle/msmarco-passage-non-abs,castorini/msmarco_v1_passage_doc2query-t5_expansions,cats_vs_dogs,ccdv/arxiv-summarization,ccdv/cnn_dailymail,ccdv/mediasum,ChaiML/AnthropicRLHFPreferenceData,Champion/vpc2020_clear_anon_speech,chenghao/scielo_books,chrisjay/mnist-adversarial-dataset,cjvt/cc_gigafida,cjvt/slo_collocations,cjvt/sloleks,clarin-pl/multiwiki_90k,cmudrc/porous-microstructure-strain-fields,CodedotAI/code_clippy,common_language,competition_math,cooleel/xfund_de,corentinm7/MyoQuant-SDH-Data,cornell_movie_dialog,CristianaLazar/librispeech500,CristianaLazar/librispeech5k_train,crystina-z/miracl-bm25-negative,crystina-z/mmarco,crystina-z/mmarco-corpus,crystina-z/msmarco-passage-dl19,crystina-z/msmarco-passage-dl20,crystina-z/no-nonself-mrtydi,crystina-z/xor-tydi-corpus,dalle-mini/YFCC100M_OpenAI_subset,darkproger/librispeech_asr,DavidVivancos/MindBigData2022_Imagenet_IN_Spct,DelgadoPanadero/Pokemon,dgrnd4/stanford_dog_dataset,dlwh/MultiLegalPile_Wikipedia_Shuffled,dog/punks,ds4sd/DocLayNet,DTU54DL/librispeech5k-augmentated-train-prepared,echarlaix/gqa-lxmert,echarlaix/vqa,echarlaix/vqa-lxmert,EfaceD/ElysiumInspirations,evidence_infer_treatment,fcakyon/gun-object-detection,florianbussmann/train_tickets-yu2020pick,galman33/gal_yair_166000_256x256_fixed,GEM/BiSECT,GEM/references,GEM/xsum,genjib/LAVISHData,gigant/african_accented_french,gigant/m-ailabs_speech_dataset_fr,gigant/romanian_speech_synthesis_0_8_1,google/fleurs,Graphcore/gqa,Graphcore/gqa-lxmert,Graphcore/vqa,Graphcore/vqa-lxmert,grasshoff/lhc_sents,guangguang/azukijpg,HamdiJr/Egyptian_hieroglyphs,hebrew_projectbenyehuda,helena-balabin/sentences,hr16/Miwano-Rag,huggan/anime-faces,HuggingFaceM4/charades,HuggingFaceM4/cm4-synthetic-testing,HuggingFaceM4/COCO,HuggingFaceM4/epic_kitchens_100,HuggingFaceM4/FairFace,HuggingFaceM4/general-pmd-synthetic-testing,HuggingFaceM4/TextCaps,HuggingFaceM4/TGIF,HuggingFaceM4/VQAv2,HuggingFaceM4/yttemporal180m,HugoLaurencon/IIIT-5K,HugoLaurencon/libri_light,HugoLaurencon/libri_light_bytes,icelab/ntrs_meta,ilhanemirhan/eee543,iluvvatar/RuREBus,imvladikon/paranames,indonesian-nlp/librivox-indonesia,inseq/divemt_attributions,Isma/librispeech_1000_seed_42,izumaru/os2-datasets,jamescalam/movielens-25m-ratings,jamescalam/unsplash-25k-images,jerpint/imagenette,jimregan/clarinpl_sejmsenat,jimregan/clarinpl_studio,joefox/Mozilla_Common_Voice_ru_test_noise,joelito/lextreme,joelito/MultiLegalPile_Wikipedia_Filtered,jpwahle/dblp-discovery-dataset,kaliansh/sdaia,Karavet/ILUR-news-text-classification-corpus,keremberke/garbage-object-detection,keremberke/nfl-object-detection,keremberke/protective-equipment-detection,keremberke/smoke-object-detection,keshan/clean-si-mc4,keshan/multispeaker-tts-sinhala,KETI-AIR/vqa,khalidalt/tydiqa-primary,KnutJaegersberg/Interpretable_word_embeddings_large_cskg,KokeCacao/oracle,kresnik/librispeech_asr_test,ksaml/Stanford_dogs,Lacito/pangloss,lafi23333/ds,LanceaKing/asvspoof2019,Lehrig/GTZAN-Collection,Lehrig/Monkey-Species-Collection,LeoFeng/MLHW_6,leviethoang/VBVLSP,Leyo/TGIF,Livingwithmachines/MapReader_Data_SIGSPATIAL_2022,lj_speech,Lykon/OnePiece,m-aliabbas/idrak_splitted_amy_1,malteos/paperswithcode-aspects,marinone94/nst_no,marinone94/nst_sv,matallanas/linustechtips-transcript-audio-mp3,matallanas/linustechtips-transcript-audio-ogg,matallanas/linustechtips-transcript-audio-wav,matchbench/dbp15k-fr-en,mathaillah/BeritaHoaks-NonHoaks,mbarnig/lb-de-fr-en-pt-12800-TTS-CORPUS,mc4,mesolitica/dbp,mesolitica/noisy-en-ms-augmentation,mesolitica/noisy-ms-en-augmentation,mesolitica/translated-SQUAD,metashift,miracl/miracl,momilla/Ethereum_transacitons,MorVentura/TRBLLmaker,mozilla-foundation/common_voice_1_0,mozilla-foundation/common_voice_10_0,mozilla-foundation/common_voice_2_0,mozilla-foundation/common_voice_3_0,mozilla-foundation/common_voice_4_0,mozilla-foundation/common_voice_5_0,mozilla-foundation/common_voice_5_1,mozilla-foundation/common_voice_6_0,mozilla-foundation/common_voice_7_0,mteb/results,mteb/tatoeba-bitext-mining,muchocine,Muennighoff/flores200,mulcyber/europarl-mono,multilingual_librispeech,Murple/mmcrsc,mwhanna/ACT-Thor,mwitiderrick/arXiv,nanom/splittedspanish3bwc,Nart/parallel-ab-ru,nateraw/auto-cats-and-dogs,nateraw/imagenet-sketch,nateraw/quickdraw,nateraw/rice-image-dataset,nateraw/rice-image-dataset-2,nateraw/wit,NeuroSenko/senko_anime_full,nev/anime-giph,nishita/ade20k-sample,NLPC-UOM/document_alignment_dataset-Sinhala-Tamil-English,nlphuji/utk_faces,nlphuji/vasr,nlphuji/winogavil,nuprl/MultiPL-E,nuprl/MultiPL-E-raw-data,nvm472001/cvdataset-layoutlmv3,nyanko7/yandere-images,openclimatefix/era5,openclimatefix/nimrod-uk-1km-validation,openslr,opus_euconst,orieg/elsevier-oa-cc-by,oyk100/ChaSES-data,parambharat/kannada_asr_corpus,parambharat/malayalam_asr_corpus,parambharat/mile_dataset,parambharat/telugu_asr_corpus,Pinguin/images,plncmm/wl-disease,plncmm/wl-family-member,polinaeterna/vox_lingua,PolyAI/evi,Poupou/Gitcoin-Grant-DataBuilder,pragnakalp/squad_v2_french_translated,qanastek/MASSIVE,qanastek/QUAERO,raghav66/whisper-gpt,RaphaelOlivier/whisper_adversarial_examples,RAYZ/Mixed-Dia,reazon-research/reazonspeech,robertmyers/pile_v2,Rodion/uno_sustainable_development_goals,rogerdehe/xfund,rohitp1/librispeech_asr_clean,rossevine/tesis,SamAct/medium_cleaned,Samip/Scotch,sanchit-gandhi/librispeech_asr_clean,SaulLu/Natural_Questions_HTML_reduced_all,SDbiaseval/dataset-dalle,SetFit/mnli,severo/wit,shanya/crd3,shunk031/cocostuff,shunk031/livedoor-news-corpus,sil-ai/audio-keyword-spotting,sil-ai/audio-kw-in-context,sjpmpzx/qm_ly_gy_soundn,sled-umich/Action-Effect,SLPL/naab-raw,SocialGrep/ten-million-reddit-answers,SocialGrep/the-reddit-climate-change-dataset,society-ethics/lila_camera_traps,Sreyan88/librispeech_asr,stas/openwebtext-10k,strombergnlp/broad_twitter_corpus,student/celebA,superb,tab_fact,TalTechNLP/VoxLingua107,tapaco,tau/mrqa,tau/scrolls,tensorcat/wikipedia-japanese,Tevatron/beir-corpus,Tevatron/wikipedia-curated-corpus,Tevatron/wikipedia-squad,Tevatron/wikipedia-squad-corpus,Tevatron/wikipedia-trivia-corpus,Tevatron/wikipedia-wq-corpus,Tevatron/xor-tydi-corpus,texturedesign/td01_natural-ground-textures,textvqa,the_pile,tilos/ASR-CCANTCSC,tner/wikiann,TomTBT/pmc_open_access_figure,TomTBT/pmc_open_access_section,Tristan/olm-october-2022-tokenized-1024-exact-dedup-only,turkic_xwmt,universal_morphologies,uva-irlab/trec-cast-2019-multi-turn,valurank/PoliticalBias_AllSides_Txt,vblagoje/wikipedia_snippets_streamed,vctk,VIMA/VIMA-Data,Voicemod/LibriTTS-100-preproc,voidful/librispeech_asr_text,web_nlg,Whispering-GPT/linustechtips-transcript-audio,winvoker/lvis,wmt/europarl,xglue,Yehor/ukrainian-tts-lada,yhavinga/ccmatrix,ywchoi/mdpi_sept10,YWjimmy/PeRFception-ScanNet,YWjimmy/PeRFception-v1,YWjimmy/PeRFception-v1-1,YWjimmy/PeRFception-v1-2,YWjimmy/PeRFception-v1-3,z-uo/female-LJSpeech-italian,ZihaoLin/zhlds,zyznull/dureader-retrieval-ranking,zyznull/msmarco-passage-corpus,zyznull/msmarco-passage-ranking"
902d9ac2cc951ed1a132086fc71d0aa70dc020fa
Quentin Lhoest
2023-07-18T17:17:41
Always verify parquet before copying (#1520)
diff --git a/services/worker/src/worker/job_runners/config/parquet_and_info.py b/services/worker/src/worker/job_runners/config/parquet_and_info.py index 85cbf532..68a6066a 100644 --- a/services/worker/src/worker/job_runners/config/parquet_and_info.py +++ b/services/worker/src/worker/job_runners/config/parquet_and_info.py @@ -721,31 +721,30 @@ def fill_builder_info( - if not builder.info.splits or not builder.info.download_size: - builder.info.splits = SplitDict() - builder.info.download_size = 0 - builder.info.dataset_size = 0 - for split in data_files: - split = str(split) # in case it's a NamedSplit - try: - parquet_files_and_sizes: List[Tuple[pq.ParquetFile, int]] = thread_map( - functools.partial( - retry_and_validate_get_parquet_file_and_size, fs=fs, hf_token=hf_token, validate=validate - ), - data_files[split], - unit="pq", - disable=True, - ) - parquet_files, sizes = zip(*parquet_files_and_sizes) - except ParquetValidationError: - raise - except Exception as e: - raise FileSystemError(f"Could not read the parquet files: {e}") from e - if parquet_files: - first_pf = parquet_files[0] - if builder.info.features is None: - builder.info.features = Features.from_arrow_schema(first_pf.schema_arrow) - first_row_group = first_pf.read_row_group(0) - compression_ratio = first_row_group.nbytes / first_row_group.num_rows - num_examples = sum(parquet_file.metadata.num_rows for parquet_file in parquet_files) - approx_num_bytes = int(compression_ratio * num_examples) - builder.info.splits.add(SplitInfo(split, num_bytes=approx_num_bytes, num_examples=num_examples)) - builder.info.download_size += sum(sizes) - builder.info.dataset_size += approx_num_bytes + builder.info.splits = SplitDict() + builder.info.download_size = 0 + builder.info.dataset_size = 0 + for split in data_files: + split = str(split) # in case it's a NamedSplit + try: + parquet_files_and_sizes: List[Tuple[pq.ParquetFile, int]] = thread_map( + functools.partial( + retry_and_validate_get_parquet_file_and_size, fs=fs, hf_token=hf_token, validate=validate + ), + data_files[split], + unit="pq", + disable=True, + ) + parquet_files, sizes = zip(*parquet_files_and_sizes) + except ParquetValidationError: + raise + except Exception as e: + raise FileSystemError(f"Could not read the parquet files: {e}") from e + if parquet_files: + first_pf = parquet_files[0] + if builder.info.features is None: + builder.info.features = Features.from_arrow_schema(first_pf.schema_arrow) + first_row_group = first_pf.read_row_group(0) + compression_ratio = first_row_group.nbytes / first_row_group.num_rows + num_examples = sum(parquet_file.metadata.num_rows for parquet_file in parquet_files) + approx_num_bytes = int(compression_ratio * num_examples) + builder.info.splits.add(SplitInfo(split, num_bytes=approx_num_bytes, num_examples=num_examples)) + builder.info.download_size += sum(sizes) + builder.info.dataset_size += approx_num_bytes diff --git a/services/worker/tests/fixtures/hub.py b/services/worker/tests/fixtures/hub.py index 1ceb456a..b436e496 100644 --- a/services/worker/tests/fixtures/hub.py +++ b/services/worker/tests/fixtures/hub.py @@ -430 +430 @@ def create_dataset_info_response_for_audio() -> Any: - "splits": {"train": {"name": "train", "num_bytes": 54, "num_examples": 1, "dataset_name": None}}, + "splits": {"train": {"name": "train", "num_bytes": 59, "num_examples": 1, "dataset_name": None}}, @@ -432 +432 @@ def create_dataset_info_response_for_audio() -> Any: - "dataset_size": 54, + "dataset_size": 59,
ff754f55914fad345c5adcf9e947bb8cc47e65f8
Sylvain Lesage
2023-07-17T17:44:30
feat: 🎸 reduce resources (#1524)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 797d1380..2e1bf021 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -312 +312 @@ workers: - replicas: 60 + replicas: 20 @@ -329 +329 @@ workers: - replicas: 12 + replicas: 6
f72be23ed042152590f617faa30e23db13111477
Andrea Francis Soria Jimenez
2023-07-12T18:49:56
Reduce resources (#1517)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 7daa1601..797d1380 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -312 +312 @@ workers: - replicas: 120 + replicas: 60 @@ -329 +329 @@ workers: - replicas: 24 + replicas: 12
cb1082ee3585075a0342e31a98f7cc99d13f1cc2
Quentin Lhoest
2023-07-11T15:47:02
fix optional download_size (#1515)
diff --git a/services/worker/src/worker/job_runners/config/size.py b/services/worker/src/worker/job_runners/config/size.py index 785ea8f9..fda5d622 100644 --- a/services/worker/src/worker/job_runners/config/size.py +++ b/services/worker/src/worker/job_runners/config/size.py @@ -68 +68 @@ def compute_config_size_response(dataset: str, config: str) -> ConfigSizeRespons - "num_bytes_original_files": config_info["download_size"] if not content["partial"] else None, + "num_bytes_original_files": config_info.get("download_size"),
d2b3d7e58b05c61dd31ddb5c9a17fc481a5def99
Andrea Francis Soria Jimenez
2023-07-11T15:05:06
Adding partial ttl index to locks (#1514)
diff --git a/libs/libcommon/src/libcommon/constants.py b/libs/libcommon/src/libcommon/constants.py index c04596eb..4f4a2ca1 100644 --- a/libs/libcommon/src/libcommon/constants.py +++ b/libs/libcommon/src/libcommon/constants.py @@ -16,0 +17 @@ QUEUE_TTL_SECONDS = 600 # 10 minutes +LOCK_TTL_SECONDS = 600 # 10 minutes diff --git a/libs/libcommon/src/libcommon/queue.py b/libs/libcommon/src/libcommon/queue.py index 440f7013..d1b39250 100644 --- a/libs/libcommon/src/libcommon/queue.py +++ b/libs/libcommon/src/libcommon/queue.py @@ -25,0 +26 @@ from libcommon.constants import ( + LOCK_TTL_SECONDS, @@ -241 +242,13 @@ class Lock(Document): - meta = {"collection": QUEUE_COLLECTION_LOCKS, "db_alias": QUEUE_MONGOENGINE_ALIAS, "indexes": [("key", "owner")]} + meta = { + "collection": QUEUE_COLLECTION_LOCKS, + "db_alias": QUEUE_MONGOENGINE_ALIAS, + "indexes": [ + ("key", "owner"), + { + "fields": ["updated_at"], + "expireAfterSeconds": LOCK_TTL_SECONDS, + "partialFilterExpression": {"owner": None}, + }, + ], + } +
40fe965d1aa1b3a51552895269f759687a6706bd
Quentin Lhoest
2023-07-11T14:47:17
(minor) rename noMaxSizeLimitDatasets (#1513)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 96be0a30..7daa1601 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -114 +113,0 @@ parquetAndInfo: - fullyConvertedDatasets: "Open-Orca/OpenOrca" @@ -118,0 +118 @@ parquetAndInfo: + noMaxSizeLimitDatasets: "Open-Orca/OpenOrca" diff --git a/chart/templates/_envWorker.tpl b/chart/templates/_envWorker.tpl index ca647c14..630c7152 100644 --- a/chart/templates/_envWorker.tpl +++ b/chart/templates/_envWorker.tpl @@ -54,2 +53,0 @@ -- name: PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS - value: {{ .Values.parquetAndInfo.fullyConvertedDatasets | quote }} @@ -61,0 +60,2 @@ +- name: PARQUET_AND_INFO_NO_MAX_SIZE_LIMIT_DATASETS + value: {{ .Values.parquetAndInfo.noMaxSizeLimitDatasets | quote }} diff --git a/chart/values.yaml b/chart/values.yaml index 66980f50..90ce3506 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -180,2 +179,0 @@ parquetAndInfo: - # comma-separated list of datasets that are fully converted to parquet (no partial conversion). - fullyConvertedDatasets: "" @@ -187,0 +186,2 @@ parquetAndInfo: + # comma-separated list of datasets that are fully converted to parquet (no partial conversion). + noMaxSizeLimitDatasets: "" diff --git a/services/worker/README.md b/services/worker/README.md index 0f792426..17d6a5fa 100644 --- a/services/worker/README.md +++ b/services/worker/README.md @@ -74 +74 @@ Set environment variables to configure the `parquet-and-info` worker (`PARQUET_A -- `PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS`: comma-separated list of datasets that are fully converted to parquet (no partial conversion). Defaults to `""`. +- `PARQUET_AND_INFO_NO_MAX_SIZE_LIMIT_DATASETS`: comma-separated list of datasets that are fully converted to parquet (no partial conversion). Defaults to `""`. diff --git a/services/worker/src/worker/config.py b/services/worker/src/worker/config.py index 31c67081..f244a3ce 100644 --- a/services/worker/src/worker/config.py +++ b/services/worker/src/worker/config.py @@ -176 +175,0 @@ PARQUET_AND_INFO_COMMITTER_HF_TOKEN = None -PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS: List[str] = [] @@ -179,0 +179 @@ PARQUET_AND_INFO_MAX_ROW_GROUP_BYTE_SIZE_FOR_COPY = 100_000_000 +PARQUET_AND_INFO_NO_MAX_SIZE_LIMIT_DATASETS: List[str] = [] @@ -190 +189,0 @@ class ParquetAndInfoConfig: - fully_converted_datasets: List[str] = field(default_factory=PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS.copy) @@ -193,0 +193 @@ class ParquetAndInfoConfig: + no_max_size_limit_datasets: List[str] = field(default_factory=PARQUET_AND_INFO_NO_MAX_SIZE_LIMIT_DATASETS.copy) @@ -207,3 +206,0 @@ class ParquetAndInfoConfig: - fully_converted_datasets=env.list( - name="FULLY_CONVERTED_DATASETS", default=PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS.copy() - ), @@ -216,0 +214,3 @@ class ParquetAndInfoConfig: + no_max_size_limit_datasets=env.list( + name="NO_MAX_SIZE_LIMIT_DATASETS", default=PARQUET_AND_INFO_NO_MAX_SIZE_LIMIT_DATASETS.copy() + ), diff --git a/services/worker/src/worker/job_runners/config/parquet_and_info.py b/services/worker/src/worker/job_runners/config/parquet_and_info.py index 9ebeba2d..85cbf532 100644 --- a/services/worker/src/worker/job_runners/config/parquet_and_info.py +++ b/services/worker/src/worker/job_runners/config/parquet_and_info.py @@ -1149 +1149 @@ def compute_config_parquet_and_info_response( - fully_converted_datasets: List[str], + no_max_size_limit_datasets: List[str], @@ -1189 +1189 @@ def compute_config_parquet_and_info_response( - fully_converted_datasets (`List[str]`): + no_max_size_limit_datasets (`List[str]`): @@ -1293 +1293 @@ def compute_config_parquet_and_info_response( - max_dataset_size=None if dataset in fully_converted_datasets else max_dataset_size, + max_dataset_size=None if dataset in no_max_size_limit_datasets else max_dataset_size, @@ -1314 +1314 @@ def compute_config_parquet_and_info_response( - builder, max_dataset_size=None if dataset in fully_converted_datasets else max_dataset_size + builder, max_dataset_size=None if dataset in no_max_size_limit_datasets else max_dataset_size @@ -1422 +1422 @@ class ConfigParquetAndInfoJobRunner(ConfigJobRunnerWithDatasetsCache): - fully_converted_datasets=self.parquet_and_info_config.fully_converted_datasets, + no_max_size_limit_datasets=self.parquet_and_info_config.no_max_size_limit_datasets, diff --git a/tools/docker-compose-datasets-server.yml b/tools/docker-compose-datasets-server.yml index f38af7be..6f667196 100644 --- a/tools/docker-compose-datasets-server.yml +++ b/tools/docker-compose-datasets-server.yml @@ -139 +139 @@ services: - PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS: ${PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS-} + PARQUET_AND_INFO_NO_MAX_SIZE_LIMIT_DATASETS: ${PARQUET_AND_INFO_NO_MAX_SIZE_LIMIT_DATASETS-} diff --git a/tools/docker-compose-dev-datasets-server.yml b/tools/docker-compose-dev-datasets-server.yml index 0bf0f473..deafb635 100644 --- a/tools/docker-compose-dev-datasets-server.yml +++ b/tools/docker-compose-dev-datasets-server.yml @@ -144 +144 @@ services: - PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS: ${PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS-} + PARQUET_AND_INFO_NO_MAX_SIZE_LIMIT_DATASETS: ${PARQUET_AND_INFO_NO_MAX_SIZE_LIMIT_DATASETS-}
2f1c59ad3fae1f27bf6e0c42cc76bb5c28e4649e
Quentin Lhoest
2023-07-11T11:31:46
add priority param to force refresh endpoint (#1510)
diff --git a/front/admin_ui/app.py b/front/admin_ui/app.py index a39a8e20..c63bdb55 100644 --- a/front/admin_ui/app.py +++ b/front/admin_ui/app.py @@ -87,0 +88 @@ with gr.Blocks() as demo: + refresh_priority = gr.Dropdown(["low", "normal"], multiselect=False, label="priority", value="low") @@ -263 +264 @@ The cache is outdated or in an incoherent state. Here is the plan to backfill th - def refresh_dataset(token, refresh_types, refresh_dataset_names, refresh_config_names, refresh_split_names): + def refresh_dataset(token, refresh_type, refresh_dataset_names, refresh_config_names, refresh_split_names, refresh_priority): @@ -266,2 +267,2 @@ The cache is outdated or in an incoherent state. Here is the plan to backfill th - for refresh_type, refresh_dataset_name, refresh_config_name, refresh_split_name in product( - refresh_types.split(","), refresh_dataset_names.split(","), refresh_config_names.split(","), refresh_split_names.split(",") + for refresh_dataset_name, refresh_config_name, refresh_split_name in product( + refresh_dataset_names.split(","), refresh_config_names.split(","), refresh_split_names.split(",") @@ -269 +269,0 @@ The cache is outdated or in an incoherent state. Here is the plan to backfill th - refresh_types = refresh_types.strip() @@ -271 +271 @@ The cache is outdated or in an incoherent state. Here is the plan to backfill th - params = {"dataset": refresh_dataset_name} + params = {"dataset": refresh_dataset_name, "priority": refresh_priority} @@ -301 +301 @@ The cache is outdated or in an incoherent state. Here is the plan to backfill th - refresh_dataset_button.click(refresh_dataset, inputs=[token_box, refresh_type, refresh_dataset_name, refresh_config_name, refresh_split_name], outputs=refresh_dataset_output) + refresh_dataset_button.click(refresh_dataset, inputs=[token_box, refresh_type, refresh_dataset_name, refresh_config_name, refresh_split_name, refresh_priority], outputs=refresh_dataset_output) diff --git a/services/admin/src/admin/routes/force_refresh.py b/services/admin/src/admin/routes/force_refresh.py index f54814b1..44e02196 100644 --- a/services/admin/src/admin/routes/force_refresh.py +++ b/services/admin/src/admin/routes/force_refresh.py @@ -17,0 +18 @@ from admin.utils import ( + InvalidParameterError, @@ -54 +55,9 @@ def create_force_refresh_endpoint( - logging.info(f"/force-refresh/{job_type}, dataset={dataset}, config={config}, split={split}") + try: + priority = Priority(request.query_params.get("priority", "low")) + except ValueError: + raise InvalidParameterError( + f"Parameter 'priority' should be one of {', '.join(prio.value for prio in Priority)}." + ) + logging.info( + f"/force-refresh/{job_type}, dataset={dataset}, config={config}, split={split}, priority={priority}" + ) @@ -71 +80 @@ def create_force_refresh_endpoint( - priority=Priority.LOW, + priority=priority,
d3d66958fd9a3cf3eba276a3d30e39003a90f071
Andrea Francis Soria Jimenez
2023-07-10T22:45:23
Last index sync and Increase resources (#1512)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 673c4007..96be0a30 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -312 +312 @@ workers: - replicas: 60 + replicas: 120 @@ -329 +329 @@ workers: - replicas: 12 + replicas: 24 diff --git a/libs/libcommon/src/libcommon/queue.py b/libs/libcommon/src/libcommon/queue.py index 02dd5986..440f7013 100644 --- a/libs/libcommon/src/libcommon/queue.py +++ b/libs/libcommon/src/libcommon/queue.py @@ -157 +157 @@ class JobDocument(Document): - ("unicity_id", "status", "created_at"), + ("unicity_id", "-created_at", "status"),
c8b32403562c558621c5b06d72d22899c3d44325
Andrea Francis Soria Jimenez
2023-07-10T20:39:45
Sync adviced indexes by Atlas (#1511)
diff --git a/libs/libcommon/src/libcommon/queue.py b/libs/libcommon/src/libcommon/queue.py index 24e92a0c..02dd5986 100644 --- a/libs/libcommon/src/libcommon/queue.py +++ b/libs/libcommon/src/libcommon/queue.py @@ -154 +154,2 @@ class JobDocument(Document): - ("priority", "status", "created_at", "difficulty", "namespace", "type", "unicity_id"), + ("priority", "status", "created_at", "namespace"), + ("priority", "status", "type", "namespace", "unicity_id", "created_at", "-difficulty"),
8f8160141f596f4978d5dab2e66ace8cd1c536d7
Andrea Francis Soria Jimenez
2023-07-10T17:02:51
Try to improve index usage for Job collection (#1509)
diff --git a/libs/libcommon/src/libcommon/queue.py b/libs/libcommon/src/libcommon/queue.py index d0f54091..24e92a0c 100644 --- a/libs/libcommon/src/libcommon/queue.py +++ b/libs/libcommon/src/libcommon/queue.py @@ -152,2 +151,0 @@ class JobDocument(Document): - "dataset", - ("dataset", "revision", "status"), @@ -156 +153,0 @@ class JobDocument(Document): - ("priority", "status", "created_at", "type", "namespace"), @@ -158,2 +154,0 @@ class JobDocument(Document): - ("priority", "status", "namespace", "type", "created_at"), - ("priority", "status", "created_at", "namespace", "-difficulty"), @@ -161,3 +156 @@ class JobDocument(Document): - ("status", "namespace", "priority", "type", "created_at"), - ("status", "namespace", "unicity_id", "priority", "type", "created_at"), - "-created_at", + ("unicity_id", "status", "created_at"), @@ -809 +802 @@ class Queue: - for job in JobDocument.objects(type=job_type, status=Status.STARTED.value): + for job in JobDocument.objects(status=Status.STARTED.value, type=job_type): @@ -857 +850 @@ class Queue: - for job in JobDocument.objects(dataset=dataset, status__in=[Status.WAITING, Status.STARTED], **filters) + for job in JobDocument.objects(status__in=[Status.WAITING, Status.STARTED], **filters, dataset=dataset) @@ -865 +858 @@ class Queue: - return JobDocument.objects(dataset=dataset, status__in=[Status.WAITING, Status.STARTED], **filters).count() > 0 + return JobDocument.objects(status__in=[Status.WAITING, Status.STARTED], **filters, dataset=dataset).count() > 0 @@ -906 +899 @@ class Queue: - return [d.to_dict() for d in JobDocument.objects(type=job_type, status=status.value)] + return [d.to_dict() for d in JobDocument.objects(status=status.value, type=job_type)] @@ -926 +919 @@ class Queue: - type=job_type, dataset=dataset, status__in=[Status.WAITING.value, Status.STARTED.value] + status__in=[Status.WAITING.value, Status.STARTED.value], type=job_type, dataset=dataset
a635bf7f70bc23a407595ac19e7adcb2cdc2e6ba
Quentin Lhoest
2023-07-10T13:47:44
Add fully converted datasets (#1508)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index ee6303c8..673c4007 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -113,0 +114 @@ parquetAndInfo: + fullyConvertedDatasets: "Open-Orca/OpenOrca" diff --git a/chart/templates/_envWorker.tpl b/chart/templates/_envWorker.tpl index 07c101d1..ca647c14 100644 --- a/chart/templates/_envWorker.tpl +++ b/chart/templates/_envWorker.tpl @@ -53,0 +54,2 @@ +- name: PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS + value: {{ .Values.parquetAndInfo.fullyConvertedDatasets | quote }} diff --git a/chart/values.yaml b/chart/values.yaml index 191acf46..66980f50 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -179,0 +180,2 @@ parquetAndInfo: + # comma-separated list of datasets that are fully converted to parquet (no partial conversion). + fullyConvertedDatasets: "" diff --git a/services/worker/README.md b/services/worker/README.md index bb6c8c98..0f792426 100644 --- a/services/worker/README.md +++ b/services/worker/README.md @@ -73,0 +74 @@ Set environment variables to configure the `parquet-and-info` worker (`PARQUET_A +- `PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS`: comma-separated list of datasets that are fully converted to parquet (no partial conversion). Defaults to `""`. diff --git a/services/worker/src/worker/config.py b/services/worker/src/worker/config.py index 04e0b0fa..31c67081 100644 --- a/services/worker/src/worker/config.py +++ b/services/worker/src/worker/config.py @@ -175,0 +176 @@ PARQUET_AND_INFO_COMMITTER_HF_TOKEN = None +PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS: List[str] = [] @@ -188,0 +190 @@ class ParquetAndInfoConfig: + fully_converted_datasets: List[str] = field(default_factory=PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS.copy) @@ -204,0 +207,3 @@ class ParquetAndInfoConfig: + fully_converted_datasets=env.list( + name="FULLY_CONVERTED_DATASETS", default=PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS.copy() + ), diff --git a/services/worker/src/worker/job_runners/config/parquet_and_info.py b/services/worker/src/worker/job_runners/config/parquet_and_info.py index 171404c3..9ebeba2d 100644 --- a/services/worker/src/worker/job_runners/config/parquet_and_info.py +++ b/services/worker/src/worker/job_runners/config/parquet_and_info.py @@ -879 +879 @@ def stream_convert_to_parquet( - builder: DatasetBuilder, max_dataset_size: int, writer_batch_size: Optional[int] = None + builder: DatasetBuilder, max_dataset_size: Optional[int], writer_batch_size: Optional[int] = None @@ -902 +902 @@ def stream_convert_to_parquet( - with limit_parquet_writes(builder, max_dataset_size=max_dataset_size) as limiter: + if max_dataset_size is None: @@ -906 +906,6 @@ def stream_convert_to_parquet( - partial = partial or limiter.total_bytes >= max_dataset_size + else: + with limit_parquet_writes(builder, max_dataset_size=max_dataset_size) as limiter: + builder._prepare_split( + split_generator=splits_generators[split], file_format="parquet", **prepare_split_kwargs + ) + partial = partial or limiter.total_bytes >= max_dataset_size @@ -1143,0 +1149 @@ def compute_config_parquet_and_info_response( + fully_converted_datasets: List[str], @@ -1182,0 +1189,2 @@ def compute_config_parquet_and_info_response( + fully_converted_datasets (`List[str]`): + List of datasets that should be fully converted (no partial conversion). @@ -1284 +1292,3 @@ def compute_config_parquet_and_info_response( - builder, max_dataset_size=max_dataset_size, writer_batch_size=writer_batch_size + builder, + max_dataset_size=None if dataset in fully_converted_datasets else max_dataset_size, + writer_batch_size=writer_batch_size, @@ -1303 +1313,3 @@ def compute_config_parquet_and_info_response( - parquet_operations, partial = stream_convert_to_parquet(builder, max_dataset_size=max_dataset_size) + parquet_operations, partial = stream_convert_to_parquet( + builder, max_dataset_size=None if dataset in fully_converted_datasets else max_dataset_size + ) @@ -1409,0 +1422 @@ class ConfigParquetAndInfoJobRunner(ConfigJobRunnerWithDatasetsCache): + fully_converted_datasets=self.parquet_and_info_config.fully_converted_datasets, diff --git a/services/worker/tests/job_runners/config/test_parquet_and_info.py b/services/worker/tests/job_runners/config/test_parquet_and_info.py index d8ee28bf..603fe004 100644 --- a/services/worker/tests/job_runners/config/test_parquet_and_info.py +++ b/services/worker/tests/job_runners/config/test_parquet_and_info.py @@ -847,0 +848 @@ def test_get_delete_operations( + (None, 10), @@ -869,6 +870,7 @@ def test_stream_convert_to_parquet_arrowbasedbuilder( - one_sample_max_size = 100 - expected_max_dataset_size = max_dataset_size + one_sample_max_size - assert ( - sum(pq.ParquetFile(parquet_file.local_file).read().nbytes for parquet_file in parquet_files) - < expected_max_dataset_size - ) + if max_dataset_size is not None: + one_sample_max_size = 100 + expected_max_dataset_size = max_dataset_size + one_sample_max_size + assert ( + sum(pq.ParquetFile(parquet_file.local_file).read().nbytes for parquet_file in parquet_files) + < expected_max_dataset_size + ) @@ -883,0 +886 @@ def test_stream_convert_to_parquet_arrowbasedbuilder( + (None, 1000), @@ -907,6 +910,7 @@ def test_stream_convert_to_parquet_generatorbasedbuilder( - one_sample_max_size = 100 - expected_max_dataset_size = max_dataset_size + one_sample_max_size - assert ( - sum(pq.ParquetFile(parquet_file.local_file).read().nbytes for parquet_file in parquet_files) - < expected_max_dataset_size - ) + if max_dataset_size is not None: + one_sample_max_size = 100 + expected_max_dataset_size = max_dataset_size + one_sample_max_size + assert ( + sum(pq.ParquetFile(parquet_file.local_file).read().nbytes for parquet_file in parquet_files) + < expected_max_dataset_size + ) diff --git a/tools/docker-compose-datasets-server.yml b/tools/docker-compose-datasets-server.yml index 7c6f38ee..f38af7be 100644 --- a/tools/docker-compose-datasets-server.yml +++ b/tools/docker-compose-datasets-server.yml @@ -138,0 +139 @@ services: + PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS: ${PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS-} diff --git a/tools/docker-compose-dev-datasets-server.yml b/tools/docker-compose-dev-datasets-server.yml index c7a0e114..0bf0f473 100644 --- a/tools/docker-compose-dev-datasets-server.yml +++ b/tools/docker-compose-dev-datasets-server.yml @@ -143,0 +144 @@ services: + PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS: ${PARQUET_AND_INFO_FULLY_CONVERTED_DATASETS-}
ce1439b8678bbdd0e391d7b922186c061da45704
Quentin Lhoest
2023-07-10T11:14:44
memory efficient config-parquet-metadata (#1506)
diff --git a/services/worker/src/worker/job_runners/config/parquet_metadata.py b/services/worker/src/worker/job_runners/config/parquet_metadata.py index 0129a70e..e739b213 100644 --- a/services/worker/src/worker/job_runners/config/parquet_metadata.py +++ b/services/worker/src/worker/job_runners/config/parquet_metadata.py @@ -20 +19,0 @@ from libcommon.viewer_utils.parquet_metadata import create_parquet_metadata_file -from pyarrow.parquet import ParquetFile @@ -32,0 +32,26 @@ from worker.utils import get_parquet_file +def create_parquet_metadata_file_from_remote_parquet( + parquet_file_item: SplitHubFile, fs: HTTPFileSystem, hf_token: Optional[str], parquet_metadata_directory: StrPath +) -> ParquetFileMetadataItem: + try: + parquet_file = get_parquet_file(url=parquet_file_item["url"], fs=fs, hf_token=hf_token) + except Exception as e: + raise FileSystemError(f"Could not read the parquet files: {e}") from e + parquet_metadata_subpath = create_parquet_metadata_file( + dataset=parquet_file_item["dataset"], + config=parquet_file_item["config"], + parquet_file_metadata=parquet_file.metadata, + filename=parquet_file_item["filename"], + parquet_metadata_directory=parquet_metadata_directory, + ) + return ParquetFileMetadataItem( + dataset=parquet_file_item["dataset"], + config=parquet_file_item["config"], + split=parquet_file_item["split"], + url=parquet_file_item["url"], + filename=parquet_file_item["filename"], + size=parquet_file_item["size"], + num_rows=parquet_file.metadata.num_rows, + parquet_metadata_subpath=parquet_metadata_subpath, + ) + + @@ -77 +101,0 @@ def compute_parquet_metadata_response( - source_urls = [parquet_file_item["url"] for parquet_file_item in parquet_file_items] @@ -79,18 +103,5 @@ def compute_parquet_metadata_response( - try: - parquet_files: List[ParquetFile] = thread_map( - functools.partial(get_parquet_file, fs=fs, hf_token=hf_token), - source_urls, - desc=desc, - unit="pq", - disable=True, - ) - except Exception as e: - raise FileSystemError(f"Could not read the parquet files: {e}") from e - - parquet_files_metadata = [] - for parquet_file_item, parquet_file in zip(parquet_file_items, parquet_files): - parquet_metadata_subpath = create_parquet_metadata_file( - dataset=dataset, - config=config, - parquet_file_metadata=parquet_file.metadata, - filename=parquet_file_item["filename"], + parquet_files_metadata: List[ParquetFileMetadataItem] = thread_map( + functools.partial( + create_parquet_metadata_file_from_remote_parquet, + fs=fs, + hf_token=hf_token, @@ -98,15 +109,6 @@ def compute_parquet_metadata_response( - ) - num_rows = parquet_file.metadata.num_rows - parquet_files_metadata.append( - ParquetFileMetadataItem( - dataset=dataset, - config=config, - split=parquet_file_item["split"], - url=parquet_file_item["url"], - filename=parquet_file_item["filename"], - size=parquet_file_item["size"], - num_rows=num_rows, - parquet_metadata_subpath=parquet_metadata_subpath, - ) - ) - + ), + parquet_file_items, + desc=desc, + unit="pq", + disable=True, + ) diff --git a/services/worker/tests/job_runners/config/test_parquet_metadata.py b/services/worker/tests/job_runners/config/test_parquet_metadata.py index 9e0079d6..537e90c4 100644 --- a/services/worker/tests/job_runners/config/test_parquet_metadata.py +++ b/services/worker/tests/job_runners/config/test_parquet_metadata.py @@ -187 +187 @@ def test_compute( - parquet_file_item["url"], fs=HTTPFileSystem(), hf_token=app_config.common.hf_token + url=parquet_file_item["url"], fs=HTTPFileSystem(), hf_token=app_config.common.hf_token @@ -188,0 +189 @@ def test_compute( + assert expected_content["parquet_files_metadata"]
10deca03dbef8f7b580c24aa99a83ae507753145
Andrea Francis Soria Jimenez
2023-07-10T10:33:00
Sync indexes with db (#1505)
diff --git a/libs/libcommon/src/libcommon/queue.py b/libs/libcommon/src/libcommon/queue.py index acae7aa2..d0f54091 100644 --- a/libs/libcommon/src/libcommon/queue.py +++ b/libs/libcommon/src/libcommon/queue.py @@ -154,2 +153,0 @@ class JobDocument(Document): - "status", - ("type", "status"), @@ -158 +155,0 @@ class JobDocument(Document): - ("priority", "status", "created_at", "namespace", "unicity_id"), @@ -160,2 +156,0 @@ class JobDocument(Document): - ("priority", "status", "type", "created_at", "namespace", "unicity_id"), - ("priority", "status", "created_at", "namespace", "type", "unicity_id"), @@ -162,0 +158,2 @@ class JobDocument(Document): + ("priority", "status", "namespace", "type", "created_at"), + ("priority", "status", "created_at", "namespace", "-difficulty"),
c7c3c9b935a6ab94fcfe556d2bd6d02c7261760c
Quentin Lhoest
2023-07-10T09:49:00
reduce rows lru cache (#1507)
diff --git a/libs/libcommon/src/libcommon/parquet_utils.py b/libs/libcommon/src/libcommon/parquet_utils.py index 8dfe65d5..00105f80 100644 --- a/libs/libcommon/src/libcommon/parquet_utils.py +++ b/libs/libcommon/src/libcommon/parquet_utils.py @@ -273 +273 @@ class RowsIndex: - @lru_cache(maxsize=1024) + @lru_cache(maxsize=8) @@ -311 +311 @@ class Indexer: - @lru_cache(maxsize=128) + @lru_cache(maxsize=8)
f122c48562d2ab02c2f7ff10f4e0a173a3b9167b
Polina Kazakova
2023-07-07T13:44:22
Delete `/config-names` endpoint (#1498)
diff --git a/e2e/tests/test_11_api.py b/e2e/tests/test_11_api.py index 8dd3e822..d40b8b68 100644 --- a/e2e/tests/test_11_api.py +++ b/e2e/tests/test_11_api.py @@ -40 +40 @@ def test_auth_e2e( - relative_url=f"/config-names?dataset={dataset}", + relative_url=f"/splits?dataset={dataset}", @@ -51 +50,0 @@ def test_auth_e2e( - ("/config-names", "dataset"), diff --git a/services/api/src/api/config.py b/services/api/src/api/config.py index a7a95078..6ae79099 100644 --- a/services/api/src/api/config.py +++ b/services/api/src/api/config.py @@ -63 +62,0 @@ class EndpointConfig: - "/config-names": {"dataset": ["dataset-config-names"]}, diff --git a/services/api/tests/conftest.py b/services/api/tests/conftest.py index ea9ef490..1bd5163a 100644 --- a/services/api/tests/conftest.py +++ b/services/api/tests/conftest.py @@ -46 +45,0 @@ def endpoint_config(monkeypatch_session: MonkeyPatch) -> EndpointConfig: - "/config-names": {"dataset": ["dataset-config-names"]}, @@ -47,0 +47 @@ def endpoint_config(monkeypatch_session: MonkeyPatch) -> EndpointConfig: + "dataset": ["dataset-split-names"], @@ -78 +78 @@ def first_dataset_endpoint(endpoint_definition: StepsByInputTypeAndEndpoint) -> -def first_config_endoint(endpoint_definition: StepsByInputTypeAndEndpoint) -> str: +def first_config_endpoint(endpoint_definition: StepsByInputTypeAndEndpoint) -> str: diff --git a/services/api/tests/routes/test_endpoint.py b/services/api/tests/routes/test_endpoint.py index 7ce3d60a..aff251b6 100644 --- a/services/api/tests/routes/test_endpoint.py +++ b/services/api/tests/routes/test_endpoint.py @@ -31,6 +30,0 @@ def test_endpoints_definition() -> None: - config_names = definition["/config-names"] - assert config_names is not None - assert sorted(list(config_names)) == ["dataset"] - assert config_names["dataset"] is not None - assert len(config_names["dataset"]) == 1 # Only has one processing step - @@ -89,0 +84,2 @@ def test_endpoints_definition() -> None: + with raises(KeyError): + _ = definition["/config-names"] diff --git a/services/api/tests/test_app.py b/services/api/tests/test_app.py index 3e270714..1c6b8499 100644 --- a/services/api/tests/test_app.py +++ b/services/api/tests/test_app.py @@ -70,9 +70,2 @@ def test_get_endpoint(client: TestClient, first_dataset_endpoint: str) -> None: [email protected]( - "dataset,config", - [ - (None, None), - ("a", None), - ("a", ""), - ], -) -def test_get_config_missing_parameter( [email protected]("dataset", (None, "")) +def test_get_dataset_missing_parameter( @@ -81,2 +74 @@ def test_get_config_missing_parameter( - config: Optional[str], - first_config_endoint: str, + first_dataset_endpoint: str, @@ -84 +76 @@ def test_get_config_missing_parameter( - response = client.get(first_config_endoint, params={"dataset": dataset, "config": config, "split": None}) + response = client.get(first_dataset_endpoint, params={"dataset": dataset, "config": None, "split": None}) @@ -87,0 +80 @@ def test_get_config_missing_parameter( +# this test might fail someday, if `first_split_endpoint` fixture appears to be not an only-split-level endpoint diff --git a/services/worker/src/worker/config.py b/services/worker/src/worker/config.py index b116ac70..04e0b0fa 100644 --- a/services/worker/src/worker/config.py +++ b/services/worker/src/worker/config.py @@ -21 +20,0 @@ WORKER_DIFFICULTY_MIN = None -WORKER_ENDPOINT = "/config-names"
c66e943aa4cf90e060f40a2e17c6602b326668cb
Quentin Lhoest
2023-07-07T09:50:36
Remove parquet index without metadata (#1503)
diff --git a/libs/libcommon/src/libcommon/config.py b/libs/libcommon/src/libcommon/config.py index 472fa14f..48041b90 100644 --- a/libs/libcommon/src/libcommon/config.py +++ b/libs/libcommon/src/libcommon/config.py @@ -249 +249 @@ class ProcessingGraphConfig: - "triggered_by": "config-parquet", + "triggered_by": "config-parquet-metadata", diff --git a/libs/libcommon/src/libcommon/parquet_utils.py b/libs/libcommon/src/libcommon/parquet_utils.py index b3bfcbbd..8dfe65d5 100644 --- a/libs/libcommon/src/libcommon/parquet_utils.py +++ b/libs/libcommon/src/libcommon/parquet_utils.py @@ -10 +9,0 @@ import numpy as np -import numpy.typing as npt @@ -16,2 +14,0 @@ from huggingface_hub import HfFileSystem -from huggingface_hub.hf_file_system import safe_quote -from tqdm.contrib.concurrent import thread_map @@ -19 +15,0 @@ from tqdm.contrib.concurrent import thread_map -from libcommon.constants import PARQUET_REVISION @@ -23 +18,0 @@ from libcommon.simple_cache import get_previous_step_or_raise -from libcommon.utils import SplitHubFile @@ -67,130 +61,0 @@ def get_supported_unsupported_columns( -# TODO: how to invalidate the cache when the parquet branch is created or deleted? -@lru_cache(maxsize=128) -def get_hf_fs(hf_token: Optional[str]) -> HfFileSystem: - """Get the Hugging Face filesystem. - - Args: - hf_token (Optional[str]): The token to access the filesystem. - Returns: - HfFileSystem: The Hugging Face filesystem. - """ - return HfFileSystem(token=hf_token) - - -def get_hf_parquet_uris(paths: List[str], dataset: str) -> List[str]: - """Get the Hugging Face URIs from the Parquet branch of the dataset repository (see PARQUET_REVISION). - - Args: - paths (List[str]): List of paths. - dataset (str): The dataset name. - Returns: - List[str]: List of Parquet URIs. - """ - return [f"hf://datasets/{dataset}@{safe_quote(PARQUET_REVISION)}/{path}" for path in paths] - - -@dataclass -class ParquetIndexWithoutMetadata: - features: Features - supported_columns: List[str] - unsupported_columns: List[str] - row_group_offsets: npt.NDArray[np.int64] - row_group_readers: List[Callable[[], pa.Table]] - - def query(self, offset: int, length: int) -> pa.Table: - """Query the parquet files - - Note that this implementation will always read at least one row group, to get the list of columns and always - have the same schema, even if the requested rows are invalid (out of range). - - Args: - offset (int): The first row to read. - length (int): The number of rows to read. - - Returns: - pa.Table: The requested rows. - """ - if (len(self.row_group_offsets) == 0) or (len(self.row_group_readers) == 0): - raise ParquetResponseEmptyError("No parquet files found.") - last_row_in_parquet = self.row_group_offsets[-1] - 1 - first_row = min(offset, last_row_in_parquet) - last_row = min(offset + length - 1, last_row_in_parquet) - first_row_group_id, last_row_group_id = np.searchsorted( - self.row_group_offsets, [first_row, last_row], side="right" - ) - pa_table = pa.concat_tables( - [self.row_group_readers[i]() for i in range(first_row_group_id, last_row_group_id + 1)] - ) - first_row_in_pa_table = self.row_group_offsets[first_row_group_id - 1] if first_row_group_id > 0 else 0 - return pa_table.slice(offset - first_row_in_pa_table, length) - - @staticmethod - def from_parquet_file_items( - parquet_file_items: List[SplitHubFile], - dataset: str, - config: str, - split: str, - hf_token: Optional[str], - unsupported_features_magic_strings: List[str] = [], - ) -> "ParquetIndexWithoutMetadata": - try: - sources = sorted(f"{config}/{parquet_file['filename']}" for parquet_file in parquet_file_items) - except Exception as e: - raise ParquetResponseFormatError(f"Could not parse the list of parquet files: {e}") from e - logging.debug( - f"Found {len(sources)} parquet files for dataset={dataset}, config={config}, split={split}: {sources}" - ) - if not sources: - raise ParquetResponseEmptyError("No parquet files found.") - with StepProfiler( - method="parquet_index_without_metadata.from_parquet_file_items", step="get the Hub's dataset filesystem" - ): - fs = get_hf_fs(hf_token=hf_token) - with StepProfiler(method="parquet_index_without_metadata.from_parquet_file_items", step="get the source URIs"): - source_uris = get_hf_parquet_uris(sources, dataset=dataset) - with StepProfiler( - method="parquet_index_without_metadata.from_parquet_file_items", - step="get one parquet reader per parquet file", - ): - desc = f"{dataset}/{config}/{split}" - try: - parquet_files: List[pq.ParquetFile] = thread_map( - partial(pq.ParquetFile, filesystem=fs), source_uris, desc=desc, unit="pq", disable=True - ) - except Exception as e: - raise FileSystemError(f"Could not read the parquet files: {e}") from e - with StepProfiler( - method="parquet_index_without_metadata.from_parquet_file_items", step="get the dataset's features" - ): - features = Features.from_arrow_schema(parquet_files[0].schema.to_arrow_schema()) - supported_columns, unsupported_columns = get_supported_unsupported_columns( - features, unsupported_features_magic_strings=unsupported_features_magic_strings - ) - - with StepProfiler( - method="parquet_index_without_metadata.from_parquet_file_items", step="create the row group offsets" - ): - row_group_offsets = np.cumsum( - [ - parquet_file.metadata.row_group(group_id).num_rows - for parquet_file in parquet_files - for group_id in range(parquet_file.metadata.num_row_groups) - ] - ) - with StepProfiler( - method="parquet_index_without_metadata.from_parquet_file_items", step="create the row group readers" - ): - row_group_readers: List[Callable[[], pa.Table]] = [ - partial(parquet_file.read_row_group, i=group_id, columns=supported_columns) - for parquet_file in parquet_files - for group_id in range(parquet_file.metadata.num_row_groups) - ] - return ParquetIndexWithoutMetadata( - features=features, - supported_columns=supported_columns, - unsupported_columns=unsupported_columns, - row_group_offsets=row_group_offsets, - row_group_readers=row_group_readers, - ) - - @@ -376 +241 @@ class RowsIndex: - ) -> Union[ParquetIndexWithMetadata, ParquetIndexWithoutMetadata]: + ) -> ParquetIndexWithMetadata: @@ -380,4 +244,0 @@ class RowsIndex: - config_parquet_processing_steps = self.processing_graph.get_config_parquet_processing_steps() - if not config_parquet_processing_steps: - raise RuntimeError("No processing steps are configured to provide a config's parquet response.") - @@ -387 +247,0 @@ class RowsIndex: - @@ -389,2 +248,0 @@ class RowsIndex: - cache_kinds.extend([step.cache_kind for step in config_parquet_processing_steps]) - @@ -399,33 +257,14 @@ class RowsIndex: - if content and "parquet_files" in content: - logging.info( - f"Create ParquetIndexWithoutMetadata for dataset={self.dataset}, config={self.config}," - f" split={self.split}" - ) - return ParquetIndexWithoutMetadata.from_parquet_file_items( - [ - parquet_item - for parquet_item in content["parquet_files"] - if parquet_item["split"] == self.split and parquet_item["config"] == self.config - ], - dataset=self.dataset, - config=self.config, - split=self.split, - hf_token=hf_token, - unsupported_features_magic_strings=unsupported_features_magic_strings, - ) - else: - logging.info( - f"Create ParquetIndexWithMetadata for dataset={self.dataset}, config={self.config}," - f" split={self.split}" - ) - return ParquetIndexWithMetadata.from_parquet_metadata_items( - [ - parquet_item - for parquet_item in content["parquet_files_metadata"] - if parquet_item["split"] == self.split and parquet_item["config"] == self.config - ], - parquet_metadata_directory=parquet_metadata_directory, - httpfs=self.httpfs, - hf_token=hf_token, - unsupported_features_magic_strings=unsupported_features_magic_strings, - ) + logging.info( + f"Create ParquetIndexWithMetadata for dataset={self.dataset}, config={self.config}, split={self.split}" + ) + return ParquetIndexWithMetadata.from_parquet_metadata_items( + [ + parquet_item + for parquet_item in content["parquet_files_metadata"] + if parquet_item["split"] == self.split and parquet_item["config"] == self.config + ], + parquet_metadata_directory=parquet_metadata_directory, + httpfs=self.httpfs, + hf_token=hf_token, + unsupported_features_magic_strings=unsupported_features_magic_strings, + ) diff --git a/libs/libcommon/tests/test_processing_graph.py b/libs/libcommon/tests/test_processing_graph.py index 0a15fda6..639c2275 100644 --- a/libs/libcommon/tests/test_processing_graph.py +++ b/libs/libcommon/tests/test_processing_graph.py @@ -132,2 +132,2 @@ def graph() -> ProcessingGraph: - ["config-parquet"], - ["config-parquet", "dataset-config-names", "config-parquet-and-info"], + ["config-parquet-metadata"], + ["config-parquet", "dataset-config-names", "config-parquet-and-info", "config-parquet-metadata"], @@ -152 +152 @@ def graph() -> ProcessingGraph: - ["config-parquet-metadata", "split-first-rows-from-parquet", "dataset-parquet"], + ["config-parquet-metadata", "dataset-parquet"], @@ -158 +158 @@ def graph() -> ProcessingGraph: - [], + ["split-first-rows-from-parquet"], @@ -206,0 +207 @@ def graph() -> ProcessingGraph: + "config-parquet-metadata", @@ -221,0 +223 @@ def graph() -> ProcessingGraph: + "config-parquet-metadata", @@ -236,0 +239 @@ def graph() -> ProcessingGraph: + "config-parquet-metadata", @@ -253,0 +257 @@ def graph() -> ProcessingGraph: + "config-parquet-metadata", @@ -270,0 +275 @@ def graph() -> ProcessingGraph: + "config-parquet-metadata", @@ -288,0 +294 @@ def graph() -> ProcessingGraph: + "config-parquet-metadata", diff --git a/services/rows/tests/routes/test_rows.py b/services/rows/tests/routes/test_rows.py index fdb55d06..f40c27b8 100644 --- a/services/rows/tests/routes/test_rows.py +++ b/services/rows/tests/routes/test_rows.py @@ -12 +11,0 @@ from unittest.mock import patch -import numpy as np @@ -19,6 +18 @@ from fsspec.implementations.http import HTTPFileSystem -from libcommon.parquet_utils import ( - Indexer, - ParquetIndexWithMetadata, - ParquetIndexWithoutMetadata, - RowsIndex, -) +from libcommon.parquet_utils import Indexer, ParquetIndexWithMetadata, RowsIndex @@ -264,60 +257,0 @@ def indexer( -def mock_get_hf_parquet_uris(paths: List[str], dataset: str) -> List[str]: - return paths - - [email protected] -def rows_index( - indexer: Indexer, - ds_sharded: Dataset, - ds_sharded_fs: AbstractFileSystem, - dataset_sharded_with_config_parquet: dict[str, Any], -) -> Generator[RowsIndex, None, None]: - with patch("libcommon.parquet_utils.get_hf_fs", return_value=ds_sharded_fs): - with patch("libcommon.parquet_utils.get_hf_parquet_uris", side_effect=mock_get_hf_parquet_uris): - yield indexer.get_rows_index("ds_sharded", "plain_text", "train") - - -def test_indexer_get_rows_index( - indexer: Indexer, ds: Dataset, ds_fs: AbstractFileSystem, dataset_with_config_parquet: dict[str, Any] -) -> None: - with patch("libcommon.parquet_utils.get_hf_fs", return_value=ds_fs): - with patch("libcommon.parquet_utils.get_hf_parquet_uris", side_effect=mock_get_hf_parquet_uris): - index = indexer.get_rows_index("ds", "plain_text", "train") - assert isinstance(index.parquet_index, ParquetIndexWithoutMetadata) - assert index.parquet_index.features == ds.features - assert index.parquet_index.row_group_offsets.tolist() == [len(ds)] - assert len(index.parquet_index.row_group_readers) == 1 - row_group_reader = index.parquet_index.row_group_readers[0] - pa_table = row_group_reader() - assert pa_table.to_pydict() == ds.to_dict() - - -def test_indexer_get_rows_index_sharded( - indexer: Indexer, - ds: Dataset, - ds_sharded: Dataset, - ds_sharded_fs: AbstractFileSystem, - dataset_sharded_with_config_parquet: dict[str, Any], -) -> None: - with patch("libcommon.parquet_utils.get_hf_fs", return_value=ds_sharded_fs): - with patch("libcommon.parquet_utils.get_hf_parquet_uris", side_effect=mock_get_hf_parquet_uris): - index = indexer.get_rows_index("ds_sharded", "plain_text", "train") - assert isinstance(index.parquet_index, ParquetIndexWithoutMetadata) - assert index.parquet_index.features == ds_sharded.features - assert index.parquet_index.row_group_offsets.tolist() == np.cumsum([len(ds)] * 4).tolist() - assert len(index.parquet_index.row_group_readers) == 4 - row_group_reader = index.parquet_index.row_group_readers[0] - pa_table = row_group_reader() - assert pa_table.to_pydict() == ds.to_dict() - - -def test_rows_index_query(rows_index: RowsIndex, ds_sharded: Dataset) -> None: - assert rows_index.query(offset=1, length=3).to_pydict() == ds_sharded[1:4] - assert rows_index.query(offset=1, length=-1).to_pydict() == ds_sharded[:0] - assert rows_index.query(offset=1, length=0).to_pydict() == ds_sharded[:0] - assert rows_index.query(offset=999999, length=1).to_pydict() == ds_sharded[:0] - assert rows_index.query(offset=1, length=99999999).to_pydict() == ds_sharded[1:] - with pytest.raises(IndexError): - rows_index.query(offset=-1, length=2) - - diff --git a/services/worker/tests/job_runners/split/test_first_rows_from_parquet.py b/services/worker/tests/job_runners/split/test_first_rows_from_parquet.py index 980eb479..06d2222f 100644 --- a/services/worker/tests/job_runners/split/test_first_rows_from_parquet.py +++ b/services/worker/tests/job_runners/split/test_first_rows_from_parquet.py @@ -3,0 +4 @@ +import os @@ -6 +7 @@ from http import HTTPStatus -from typing import Callable, Generator, List +from typing import Callable, Generator @@ -8,0 +10 @@ from unittest.mock import patch +import pyarrow.parquet as pq @@ -48 +50 @@ def get_job_runner( - "provides_config_parquet": True, + "provides_config_parquet_metadata": True, @@ -92,4 +93,0 @@ def ds_fs(ds: Dataset, tmpfs: AbstractFileSystem) -> Generator[AbstractFileSyste -def mock_get_hf_parquet_uris(paths: List[str], dataset: str) -> List[str]: - return paths - - @@ -104,0 +103 @@ def test_compute( + ds: Dataset, @@ -105,0 +105 @@ def test_compute( + parquet_metadata_directory: StrPath, @@ -112,0 +113,5 @@ def test_compute( + parquet_file = ds_fs.open("config/dataset-split.parquet") + fake_url = ( + "https://fake.huggingface.co/datasets/dataset/resolve/refs%2Fconvert%2Fparquet/config/dataset-split.parquet" + ) + fake_metadata_subpath = "fake-parquet-metadata/dataset/config/dataset-split.parquet" @@ -114,2 +119,2 @@ def test_compute( - config_parquet_content = { - "parquet_files": [ + config_parquet_metadata_content = { + "parquet_files_metadata": [ @@ -120 +125 @@ def test_compute( - "url": "https://fake.huggingface.co/datasets/dataset/resolve/refs%2Fconvert%2Fparquet/config/dataset-split.parquet", # noqa: E501 + "url": fake_url, # noqa: E501 @@ -122 +127,3 @@ def test_compute( - "size": 128, + "size": parquet_file.size, + "num_rows": len(ds), + "parquet_metadata_subpath": fake_metadata_subpath, @@ -131 +138 @@ def test_compute( - content=config_parquet_content, + content=config_parquet_metadata_content, @@ -135,20 +142,18 @@ def test_compute( - with patch("libcommon.parquet_utils.get_hf_fs", return_value=ds_fs): - with patch( - "libcommon.parquet_utils.get_hf_parquet_uris", - side_effect=mock_get_hf_parquet_uris, - ): - job_runner = get_job_runner( - dataset, - config, - split, - replace( - app_config, - common=replace(app_config.common, hf_token=None), - first_rows=replace( - app_config.first_rows, - max_number=1_000_000, - min_number=10, - max_bytes=rows_max_bytes, - min_cell_bytes=10, - columns_max_number=columns_max_number, - ), + parquet_metadata = pq.read_metadata(ds_fs.open("config/dataset-split.parquet")) + with patch("libcommon.parquet_utils.HTTPFile", return_value=parquet_file) as mock_http_file, patch( + "pyarrow.parquet.read_metadata", return_value=parquet_metadata + ) as mock_read_metadata, patch("pyarrow.parquet.read_schema", return_value=ds.data.schema) as mock_read_schema: + job_runner = get_job_runner( + dataset, + config, + split, + replace( + app_config, + common=replace(app_config.common, hf_token=None), + first_rows=replace( + app_config.first_rows, + max_number=1_000_000, + min_number=10, + max_bytes=rows_max_bytes, + min_cell_bytes=10, + columns_max_number=columns_max_number, @@ -156 +161,2 @@ def test_compute( - ) + ), + ) @@ -158,31 +164,40 @@ def test_compute( - if error_code: - with pytest.raises(CustomError) as error_info: - job_runner.compute() - assert error_info.value.code == error_code - else: - response = job_runner.compute().content - assert get_json_size(response) <= rows_max_bytes - assert response - assert response["rows"] - assert response["features"] - assert len(response["rows"]) == 3 # testing file has 3 rows see config/dataset-split.parquet file - assert ( - len(response["features"]) == 2 - ) # testing file has 2 columns see config/dataset-split.parquet file - assert response["features"][0]["feature_idx"] == 0 - assert response["features"][0]["name"] == "col1" - assert response["features"][0]["type"]["_type"] == "Value" - assert response["features"][0]["type"]["dtype"] == "int64" - assert response["features"][1]["feature_idx"] == 1 - assert response["features"][1]["name"] == "col2" - assert response["features"][1]["type"]["_type"] == "Value" - assert response["features"][1]["type"]["dtype"] == "string" - assert response["rows"][0]["row_idx"] == 0 - assert response["rows"][0]["truncated_cells"] == [] - assert response["rows"][0]["row"] == {"col1": 1, "col2": "a"} - assert response["rows"][1]["row_idx"] == 1 - assert response["rows"][1]["truncated_cells"] == [] - assert response["rows"][1]["row"] == {"col1": 2, "col2": "b"} - assert response["rows"][2]["row_idx"] == 2 - assert response["rows"][2]["truncated_cells"] == [] - assert response["rows"][2]["row"] == {"col1": 3, "col2": "c"} + if error_code: + with pytest.raises(CustomError) as error_info: + job_runner.compute() + assert error_info.value.code == error_code + else: + response = job_runner.compute().content + assert get_json_size(response) <= rows_max_bytes + assert response + assert response["rows"] + assert response["features"] + assert len(response["rows"]) == 3 # testing file has 3 rows see config/dataset-split.parquet file + assert len(response["features"]) == 2 # testing file has 2 columns see config/dataset-split.parquet file + assert response["features"][0]["feature_idx"] == 0 + assert response["features"][0]["name"] == "col1" + assert response["features"][0]["type"]["_type"] == "Value" + assert response["features"][0]["type"]["dtype"] == "int64" + assert response["features"][1]["feature_idx"] == 1 + assert response["features"][1]["name"] == "col2" + assert response["features"][1]["type"]["_type"] == "Value" + assert response["features"][1]["type"]["dtype"] == "string" + assert response["rows"][0]["row_idx"] == 0 + assert response["rows"][0]["truncated_cells"] == [] + assert response["rows"][0]["row"] == {"col1": 1, "col2": "a"} + assert response["rows"][1]["row_idx"] == 1 + assert response["rows"][1]["truncated_cells"] == [] + assert response["rows"][1]["row"] == {"col1": 2, "col2": "b"} + assert response["rows"][2]["row_idx"] == 2 + assert response["rows"][2]["truncated_cells"] == [] + assert response["rows"][2]["row"] == {"col1": 3, "col2": "c"} + + assert len(mock_http_file.call_args_list) == 1 + assert mock_http_file.call_args_list[0][0][1] == fake_url + assert len(mock_read_metadata.call_args_list) == 1 + assert mock_read_metadata.call_args_list[0][0][0] == os.path.join( + parquet_metadata_directory, fake_metadata_subpath + ) + assert len(mock_read_schema.call_args_list) == 1 + assert mock_read_schema.call_args_list[0][0][0] == os.path.join( + parquet_metadata_directory, fake_metadata_subpath + )
38e177ec3e3f9a56ff83a6ce35deb9386e834fb1
Quentin Lhoest
2023-07-06T16:12:27
Convert if too big row groups for copy (#1497)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 2686c8c8..ee6303c8 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -114,0 +115 @@ parquetAndInfo: + maxRowGroupByteSizeForCopy: "500_000_000" diff --git a/chart/templates/_envWorker.tpl b/chart/templates/_envWorker.tpl index 18e1497c..07c101d1 100644 --- a/chart/templates/_envWorker.tpl +++ b/chart/templates/_envWorker.tpl @@ -55,0 +56,4 @@ +- name: PARQUET_AND_INFO_MAX_EXTERNAL_DATA_FILES + value: {{ .Values.parquetAndInfo.maxExternalDataFiles | quote }} +- name: PARQUET_AND_INFO_MAX_ROW_GROUP_BYTE_SIZE_FOR_COPY + value: {{ .Values.parquetAndInfo.maxRowGroupByteSizeForCopy | quote }} diff --git a/chart/values.yaml b/chart/values.yaml index 7dc3e7cc..191acf46 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -180 +180 @@ parquetAndInfo: - # the maximum size of the supported datasets. Bigger datasets, or datasets that cannot provide the size, are ignored. + # the maximum size in bytes of the dataset to pre-compute the parquet files. Bigger datasets, or datasets without that information, are partially streamed to get parquet files up to this value. @@ -181,0 +182,4 @@ parquetAndInfo: + # the maximum number of external files of the datasets. Bigger datasets, or datasets without that information, are partially streamed to get parquet files up to `maxDatasetSize` bytes. + maxExternalDataFiles: "10_000" + # the maximum size in bytes of the row groups of parquet datasets that are copied to the target revision. Bigger datasets, or datasets without that information, are partially streamed to get parquet files up to `maxDatasetSize` bytes. + maxRowGroupByteSizeForCopy: "100_000_000" diff --git a/services/worker/README.md b/services/worker/README.md index 778a5ffb..bb6c8c98 100644 --- a/services/worker/README.md +++ b/services/worker/README.md @@ -74 +74,3 @@ Set environment variables to configure the `parquet-and-info` worker (`PARQUET_A -- `PARQUET_AND_INFO_MAX_DATASET_SIZE`: the maximum size in bytes of the dataset to pre-compute the parquet files. Bigger datasets, or datasets without that information, are ignored. Defaults to `100_000_000`. +- `PARQUET_AND_INFO_MAX_DATASET_SIZE`: the maximum size in bytes of the dataset to pre-compute the parquet files. Bigger datasets, or datasets without that information, are partially streamed to get parquet files up to this value. Defaults to `100_000_000`. +- `PARQUET_AND_INFO_MAX_EXTERNAL_DATA_FILES`: the maximum number of external files of the datasets. Bigger datasets, or datasets without that information, are partially streamed to get parquet files up to `PARQUET_AND_INFO_MAX_DATASET_SIZE` bytes. Defaults to `10_000`. +- `PARQUET_AND_INFO_MAX_ROW_GROUP_BYTE_SIZE_FOR_COPY`: the maximum size in bytes of the row groups of parquet datasets that are copied to the target revision. Bigger datasets, or datasets without that information, are partially streamed to get parquet files up to `PARQUET_AND_INFO_MAX_DATASET_SIZE` bytes. Defaults to `100_000_000`. diff --git a/services/worker/src/worker/config.py b/services/worker/src/worker/config.py index 25ba41fa..b116ac70 100644 --- a/services/worker/src/worker/config.py +++ b/services/worker/src/worker/config.py @@ -178,0 +179 @@ PARQUET_AND_INFO_MAX_EXTERNAL_DATA_FILES = 10_000 +PARQUET_AND_INFO_MAX_ROW_GROUP_BYTE_SIZE_FOR_COPY = 100_000_000 @@ -190,0 +192 @@ class ParquetAndInfoConfig: + max_row_group_byte_size_for_copy: int = PARQUET_AND_INFO_MAX_ROW_GROUP_BYTE_SIZE_FOR_COPY @@ -204,0 +207,6 @@ class ParquetAndInfoConfig: + max_external_data_files=env.int( + name="MAX_EXTERNAL_DATA_FILES", default=PARQUET_AND_INFO_MAX_EXTERNAL_DATA_FILES + ), + max_row_group_byte_size_for_copy=env.int( + name="MAX_ROW_GROUP_BYTE_SIZE_FOR_COPY", default=PARQUET_AND_INFO_MAX_ROW_GROUP_BYTE_SIZE_FOR_COPY + ), diff --git a/services/worker/src/worker/job_runners/config/parquet_and_info.py b/services/worker/src/worker/job_runners/config/parquet_and_info.py index cae1b12c..171404c3 100644 --- a/services/worker/src/worker/job_runners/config/parquet_and_info.py +++ b/services/worker/src/worker/job_runners/config/parquet_and_info.py @@ -545 +545 @@ def _is_too_big_from_external_data_files( -def get_writer_batch_size(ds_config_info: datasets.info.DatasetInfo) -> Optional[int]: +def get_writer_batch_size_from_info(ds_config_info: datasets.info.DatasetInfo) -> Optional[int]: @@ -568,0 +569,30 @@ def get_writer_batch_size(ds_config_info: datasets.info.DatasetInfo) -> Optional +def get_writer_batch_size_from_row_group_size( + num_rows: int, row_group_byte_size: int, max_row_group_byte_size: int, factor_of: int = 100, divide_step: int = 10 +) -> int: + """ + Get the writer_batch_size that defines the maximum row group size in the parquet files, + given a sample row group size that mught be too big. + + This allows to optimize random access to parquet file, since accessing 1 row requires + to read its entire row group. + + Args: + num_rows (`int`): + Number of rows in the sample row group. + row_group_byte_size (`int`): + Number of bytes of uncompressed data in the sample row group. + max_row_group_byte_size (`int`): + Maximum number of bytes of uncompressed data for batches that + will be passed to a dataset builder. + Returns: + writer_batch_size (`Optional[int]`): + Writer batch size to pass to a dataset builder. + """ + writer_batch_size = max(num_rows // factor_of * factor_of, factor_of) + writer_batch_byte_size = row_group_byte_size * writer_batch_size / num_rows + while writer_batch_size > factor_of and writer_batch_byte_size > max_row_group_byte_size: + writer_batch_size = max(writer_batch_size // divide_step // factor_of * factor_of, factor_of) + writer_batch_byte_size = row_group_byte_size * writer_batch_size / num_rows + return writer_batch_size + + @@ -613,0 +644,13 @@ class NotAParquetFileError(ValueError): +class ParquetValidationError(ValueError): + """When a parquet file is not validated for copy""" + + +class TooBigRowGroupsError(ParquetValidationError): + """When a parquet file has row groups that are too big for copy""" + + def __init__(self, *args: object, num_rows: int, row_group_byte_size: int) -> None: + super().__init__(*args) + self.num_rows = num_rows + self.row_group_byte_size = row_group_byte_size + + @@ -620,2 +663,2 @@ def get_parquet_file_and_size(url: str, fs: HTTPFileSystem, hf_token: Optional[s -def retry_get_parquet_file_and_size( - url: str, fs: HTTPFileSystem, hf_token: Optional[str] +def retry_and_validate_get_parquet_file_and_size( + url: str, fs: HTTPFileSystem, hf_token: Optional[str], validate: Optional[Callable[[pq.ParquetFile], None]] @@ -625,0 +669,2 @@ def retry_get_parquet_file_and_size( + if validate: + validate(pf) @@ -634 +679,37 @@ def retry_get_parquet_file_and_size( -def fill_builder_info(builder: DatasetBuilder, hf_token: Optional[str]) -> None: +class ParquetFileValidator: + """ + Validate the Parquet files before they are copied to the target revision. + In particular we check that the row group size is not too big, otherwise the dataset viewer + doesn't work correctly. + + Note: we only validate the first parquet files (default 5 first files). + We don't want to check the biggest row group of all the dataset, but rather just get the order + of magnitude of the size. Otherwise we might end up converting a dataset that has 99% good row + groups but 1% that is a bit too big, which is overkill. + """ + + def __init__(self, max_row_group_byte_size: int, max_validation: int = 5) -> None: + self.max_row_group_byte_size = max_row_group_byte_size + self.num_validations = 0 + self.max_validations = max_validation + + def validate(self, pf: pq.ParquetFile) -> None: + if self.num_validations >= self.max_validations: + return + row_group_metadata = pf.metadata.row_group(0) + row_group_size = row_group_metadata.total_byte_size + if row_group_metadata.total_byte_size > self.max_row_group_byte_size: + raise TooBigRowGroupsError( + ( + f"Parquet file has too big row groups. First row group has {row_group_size} which exceeds the" + f" limit of {self.max_row_group_byte_size}" + ), + num_rows=row_group_metadata.num_rows, + row_group_byte_size=row_group_metadata.total_byte_size, + ) + self.num_validations += 1 + + +def fill_builder_info( + builder: DatasetBuilder, hf_token: Optional[str], validate: Optional[Callable[[pq.ParquetFile], None]] +) -> None: @@ -648 +729,3 @@ def fill_builder_info(builder: DatasetBuilder, hf_token: Optional[str]) -> None: - functools.partial(retry_get_parquet_file_and_size, fs=fs, hf_token=hf_token), + functools.partial( + retry_and_validate_get_parquet_file_and_size, fs=fs, hf_token=hf_token, validate=validate + ), @@ -653,0 +737,2 @@ def fill_builder_info(builder: DatasetBuilder, hf_token: Optional[str]) -> None: + except ParquetValidationError: + raise @@ -793 +878,3 @@ def list_generated_parquet_files(builder: DatasetBuilder, partial: bool = False) -def stream_convert_to_parquet(builder: DatasetBuilder, max_dataset_size: int) -> Tuple[List[CommitOperationAdd], bool]: +def stream_convert_to_parquet( + builder: DatasetBuilder, max_dataset_size: int, writer_batch_size: Optional[int] = None +) -> Tuple[List[CommitOperationAdd], bool]: @@ -795 +882 @@ def stream_convert_to_parquet(builder: DatasetBuilder, max_dataset_size: int) -> - writer_batch_size = get_writer_batch_size(builder.info) + writer_batch_size = writer_batch_size or get_writer_batch_size_from_info(builder.info) @@ -837 +924 @@ def convert_to_parquet(builder: DatasetBuilder) -> List[CommitOperationAdd]: - writer_batch_size = get_writer_batch_size(builder.info) + writer_batch_size = get_writer_batch_size_from_info(builder.info) @@ -1055,0 +1143 @@ def compute_config_parquet_and_info_response( + max_row_group_byte_size_for_copy: int, @@ -1092,0 +1181,2 @@ def compute_config_parquet_and_info_response( + max_row_group_byte_size_for_copy (`int`): + The maximum size in bytes of parquet files that are allowed to be copied without being converted. @@ -1181,2 +1271,15 @@ def compute_config_parquet_and_info_response( - parquet_operations = copy_parquet_files(builder) - fill_builder_info(builder, hf_token=hf_token) + try: + parquet_operations = copy_parquet_files(builder) + validate = ParquetFileValidator(max_row_group_byte_size=max_row_group_byte_size_for_copy).validate + fill_builder_info(builder, hf_token=hf_token, validate=validate) + except TooBigRowGroupsError as err: + # aim for a writer_batch_size that is factor of 100 + # and with a batch_byte_size that is smaller than max_row_group_byte_size_for_copy + writer_batch_size = get_writer_batch_size_from_row_group_size( + num_rows=err.num_rows, + row_group_byte_size=err.row_group_byte_size, + max_row_group_byte_size=max_row_group_byte_size_for_copy, + ) + parquet_operations, partial = stream_convert_to_parquet( + builder, max_dataset_size=max_dataset_size, writer_batch_size=writer_batch_size + ) @@ -1305,0 +1409 @@ class ConfigParquetAndInfoJobRunner(ConfigJobRunnerWithDatasetsCache): + max_row_group_byte_size_for_copy=self.parquet_and_info_config.max_row_group_byte_size_for_copy, diff --git a/services/worker/tests/job_runners/config/test_parquet_and_info.py b/services/worker/tests/job_runners/config/test_parquet_and_info.py index 2054d393..d8ee28bf 100644 --- a/services/worker/tests/job_runners/config/test_parquet_and_info.py +++ b/services/worker/tests/job_runners/config/test_parquet_and_info.py @@ -25,0 +26 @@ from datasets.packaged_modules.generator.generator import ( +from datasets.utils.py_utils import asdict @@ -43,0 +45,2 @@ from worker.job_runners.config.parquet_and_info import ( + ParquetFileValidator, + TooBigRowGroupsError, @@ -47,0 +51 @@ from worker.job_runners.config.parquet_and_info import ( + fill_builder_info, @@ -49 +53,2 @@ from worker.job_runners.config.parquet_and_info import ( - get_writer_batch_size, + get_writer_batch_size_from_info, + get_writer_batch_size_from_row_group_size, @@ -623,2 +628,2 @@ def test_parse_repo_filename(filename: str, split: str, config: str, raises: boo -def test_get_writer_batch_size(ds_info: datasets.info.DatasetInfo, has_big_chunks: bool) -> None: - assert get_writer_batch_size(ds_info) == (100 if has_big_chunks else None) +def test_get_writer_batch_size_from_info(ds_info: datasets.info.DatasetInfo, has_big_chunks: bool) -> None: + assert get_writer_batch_size_from_info(ds_info) == (100 if has_big_chunks else None) @@ -854 +859 @@ def test_stream_convert_to_parquet_arrowbasedbuilder( - with patch("worker.job_runners.config.parquet_and_info.get_writer_batch_size", lambda ds_config_info: 1): + with patch("worker.job_runners.config.parquet_and_info.get_writer_batch_size_from_info", lambda ds_config_info: 1): @@ -892 +897 @@ def test_stream_convert_to_parquet_generatorbasedbuilder( - with patch("worker.job_runners.config.parquet_and_info.get_writer_batch_size", lambda ds_config_info: 1): + with patch("worker.job_runners.config.parquet_and_info.get_writer_batch_size_from_info", lambda ds_config_info: 1): @@ -928,0 +934,50 @@ def test_limit_parquet_writes(tmp_path: Path) -> None: + + [email protected]( + "validate,too_big_row_groups", + [ + (None, False), + (ParquetFileValidator(max_row_group_byte_size=1).validate, True), + (ParquetFileValidator(max_row_group_byte_size=100_000).validate, False), + ], +) +def test_fill_builder_info( + hub_reponses_big: HubDatasetTest, + tmp_path: Path, + validate: Optional[Callable[[pq.ParquetFile], None]], + too_big_row_groups: bool, +) -> None: + cache_dir = str(tmp_path / "test_fill_builder_info") + name = hub_reponses_big["name"] + builder = load_dataset_builder(name, cache_dir=cache_dir) + builder.info = datasets.info.DatasetInfo() + if too_big_row_groups: + with pytest.raises(TooBigRowGroupsError) as exc_info: + fill_builder_info(builder, hf_token=None, validate=validate) + assert isinstance(exc_info.value, TooBigRowGroupsError) + assert isinstance(exc_info.value.num_rows, int) + assert isinstance(exc_info.value.row_group_byte_size, int) + else: + fill_builder_info(builder, hf_token=None, validate=validate) + expected_info = hub_reponses_big["parquet_and_info_response"]["dataset_info"] + assert expected_info == asdict(builder.info) + + [email protected]( + "num_rows, row_group_byte_size, max_row_group_byte_size, expected", + [ + (1000, 1000, 500, 100), + (1000, 1000_000, 500_000, 100), + (123456789, 123456789, 1000, 100), + (987654321, 987654321, 1000, 900), + (1000, 10, 1000, 1000), + (10, 1000, 1000, 100), + ], +) +def test_get_writer_batch_size_from_row_group_size( + num_rows: int, row_group_byte_size: int, max_row_group_byte_size: int, expected: int +) -> None: + writer_batch_size = get_writer_batch_size_from_row_group_size( + num_rows=num_rows, row_group_byte_size=row_group_byte_size, max_row_group_byte_size=max_row_group_byte_size + ) + assert writer_batch_size == expected diff --git a/tools/docker-compose-datasets-server.yml b/tools/docker-compose-datasets-server.yml index 542101d5..7c6f38ee 100644 --- a/tools/docker-compose-datasets-server.yml +++ b/tools/docker-compose-datasets-server.yml @@ -139,0 +140,2 @@ services: + PARQUET_AND_INFO_MAX_EXTERNAL_DATA_FILES: ${PARQUET_AND_INFO_MAX_EXTERNAL_DATA_FILES-10_000} + PARQUET_AND_INFO_MAX_ROW_GROUP_BYTE_SIZE_FOR_COPY: ${PARQUET_AND_INFO_MAX_ROW_GROUP_BYTE_SIZE_FOR_COPY-100_000_000} diff --git a/tools/docker-compose-dev-datasets-server.yml b/tools/docker-compose-dev-datasets-server.yml index 3a5cb0f4..c7a0e114 100644 --- a/tools/docker-compose-dev-datasets-server.yml +++ b/tools/docker-compose-dev-datasets-server.yml @@ -144,0 +145,2 @@ services: + PARQUET_AND_INFO_MAX_EXTERNAL_DATA_FILES: ${PARQUET_AND_INFO_MAX_EXTERNAL_DATA_FILES-10_000} + PARQUET_AND_INFO_MAX_ROW_GROUP_BYTE_SIZE_FOR_COPY: ${PARQUET_AND_INFO_MAX_ROW_GROUP_BYTE_SIZE_FOR_COPY-100_000_000}
678c95b21c80f44e0ff9e81cebd3cd173335eea2
Andrea Francis Soria Jimenez
2023-07-06T15:13:12
Exclude parquet volume (#1501)
diff --git a/chart/templates/_initContainerParquetMetadata.tpl b/chart/templates/_initContainerParquetMetadata.tpl index 8e9d86c9..fb7fa696 100644 --- a/chart/templates/_initContainerParquetMetadata.tpl +++ b/chart/templates/_initContainerParquetMetadata.tpl @@ -14 +14 @@ - name: parquet-data + name: data diff --git a/chart/templates/_volumeMountParquetMetadata.tpl b/chart/templates/_volumeMountParquetMetadata.tpl index c718097a..9c3fc40e 100644 --- a/chart/templates/_volumeMountParquetMetadata.tpl +++ b/chart/templates/_volumeMountParquetMetadata.tpl @@ -7 +7 @@ - name: parquet-data + name: data @@ -15 +15 @@ - name: parquet-data + name: data diff --git a/chart/templates/_volumeParquet.tpl b/chart/templates/_volumeParquet.tpl deleted file mode 100644 index 3459f819..00000000 --- a/chart/templates/_volumeParquet.tpl +++ /dev/null @@ -1,8 +0,0 @@ -# SPDX-License-Identifier: Apache-2.0 -# Copyright 2022 The HuggingFace Authors. - -{{- define "volumeParquet" -}} -- name: parquet-data - persistentVolumeClaim: - claimName: {{ .Values.parquetPersistence.existingClaim | default (include "name" .) }} -{{- end -}} diff --git a/chart/templates/services/rows/deployment.yaml b/chart/templates/services/rows/deployment.yaml index b1dacaef..f4667a87 100644 --- a/chart/templates/services/rows/deployment.yaml +++ b/chart/templates/services/rows/deployment.yaml @@ -34 +33,0 @@ spec: - {{ include "volumeParquet" . | nindent 8 }} diff --git a/chart/templates/worker/_deployment.yaml b/chart/templates/worker/_deployment.yaml index c6441888..f63b9a01 100644 --- a/chart/templates/worker/_deployment.yaml +++ b/chart/templates/worker/_deployment.yaml @@ -37 +36,0 @@ spec: - {{ include "volumeParquet" . | nindent 8 }}
001b9efd51f161b9d4016ec4d4c111c53662e06f
Andrea Francis Soria Jimenez
2023-07-06T14:43:13
Calle volumeCache (#1500)
diff --git a/chart/templates/worker/_deployment.yaml b/chart/templates/worker/_deployment.yaml index bbfee9e8..c6441888 100644 --- a/chart/templates/worker/_deployment.yaml +++ b/chart/templates/worker/_deployment.yaml @@ -33 +33,2 @@ spec: - volumes: + volumes: + {{ include "volumeCache" . | nindent 8 }}
fbc5a4e8d96ab2ece97e65d2bf33bdb371cf8a7d
Andrea Francis Soria Jimenez
2023-07-06T14:26:02
Fix volume ref (#1499)
diff --git a/chart/templates/_volumeMountCache.tpl b/chart/templates/_volumeMountCache.tpl index 7a01c872..08541bc6 100644 --- a/chart/templates/_volumeMountCache.tpl +++ b/chart/templates/_volumeMountCache.tpl @@ -7 +7 @@ - name: data + name: cache-data diff --git a/chart/templates/_volumeMountDuckDBIndex.tpl b/chart/templates/_volumeMountDuckDBIndex.tpl index 01c37b89..6b148c97 100644 --- a/chart/templates/_volumeMountDuckDBIndex.tpl +++ b/chart/templates/_volumeMountDuckDBIndex.tpl @@ -7 +7 @@ - name: data + name: duckdb-data diff --git a/chart/templates/_volumeMountParquetMetadata.tpl b/chart/templates/_volumeMountParquetMetadata.tpl index 9c3fc40e..c718097a 100644 --- a/chart/templates/_volumeMountParquetMetadata.tpl +++ b/chart/templates/_volumeMountParquetMetadata.tpl @@ -7 +7 @@ - name: data + name: parquet-data @@ -15 +15 @@ - name: data + name: parquet-data
30328c40269de349eba5b10da6d16837d98576ed
Andrea Francis Soria Jimenez
2023-07-06T14:04:45
Adding EFS volumes (#1495)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 3baf4565..2686c8c8 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -86,0 +87,9 @@ persistence: +cachePersistence: + existingClaim: "datasets-server-cache-pvc" + +parquetPersistence: + existingClaim: "datasets-server-parquet-pvc" + +duckdbPersistence: + existingClaim: "datasets-server-duckdb-pvc" + diff --git a/chart/env/staging.yaml b/chart/env/staging.yaml index 4aeea9d6..02c8de79 100644 --- a/chart/env/staging.yaml +++ b/chart/env/staging.yaml @@ -83,0 +84,9 @@ persistence: +cachePersistence: + existingClaim: "datasets-server-cache-pvc" + +parquetPersistence: + existingClaim: "datasets-server-parquet-pvc" + +duckdbPersistence: + existingClaim: "datasets-server-duckdb-pvc" + diff --git a/chart/templates/_initContainerCache.tpl b/chart/templates/_initContainerCache.tpl index 149cd80a..22a2dc72 100644 --- a/chart/templates/_initContainerCache.tpl +++ b/chart/templates/_initContainerCache.tpl @@ -14 +14 @@ - name: data + name: cache-data diff --git a/chart/templates/_initContainerDuckDBIndex.tpl b/chart/templates/_initContainerDuckDBIndex.tpl index ed7cb43b..59cbf584 100644 --- a/chart/templates/_initContainerDuckDBIndex.tpl +++ b/chart/templates/_initContainerDuckDBIndex.tpl @@ -14 +14 @@ - name: data + name: duckdb-data diff --git a/chart/templates/_initContainerParquetMetadata.tpl b/chart/templates/_initContainerParquetMetadata.tpl index fb7fa696..8e9d86c9 100644 --- a/chart/templates/_initContainerParquetMetadata.tpl +++ b/chart/templates/_initContainerParquetMetadata.tpl @@ -14 +14 @@ - name: data + name: parquet-data diff --git a/chart/templates/_volumeCache.tpl b/chart/templates/_volumeCache.tpl new file mode 100644 index 00000000..871cd087 --- /dev/null +++ b/chart/templates/_volumeCache.tpl @@ -0,0 +1,8 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2022 The HuggingFace Authors. + +{{- define "volumeCache" -}} +- name: cache-data + persistentVolumeClaim: + claimName: {{ .Values.cachePersistence.existingClaim | default (include "name" .) }} +{{- end -}} diff --git a/chart/templates/_volumeDuckDB.tpl b/chart/templates/_volumeDuckDB.tpl new file mode 100644 index 00000000..4beb9367 --- /dev/null +++ b/chart/templates/_volumeDuckDB.tpl @@ -0,0 +1,8 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2022 The HuggingFace Authors. + +{{- define "volumeDuckDB" -}} +- name: duckdb-data + persistentVolumeClaim: + claimName: {{ .Values.duckdbPersistence.existingClaim | default (include "name" .) }} +{{- end -}} diff --git a/chart/templates/_volumeParquet.tpl b/chart/templates/_volumeParquet.tpl new file mode 100644 index 00000000..3459f819 --- /dev/null +++ b/chart/templates/_volumeParquet.tpl @@ -0,0 +1,8 @@ +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2022 The HuggingFace Authors. + +{{- define "volumeParquet" -}} +- name: parquet-data + persistentVolumeClaim: + claimName: {{ .Values.parquetPersistence.existingClaim | default (include "name" .) }} +{{- end -}} diff --git a/chart/templates/services/rows/deployment.yaml b/chart/templates/services/rows/deployment.yaml index d5edea1c..b1dacaef 100644 --- a/chart/templates/services/rows/deployment.yaml +++ b/chart/templates/services/rows/deployment.yaml @@ -32 +32,3 @@ spec: - volumes: {{ include "volumeData" . | nindent 8 }} + volumes: + {{ include "volumeData" . | nindent 8 }} + {{ include "volumeParquet" . | nindent 8 }} diff --git a/chart/templates/worker/_deployment.yaml b/chart/templates/worker/_deployment.yaml index 03a70646..bbfee9e8 100644 --- a/chart/templates/worker/_deployment.yaml +++ b/chart/templates/worker/_deployment.yaml @@ -33 +33,4 @@ spec: - volumes: {{ include "volumeData" . | nindent 8 }} + volumes: + {{ include "volumeData" . | nindent 8 }} + {{ include "volumeDuckDB" . | nindent 8 }} + {{ include "volumeParquet" . | nindent 8 }} diff --git a/chart/values.yaml b/chart/values.yaml index 3be2bfc4..7dc3e7cc 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -107,0 +108,9 @@ persistence: +cachePersistence: + existingClaim: "" + +parquetPersistence: + existingClaim: "" + +duckdbPersistence: + existingClaim: "" +
fa060501000cf1d6e5c652f940fe4dd83dbd4f4e
Sylvain Lesage
2023-07-05T16:37:45
feat: 🎸 reduce the number of workers (#1496)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index 12855799..3baf4565 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -301 +301 @@ workers: - replicas: 150 + replicas: 60 @@ -318 +318 @@ workers: - replicas: 20 + replicas: 12
7956951256215423d7ee6e6718bd7e249ec7eaba
Sylvain Lesage
2023-07-05T16:09:47
feat: 🎸 increase resources to flush the jobs (#1494)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index ec082cf5..12855799 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -301 +301 @@ workers: - replicas: 80 + replicas: 150 @@ -318 +318 @@ workers: - replicas: 12 + replicas: 20
b212cfb8b25a2df75266f27cfdea47f78d3e8cf2
Sylvain Lesage
2023-07-05T16:07:45
feat: 🎸 avoid adding filters on difficulty when not needed (#1493)
diff --git a/libs/libcommon/src/libcommon/constants.py b/libs/libcommon/src/libcommon/constants.py index 19dc97e7..c04596eb 100644 --- a/libs/libcommon/src/libcommon/constants.py +++ b/libs/libcommon/src/libcommon/constants.py @@ -18,0 +19,2 @@ DEFAULT_DIFFICULTY = 50 +DEFAULT_DIFFICULTY_MAX = 100 +DEFAULT_DIFFICULTY_MIN = 0 diff --git a/libs/libcommon/src/libcommon/queue.py b/libs/libcommon/src/libcommon/queue.py index 70a339a5..acae7aa2 100644 --- a/libs/libcommon/src/libcommon/queue.py +++ b/libs/libcommon/src/libcommon/queue.py @@ -23,0 +24,2 @@ from libcommon.constants import ( + DEFAULT_DIFFICULTY_MAX, + DEFAULT_DIFFICULTY_MIN, @@ -490 +492 @@ class Queue: - if difficulty_min: + if difficulty_min is not None and difficulty_min > DEFAULT_DIFFICULTY_MIN: @@ -492 +494 @@ class Queue: - if difficulty_max: + if difficulty_max is not None and difficulty_max < DEFAULT_DIFFICULTY_MAX: diff --git a/libs/libcommon/tests/test_queue.py b/libs/libcommon/tests/test_queue.py index eaf064b3..842d6ac9 100644 --- a/libs/libcommon/tests/test_queue.py +++ b/libs/libcommon/tests/test_queue.py @@ -318,0 +319,2 @@ def test_job_types_only( + (55, 60, True), + (40, 45, True),
4d04e0d71d1a8959367098961fc74cdfbd606ab3
Sylvain Lesage
2023-07-05T15:35:17
fix: 🐛 ensure the env vars are int (#1492)
diff --git a/chart/env/prod.yaml b/chart/env/prod.yaml index ab27b0c7..ec082cf5 100644 --- a/chart/env/prod.yaml +++ b/chart/env/prod.yaml @@ -295,2 +295,2 @@ workers: - workerDifficultyMax: "" - workerDifficultyMin: "" + workerDifficultyMax: 100 + workerDifficultyMin: 0 @@ -312,2 +312,2 @@ workers: - workerDifficultyMax: "" - workerDifficultyMin: "" + workerDifficultyMax: 40 + workerDifficultyMin: 0 @@ -315 +315 @@ workers: - workerJobTypesOnly: "config-parquet,dataset-parquet,config-info,dataset-info,config-split-names-from-info,config-size,dataset-size,dataset-split-names,dataset-is-valid,split-image-url-columns,split-opt-in-out-urls-count,config-opt-in-out-urls-count,dataset-opt-in-out-urls-count" + workerJobTypesOnly: "" diff --git a/chart/env/staging.yaml b/chart/env/staging.yaml index 64848c3e..4aeea9d6 100644 --- a/chart/env/staging.yaml +++ b/chart/env/staging.yaml @@ -236,2 +236,2 @@ workers: - workerDifficultyMax: "" - workerDifficultyMin: "" + workerDifficultyMax: 100 + workerDifficultyMin: 0 @@ -252,3 +252,3 @@ workers: - workerDifficultyMax: "" - workerDifficultyMin: "" - workerJobTypesBlocked: "dataset-config-names,config-split-names-from-streaming,config-parquet-and-info,split-first-rows-from-parquet,split-first-rows-from-streaming,split-opt-in-out-urls-scan" + workerDifficultyMax: 40 + workerDifficultyMin: 0 + workerJobTypesBlocked: "" diff --git a/chart/values.yaml b/chart/values.yaml index e9736b2e..3be2bfc4 100644 --- a/chart/values.yaml +++ b/chart/values.yaml @@ -459 +459 @@ workers: - workerDifficultyMax: "" + workerDifficultyMax: 100 @@ -461 +461 @@ workers: - workerDifficultyMin: "" + workerDifficultyMin: 0 diff --git a/libs/libcommon/src/libcommon/queue.py b/libs/libcommon/src/libcommon/queue.py index a9af875b..70a339a5 100644 --- a/libs/libcommon/src/libcommon/queue.py +++ b/libs/libcommon/src/libcommon/queue.py @@ -159,0 +160 @@ class JobDocument(Document): + ("priority", "status", "created_at", "difficulty", "namespace", "type", "unicity_id"),
248207356ab3a525b404c5e802ea3105206f1e9f
Andrea Francis Soria Jimenez
2023-07-05T15:18:29
chore: update pypdf dependency in worker (#1481)
diff --git a/services/worker/poetry.lock b/services/worker/poetry.lock index f2363ed9..b1e40e89 100644 --- a/services/worker/poetry.lock +++ b/services/worker/poetry.lock @@ -1 +1 @@ -# This file is automatically @generated by Poetry 1.4.0 and should not be changed by hand. +# This file is automatically @generated by Poetry and should not be changed by hand. @@ -2926,0 +2927 @@ files = [ + {file = "pdf2image-1.16.3.tar.gz", hash = "sha256:74208810c2cef4d9e347769b8e62a52303982ddb4f2dfd744c7ab4b940ae287e"}, @@ -3659,22 +3659,0 @@ diagrams = ["jinja2", "railroad-diagrams"] -[[package]] -name = "pypdf2" -version = "3.0.1" -description = "A pure-python PDF library capable of splitting, merging, cropping, and transforming PDF files" -category = "main" -optional = false -python-versions = ">=3.6" -files = [ - {file = "PyPDF2-3.0.1.tar.gz", hash = "sha256:a74408f69ba6271f71b9352ef4ed03dc53a31aa404d29b5d31f53bfecfee1440"}, - {file = "pypdf2-3.0.1-py3-none-any.whl", hash = "sha256:d16e4205cfee272fbdc0568b68d82be796540b1537508cef59388f839c191928"}, -] - -[package.dependencies] -typing_extensions = {version = ">=3.10.0.0", markers = "python_version < \"3.10\""} - -[package.extras] -crypto = ["PyCryptodome"] -dev = ["black", "flit", "pip-tools", "pre-commit (<2.18.0)", "pytest-cov", "wheel"] -docs = ["myst_parser", "sphinx", "sphinx_rtd_theme"] -full = ["Pillow", "PyCryptodome"] -image = ["Pillow"] - @@ -5656 +5635 @@ python-versions = "3.9.15" -content-hash = "3aa60ce2866418d5594a71e79a63dbd8e2bd3991c079c53bc055a7c584b3f69e" +content-hash = "7b9fd2481fb986fca30a557319cf230f266121211c27d92ab44168121a21afc1" diff --git a/services/worker/pyproject.toml b/services/worker/pyproject.toml index a2e6034d..582de13c 100644 --- a/services/worker/pyproject.toml +++ b/services/worker/pyproject.toml @@ -33 +32,0 @@ pydub = "^0.25.1" -pypdf2 = "^3.0.1"