diff --git a/.github/workflows/GenerateReport.yml b/.github/workflows/GenerateReport.yml index 0d3308f..4a6f29a 100644 --- a/.github/workflows/GenerateReport.yml +++ b/.github/workflows/GenerateReport.yml @@ -140,7 +140,7 @@ jobs: attachments="" else subject="🔐 Personal Report - ${{ env.UPGRADE_COUNT }} packages need upgrade" - echo -e "Hello team,\n\n🔧 Number of packages needing upgrade: ${{ env.UPGRADE_COUNT }}\n\n📦 Package list and custodian:\n${{ env.UPGRADE_PKG_LIST }}\n\nRegards,\nReport Bot" > "$body_file" + echo -e "Hello team,\n\n🔧 Number of packages needing upgrade: ${{ env.UPGRADE_COUNT }}\n\n📦 Package list, custodian and instructions:\n${{ env.UPGRADE_PKG_LIST }}\n\nRegards,\nReport Bot" > "$body_file" attachments="-a temp/PersonalReport.csv -a temp/PersonalReport.html" fi diff --git a/GenerateReport.py b/GenerateReport.py index 53ce924..1025a2c 100644 --- a/GenerateReport.py +++ b/GenerateReport.py @@ -46,7 +46,11 @@ SGTFormatter, now_sg ) -from utils.UpgradeInstruction import generate_upgrade_instruction +from utils.UpgradeInstruction import ( + generate_upgrade_instruction, + generate_current_dependency_json, +) +from utils.InstructionFormatter import instruction_to_text from utils.utils import run_py # ---------------- Configuration ---------------- @@ -200,11 +204,17 @@ def main() -> None: suggested = asyncio.run( suggest_safe_minor_upgrade(pkg, cur_ver, all_vs) ) - if suggested in ("unknown", "Up-to-date"): + if suggested in (None, "unknown", "Up-to-date") or suggested == cur_ver: instruction = None else: instruction = generate_upgrade_instruction(pkg, suggested) + # Current version dependency JSON (only for base packages) + if pkg.lower() in base_packages: + current_json = generate_current_dependency_json(pkg, cur_ver, cur_ver_deps) + else: + current_json = None + # aggregate upgrade_vuln = 'Yes' if any(v[0] == 'Yes' for v in upgrade_vuln_map.values()) else 'No' upgrade_vuln_details = '; '.join( @@ -224,6 +234,7 @@ def main() -> None: 'Package Type': 'Base Package' if pkg.lower() in base_packages else 'Dependency Package', 'Custodian': custodian, 'Current Version': cur_ver, + 'Current Version With Dependency JSON': current_json, 'Dependencies for Current': '; '.join(cur_ver_deps), # 'All Available Versions': ', '.join(all_vs), 'Newer Versions': ', '.join(newer), @@ -379,6 +390,9 @@ def main() -> None: f.write("PACKAGE_LIST:\n") for row in PersonalReportRows: f.write(f"- {row['Package Name']} ({row['Current Version']}) - Custodian: {row['Custodian']}\n") + instr_text = instruction_to_text(row.get('Upgrade Instruction')) + if instr_text: + f.write(f" Upgrade Instruction: {instr_text}\n") else: print("ℹ️ No packages matched Personal Report criteria. Skipping personal report generation.") @@ -388,14 +402,34 @@ def main() -> None: base_count = sum(1 for r in rows if r['Package Type'] == 'Base Package') dep_count = total - base_count - base_vuln = sum(1 for r in rows if r['Package Type'] == 'Base Package' and r['Current Version Vulnerable?'] == 'Yes') - dep_vuln = sum(1 for r in rows if r['Package Type'] == 'Dependency Package' and r['Current Version Vulnerable?'] == 'Yes') + def count_vulnerabilities(rows, package_type, used_only=True): + """Count vulnerable packages by type and usage status.""" + return sum( + 1 for r in rows + if r['Package Type'] == package_type + and r['Current Version Vulnerable?'] == 'Yes' + and ( + ('not used' not in r['Remarks'].lower()) if used_only + else ('not used' in r['Remarks'].lower()) + ) + ) + + base_vuln_used = count_vulnerabilities(rows, 'Base Package', used_only=True) + base_vuln_notused = count_vulnerabilities(rows, 'Base Package', used_only=False) + dep_vuln_used = count_vulnerabilities(rows, 'Dependency Package', used_only=True) + dep_vuln_notused = count_vulnerabilities(rows, 'Dependency Package', used_only=False) logger.info("📦 Weekly Report Summary") logger.info(f"🔍 Total packages scanned: {total} (Base: {base_count}, Dependency: {dep_count})") - logger.info(f"🚨 Vulnerabilities found in current versions:") - logger.info(f" • Base packages: {base_vuln} / {base_count}") - logger.info(f" • Dependency packages: {dep_vuln} / {dep_count}") + logger.info("🚨 Vulnerabilities found in current versions:") + logger.info( + f" • Base packages: {base_vuln_used} / {base_count}" + f" ({base_vuln_notused} packages are not used)" + ) + logger.info( + f" • Dependency packages: {dep_vuln_used} / {dep_count}" + f" ({dep_vuln_notused} packages are not used)" + ) if __name__ == '__main__': try: @@ -403,4 +437,3 @@ def main() -> None: except KeyboardInterrupt: print("\n❌ Execution interrupted by user.") sys.exit(1) - \ No newline at end of file diff --git a/MonthlyReport/2025-06/MonthlyReport-202506-25-0822.xlsx b/MonthlyReport/2025-06/MonthlyReport-202506-25-0822.xlsx new file mode 100644 index 0000000..f36d53d Binary files /dev/null and b/MonthlyReport/2025-06/MonthlyReport-202506-25-0822.xlsx differ diff --git a/WeeklyReport/2025-06-23/WeeklyReport_20250625_161301.csv b/WeeklyReport/2025-06-23/WeeklyReport_20250625_161301.csv new file mode 100644 index 0000000..16b4914 --- /dev/null +++ b/WeeklyReport/2025-06-23/WeeklyReport_20250625_161301.csv @@ -0,0 +1,868 @@ +Package Name,Package Type,Custodian,Current Version,Current Version With Dependency JSON,Dependencies for Current,Newer Versions,Dependencies for Latest,Latest Version,Current Version Vulnerable?,Current Version Vulnerability Details,Upgrade Version Vulnerable?,Upgrade Vulnerability Details,Suggested Upgrade,Upgrade Instruction,Remarks +adlfs,Base Package,EY,2024.4.1,"{'base_package': 'adlfs==2024.4.1', 'dependencies': ['azure-core==1.28.0', 'azure-datalake-store==0.0.53', 'azure-storage-blob==12.17.0', 'fsspec==2023.12.0', 'aiohttp==3.7.0']}","azure-core<2.0.0,>=1.28.0; azure-datalake-store<0.1,>=0.0.53; azure-identity; azure-storage-blob>=12.17.0; fsspec>=2023.12.0; aiohttp>=3.7.0; sphinx; extra == ""docs""; myst-parser; extra == ""docs""; furo; extra == ""docs""; numpydoc; extra == ""docs""; pytest; extra == ""tests""; docker; extra == ""tests""; pytest-mock; extra == ""tests""; arrow; extra == ""tests""; dask[dataframe]; extra == ""tests""","2024.7.0, 2024.12.0","azure-core<2.0.0,>=1.28.0; azure-datalake-store<0.1,>=0.0.53; azure-identity; azure-storage-blob>=12.17.0; fsspec>=2023.12.0; aiohttp>=3.7.0; sphinx; extra == ""docs""; myst-parser; extra == ""docs""; furo; extra == ""docs""; numpydoc; extra == ""docs""; pytest; extra == ""tests""; docker; extra == ""tests""; pytest-mock; extra == ""tests""; arrow; extra == ""tests""; dask[dataframe]; extra == ""tests""",2024.12.0,No,,No,None,,, +allennlp,Base Package,EY,2.10.1,"{'base_package': 'allennlp==2.10.1', 'dependencies': ['torch==1.10.0', 'torchvision==0.8.1', 'cached-path==1.1.3', 'fairscale==0.4.6', 'nltk==3.6.5', 'spacy==2.1.0', 'numpy==1.21.4', 'tensorboardX==1.2', 'requests==2.28', 'tqdm==4.62', 'h5py==3.6.0', 'scikit-learn==1.0.1', 'scipy==1.7.3', 'pytest==6.2.5', 'transformers==4.1', 'sentencepiece==0.1.96', 'filelock==3.3', 'lmdb==1.2.1', 'more-itertools==8.12.0', 'termcolor==1.1.0', 'wandb==0.10.0', 'huggingface-hub==0.0.16', 'dill==0.3.4', 'base58==2.1.1', 'typer==0.4.1', 'protobuf==3.12.0', 'traitlets==5.1.1', 'jsonnet==0.10.0', 'checklist==0.0.11', 'checklist==0.0.11', 'flake8==4.0.1', 'mypy==0.961', 'black==22.6.0', 'pytest-cov==3.0.0', 'coverage==6.4', 'codecov==2.1.12', 'matplotlib==2.2.3', 'responses==0.21', 'flaky==3.7.0', 'pytest-benchmark==3.4.1', 'ruamel.yaml==0.17.17', 'docspec==1.0.1', 'docspec-python==1.0.1', 'mkdocs==1.3.0', 'mkdocs-material==5.5.0', 'markdown-include==0.6.0', 'pymdown-extensions==9.5', 'twine==1.11.0']}","torch (<1.13.0,>=1.10.0); torchvision (<0.14.0,>=0.8.1); cached-path (<1.2.0,>=1.1.3); fairscale (==0.4.6); nltk (>=3.6.5); spacy (<3.4,>=2.1.0); numpy (>=1.21.4); tensorboardX (>=1.2); requests (>=2.28); tqdm (>=4.62); h5py (>=3.6.0); scikit-learn (>=1.0.1); scipy (>=1.7.3); pytest (>=6.2.5); transformers (<4.21,>=4.1); sentencepiece (>=0.1.96); filelock (<3.8,>=3.3); lmdb (>=1.2.1); more-itertools (>=8.12.0); termcolor (==1.1.0); wandb (<0.13.0,>=0.10.0); huggingface-hub (>=0.0.16); dill (>=0.3.4); base58 (>=2.1.1); sacremoses; typer (>=0.4.1); protobuf (<4.0.0,>=3.12.0); traitlets (>5.1.1); dataclasses ; python_version < ""3.7""; jsonnet (>=0.10.0) ; sys_platform != ""win32""; checklist (==0.0.11) ; extra == 'all'; checklist (==0.0.11) ; extra == 'checklist'; flake8 (>=4.0.1) ; extra == 'dev'; mypy (==0.961) ; extra == 'dev'; black (==22.6.0) ; extra == 'dev'; pytest-cov (>=3.0.0) ; extra == 'dev'; coverage[toml] (>=6.4) ; extra == 'dev'; codecov (>=2.1.12) ; extra == 'dev'; matplotlib (>=2.2.3) ; extra == 'dev'; responses (>=0.21) ; extra == 'dev'; flaky (>=3.7.0) ; extra == 'dev'; pytest-benchmark (>=3.4.1) ; extra == 'dev'; ruamel.yaml (>=0.17.17) ; extra == 'dev'; pydoc-markdown (<4.4.0) ; extra == 'dev'; databind.core (<=1.5.3) ; extra == 'dev'; databind-json (<=1.5.3) ; extra == 'dev'; docspec (<1.2.0,>1.0.1) ; extra == 'dev'; docspec-python (<1.2.0,>1.0.1) ; extra == 'dev'; mkdocs (==1.3.0) ; extra == 'dev'; mkdocs-material (<8.4.0,>=5.5.0) ; extra == 'dev'; markdown-include (==0.6.0) ; extra == 'dev'; pymdown-extensions (>=9.5) ; extra == 'dev'; twine (<5.0.0,>=1.11.0) ; extra == 'dev'; setuptools ; extra == 'dev'; wheel ; extra == 'dev'",,"torch (<1.13.0,>=1.10.0); torchvision (<0.14.0,>=0.8.1); cached-path (<1.2.0,>=1.1.3); fairscale (==0.4.6); nltk (>=3.6.5); spacy (<3.4,>=2.1.0); numpy (>=1.21.4); tensorboardX (>=1.2); requests (>=2.28); tqdm (>=4.62); h5py (>=3.6.0); scikit-learn (>=1.0.1); scipy (>=1.7.3); pytest (>=6.2.5); transformers (<4.21,>=4.1); sentencepiece (>=0.1.96); filelock (<3.8,>=3.3); lmdb (>=1.2.1); more-itertools (>=8.12.0); termcolor (==1.1.0); wandb (<0.13.0,>=0.10.0); huggingface-hub (>=0.0.16); dill (>=0.3.4); base58 (>=2.1.1); sacremoses; typer (>=0.4.1); protobuf (<4.0.0,>=3.12.0); traitlets (>5.1.1); dataclasses ; python_version < ""3.7""; jsonnet (>=0.10.0) ; sys_platform != ""win32""; checklist (==0.0.11) ; extra == 'all'; checklist (==0.0.11) ; extra == 'checklist'; flake8 (>=4.0.1) ; extra == 'dev'; mypy (==0.961) ; extra == 'dev'; black (==22.6.0) ; extra == 'dev'; pytest-cov (>=3.0.0) ; extra == 'dev'; coverage[toml] (>=6.4) ; extra == 'dev'; codecov (>=2.1.12) ; extra == 'dev'; matplotlib (>=2.2.3) ; extra == 'dev'; responses (>=0.21) ; extra == 'dev'; flaky (>=3.7.0) ; extra == 'dev'; pytest-benchmark (>=3.4.1) ; extra == 'dev'; ruamel.yaml (>=0.17.17) ; extra == 'dev'; pydoc-markdown (<4.4.0) ; extra == 'dev'; databind.core (<=1.5.3) ; extra == 'dev'; databind-json (<=1.5.3) ; extra == 'dev'; docspec (<1.2.0,>1.0.1) ; extra == 'dev'; docspec-python (<1.2.0,>1.0.1) ; extra == 'dev'; mkdocs (==1.3.0) ; extra == 'dev'; mkdocs-material (<8.4.0,>=5.5.0) ; extra == 'dev'; markdown-include (==0.6.0) ; extra == 'dev'; pymdown-extensions (>=9.5) ; extra == 'dev'; twine (<5.0.0,>=1.11.0) ; extra == 'dev'; setuptools ; extra == 'dev'; wheel ; extra == 'dev'",2.10.1,No,,No,None,,, +artifacts-keyring,Base Package,EY,0.4.0,"{'base_package': 'artifacts-keyring==0.4.0', 'dependencies': ['keyring==16.0', 'requests==2.20.0']}",keyring>=16.0; requests>=2.20.0,,keyring>=16.0; requests>=2.20.0,0.4.0,No,,No,None,,, +async-timeout,Base Package,EY,4.0.3,"{'base_package': 'async-timeout==4.0.3', 'dependencies': []}",,"5.0.0, 5.0.1",,5.0.1,No,,No,None,,, +azure-keyvault-secrets,Base Package,EY,4.8.0,"{'base_package': 'azure-keyvault-secrets==4.8.0', 'dependencies': ['isodate==0.6.1', 'azure-core==1.31.0', 'typing-extensions==4.6.0']}",isodate>=0.6.1; azure-core>=1.31.0; typing-extensions>=4.6.0,"4.9.0, 4.10.0b1, 4.10.0",isodate>=0.6.1; azure-core>=1.31.0; typing-extensions>=4.6.0,4.10.0,No,,No,None,,, +azureml-featurestore,Base Package,EY,1.1.0,"{'base_package': 'azureml-featurestore==1.1.0', 'dependencies': ['azure-ai-ml==1.14.0', 'mltable==1.5.0', 'jinja2==3.1.2', 'marshmallow==3.18.0', 'pandas==1.5.3', 'azure-mgmt-redis==14.1.0', 'pyarrow==9.0.0', 'redis==4.5.1', 'msgpack==1.0.5']}","azure-ai-ml<2.0.0,>=1.14.0; mltable<2.0.0,>=1.5.0; jinja2<4.0.0,>=3.1.2; marshmallow<4.0.0,>=3.18.0; pandas>=1.5.3; azure-identity; extra == ""online""; azure-mgmt-redis<15.0.0,>=14.1.0; extra == ""online""; pyarrow>=9.0.0; extra == ""online""; redis>=4.5.1; extra == ""online""; msgpack<2.0.0,>=1.0.5; extra == ""online""","1.1.1, 1.1.2","azure-ai-ml<2.0.0,>=1.14.0; mltable<2.0.0,>=1.5.0; jinja2<4.0.0,>=3.1.2; marshmallow<4.0.0,>=3.18.0; pandas>=1.5.3; azure-identity; extra == ""online""; azure-mgmt-redis<15.0.0,>=14.1.0; extra == ""online""; pyarrow>=9.0.0; extra == ""online""; redis>=4.5.1; extra == ""online""; msgpack<2.0.0,>=1.0.5; extra == ""online""",1.1.2,No,,No,None,,, +azureml-fsspec,Base Package,EY,1.3.1,"{'base_package': 'azureml-fsspec==1.3.1', 'dependencies': ['azureml-dataprep==5.1.0a', 'fsspec==2021.6.1']}","azureml-dataprep <5.2.0a,>=5.1.0a; fsspec <=2023.10.0,>=2021.6.1; pytz",,"azureml-dataprep <5.2.0a,>=5.1.0a; fsspec <=2023.10.0,>=2021.6.1; pytz",1.3.1,No,,No,None,,, +azureml-interpret,Base Package,EY,1.58.0,"{'base_package': 'azureml-interpret==1.58.0', 'dependencies': ['azureml-core==1.60.0']}","interpret-community==0.31.*; numba<=0.56.4; python_version < ""3.11""; numba<=0.58.1; python_version >= ""3.11""; numpy<=1.21.6; python_version < ""3.8""; numpy<=1.23.5; python_version >= ""3.8""; azureml-core~=1.60.0; interpret-community[sample]; extra == ""sample""; interpret-community[deep]; extra == ""deep""; interpret-community[mimic]; extra == ""mimic""","1.59.0, 1.60.0","interpret-community==0.31.*; numba<=0.56.4; python_version < ""3.11""; numba<=0.58.1; python_version >= ""3.11""; numpy<=1.21.6; python_version < ""3.8""; numpy<=1.23.5; python_version >= ""3.8""; azureml-core~=1.60.0; interpret-community[sample]; extra == ""sample""; interpret-community[deep]; extra == ""deep""; interpret-community[mimic]; extra == ""mimic""",1.60.0,No,,No,None,,, +backports.tempfile,Base Package,EY,1,"{'base_package': 'backports.tempfile==1', 'dependencies': []}",,,,1.0,No,,No,None,,, +backports.weakref,Base Package,EY,1.0.post1,"{'base_package': 'backports.weakref==1.0.post1', 'dependencies': []}",,,,1.0.post1,No,,No,None,,, +beanie,Base Package,EY,1.26.0,"{'base_package': 'beanie==1.26.0', 'dependencies': ['pydantic==1.10.18', 'motor==2.5.0', 'click==7', 'tomli==2.2.1', 'lazy-model==0.2.0', 'typing-extensions==4.7', 'motor==2.5.0', 'tomli==2.2.1', 'tomli-w==1.0.0', 'Pygments==2.8.0', 'Markdown==3.3', 'pydoc-markdown==4.8', 'mkdocs==1.4', 'mkdocs-material==9.0', 'jinja2==3.0.3', 'motor==2.5.0', 'motor==2.5.0', 'motor==2.5.0', 'beanie-batteries-queue==0.2', 'motor==2.5.0', 'pre-commit==3.5.0', 'pytest==8.3.3', 'pytest-asyncio==0.24.0', 'pytest-cov==5.0.0', 'dnspython==2.1.0', 'pyright==0', 'asgi-lifespan==1.0.1', 'httpx==0.23.0', 'fastapi==0.100', 'pydantic-settings==2', 'pydantic-extra-types==2', 'motor==2.5.0']}","pydantic<3.0,>=1.10.18; motor<4.0.0,>=2.5.0; click>=7; tomli<3.0.0,>=2.2.1; python_version < ""3.11""; lazy-model==0.2.0; typing-extensions>=4.7; motor[aws]<4.0.0,>=2.5.0; extra == ""aws""; tomli<3.0.0,>=2.2.1; extra == ""ci"" and python_version < ""3.11""; tomli-w<2.0.0,>=1.0.0; extra == ""ci""; requests; extra == ""ci""; types-requests; extra == ""ci""; Pygments>=2.8.0; extra == ""doc""; Markdown>=3.3; extra == ""doc""; pydoc-markdown>=4.8; extra == ""doc""; mkdocs>=1.4; extra == ""doc""; mkdocs-material>=9.0; extra == ""doc""; jinja2>=3.0.3; extra == ""doc""; motor[encryption]<4.0.0,>=2.5.0; extra == ""encryption""; motor[gssapi]<4.0.0,>=2.5.0; extra == ""gssapi""; motor[ocsp]<4.0.0,>=2.5.0; extra == ""ocsp""; beanie-batteries-queue>=0.2; extra == ""queue""; motor[snappy]<4.0.0,>=2.5.0; extra == ""snappy""; pre-commit>=3.5.0; extra == ""test""; pytest>=8.3.3; extra == ""test""; pytest-asyncio>=0.24.0; extra == ""test""; pytest-cov>=5.0.0; extra == ""test""; dnspython>=2.1.0; extra == ""test""; pyright>=0; extra == ""test""; asgi-lifespan>=1.0.1; extra == ""test""; httpx>=0.23.0; extra == ""test""; fastapi>=0.100; extra == ""test""; pydantic-settings>=2; extra == ""test""; pydantic-extra-types>=2; extra == ""test""; pydantic[email]; extra == ""test""; motor[zstd]<4.0.0,>=2.5.0; extra == ""zstd""","1.27.0, 1.28.0, 1.29.0, 1.30.0","pydantic<3.0,>=1.10.18; motor<4.0.0,>=2.5.0; click>=7; tomli<3.0.0,>=2.2.1; python_version < ""3.11""; lazy-model==0.2.0; typing-extensions>=4.7; motor[aws]<4.0.0,>=2.5.0; extra == ""aws""; tomli<3.0.0,>=2.2.1; extra == ""ci"" and python_version < ""3.11""; tomli-w<2.0.0,>=1.0.0; extra == ""ci""; requests; extra == ""ci""; types-requests; extra == ""ci""; Pygments>=2.8.0; extra == ""doc""; Markdown>=3.3; extra == ""doc""; pydoc-markdown>=4.8; extra == ""doc""; mkdocs>=1.4; extra == ""doc""; mkdocs-material>=9.0; extra == ""doc""; jinja2>=3.0.3; extra == ""doc""; motor[encryption]<4.0.0,>=2.5.0; extra == ""encryption""; motor[gssapi]<4.0.0,>=2.5.0; extra == ""gssapi""; motor[ocsp]<4.0.0,>=2.5.0; extra == ""ocsp""; beanie-batteries-queue>=0.2; extra == ""queue""; motor[snappy]<4.0.0,>=2.5.0; extra == ""snappy""; pre-commit>=3.5.0; extra == ""test""; pytest>=8.3.3; extra == ""test""; pytest-asyncio>=0.24.0; extra == ""test""; pytest-cov>=5.0.0; extra == ""test""; dnspython>=2.1.0; extra == ""test""; pyright>=0; extra == ""test""; asgi-lifespan>=1.0.1; extra == ""test""; httpx>=0.23.0; extra == ""test""; fastapi>=0.100; extra == ""test""; pydantic-settings>=2; extra == ""test""; pydantic-extra-types>=2; extra == ""test""; pydantic[email]; extra == ""test""; motor[zstd]<4.0.0,>=2.5.0; extra == ""zstd""",1.30.0,No,,No,None,,, +bert-score,Base Package,EY,0.3.13,"{'base_package': 'bert-score==0.3.13', 'dependencies': ['torch==1.0.0', 'pandas==1.0.1', 'transformers==3.0.0', 'tqdm==4.31.1', 'packaging==20.9']}",torch (>=1.0.0); pandas (>=1.0.1); transformers (>=3.0.0); numpy; requests; tqdm (>=4.31.1); matplotlib; packaging (>=20.9),,torch (>=1.0.0); pandas (>=1.0.1); transformers (>=3.0.0); numpy; requests; tqdm (>=4.31.1); matplotlib; packaging (>=20.9),0.3.13,No,,No,None,,, +black,Base Package,EY,24.4.2,"{'base_package': 'black==24.4.2', 'dependencies': ['click==8.0.0', 'mypy-extensions==0.4.3', 'packaging==22.0', 'pathspec==0.9.0', 'platformdirs==2', 'tomli==1.1.0', 'typing-extensions==4.0.1', 'colorama==0.4.3', 'aiohttp==3.10', 'ipython==7.8.0', 'tokenize-rt==3.2.0', 'uvloop==0.15.2']}","click>=8.0.0; mypy-extensions>=0.4.3; packaging>=22.0; pathspec>=0.9.0; platformdirs>=2; tomli>=1.1.0; python_version < ""3.11""; typing-extensions>=4.0.1; python_version < ""3.11""; colorama>=0.4.3; extra == ""colorama""; aiohttp>=3.10; extra == ""d""; ipython>=7.8.0; extra == ""jupyter""; tokenize-rt>=3.2.0; extra == ""jupyter""; uvloop>=0.15.2; extra == ""uvloop""","24.8.0, 24.10.0, 25.1.0","click>=8.0.0; mypy-extensions>=0.4.3; packaging>=22.0; pathspec>=0.9.0; platformdirs>=2; tomli>=1.1.0; python_version < ""3.11""; typing-extensions>=4.0.1; python_version < ""3.11""; colorama>=0.4.3; extra == ""colorama""; aiohttp>=3.10; extra == ""d""; ipython>=7.8.0; extra == ""jupyter""; tokenize-rt>=3.2.0; extra == ""jupyter""; uvloop>=0.15.2; extra == ""uvloop""",25.1.0,No,,No,None,,, +bs4,Base Package,EY,0.0.2,"{'base_package': 'bs4==0.0.2', 'dependencies': []}",beautifulsoup4,,beautifulsoup4,0.0.2,No,,No,None,,, +datasets,Base Package,EY,2.19.1,"{'base_package': 'datasets==2.19.1', 'dependencies': ['numpy==1.17', 'pyarrow==15.0.0', 'dill==0.3.0', 'requests==2.32.2', 'tqdm==4.66.3', 'fsspec==2023.1.0', 'huggingface-hub==0.24.0', 'pyyaml==5.1', 'soundfile==0.12.1', 'soxr==0.4.0', 'Pillow==9.4.0', 'tensorflow==2.6.0', 'tensorflow==2.6.0', 'jax==0.3.14', 'jaxlib==0.3.14', 'elasticsearch==7.17.12', 'faiss-cpu==1.8.0.post1', 'jax==0.3.14', 'jaxlib==0.3.14', 'pyspark==3.4', 'rarfile==4.0', 's3fs==2021.11.1', 'tensorflow==2.6.0', 'tensorflow==2.16.0', 'torch==2.0.0', 'soundfile==0.12.1', 'transformers==4.42.0', 'polars==0.20.0', 'Pillow==9.4.0', 'soundfile==0.12.1', 'soxr==0.4.0', 'ruff==0.3.0', 'tensorflow==2.6.0', 'elasticsearch==7.17.12', 'faiss-cpu==1.8.0.post1', 'jax==0.3.14', 'jaxlib==0.3.14', 'pyspark==3.4', 'rarfile==4.0', 's3fs==2021.11.1', 'tensorflow==2.6.0', 'tensorflow==2.16.0', 'torch==2.0.0', 'soundfile==0.12.1', 'transformers==4.42.0', 'polars==0.20.0', 'Pillow==9.4.0', 'soundfile==0.12.1', 'soxr==0.4.0', 'elasticsearch==7.17.12', 'jax==0.3.14', 'jaxlib==0.3.14', 'pyspark==3.4', 'rarfile==4.0', 's3fs==2021.11.1', 'torch==2.0.0', 'soundfile==0.12.1', 'transformers==4.42.0', 'polars==0.20.0', 'Pillow==9.4.0', 'soundfile==0.12.1', 'soxr==0.4.0', 'ruff==0.3.0', 'tensorflow==2.12.0', 'torch==2.0.1', 'transformers==4.30.1', 'tensorflow==2.6.0', 'pdfplumber==0.11.4']}","filelock; numpy>=1.17; pyarrow>=15.0.0; dill<0.3.9,>=0.3.0; pandas; requests>=2.32.2; tqdm>=4.66.3; xxhash; multiprocess<0.70.17; fsspec[http]<=2025.3.0,>=2023.1.0; huggingface-hub>=0.24.0; packaging; pyyaml>=5.1; soundfile>=0.12.1; extra == ""audio""; librosa; extra == ""audio""; soxr>=0.4.0; extra == ""audio""; Pillow>=9.4.0; extra == ""vision""; tensorflow>=2.6.0; extra == ""tensorflow""; tensorflow>=2.6.0; extra == ""tensorflow-gpu""; torch; extra == ""torch""; jax>=0.3.14; extra == ""jax""; jaxlib>=0.3.14; extra == ""jax""; s3fs; extra == ""s3""; absl-py; extra == ""dev""; decorator; extra == ""dev""; joblib<1.3.0; extra == ""dev""; joblibspark; extra == ""dev""; pytest; extra == ""dev""; pytest-datadir; extra == ""dev""; pytest-xdist; extra == ""dev""; aiohttp; extra == ""dev""; elasticsearch<8.0.0,>=7.17.12; extra == ""dev""; faiss-cpu>=1.8.0.post1; extra == ""dev""; jax>=0.3.14; sys_platform != ""win32"" and extra == ""dev""; jaxlib>=0.3.14; sys_platform != ""win32"" and extra == ""dev""; lz4; extra == ""dev""; moto[server]; extra == ""dev""; pyspark>=3.4; extra == ""dev""; py7zr; extra == ""dev""; rarfile>=4.0; extra == ""dev""; sqlalchemy; extra == ""dev""; s3fs>=2021.11.1; extra == ""dev""; protobuf<4.0.0; extra == ""dev""; tensorflow>=2.6.0; python_version < ""3.10"" and extra == ""dev""; tensorflow>=2.16.0; python_version >= ""3.10"" and extra == ""dev""; tiktoken; extra == ""dev""; torch>=2.0.0; extra == ""dev""; torchdata; extra == ""dev""; soundfile>=0.12.1; extra == ""dev""; transformers>=4.42.0; extra == ""dev""; zstandard; extra == ""dev""; polars[timezone]>=0.20.0; extra == ""dev""; torchvision; extra == ""dev""; pyav; extra == ""dev""; Pillow>=9.4.0; extra == ""dev""; soundfile>=0.12.1; extra == ""dev""; librosa; extra == ""dev""; soxr>=0.4.0; extra == ""dev""; ruff>=0.3.0; extra == ""dev""; s3fs; extra == ""dev""; transformers; extra == ""dev""; torch; extra == ""dev""; tensorflow>=2.6.0; extra == ""dev""; absl-py; extra == ""tests""; decorator; extra == ""tests""; joblib<1.3.0; extra == ""tests""; joblibspark; extra == ""tests""; pytest; extra == ""tests""; pytest-datadir; extra == ""tests""; pytest-xdist; extra == ""tests""; aiohttp; extra == ""tests""; elasticsearch<8.0.0,>=7.17.12; extra == ""tests""; faiss-cpu>=1.8.0.post1; extra == ""tests""; jax>=0.3.14; sys_platform != ""win32"" and extra == ""tests""; jaxlib>=0.3.14; sys_platform != ""win32"" and extra == ""tests""; lz4; extra == ""tests""; moto[server]; extra == ""tests""; pyspark>=3.4; extra == ""tests""; py7zr; extra == ""tests""; rarfile>=4.0; extra == ""tests""; sqlalchemy; extra == ""tests""; s3fs>=2021.11.1; extra == ""tests""; protobuf<4.0.0; extra == ""tests""; tensorflow>=2.6.0; python_version < ""3.10"" and extra == ""tests""; tensorflow>=2.16.0; python_version >= ""3.10"" and extra == ""tests""; tiktoken; extra == ""tests""; torch>=2.0.0; extra == ""tests""; torchdata; extra == ""tests""; soundfile>=0.12.1; extra == ""tests""; transformers>=4.42.0; extra == ""tests""; zstandard; extra == ""tests""; polars[timezone]>=0.20.0; extra == ""tests""; torchvision; extra == ""tests""; pyav; extra == ""tests""; Pillow>=9.4.0; extra == ""tests""; soundfile>=0.12.1; extra == ""tests""; librosa; extra == ""tests""; soxr>=0.4.0; extra == ""tests""; absl-py; extra == ""tests-numpy2""; decorator; extra == ""tests-numpy2""; joblib<1.3.0; extra == ""tests-numpy2""; joblibspark; extra == ""tests-numpy2""; pytest; extra == ""tests-numpy2""; pytest-datadir; extra == ""tests-numpy2""; pytest-xdist; extra == ""tests-numpy2""; aiohttp; extra == ""tests-numpy2""; elasticsearch<8.0.0,>=7.17.12; extra == ""tests-numpy2""; jax>=0.3.14; sys_platform != ""win32"" and extra == ""tests-numpy2""; jaxlib>=0.3.14; sys_platform != ""win32"" and extra == ""tests-numpy2""; lz4; extra == ""tests-numpy2""; moto[server]; extra == ""tests-numpy2""; pyspark>=3.4; extra == ""tests-numpy2""; py7zr; extra == ""tests-numpy2""; rarfile>=4.0; extra == ""tests-numpy2""; sqlalchemy; extra == ""tests-numpy2""; s3fs>=2021.11.1; extra == ""tests-numpy2""; protobuf<4.0.0; extra == ""tests-numpy2""; tiktoken; extra == ""tests-numpy2""; torch>=2.0.0; extra == ""tests-numpy2""; torchdata; extra == ""tests-numpy2""; soundfile>=0.12.1; extra == ""tests-numpy2""; transformers>=4.42.0; extra == ""tests-numpy2""; zstandard; extra == ""tests-numpy2""; polars[timezone]>=0.20.0; extra == ""tests-numpy2""; torchvision; extra == ""tests-numpy2""; pyav; extra == ""tests-numpy2""; Pillow>=9.4.0; extra == ""tests-numpy2""; soundfile>=0.12.1; extra == ""tests-numpy2""; soxr>=0.4.0; extra == ""tests-numpy2""; ruff>=0.3.0; extra == ""quality""; tensorflow==2.12.0; extra == ""benchmarks""; torch==2.0.1; extra == ""benchmarks""; transformers==4.30.1; extra == ""benchmarks""; s3fs; extra == ""docs""; transformers; extra == ""docs""; torch; extra == ""docs""; tensorflow>=2.6.0; extra == ""docs""; pdfplumber>=0.11.4; extra == ""pdfs""","2.19.2, 2.20.0, 2.21.0, 3.0.0, 3.0.1, 3.0.2, 3.1.0, 3.2.0, 3.3.0, 3.3.1, 3.3.2, 3.4.0, 3.4.1, 3.5.0, 3.5.1, 3.6.0","filelock; numpy>=1.17; pyarrow>=15.0.0; dill<0.3.9,>=0.3.0; pandas; requests>=2.32.2; tqdm>=4.66.3; xxhash; multiprocess<0.70.17; fsspec[http]<=2025.3.0,>=2023.1.0; huggingface-hub>=0.24.0; packaging; pyyaml>=5.1; soundfile>=0.12.1; extra == ""audio""; librosa; extra == ""audio""; soxr>=0.4.0; extra == ""audio""; Pillow>=9.4.0; extra == ""vision""; tensorflow>=2.6.0; extra == ""tensorflow""; tensorflow>=2.6.0; extra == ""tensorflow-gpu""; torch; extra == ""torch""; jax>=0.3.14; extra == ""jax""; jaxlib>=0.3.14; extra == ""jax""; s3fs; extra == ""s3""; absl-py; extra == ""dev""; decorator; extra == ""dev""; joblib<1.3.0; extra == ""dev""; joblibspark; extra == ""dev""; pytest; extra == ""dev""; pytest-datadir; extra == ""dev""; pytest-xdist; extra == ""dev""; aiohttp; extra == ""dev""; elasticsearch<8.0.0,>=7.17.12; extra == ""dev""; faiss-cpu>=1.8.0.post1; extra == ""dev""; jax>=0.3.14; sys_platform != ""win32"" and extra == ""dev""; jaxlib>=0.3.14; sys_platform != ""win32"" and extra == ""dev""; lz4; extra == ""dev""; moto[server]; extra == ""dev""; pyspark>=3.4; extra == ""dev""; py7zr; extra == ""dev""; rarfile>=4.0; extra == ""dev""; sqlalchemy; extra == ""dev""; s3fs>=2021.11.1; extra == ""dev""; protobuf<4.0.0; extra == ""dev""; tensorflow>=2.6.0; python_version < ""3.10"" and extra == ""dev""; tensorflow>=2.16.0; python_version >= ""3.10"" and extra == ""dev""; tiktoken; extra == ""dev""; torch>=2.0.0; extra == ""dev""; torchdata; extra == ""dev""; soundfile>=0.12.1; extra == ""dev""; transformers>=4.42.0; extra == ""dev""; zstandard; extra == ""dev""; polars[timezone]>=0.20.0; extra == ""dev""; torchvision; extra == ""dev""; pyav; extra == ""dev""; Pillow>=9.4.0; extra == ""dev""; soundfile>=0.12.1; extra == ""dev""; librosa; extra == ""dev""; soxr>=0.4.0; extra == ""dev""; ruff>=0.3.0; extra == ""dev""; s3fs; extra == ""dev""; transformers; extra == ""dev""; torch; extra == ""dev""; tensorflow>=2.6.0; extra == ""dev""; absl-py; extra == ""tests""; decorator; extra == ""tests""; joblib<1.3.0; extra == ""tests""; joblibspark; extra == ""tests""; pytest; extra == ""tests""; pytest-datadir; extra == ""tests""; pytest-xdist; extra == ""tests""; aiohttp; extra == ""tests""; elasticsearch<8.0.0,>=7.17.12; extra == ""tests""; faiss-cpu>=1.8.0.post1; extra == ""tests""; jax>=0.3.14; sys_platform != ""win32"" and extra == ""tests""; jaxlib>=0.3.14; sys_platform != ""win32"" and extra == ""tests""; lz4; extra == ""tests""; moto[server]; extra == ""tests""; pyspark>=3.4; extra == ""tests""; py7zr; extra == ""tests""; rarfile>=4.0; extra == ""tests""; sqlalchemy; extra == ""tests""; s3fs>=2021.11.1; extra == ""tests""; protobuf<4.0.0; extra == ""tests""; tensorflow>=2.6.0; python_version < ""3.10"" and extra == ""tests""; tensorflow>=2.16.0; python_version >= ""3.10"" and extra == ""tests""; tiktoken; extra == ""tests""; torch>=2.0.0; extra == ""tests""; torchdata; extra == ""tests""; soundfile>=0.12.1; extra == ""tests""; transformers>=4.42.0; extra == ""tests""; zstandard; extra == ""tests""; polars[timezone]>=0.20.0; extra == ""tests""; torchvision; extra == ""tests""; pyav; extra == ""tests""; Pillow>=9.4.0; extra == ""tests""; soundfile>=0.12.1; extra == ""tests""; librosa; extra == ""tests""; soxr>=0.4.0; extra == ""tests""; absl-py; extra == ""tests-numpy2""; decorator; extra == ""tests-numpy2""; joblib<1.3.0; extra == ""tests-numpy2""; joblibspark; extra == ""tests-numpy2""; pytest; extra == ""tests-numpy2""; pytest-datadir; extra == ""tests-numpy2""; pytest-xdist; extra == ""tests-numpy2""; aiohttp; extra == ""tests-numpy2""; elasticsearch<8.0.0,>=7.17.12; extra == ""tests-numpy2""; jax>=0.3.14; sys_platform != ""win32"" and extra == ""tests-numpy2""; jaxlib>=0.3.14; sys_platform != ""win32"" and extra == ""tests-numpy2""; lz4; extra == ""tests-numpy2""; moto[server]; extra == ""tests-numpy2""; pyspark>=3.4; extra == ""tests-numpy2""; py7zr; extra == ""tests-numpy2""; rarfile>=4.0; extra == ""tests-numpy2""; sqlalchemy; extra == ""tests-numpy2""; s3fs>=2021.11.1; extra == ""tests-numpy2""; protobuf<4.0.0; extra == ""tests-numpy2""; tiktoken; extra == ""tests-numpy2""; torch>=2.0.0; extra == ""tests-numpy2""; torchdata; extra == ""tests-numpy2""; soundfile>=0.12.1; extra == ""tests-numpy2""; transformers>=4.42.0; extra == ""tests-numpy2""; zstandard; extra == ""tests-numpy2""; polars[timezone]>=0.20.0; extra == ""tests-numpy2""; torchvision; extra == ""tests-numpy2""; pyav; extra == ""tests-numpy2""; Pillow>=9.4.0; extra == ""tests-numpy2""; soundfile>=0.12.1; extra == ""tests-numpy2""; soxr>=0.4.0; extra == ""tests-numpy2""; ruff>=0.3.0; extra == ""quality""; tensorflow==2.12.0; extra == ""benchmarks""; torch==2.0.1; extra == ""benchmarks""; transformers==4.30.1; extra == ""benchmarks""; s3fs; extra == ""docs""; transformers; extra == ""docs""; torch; extra == ""docs""; tensorflow>=2.6.0; extra == ""docs""; pdfplumber>=0.11.4; extra == ""pdfs""",3.6.0,No,,No,None,,, +deepchecks,Base Package,EY,0.18.1,"{'base_package': 'deepchecks==0.18.1', 'dependencies': ['pandas==1.1.5', 'scikit-learn==0.23.2', 'jsonpickle==2', 'PyNomaly==0.3.3', 'typing-extensions==4.0.0', 'tqdm==4.62.3', 'category-encoders==2.3.0', 'scipy==1.4.1', 'plotly==5.13.1', 'matplotlib==3.3.4', 'beautifulsoup4==4.11.1', 'requests==2.22.0', 'statsmodels==0.11.0', 'dataclasses==0.6', 'numpy==1.19', 'ipython==5.5.0', 'ipykernel==4.10.1', 'ipywidgets==7.5.0', 'importlib-metadata==1.4', 'importlib-resources==1.3', 'statsmodels==0.13.5', 'numpy==1.22.2', 'ipython==7.15.0', 'ipykernel==5.3.0', 'ipywidgets==7.6.5', 'jupyter-server==2.7.2', 'seqeval==1.0.0', 'textblob==0.17.1', 'transformers==4.0.0', 'sentence-transformers==3.0.0', 'fasttext==0.8.0', 'nltk==3.8.1', 'pytorch-ignite==0.4.8', 'opencv-python==4.5.5.62', 'albumentations==1.1.0', 'imgaug==0.4.0', 'seaborn==0.1.0', 'imagehash==4.0.0', 'lxml==4.0.0']}","pandas>=1.1.5; scikit-learn>=0.23.2; jsonpickle>=2; PyNomaly>=0.3.3; typing-extensions>=4.0.0; tqdm>=4.62.3; category-encoders>=2.3.0; scipy>=1.4.1; plotly>=5.13.1; matplotlib>=3.3.4; beautifulsoup4>=4.11.1; requests>=2.22.0; statsmodels>=0.11.0; python_version < ""3.7""; dataclasses>=0.6; python_version < ""3.7""; numpy>=1.19; python_version < ""3.8""; ipython>=5.5.0; python_version < ""3.8""; ipykernel>=4.10.1; python_version < ""3.8""; ipywidgets<8,>=7.5.0; python_version < ""3.8""; importlib-metadata>=1.4; python_version < ""3.8""; importlib-resources>=1.3; python_version < ""3.9""; statsmodels>=0.13.5; python_version >= ""3.7""; numpy>=1.22.2; python_version >= ""3.8""; ipython>=7.15.0; python_version >= ""3.8""; ipykernel>=5.3.0; python_version >= ""3.8""; ipywidgets>=7.6.5; python_version >= ""3.8""; jupyter-server>=2.7.2; python_version >= ""3.8""; seqeval>=1.0.0; extra == ""nlp""; textblob>=0.17.1; extra == ""nlp""; umap-learn; extra == ""nlp""; transformers>=4.0.0; extra == ""nlp""; huggingface-hub; extra == ""nlp""; sentence-transformers>=3.0.0; extra == ""nlp""; fasttext<0.9.3,>=0.8.0; extra == ""nlp-properties""; nltk<=3.6.7; python_version < ""3.7"" and extra == ""nlp""; nltk>=3.8.1; python_version >= ""3.7"" and extra == ""nlp""; tiktoken; python_version >= ""3.8"" and extra == ""nlp""; pytorch-ignite>=0.4.8; extra == ""vision""; opencv-python>=4.5.5.62; extra == ""vision""; albumentations<1.4.0,>=1.1.0; extra == ""vision""; imgaug>=0.4.0; extra == ""vision""; seaborn>=0.1.0; extra == ""vision""; imagehash>=4.0.0; extra == ""vision""; lxml>=4.0.0; extra == ""vision""","0.19.0, 0.19.1","pandas>=1.1.5; scikit-learn>=0.23.2; jsonpickle>=2; PyNomaly>=0.3.3; typing-extensions>=4.0.0; tqdm>=4.62.3; category-encoders>=2.3.0; scipy>=1.4.1; plotly>=5.13.1; matplotlib>=3.3.4; beautifulsoup4>=4.11.1; requests>=2.22.0; statsmodels>=0.11.0; python_version < ""3.7""; dataclasses>=0.6; python_version < ""3.7""; numpy>=1.19; python_version < ""3.8""; ipython>=5.5.0; python_version < ""3.8""; ipykernel>=4.10.1; python_version < ""3.8""; ipywidgets<8,>=7.5.0; python_version < ""3.8""; importlib-metadata>=1.4; python_version < ""3.8""; importlib-resources>=1.3; python_version < ""3.9""; statsmodels>=0.13.5; python_version >= ""3.7""; numpy>=1.22.2; python_version >= ""3.8""; ipython>=7.15.0; python_version >= ""3.8""; ipykernel>=5.3.0; python_version >= ""3.8""; ipywidgets>=7.6.5; python_version >= ""3.8""; jupyter-server>=2.7.2; python_version >= ""3.8""; seqeval>=1.0.0; extra == ""nlp""; textblob>=0.17.1; extra == ""nlp""; umap-learn; extra == ""nlp""; transformers>=4.0.0; extra == ""nlp""; huggingface-hub; extra == ""nlp""; sentence-transformers>=3.0.0; extra == ""nlp""; fasttext<0.9.3,>=0.8.0; extra == ""nlp-properties""; nltk<=3.6.7; python_version < ""3.7"" and extra == ""nlp""; nltk>=3.8.1; python_version >= ""3.7"" and extra == ""nlp""; tiktoken; python_version >= ""3.8"" and extra == ""nlp""; pytorch-ignite>=0.4.8; extra == ""vision""; opencv-python>=4.5.5.62; extra == ""vision""; albumentations<1.4.0,>=1.1.0; extra == ""vision""; imgaug>=0.4.0; extra == ""vision""; seaborn>=0.1.0; extra == ""vision""; imagehash>=4.0.0; extra == ""vision""; lxml>=4.0.0; extra == ""vision""",0.19.1,No,,No,None,,, +elasticsearch,Base Package,EY,8.13.1,"{'base_package': 'elasticsearch==8.13.1', 'dependencies': ['elastic-transport==8.15.1', 'aiohttp==3', 'pyyaml==5.4', 'requests==2', 'sphinx-rtd-theme==2.0', 'orjson==3', 'pyarrow==1', 'requests==2.4.0', 'numpy==1', 'simsimd==3']}","elastic-transport<9,>=8.15.1; python-dateutil; typing-extensions; aiohttp<4,>=3; extra == ""async""; aiohttp; extra == ""dev""; black; extra == ""dev""; build; extra == ""dev""; coverage; extra == ""dev""; isort; extra == ""dev""; jinja2; extra == ""dev""; mapbox-vector-tile; extra == ""dev""; mypy; extra == ""dev""; nltk; extra == ""dev""; nox; extra == ""dev""; numpy; extra == ""dev""; orjson; extra == ""dev""; pandas; extra == ""dev""; pyarrow; extra == ""dev""; pyright; extra == ""dev""; pytest; extra == ""dev""; pytest-asyncio; extra == ""dev""; pytest-cov; extra == ""dev""; pytest-mock; extra == ""dev""; python-dateutil; extra == ""dev""; pyyaml>=5.4; extra == ""dev""; requests<3,>=2; extra == ""dev""; sentence-transformers; extra == ""dev""; simsimd; extra == ""dev""; tqdm; extra == ""dev""; twine; extra == ""dev""; types-python-dateutil; extra == ""dev""; types-tqdm; extra == ""dev""; unasync; extra == ""dev""; sphinx; extra == ""docs""; sphinx-autodoc-typehints; extra == ""docs""; sphinx-rtd-theme>=2.0; extra == ""docs""; orjson>=3; extra == ""orjson""; pyarrow>=1; extra == ""pyarrow""; requests!=2.32.2,<3.0.0,>=2.4.0; extra == ""requests""; numpy>=1; extra == ""vectorstore-mmr""; simsimd>=3; extra == ""vectorstore-mmr""","8.13.2, 8.14.0, 8.15.0, 8.15.1, 8.16.0, 8.17.0, 8.17.1, 8.17.2, 8.18.0, 8.18.1, 9.0.0, 9.0.1, 9.0.2","elastic-transport<9,>=8.15.1; python-dateutil; typing-extensions; aiohttp<4,>=3; extra == ""async""; aiohttp; extra == ""dev""; black; extra == ""dev""; build; extra == ""dev""; coverage; extra == ""dev""; isort; extra == ""dev""; jinja2; extra == ""dev""; mapbox-vector-tile; extra == ""dev""; mypy; extra == ""dev""; nltk; extra == ""dev""; nox; extra == ""dev""; numpy; extra == ""dev""; orjson; extra == ""dev""; pandas; extra == ""dev""; pyarrow; extra == ""dev""; pyright; extra == ""dev""; pytest; extra == ""dev""; pytest-asyncio; extra == ""dev""; pytest-cov; extra == ""dev""; pytest-mock; extra == ""dev""; python-dateutil; extra == ""dev""; pyyaml>=5.4; extra == ""dev""; requests<3,>=2; extra == ""dev""; sentence-transformers; extra == ""dev""; simsimd; extra == ""dev""; tqdm; extra == ""dev""; twine; extra == ""dev""; types-python-dateutil; extra == ""dev""; types-tqdm; extra == ""dev""; unasync; extra == ""dev""; sphinx; extra == ""docs""; sphinx-autodoc-typehints; extra == ""docs""; sphinx-rtd-theme>=2.0; extra == ""docs""; orjson>=3; extra == ""orjson""; pyarrow>=1; extra == ""pyarrow""; requests!=2.32.2,<3.0.0,>=2.4.0; extra == ""requests""; numpy>=1; extra == ""vectorstore-mmr""; simsimd>=3; extra == ""vectorstore-mmr""",9.0.2,No,,No,None,,, +email-validator,Base Package,EY,2.2.0,"{'base_package': 'email-validator==2.2.0', 'dependencies': ['dnspython==2.0.0', 'idna==2.0.0']}",dnspython>=2.0.0; idna>=2.0.0,,dnspython>=2.0.0; idna>=2.0.0,2.2.0,No,,No,None,,, +evidently,Base Package,EY,0.4.16,"{'base_package': 'evidently==0.4.16', 'dependencies': ['plotly==5.10.0', 'statsmodels==0.12.2', 'scikit-learn==1.0.1', 'pandas==1.3.5', 'numpy==1.22.0', 'nltk==3.6.7', 'scipy==1.10.0', 'requests==2.32.0', 'PyYAML==5.4', 'pydantic==1.10.16', 'litestar==2.8.3', 'typing-inspect==0.9.0', 'uvicorn==0.22.0', 'watchdog==3.0.0', 'typer==0.3', 'rich==13', 'iterative-telemetry==0.0.5', 'dynaconf==3.2.4', 'certifi==2024.7.4', 'urllib3==1.26.19', 'fsspec==2024.6.1', 'ujson==5.4.0', 'deprecation==2.1.0', 'uuid6==2024.7.10', 'cryptography==43.0.1', 'pip-audit==2.7.2', 'wheel==0.38.1', 'jupyter==1.0.0', 'mypy==1.1.1', 'pandas-stubs==1.3.5', 'pytest==7.4.4', 'types-PyYAML==6.0.1', 'types-requests==2.26.0', 'types-dataclasses==0.6', 'types-python-dateutil==2.8.19', 'types-ujson==5.4.0', 'pillow==10.3.0', 'httpx==0.27.0', 'ruff==0.3.7', 'pre-commit==3.5.0', 'pytest-asyncio==0.23.7', 'pytest-mock==3.14.0', 'setuptools==65.5.1', 'setuptools==68.2.2', 's3fs==2024.9.0', 'gcsfs==2024.9.0', 'openai==1.16.2', 'evaluate==0.4.1', 'transformers==4.39.3', 'sentence-transformers==2.7.0', 'sqlvalidator==0.0.20', 'litellm==1.60.4', 'pyspark==3.4.0']}","plotly<6,>=5.10.0; statsmodels>=0.12.2; scikit-learn>=1.0.1; pandas[parquet]>=1.3.5; numpy>=1.22.0; nltk>=3.6.7; scipy>=1.10.0; requests>=2.32.0; PyYAML>=5.4; pydantic>=1.10.16; litestar>=2.8.3; typing-inspect>=0.9.0; uvicorn[standard]>=0.22.0; watchdog>=3.0.0; typer>=0.3; rich>=13; iterative-telemetry>=0.0.5; dynaconf>=3.2.4; certifi>=2024.7.4; urllib3>=1.26.19; fsspec>=2024.6.1; ujson>=5.4.0; deprecation>=2.1.0; uuid6>=2024.7.10; cryptography>=43.0.1; pip-audit>=2.7.2; extra == ""dev""; wheel==0.38.1; extra == ""dev""; jupyter==1.0.0; extra == ""dev""; mypy==1.1.1; extra == ""dev""; pandas-stubs>=1.3.5; extra == ""dev""; pytest==7.4.4; extra == ""dev""; types-PyYAML==6.0.1; extra == ""dev""; types-requests==2.26.0; extra == ""dev""; types-dataclasses==0.6; extra == ""dev""; types-python-dateutil==2.8.19; extra == ""dev""; types-ujson>=5.4.0; extra == ""dev""; pillow>=10.3.0; extra == ""dev""; httpx==0.27.0; extra == ""dev""; ruff==0.3.7; extra == ""dev""; pre-commit==3.5.0; extra == ""dev""; pytest-asyncio==0.23.7; extra == ""dev""; pytest-mock==3.14.0; extra == ""dev""; setuptools==65.5.1; python_version < ""3.12"" and extra == ""dev""; setuptools==68.2.2; python_version >= ""3.12"" and extra == ""dev""; s3fs>=2024.9.0; extra == ""fsspec""; gcsfs>=2024.9.0; extra == ""fsspec""; openai>=1.16.2; extra == ""llm""; evaluate>=0.4.1; extra == ""llm""; transformers[torch]>=4.39.3; extra == ""llm""; sentence-transformers>=2.7.0; extra == ""llm""; sqlvalidator>=0.0.20; extra == ""llm""; litellm>=1.60.4; extra == ""llm""; pyspark<4,>=3.4.0; extra == ""spark""","0.4.17, 0.4.18, 0.4.19, 0.4.20, 0.4.21, 0.4.22, 0.4.23, 0.4.24, 0.4.25, 0.4.26, 0.4.27, 0.4.28, 0.4.29, 0.4.30, 0.4.31, 0.4.32, 0.4.33, 0.4.34, 0.4.35, 0.4.36, 0.4.37, 0.4.38, 0.4.39, 0.4.40, 0.5.0, 0.5.1, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.6.6, 0.6.7, 0.7.0, 0.7.1, 0.7.2, 0.7.3, 0.7.4, 0.7.5, 0.7.6, 0.7.7, 0.7.8","plotly<6,>=5.10.0; statsmodels>=0.12.2; scikit-learn>=1.0.1; pandas[parquet]>=1.3.5; numpy>=1.22.0; nltk>=3.6.7; scipy>=1.10.0; requests>=2.32.0; PyYAML>=5.4; pydantic>=1.10.16; litestar>=2.8.3; typing-inspect>=0.9.0; uvicorn[standard]>=0.22.0; watchdog>=3.0.0; typer>=0.3; rich>=13; iterative-telemetry>=0.0.5; dynaconf>=3.2.4; certifi>=2024.7.4; urllib3>=1.26.19; fsspec>=2024.6.1; ujson>=5.4.0; deprecation>=2.1.0; uuid6>=2024.7.10; cryptography>=43.0.1; pip-audit>=2.7.2; extra == ""dev""; wheel==0.38.1; extra == ""dev""; jupyter==1.0.0; extra == ""dev""; mypy==1.1.1; extra == ""dev""; pandas-stubs>=1.3.5; extra == ""dev""; pytest==7.4.4; extra == ""dev""; types-PyYAML==6.0.1; extra == ""dev""; types-requests==2.26.0; extra == ""dev""; types-dataclasses==0.6; extra == ""dev""; types-python-dateutil==2.8.19; extra == ""dev""; types-ujson>=5.4.0; extra == ""dev""; pillow>=10.3.0; extra == ""dev""; httpx==0.27.0; extra == ""dev""; ruff==0.3.7; extra == ""dev""; pre-commit==3.5.0; extra == ""dev""; pytest-asyncio==0.23.7; extra == ""dev""; pytest-mock==3.14.0; extra == ""dev""; setuptools==65.5.1; python_version < ""3.12"" and extra == ""dev""; setuptools==68.2.2; python_version >= ""3.12"" and extra == ""dev""; s3fs>=2024.9.0; extra == ""fsspec""; gcsfs>=2024.9.0; extra == ""fsspec""; openai>=1.16.2; extra == ""llm""; evaluate>=0.4.1; extra == ""llm""; transformers[torch]>=4.39.3; extra == ""llm""; sentence-transformers>=2.7.0; extra == ""llm""; sqlvalidator>=0.0.20; extra == ""llm""; litellm>=1.60.4; extra == ""llm""; pyspark<4,>=3.4.0; extra == ""spark""",0.7.8,No,,No,None,,, +exceptiongroup,Base Package,EY,1.2.2,"{'base_package': 'exceptiongroup==1.2.2', 'dependencies': ['typing-extensions==4.6.0', 'pytest==6']}","typing-extensions>=4.6.0; python_version < ""3.13""; pytest>=6; extra == ""test""",1.3.0,"typing-extensions>=4.6.0; python_version < ""3.13""; pytest>=6; extra == ""test""",1.3.0,No,,No,None,,, +farm-haystack,Base Package,EY,1.25.5,"{'base_package': 'farm-haystack==1.25.5', 'dependencies': ['lazy-imports==0.3.1', 'prompthub-py==4.0.0', 'scikit-learn==1.3.0', 'tiktoken==0.5.1', 'transformers==4.46', 'azure-ai-formrecognizer==3.2.0b2', 'boto3==1.28.57', 'elasticsearch==7.17', 'faiss-cpu==1.6.3', 'huggingface-hub==0.5.0', 'nltk==3.9.1', 'openai-whisper==20231106', 'opensearch-py==2', 'pdf2image==1.14', 'pinecone-client==2.0.11', 'pymongo==4.6', 'pytesseract==0.3.7', 'rapidfuzz==2.0.15', 'scipy==1.3.2', 'selenium==4.11.0', 'sentence-transformers==2.3.1', 'sqlalchemy==1.4.2', 'transformers==4.46', 'weaviate-client==2', 'azure-ai-formrecognizer==3.2.0b2', 'boto3==1.28.57', 'elasticsearch==7.17', 'faiss-gpu==1.6.3', 'huggingface-hub==0.5.0', 'nltk==3.9.1', 'openai-whisper==20231106', 'opensearch-py==2', 'pdf2image==1.14', 'pinecone-client==2.0.11', 'pymongo==4.6', 'pytesseract==0.3.7', 'rapidfuzz==2.0.15', 'scipy==1.3.2', 'selenium==4.11.0', 'sentence-transformers==2.3.1', 'sqlalchemy==1.4.2', 'transformers==4.46', 'weaviate-client==2', 'openai-whisper==20231106', 'boto3==1.28.57', 'selenium==4.11.0', 'black==23.0', 'dulwich==0.21.0', 'mypy==1.10.0', 'elasticsearch==7.17', 'faiss-cpu==1.6.3', 'opensearch-py==2', 'pinecone-client==2.0.11', 'pymongo==4.6', 'sqlalchemy==1.4.2', 'weaviate-client==2', 'elasticsearch==7.17', 'faiss-gpu==1.6.3', 'opensearch-py==2', 'pinecone-client==2.0.11', 'pymongo==4.6', 'sqlalchemy==1.4.2', 'weaviate-client==2', 'elasticsearch==7.17', 'elasticsearch==7.17', 'elastic-transport==8', 'elasticsearch==8', 'faiss-cpu==1.6.3', 'sqlalchemy==1.4.2', 'faiss-gpu==1.6.3', 'sqlalchemy==1.4.2', 'azure-ai-formrecognizer==3.2.0b2', 'black==23.0', 'huggingface-hub==0.5.0', 'sentence-transformers==2.3.1', 'transformers==4.46', 'rapidfuzz==2.0.15', 'scipy==1.3.2', 'pymongo==4.6', 'pdf2image==1.14', 'pytesseract==0.3.7', 'faiss-cpu==1.6.3', 'faiss-gpu==1.6.3', 'pinecone-client==2.0.11', 'opensearch-py==2', 'pinecone-client==2.0.11', 'sqlalchemy==1.4.2', 'nltk==3.9.1', 'aiorwlock==1.3.0', 'ray==1.9.1', 'ray==1.9.1', 'sqlalchemy==1.4.2', 'weaviate-client==2']}","boilerpy3; events; httpx; jsonschema; lazy-imports==0.3.1; more-itertools; networkx; pandas; pillow; platformdirs; posthog; prompthub-py==4.0.0; pydantic<2; quantulum3; rank-bm25; requests; requests-cache<1.0.0; scikit-learn>=1.3.0; sseclient-py; tenacity; tiktoken>=0.5.1; tqdm; transformers<5.0,>=4.46; azure-ai-formrecognizer>=3.2.0b2; extra == ""all""; beautifulsoup4; extra == ""all""; boto3>=1.28.57; extra == ""all""; elastic-transport<8; extra == ""all""; elasticsearch<8,>=7.17; extra == ""all""; faiss-cpu<=1.7.2,>=1.6.3; extra == ""all""; huggingface-hub>=0.5.0; extra == ""all""; langdetect; extra == ""all""; markdown; extra == ""all""; mlflow; extra == ""all""; nltk>=3.9.1; extra == ""all""; openai-whisper>=20231106; extra == ""all""; opensearch-py>=2; extra == ""all""; pdf2image>1.14; extra == ""all""; pinecone-client<3,>=2.0.11; extra == ""all""; psycopg2-binary; platform_system != ""Windows"" and extra == ""all""; pymongo>=4.6; extra == ""all""; pytesseract>0.3.7; extra == ""all""; python-docx; extra == ""all""; python-frontmatter; extra == ""all""; python-magic-bin; platform_system == ""Windows"" and extra == ""all""; python-magic; platform_system != ""Windows"" and extra == ""all""; python-pptx<=1.0; extra == ""all""; rapidfuzz<2.8.0,>=2.0.15; extra == ""all""; scipy>=1.3.2; extra == ""all""; selenium>=4.11.0; extra == ""all""; sentence-transformers<=3.0.0,>=2.3.1; extra == ""all""; seqeval; extra == ""all""; sqlalchemy-utils; extra == ""all""; sqlalchemy<2,>=1.4.2; extra == ""all""; tika; extra == ""all""; transformers[sentencepiece,torch]<5.0,>=4.46; extra == ""all""; weaviate-client>2; extra == ""all""; azure-ai-formrecognizer>=3.2.0b2; extra == ""all-gpu""; beautifulsoup4; extra == ""all-gpu""; boto3>=1.28.57; extra == ""all-gpu""; elastic-transport<8; extra == ""all-gpu""; elasticsearch<8,>=7.17; extra == ""all-gpu""; faiss-gpu<2,>=1.6.3; extra == ""all-gpu""; huggingface-hub>=0.5.0; extra == ""all-gpu""; langdetect; extra == ""all-gpu""; markdown; extra == ""all-gpu""; mlflow; extra == ""all-gpu""; nltk>=3.9.1; extra == ""all-gpu""; openai-whisper>=20231106; extra == ""all-gpu""; opensearch-py>=2; extra == ""all-gpu""; pdf2image>1.14; extra == ""all-gpu""; pinecone-client<3,>=2.0.11; extra == ""all-gpu""; psycopg2-binary; platform_system != ""Windows"" and extra == ""all-gpu""; pymongo>=4.6; extra == ""all-gpu""; pytesseract>0.3.7; extra == ""all-gpu""; python-docx; extra == ""all-gpu""; python-frontmatter; extra == ""all-gpu""; python-magic-bin; platform_system == ""Windows"" and extra == ""all-gpu""; python-magic; platform_system != ""Windows"" and extra == ""all-gpu""; python-pptx<=1.0; extra == ""all-gpu""; rapidfuzz<2.8.0,>=2.0.15; extra == ""all-gpu""; scipy>=1.3.2; extra == ""all-gpu""; selenium>=4.11.0; extra == ""all-gpu""; sentence-transformers<=3.0.0,>=2.3.1; extra == ""all-gpu""; seqeval; extra == ""all-gpu""; sqlalchemy-utils; extra == ""all-gpu""; sqlalchemy<2,>=1.4.2; extra == ""all-gpu""; tika; extra == ""all-gpu""; transformers[sentencepiece,torch]<5.0,>=4.46; extra == ""all-gpu""; weaviate-client>2; extra == ""all-gpu""; openai-whisper>=20231106; extra == ""audio""; boto3>=1.28.57; extra == ""aws""; pillow<=9.0.0; extra == ""colab""; selenium>=4.11.0; extra == ""crawler""; black[jupyter]~=23.0; extra == ""dev""; coverage; extra == ""dev""; dulwich<1.0.0,>=0.21.0; extra == ""dev""; mypy==1.10.0; extra == ""dev""; pre-commit; extra == ""dev""; psutil; extra == ""dev""; pylint; extra == ""dev""; pytest; extra == ""dev""; pytest-asyncio; extra == ""dev""; pytest-cov; extra == ""dev""; pytest-custom-exit-code; extra == ""dev""; python-multipart; extra == ""dev""; reno; extra == ""dev""; responses; extra == ""dev""; toml; extra == ""dev""; tox; extra == ""dev""; elastic-transport<8; extra == ""docstores""; elasticsearch<8,>=7.17; extra == ""docstores""; faiss-cpu<=1.7.2,>=1.6.3; extra == ""docstores""; opensearch-py>=2; extra == ""docstores""; pinecone-client<3,>=2.0.11; extra == ""docstores""; psycopg2-binary; platform_system != ""Windows"" and extra == ""docstores""; pymongo>=4.6; extra == ""docstores""; sqlalchemy-utils; extra == ""docstores""; sqlalchemy<2,>=1.4.2; extra == ""docstores""; weaviate-client>2; extra == ""docstores""; elastic-transport<8; extra == ""docstores-gpu""; elasticsearch<8,>=7.17; extra == ""docstores-gpu""; faiss-gpu<2,>=1.6.3; extra == ""docstores-gpu""; opensearch-py>=2; extra == ""docstores-gpu""; pinecone-client<3,>=2.0.11; extra == ""docstores-gpu""; psycopg2-binary; platform_system != ""Windows"" and extra == ""docstores-gpu""; pymongo>=4.6; extra == ""docstores-gpu""; sqlalchemy-utils; extra == ""docstores-gpu""; sqlalchemy<2,>=1.4.2; extra == ""docstores-gpu""; weaviate-client>2; extra == ""docstores-gpu""; elastic-transport<8; extra == ""elasticsearch""; elasticsearch<8,>=7.17; extra == ""elasticsearch""; elastic-transport<8; extra == ""elasticsearch7""; elasticsearch<8,>=7.17; extra == ""elasticsearch7""; elastic-transport<9,>=8; extra == ""elasticsearch8""; elasticsearch<9,>=8; extra == ""elasticsearch8""; faiss-cpu<=1.7.2,>=1.6.3; extra == ""faiss""; psycopg2-binary; platform_system != ""Windows"" and extra == ""faiss""; sqlalchemy-utils; extra == ""faiss""; sqlalchemy<2,>=1.4.2; extra == ""faiss""; faiss-gpu<2,>=1.6.3; extra == ""faiss-gpu""; psycopg2-binary; platform_system != ""Windows"" and extra == ""faiss-gpu""; sqlalchemy-utils; extra == ""faiss-gpu""; sqlalchemy<2,>=1.4.2; extra == ""faiss-gpu""; azure-ai-formrecognizer>=3.2.0b2; extra == ""file-conversion""; beautifulsoup4; extra == ""file-conversion""; markdown; extra == ""file-conversion""; python-docx; extra == ""file-conversion""; python-frontmatter; extra == ""file-conversion""; python-magic-bin; platform_system == ""Windows"" and extra == ""file-conversion""; python-magic; platform_system != ""Windows"" and extra == ""file-conversion""; python-pptx<=1.0; extra == ""file-conversion""; tika; extra == ""file-conversion""; black[jupyter]~=23.0; extra == ""formatting""; huggingface-hub>=0.5.0; extra == ""inference""; sentence-transformers<=3.0.0,>=2.3.1; extra == ""inference""; transformers[sentencepiece,torch]<5.0,>=4.46; extra == ""inference""; mlflow; extra == ""metrics""; rapidfuzz<2.8.0,>=2.0.15; extra == ""metrics""; scipy>=1.3.2; extra == ""metrics""; seqeval; extra == ""metrics""; pymongo>=4.6; extra == ""mongodb""; pdf2image>1.14; extra == ""ocr""; pytesseract>0.3.7; extra == ""ocr""; faiss-cpu<=1.7.2,>=1.6.3; extra == ""only-faiss""; faiss-gpu<2,>=1.6.3; extra == ""only-faiss-gpu""; pinecone-client<3,>=2.0.11; extra == ""only-pinecone""; onnxruntime; extra == ""onnx""; onnxruntime-tools; extra == ""onnx""; onnxruntime-gpu; extra == ""onnx-gpu""; onnxruntime-tools; extra == ""onnx-gpu""; opensearch-py>=2; extra == ""opensearch""; pinecone-client<3,>=2.0.11; extra == ""pinecone""; psycopg2-binary; platform_system != ""Windows"" and extra == ""pinecone""; sqlalchemy-utils; extra == ""pinecone""; sqlalchemy<2,>=1.4.2; extra == ""pinecone""; langdetect; extra == ""preprocessing""; nltk>=3.9.1; extra == ""preprocessing""; aiorwlock<2,>=1.3.0; extra == ""ray""; ray[serve]!=1.12.0,<2,>=1.9.1; platform_system == ""Windows"" and extra == ""ray""; ray[serve]<2,>=1.9.1; platform_system != ""Windows"" and extra == ""ray""; psycopg2-binary; platform_system != ""Windows"" and extra == ""sql""; sqlalchemy-utils; extra == ""sql""; sqlalchemy<2,>=1.4.2; extra == ""sql""; weaviate-client>2; extra == ""weaviate""","1.26.0rc1, 1.26.0, 1.26.1, 1.26.2, 1.26.3rc1, 1.26.3, 1.26.4, 1.26.4.post0","boilerpy3; events; httpx; jsonschema; lazy-imports==0.3.1; more-itertools; networkx; pandas; pillow; platformdirs; posthog; prompthub-py==4.0.0; pydantic<2; quantulum3; rank-bm25; requests; requests-cache<1.0.0; scikit-learn>=1.3.0; sseclient-py; tenacity; tiktoken>=0.5.1; tqdm; transformers<5.0,>=4.46; azure-ai-formrecognizer>=3.2.0b2; extra == ""all""; beautifulsoup4; extra == ""all""; boto3>=1.28.57; extra == ""all""; elastic-transport<8; extra == ""all""; elasticsearch<8,>=7.17; extra == ""all""; faiss-cpu<=1.7.2,>=1.6.3; extra == ""all""; huggingface-hub>=0.5.0; extra == ""all""; langdetect; extra == ""all""; markdown; extra == ""all""; mlflow; extra == ""all""; nltk>=3.9.1; extra == ""all""; openai-whisper>=20231106; extra == ""all""; opensearch-py>=2; extra == ""all""; pdf2image>1.14; extra == ""all""; pinecone-client<3,>=2.0.11; extra == ""all""; psycopg2-binary; platform_system != ""Windows"" and extra == ""all""; pymongo>=4.6; extra == ""all""; pytesseract>0.3.7; extra == ""all""; python-docx; extra == ""all""; python-frontmatter; extra == ""all""; python-magic-bin; platform_system == ""Windows"" and extra == ""all""; python-magic; platform_system != ""Windows"" and extra == ""all""; python-pptx<=1.0; extra == ""all""; rapidfuzz<2.8.0,>=2.0.15; extra == ""all""; scipy>=1.3.2; extra == ""all""; selenium>=4.11.0; extra == ""all""; sentence-transformers<=3.0.0,>=2.3.1; extra == ""all""; seqeval; extra == ""all""; sqlalchemy-utils; extra == ""all""; sqlalchemy<2,>=1.4.2; extra == ""all""; tika; extra == ""all""; transformers[sentencepiece,torch]<5.0,>=4.46; extra == ""all""; weaviate-client>2; extra == ""all""; azure-ai-formrecognizer>=3.2.0b2; extra == ""all-gpu""; beautifulsoup4; extra == ""all-gpu""; boto3>=1.28.57; extra == ""all-gpu""; elastic-transport<8; extra == ""all-gpu""; elasticsearch<8,>=7.17; extra == ""all-gpu""; faiss-gpu<2,>=1.6.3; extra == ""all-gpu""; huggingface-hub>=0.5.0; extra == ""all-gpu""; langdetect; extra == ""all-gpu""; markdown; extra == ""all-gpu""; mlflow; extra == ""all-gpu""; nltk>=3.9.1; extra == ""all-gpu""; openai-whisper>=20231106; extra == ""all-gpu""; opensearch-py>=2; extra == ""all-gpu""; pdf2image>1.14; extra == ""all-gpu""; pinecone-client<3,>=2.0.11; extra == ""all-gpu""; psycopg2-binary; platform_system != ""Windows"" and extra == ""all-gpu""; pymongo>=4.6; extra == ""all-gpu""; pytesseract>0.3.7; extra == ""all-gpu""; python-docx; extra == ""all-gpu""; python-frontmatter; extra == ""all-gpu""; python-magic-bin; platform_system == ""Windows"" and extra == ""all-gpu""; python-magic; platform_system != ""Windows"" and extra == ""all-gpu""; python-pptx<=1.0; extra == ""all-gpu""; rapidfuzz<2.8.0,>=2.0.15; extra == ""all-gpu""; scipy>=1.3.2; extra == ""all-gpu""; selenium>=4.11.0; extra == ""all-gpu""; sentence-transformers<=3.0.0,>=2.3.1; extra == ""all-gpu""; seqeval; extra == ""all-gpu""; sqlalchemy-utils; extra == ""all-gpu""; sqlalchemy<2,>=1.4.2; extra == ""all-gpu""; tika; extra == ""all-gpu""; transformers[sentencepiece,torch]<5.0,>=4.46; extra == ""all-gpu""; weaviate-client>2; extra == ""all-gpu""; openai-whisper>=20231106; extra == ""audio""; boto3>=1.28.57; extra == ""aws""; pillow<=9.0.0; extra == ""colab""; selenium>=4.11.0; extra == ""crawler""; black[jupyter]~=23.0; extra == ""dev""; coverage; extra == ""dev""; dulwich<1.0.0,>=0.21.0; extra == ""dev""; mypy==1.10.0; extra == ""dev""; pre-commit; extra == ""dev""; psutil; extra == ""dev""; pylint; extra == ""dev""; pytest; extra == ""dev""; pytest-asyncio; extra == ""dev""; pytest-cov; extra == ""dev""; pytest-custom-exit-code; extra == ""dev""; python-multipart; extra == ""dev""; reno; extra == ""dev""; responses; extra == ""dev""; toml; extra == ""dev""; tox; extra == ""dev""; elastic-transport<8; extra == ""docstores""; elasticsearch<8,>=7.17; extra == ""docstores""; faiss-cpu<=1.7.2,>=1.6.3; extra == ""docstores""; opensearch-py>=2; extra == ""docstores""; pinecone-client<3,>=2.0.11; extra == ""docstores""; psycopg2-binary; platform_system != ""Windows"" and extra == ""docstores""; pymongo>=4.6; extra == ""docstores""; sqlalchemy-utils; extra == ""docstores""; sqlalchemy<2,>=1.4.2; extra == ""docstores""; weaviate-client>2; extra == ""docstores""; elastic-transport<8; extra == ""docstores-gpu""; elasticsearch<8,>=7.17; extra == ""docstores-gpu""; faiss-gpu<2,>=1.6.3; extra == ""docstores-gpu""; opensearch-py>=2; extra == ""docstores-gpu""; pinecone-client<3,>=2.0.11; extra == ""docstores-gpu""; psycopg2-binary; platform_system != ""Windows"" and extra == ""docstores-gpu""; pymongo>=4.6; extra == ""docstores-gpu""; sqlalchemy-utils; extra == ""docstores-gpu""; sqlalchemy<2,>=1.4.2; extra == ""docstores-gpu""; weaviate-client>2; extra == ""docstores-gpu""; elastic-transport<8; extra == ""elasticsearch""; elasticsearch<8,>=7.17; extra == ""elasticsearch""; elastic-transport<8; extra == ""elasticsearch7""; elasticsearch<8,>=7.17; extra == ""elasticsearch7""; elastic-transport<9,>=8; extra == ""elasticsearch8""; elasticsearch<9,>=8; extra == ""elasticsearch8""; faiss-cpu<=1.7.2,>=1.6.3; extra == ""faiss""; psycopg2-binary; platform_system != ""Windows"" and extra == ""faiss""; sqlalchemy-utils; extra == ""faiss""; sqlalchemy<2,>=1.4.2; extra == ""faiss""; faiss-gpu<2,>=1.6.3; extra == ""faiss-gpu""; psycopg2-binary; platform_system != ""Windows"" and extra == ""faiss-gpu""; sqlalchemy-utils; extra == ""faiss-gpu""; sqlalchemy<2,>=1.4.2; extra == ""faiss-gpu""; azure-ai-formrecognizer>=3.2.0b2; extra == ""file-conversion""; beautifulsoup4; extra == ""file-conversion""; markdown; extra == ""file-conversion""; python-docx; extra == ""file-conversion""; python-frontmatter; extra == ""file-conversion""; python-magic-bin; platform_system == ""Windows"" and extra == ""file-conversion""; python-magic; platform_system != ""Windows"" and extra == ""file-conversion""; python-pptx<=1.0; extra == ""file-conversion""; tika; extra == ""file-conversion""; black[jupyter]~=23.0; extra == ""formatting""; huggingface-hub>=0.5.0; extra == ""inference""; sentence-transformers<=3.0.0,>=2.3.1; extra == ""inference""; transformers[sentencepiece,torch]<5.0,>=4.46; extra == ""inference""; mlflow; extra == ""metrics""; rapidfuzz<2.8.0,>=2.0.15; extra == ""metrics""; scipy>=1.3.2; extra == ""metrics""; seqeval; extra == ""metrics""; pymongo>=4.6; extra == ""mongodb""; pdf2image>1.14; extra == ""ocr""; pytesseract>0.3.7; extra == ""ocr""; faiss-cpu<=1.7.2,>=1.6.3; extra == ""only-faiss""; faiss-gpu<2,>=1.6.3; extra == ""only-faiss-gpu""; pinecone-client<3,>=2.0.11; extra == ""only-pinecone""; onnxruntime; extra == ""onnx""; onnxruntime-tools; extra == ""onnx""; onnxruntime-gpu; extra == ""onnx-gpu""; onnxruntime-tools; extra == ""onnx-gpu""; opensearch-py>=2; extra == ""opensearch""; pinecone-client<3,>=2.0.11; extra == ""pinecone""; psycopg2-binary; platform_system != ""Windows"" and extra == ""pinecone""; sqlalchemy-utils; extra == ""pinecone""; sqlalchemy<2,>=1.4.2; extra == ""pinecone""; langdetect; extra == ""preprocessing""; nltk>=3.9.1; extra == ""preprocessing""; aiorwlock<2,>=1.3.0; extra == ""ray""; ray[serve]!=1.12.0,<2,>=1.9.1; platform_system == ""Windows"" and extra == ""ray""; ray[serve]<2,>=1.9.1; platform_system != ""Windows"" and extra == ""ray""; psycopg2-binary; platform_system != ""Windows"" and extra == ""sql""; sqlalchemy-utils; extra == ""sql""; sqlalchemy<2,>=1.4.2; extra == ""sql""; weaviate-client>2; extra == ""weaviate""",1.26.4.post0,No,,No,None,,, +fastapi-cli,Base Package,EY,0.0.5,"{'base_package': 'fastapi-cli==0.0.5', 'dependencies': ['typer==0.12.3', 'uvicorn==0.15.0', 'rich-toolkit==0.11.1', 'uvicorn==0.15.0']}","typer>=0.12.3; uvicorn[standard]>=0.15.0; rich-toolkit>=0.11.1; uvicorn[standard]>=0.15.0; extra == ""standard""","0.0.6, 0.0.7","typer>=0.12.3; uvicorn[standard]>=0.15.0; rich-toolkit>=0.11.1; uvicorn[standard]>=0.15.0; extra == ""standard""",0.0.7,No,,No,None,,, +Flask-HTTPAuth,Base Package,EY,3.3.0,"{'base_package': 'Flask-HTTPAuth==3.3.0', 'dependencies': []}",flask,"4.0.0, 4.1.0, 4.2.0, 4.3.0, 4.4.0, 4.5.0, 4.6.0, 4.7.0, 4.8.0",flask,4.8.0,No,,No,None,,, +Flask-SQLAlchemy,Base Package,EY,2.4.1,"{'base_package': 'Flask-SQLAlchemy==2.4.1', 'dependencies': ['flask==2.2.5', 'sqlalchemy==2.0.16']}",flask>=2.2.5; sqlalchemy>=2.0.16,"2.4.2, 2.4.3, 2.4.4, 2.5.0, 2.5.1, 3.0.0a1, 3.0.0a2, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4, 3.0.5, 3.1.0, 3.1.1",flask>=2.2.5; sqlalchemy>=2.0.16,3.1.1,No,,No,None,,, +flask-swagger-ui,Base Package,EY,4.11.1,"{'base_package': 'flask-swagger-ui==4.11.1', 'dependencies': []}",flask,5.21.0,flask,5.21.0,No,,No,None,,, +fqdn,Base Package,EY,1.5.1,"{'base_package': 'fqdn==1.5.1', 'dependencies': ['cached-property==1.3.0']}","cached-property (>=1.3.0) ; python_version < ""3.8""",,"cached-property (>=1.3.0) ; python_version < ""3.8""",1.5.1,No,,No,None,,, +google-generativeai,Base Package,EY,0.2.1,"{'base_package': 'google-generativeai==0.2.1', 'dependencies': ['google-ai-generativelanguage==0.6.15', 'google-auth==2.15.0']}","google-ai-generativelanguage==0.6.15; google-api-core; google-api-python-client; google-auth>=2.15.0; protobuf; pydantic; tqdm; typing-extensions; absl-py; extra == ""dev""; black; extra == ""dev""; nose2; extra == ""dev""; pandas; extra == ""dev""; pytype; extra == ""dev""; pyyaml; extra == ""dev""; Pillow; extra == ""dev""; ipython; extra == ""dev""","0.2.2, 0.3.0, 0.3.1, 0.3.2, 0.4.0, 0.4.1, 0.5.0, 0.5.1, 0.5.2, 0.5.3, 0.5.4, 0.6.0, 0.7.0, 0.7.1, 0.7.2, 0.8.0, 0.8.1, 0.8.2, 0.8.3, 0.8.4, 0.8.5","google-ai-generativelanguage==0.6.15; google-api-core; google-api-python-client; google-auth>=2.15.0; protobuf; pydantic; tqdm; typing-extensions; absl-py; extra == ""dev""; black; extra == ""dev""; nose2; extra == ""dev""; pandas; extra == ""dev""; pytype; extra == ""dev""; pyyaml; extra == ""dev""; Pillow; extra == ""dev""; ipython; extra == ""dev""",0.8.5,No,,No,None,,, +great-expectations,Base Package,EY,1.1.3,"{'base_package': 'great-expectations==1.1.3', 'dependencies': ['altair==4.2.1', 'cryptography==3.2', 'jinja2==3', 'jsonschema==2.5.1', 'marshmallow==3.7.1', 'mistune==0.8.4', 'posthog==3', 'pydantic==1.10.7', 'pyparsing==2.4', 'python-dateutil==2.8.1', 'requests==2.20', 'ruamel.yaml==0.16', 'scipy==1.6.0', 'tqdm==4.59.0', 'typing-extensions==4.1.0', 'tzlocal==1.2', 'numpy==1.21.6', 'pandas==1.1.3', 'numpy==1.22.4', 'pandas==1.3.0', 'numpy==1.26.0', 'feather-format==0.4.1', 'pyathena==2.0.0', 'sqlalchemy==1.4.0', 'boto3==1.17.106', 'azure-identity==1.10.0', 'azure-keyvault-secrets==4.0.0', 'azure-storage-blob==12.5.0', 'azure-identity==1.10.0', 'azure-keyvault-secrets==4.0.0', 'azure-storage-blob==12.5.0', 'gcsfs==0.5.1', 'google-cloud-bigquery==3.3.6', 'google-cloud-bigquery-storage==2.20.0', 'google-cloud-secret-manager==1.0.0', 'pandas-gbq==0.26.1', 'sqlalchemy-bigquery==1.3.0', 'sqlalchemy==1.4.0', 'google-cloud-storage==1.28.0', 'google-cloud-storage==2.10.0', 'clickhouse-sqlalchemy==0.2.2', 'clickhouse-sqlalchemy==0.3.0', 'orjson==3.9.7', 'databricks-sqlalchemy==1.0.0', 'sqlalchemy==1.4.0', 'pyodbc==4.0.30', 'sqlalchemy-dremio==1.2.1', 'sqlalchemy==1.4.0', 'openpyxl==3.0.7', 'xlrd==1.1.0', 'gcsfs==0.5.1', 'google-cloud-bigquery==3.3.6', 'google-cloud-bigquery-storage==2.20.0', 'google-cloud-secret-manager==1.0.0', 'pandas-gbq==0.26.1', 'sqlalchemy-bigquery==1.3.0', 'sqlalchemy==1.4.0', 'google-cloud-storage==1.28.0', 'google-cloud-storage==2.10.0', 'psycopg2-binary==2.7.6', 'sqlalchemy==1.4.0', 'PyHive==0.6.5', 'thrift==0.16.0', 'thrift-sasl==0.4.3', 'sqlalchemy==1.4.0', 'pyodbc==4.0.30', 'sqlalchemy==1.4.0', 'PyMySQL==1.1.1', 'sqlalchemy==1.4.0', 'pypd==1.1.0', 'psycopg2-binary==2.7.6', 'sqlalchemy==1.4.0', 'psycopg2-binary==2.7.6', 'sqlalchemy-redshift==0.8.8', 'boto3==1.17.106', 'snowflake-sqlalchemy==1.2.3', 'sqlalchemy==1.4.0', 'snowflake-connector-python==2.5.0', 'snowflake-connector-python==2.9.0', 'pyspark==2.3.2', 'googleapis-common-protos==1.56.4', 'grpcio==1.48.1', 'grpcio-status==1.48.1', 'teradatasqlalchemy==17.0.0.5', 'boto3==1.17.106', 'coverage==7.5.1', 'flaky==3.7.0', 'flask==1.0.0', 'freezegun==0.3.15', 'moto==4.2.13', 'pact-python==2.0.1', 'pyfakefs==4.5.1', 'pytest==8.2.1', 'pytest-benchmark==3.4.1', 'pytest-cov==5.0.0', 'pytest-icdiff==0.9.0', 'pytest-mock==3.14.0', 'pytest-order==1.2.1', 'pytest-random-order==1.1.1', 'pytest-timeout==2.3.1', 'pytest-xdist==3.6.1', 'requirements-parser==0.9.0', 'responses==0.23.1', 'setuptools==70.0.0', 'sqlalchemy==1.4.0', 'adr-tools-python==1.0.3', 'invoke==2.0.0', 'mypy==1.15.0', 'pre-commit==2.21.0', 'ruff==0.11.12', 'tomli==2.0.1', 'docstring-parser==0.16', 'feather-format==0.4.1', 'trino==0.310.0', 'sqlalchemy==1.4.0', 'sqlalchemy-vertica-python==0.5.10', 'sqlalchemy==1.4.0']}","altair<5.0.0,>=4.2.1; cryptography>=3.2; jinja2>=3; jsonschema>=2.5.1; marshmallow<4.0.0,>=3.7.1; mistune>=0.8.4; packaging; posthog<4,>3; pydantic>=1.10.7; pyparsing>=2.4; python-dateutil>=2.8.1; requests>=2.20; ruamel.yaml>=0.16; scipy>=1.6.0; tqdm>=4.59.0; typing-extensions>=4.1.0; tzlocal>=1.2; numpy>=1.21.6; python_version == ""3.9""; pandas<2.2,>=1.1.3; python_version == ""3.9""; numpy>=1.22.4; python_version >= ""3.10""; pandas<2.2,>=1.3.0; python_version >= ""3.10""; numpy>=1.26.0; python_version >= ""3.12""; pandas<2.2; python_version >= ""3.12""; feather-format>=0.4.1; extra == ""arrow""; pyarrow; extra == ""arrow""; pyathena[sqlalchemy]<3,>=2.0.0; extra == ""athena""; sqlalchemy>=1.4.0; extra == ""athena""; boto3>=1.17.106; extra == ""aws-secrets""; azure-identity>=1.10.0; extra == ""azure""; azure-keyvault-secrets>=4.0.0; extra == ""azure""; azure-storage-blob>=12.5.0; extra == ""azure""; azure-identity>=1.10.0; extra == ""azure-secrets""; azure-keyvault-secrets>=4.0.0; extra == ""azure-secrets""; azure-storage-blob>=12.5.0; extra == ""azure-secrets""; gcsfs>=0.5.1; extra == ""bigquery""; google-cloud-bigquery>=3.3.6; extra == ""bigquery""; google-cloud-bigquery-storage>=2.20.0; extra == ""bigquery""; google-cloud-secret-manager>=1.0.0; extra == ""bigquery""; pandas-gbq>=0.26.1; extra == ""bigquery""; sqlalchemy-bigquery>=1.3.0; extra == ""bigquery""; sqlalchemy>=1.4.0; extra == ""bigquery""; google-cloud-storage>=1.28.0; python_version < ""3.11"" and extra == ""bigquery""; google-cloud-storage>=2.10.0; python_version >= ""3.11"" and extra == ""bigquery""; sqlalchemy<2.0.0; extra == ""clickhouse""; clickhouse-sqlalchemy>=0.2.2; python_version < ""3.12"" and extra == ""clickhouse""; clickhouse-sqlalchemy>=0.3.0; python_version >= ""3.12"" and extra == ""clickhouse""; orjson>=3.9.7; extra == ""cloud""; databricks-sqlalchemy>=1.0.0; extra == ""databricks""; sqlalchemy>=1.4.0; extra == ""databricks""; pyodbc>=4.0.30; extra == ""dremio""; sqlalchemy-dremio==1.2.1; extra == ""dremio""; sqlalchemy>=1.4.0; extra == ""dremio""; openpyxl>=3.0.7; extra == ""excel""; xlrd<2.0.0,>=1.1.0; extra == ""excel""; gcsfs>=0.5.1; extra == ""gcp""; google-cloud-bigquery>=3.3.6; extra == ""gcp""; google-cloud-bigquery-storage>=2.20.0; extra == ""gcp""; google-cloud-secret-manager>=1.0.0; extra == ""gcp""; pandas-gbq>=0.26.1; extra == ""gcp""; sqlalchemy-bigquery>=1.3.0; extra == ""gcp""; sqlalchemy>=1.4.0; extra == ""gcp""; google-cloud-storage>=1.28.0; python_version < ""3.11"" and extra == ""gcp""; google-cloud-storage>=2.10.0; python_version >= ""3.11"" and extra == ""gcp""; gx-sqlalchemy-redshift; extra == ""gx-redshift""; psycopg2-binary>=2.7.6; extra == ""gx-redshift""; sqlalchemy>=1.4.0; extra == ""gx-redshift""; PyHive>=0.6.5; extra == ""hive""; thrift>=0.16.0; extra == ""hive""; thrift-sasl>=0.4.3; extra == ""hive""; sqlalchemy>=1.4.0; extra == ""hive""; pyodbc>=4.0.30; extra == ""mssql""; sqlalchemy>=1.4.0; extra == ""mssql""; PyMySQL>=1.1.1; extra == ""mysql""; sqlalchemy>=1.4.0; extra == ""mysql""; pypd==1.1.0; extra == ""pagerduty""; psycopg2-binary>=2.7.6; extra == ""postgresql""; sqlalchemy>=1.4.0; extra == ""postgresql""; psycopg2-binary>=2.7.6; extra == ""redshift""; sqlalchemy-redshift>=0.8.8; extra == ""redshift""; sqlalchemy<2.0.0; extra == ""redshift""; boto3>=1.17.106; extra == ""s3""; snowflake-sqlalchemy!=1.7.0,>=1.2.3; extra == ""snowflake""; sqlalchemy>=1.4.0; extra == ""snowflake""; snowflake-connector-python>=2.5.0; python_version < ""3.11"" and extra == ""snowflake""; snowflake-connector-python>2.9.0; python_version >= ""3.11"" and extra == ""snowflake""; pandas<2.2.0; python_version >= ""3.9"" and extra == ""snowflake""; pyspark<4.0,>=2.3.2; extra == ""spark""; googleapis-common-protos>=1.56.4; extra == ""spark-connect""; grpcio>=1.48.1; extra == ""spark-connect""; grpcio-status>=1.48.1; extra == ""spark-connect""; teradatasqlalchemy==17.0.0.5; extra == ""teradata""; sqlalchemy<2.0.0; extra == ""teradata""; boto3>=1.17.106; extra == ""test""; coverage[toml]>=7.5.1; extra == ""test""; flaky>=3.7.0; extra == ""test""; flask>=1.0.0; extra == ""test""; freezegun>=0.3.15; extra == ""test""; moto[s3,sns]<5.0,>=4.2.13; extra == ""test""; pact-python>=2.0.1; extra == ""test""; pyfakefs>=4.5.1; extra == ""test""; pytest>=8.2.1; extra == ""test""; pytest-benchmark>=3.4.1; extra == ""test""; pytest-cov>=5.0.0; extra == ""test""; pytest-icdiff>=0.9.0; extra == ""test""; pytest-mock>=3.14.0; extra == ""test""; pytest-order>=1.2.1; extra == ""test""; pytest-random-order>=1.1.1; extra == ""test""; pytest-timeout>=2.3.1; extra == ""test""; pytest-xdist>=3.6.1; extra == ""test""; requirements-parser>=0.9.0; extra == ""test""; responses!=0.25.5,>=0.23.1; extra == ""test""; setuptools>=70.0.0; extra == ""test""; sqlalchemy>=1.4.0; extra == ""test""; adr-tools-python==1.0.3; extra == ""test""; invoke>=2.0.0; extra == ""test""; mypy==1.15.0; extra == ""test""; pre-commit>=2.21.0; extra == ""test""; ruff==0.11.12; extra == ""test""; tomli>=2.0.1; extra == ""test""; docstring-parser==0.16; extra == ""test""; feather-format>=0.4.1; extra == ""test""; pyarrow; extra == ""test""; trino!=0.316.0,>=0.310.0; extra == ""trino""; sqlalchemy>=1.4.0; extra == ""trino""; sqlalchemy-vertica-python>=0.5.10; extra == ""vertica""; sqlalchemy>=1.4.0; extra == ""vertica""","1.2.0, 1.2.1, 1.2.2, 1.2.3, 1.2.4, 1.2.5, 1.2.6, 1.3.0, 1.3.1, 1.3.2, 1.3.3, 1.3.4, 1.3.5, 1.3.6, 1.3.7, 1.3.8, 1.3.9, 1.3.10, 1.3.11, 1.3.12, 1.3.13, 1.3.14, 1.4.0, 1.4.1, 1.4.2, 1.4.3, 1.4.4, 1.4.5, 1.4.6, 1.4.7, 1.5.0, 1.5.1, 1.5.2","altair<5.0.0,>=4.2.1; cryptography>=3.2; jinja2>=3; jsonschema>=2.5.1; marshmallow<4.0.0,>=3.7.1; mistune>=0.8.4; packaging; posthog<4,>3; pydantic>=1.10.7; pyparsing>=2.4; python-dateutil>=2.8.1; requests>=2.20; ruamel.yaml>=0.16; scipy>=1.6.0; tqdm>=4.59.0; typing-extensions>=4.1.0; tzlocal>=1.2; numpy>=1.21.6; python_version == ""3.9""; pandas<2.2,>=1.1.3; python_version == ""3.9""; numpy>=1.22.4; python_version >= ""3.10""; pandas<2.2,>=1.3.0; python_version >= ""3.10""; numpy>=1.26.0; python_version >= ""3.12""; pandas<2.2; python_version >= ""3.12""; feather-format>=0.4.1; extra == ""arrow""; pyarrow; extra == ""arrow""; pyathena[sqlalchemy]<3,>=2.0.0; extra == ""athena""; sqlalchemy>=1.4.0; extra == ""athena""; boto3>=1.17.106; extra == ""aws-secrets""; azure-identity>=1.10.0; extra == ""azure""; azure-keyvault-secrets>=4.0.0; extra == ""azure""; azure-storage-blob>=12.5.0; extra == ""azure""; azure-identity>=1.10.0; extra == ""azure-secrets""; azure-keyvault-secrets>=4.0.0; extra == ""azure-secrets""; azure-storage-blob>=12.5.0; extra == ""azure-secrets""; gcsfs>=0.5.1; extra == ""bigquery""; google-cloud-bigquery>=3.3.6; extra == ""bigquery""; google-cloud-bigquery-storage>=2.20.0; extra == ""bigquery""; google-cloud-secret-manager>=1.0.0; extra == ""bigquery""; pandas-gbq>=0.26.1; extra == ""bigquery""; sqlalchemy-bigquery>=1.3.0; extra == ""bigquery""; sqlalchemy>=1.4.0; extra == ""bigquery""; google-cloud-storage>=1.28.0; python_version < ""3.11"" and extra == ""bigquery""; google-cloud-storage>=2.10.0; python_version >= ""3.11"" and extra == ""bigquery""; sqlalchemy<2.0.0; extra == ""clickhouse""; clickhouse-sqlalchemy>=0.2.2; python_version < ""3.12"" and extra == ""clickhouse""; clickhouse-sqlalchemy>=0.3.0; python_version >= ""3.12"" and extra == ""clickhouse""; orjson>=3.9.7; extra == ""cloud""; databricks-sqlalchemy>=1.0.0; extra == ""databricks""; sqlalchemy>=1.4.0; extra == ""databricks""; pyodbc>=4.0.30; extra == ""dremio""; sqlalchemy-dremio==1.2.1; extra == ""dremio""; sqlalchemy>=1.4.0; extra == ""dremio""; openpyxl>=3.0.7; extra == ""excel""; xlrd<2.0.0,>=1.1.0; extra == ""excel""; gcsfs>=0.5.1; extra == ""gcp""; google-cloud-bigquery>=3.3.6; extra == ""gcp""; google-cloud-bigquery-storage>=2.20.0; extra == ""gcp""; google-cloud-secret-manager>=1.0.0; extra == ""gcp""; pandas-gbq>=0.26.1; extra == ""gcp""; sqlalchemy-bigquery>=1.3.0; extra == ""gcp""; sqlalchemy>=1.4.0; extra == ""gcp""; google-cloud-storage>=1.28.0; python_version < ""3.11"" and extra == ""gcp""; google-cloud-storage>=2.10.0; python_version >= ""3.11"" and extra == ""gcp""; gx-sqlalchemy-redshift; extra == ""gx-redshift""; psycopg2-binary>=2.7.6; extra == ""gx-redshift""; sqlalchemy>=1.4.0; extra == ""gx-redshift""; PyHive>=0.6.5; extra == ""hive""; thrift>=0.16.0; extra == ""hive""; thrift-sasl>=0.4.3; extra == ""hive""; sqlalchemy>=1.4.0; extra == ""hive""; pyodbc>=4.0.30; extra == ""mssql""; sqlalchemy>=1.4.0; extra == ""mssql""; PyMySQL>=1.1.1; extra == ""mysql""; sqlalchemy>=1.4.0; extra == ""mysql""; pypd==1.1.0; extra == ""pagerduty""; psycopg2-binary>=2.7.6; extra == ""postgresql""; sqlalchemy>=1.4.0; extra == ""postgresql""; psycopg2-binary>=2.7.6; extra == ""redshift""; sqlalchemy-redshift>=0.8.8; extra == ""redshift""; sqlalchemy<2.0.0; extra == ""redshift""; boto3>=1.17.106; extra == ""s3""; snowflake-sqlalchemy!=1.7.0,>=1.2.3; extra == ""snowflake""; sqlalchemy>=1.4.0; extra == ""snowflake""; snowflake-connector-python>=2.5.0; python_version < ""3.11"" and extra == ""snowflake""; snowflake-connector-python>2.9.0; python_version >= ""3.11"" and extra == ""snowflake""; pandas<2.2.0; python_version >= ""3.9"" and extra == ""snowflake""; pyspark<4.0,>=2.3.2; extra == ""spark""; googleapis-common-protos>=1.56.4; extra == ""spark-connect""; grpcio>=1.48.1; extra == ""spark-connect""; grpcio-status>=1.48.1; extra == ""spark-connect""; teradatasqlalchemy==17.0.0.5; extra == ""teradata""; sqlalchemy<2.0.0; extra == ""teradata""; boto3>=1.17.106; extra == ""test""; coverage[toml]>=7.5.1; extra == ""test""; flaky>=3.7.0; extra == ""test""; flask>=1.0.0; extra == ""test""; freezegun>=0.3.15; extra == ""test""; moto[s3,sns]<5.0,>=4.2.13; extra == ""test""; pact-python>=2.0.1; extra == ""test""; pyfakefs>=4.5.1; extra == ""test""; pytest>=8.2.1; extra == ""test""; pytest-benchmark>=3.4.1; extra == ""test""; pytest-cov>=5.0.0; extra == ""test""; pytest-icdiff>=0.9.0; extra == ""test""; pytest-mock>=3.14.0; extra == ""test""; pytest-order>=1.2.1; extra == ""test""; pytest-random-order>=1.1.1; extra == ""test""; pytest-timeout>=2.3.1; extra == ""test""; pytest-xdist>=3.6.1; extra == ""test""; requirements-parser>=0.9.0; extra == ""test""; responses!=0.25.5,>=0.23.1; extra == ""test""; setuptools>=70.0.0; extra == ""test""; sqlalchemy>=1.4.0; extra == ""test""; adr-tools-python==1.0.3; extra == ""test""; invoke>=2.0.0; extra == ""test""; mypy==1.15.0; extra == ""test""; pre-commit>=2.21.0; extra == ""test""; ruff==0.11.12; extra == ""test""; tomli>=2.0.1; extra == ""test""; docstring-parser==0.16; extra == ""test""; feather-format>=0.4.1; extra == ""test""; pyarrow; extra == ""test""; trino!=0.316.0,>=0.310.0; extra == ""trino""; sqlalchemy>=1.4.0; extra == ""trino""; sqlalchemy-vertica-python>=0.5.10; extra == ""vertica""; sqlalchemy>=1.4.0; extra == ""vertica""",1.5.2,No,,No,None,,, +grpcio-status,Base Package,EY,1.62.3,"{'base_package': 'grpcio-status==1.62.3', 'dependencies': ['protobuf==6.30.0', 'grpcio==1.73.0', 'googleapis-common-protos==1.5.5']}","protobuf<7.0.0,>=6.30.0; grpcio>=1.73.0; googleapis-common-protos>=1.5.5","1.63.0rc1, 1.63.0rc2, 1.63.0, 1.63.2, 1.64.0rc1, 1.64.0, 1.64.1, 1.64.3, 1.65.0rc1, 1.65.0rc2, 1.65.0, 1.65.1, 1.65.2, 1.65.4, 1.65.5, 1.66.0rc1, 1.66.0rc2, 1.66.0rc3, 1.66.0rc5, 1.66.0, 1.66.1, 1.66.2, 1.67.0rc1, 1.67.0, 1.67.1, 1.68.0rc1, 1.68.0, 1.68.1, 1.69.0rc1, 1.69.0, 1.70.0rc1, 1.70.0, 1.71.0rc2, 1.71.0, 1.72.0rc1, 1.72.0, 1.72.1, 1.73.0rc1, 1.73.0","protobuf<7.0.0,>=6.30.0; grpcio>=1.73.0; googleapis-common-protos>=1.5.5",1.73.0,No,,No,None,,, +httptools,Base Package,EY,0.6.1,"{'base_package': 'httptools==0.6.1', 'dependencies': ['Cython==0.29.24']}","Cython>=0.29.24; extra == ""test""","0.6.2, 0.6.3, 0.6.4","Cython>=0.29.24; extra == ""test""",0.6.4,No,,No,None,,, +imbalanced-learn,Base Package,EY,0.12.3,"{'base_package': 'imbalanced-learn==0.12.3', 'dependencies': ['numpy==1.24.3', 'scipy==1.10.1', 'scikit-learn==1.3.2', 'sklearn-compat==0.1', 'joblib==1.1.1', 'threadpoolctl==2.0.0', 'pandas==1.5.3', 'tensorflow==2.13.1', 'matplotlib==3.7.3', 'seaborn==0.12.2', 'memory_profiler==0.61.0', 'numpydoc==1.5.0', 'sphinx==8.0.2', 'sphinx-gallery==0.13.0', 'sphinxcontrib-bibtex==2.6.3', 'sphinx-copybutton==0.5.2', 'pydata-sphinx-theme==0.15.4', 'sphinx-design==0.6.1', 'black==23.3.0', 'ruff==0.4.8', 'pandas==1.5.3', 'tensorflow==2.13.1', 'keras==3.0.5', 'packaging==23.2', 'pytest==7.2.2', 'pytest-cov==4.1.0', 'pytest-xdist==3.5.0']}","numpy<3,>=1.24.3; scipy<2,>=1.10.1; scikit-learn<2,>=1.3.2; sklearn-compat<1,>=0.1; joblib<2,>=1.1.1; threadpoolctl<4,>=2.0.0; ipykernel; extra == ""dev""; ipython; extra == ""dev""; jupyterlab; extra == ""dev""; pandas<3,>=1.5.3; extra == ""docs""; tensorflow<3,>=2.13.1; extra == ""docs""; matplotlib<4,>=3.7.3; extra == ""docs""; seaborn<1,>=0.12.2; extra == ""docs""; memory_profiler<1,>=0.61.0; extra == ""docs""; numpydoc<2,>=1.5.0; extra == ""docs""; sphinx<9,>=8.0.2; extra == ""docs""; sphinx-gallery<1,>=0.13.0; extra == ""docs""; sphinxcontrib-bibtex<3,>=2.6.3; extra == ""docs""; sphinx-copybutton<1,>=0.5.2; extra == ""docs""; pydata-sphinx-theme<1,>=0.15.4; extra == ""docs""; sphinx-design<1,>=0.6.1; extra == ""docs""; black==23.3.0; extra == ""linters""; ruff==0.4.8; extra == ""linters""; pre-commit; extra == ""linters""; pandas<3,>=1.5.3; extra == ""optional""; tensorflow<3,>=2.13.1; extra == ""tensorflow""; keras<4,>=3.0.5; extra == ""keras""; packaging<25,>=23.2; extra == ""tests""; pytest<9,>=7.2.2; extra == ""tests""; pytest-cov<6,>=4.1.0; extra == ""tests""; pytest-xdist<4,>=3.5.0; extra == ""tests""","0.12.4, 0.13.0","numpy<3,>=1.24.3; scipy<2,>=1.10.1; scikit-learn<2,>=1.3.2; sklearn-compat<1,>=0.1; joblib<2,>=1.1.1; threadpoolctl<4,>=2.0.0; ipykernel; extra == ""dev""; ipython; extra == ""dev""; jupyterlab; extra == ""dev""; pandas<3,>=1.5.3; extra == ""docs""; tensorflow<3,>=2.13.1; extra == ""docs""; matplotlib<4,>=3.7.3; extra == ""docs""; seaborn<1,>=0.12.2; extra == ""docs""; memory_profiler<1,>=0.61.0; extra == ""docs""; numpydoc<2,>=1.5.0; extra == ""docs""; sphinx<9,>=8.0.2; extra == ""docs""; sphinx-gallery<1,>=0.13.0; extra == ""docs""; sphinxcontrib-bibtex<3,>=2.6.3; extra == ""docs""; sphinx-copybutton<1,>=0.5.2; extra == ""docs""; pydata-sphinx-theme<1,>=0.15.4; extra == ""docs""; sphinx-design<1,>=0.6.1; extra == ""docs""; black==23.3.0; extra == ""linters""; ruff==0.4.8; extra == ""linters""; pre-commit; extra == ""linters""; pandas<3,>=1.5.3; extra == ""optional""; tensorflow<3,>=2.13.1; extra == ""tensorflow""; keras<4,>=3.0.5; extra == ""keras""; packaging<25,>=23.2; extra == ""tests""; pytest<9,>=7.2.2; extra == ""tests""; pytest-cov<6,>=4.1.0; extra == ""tests""; pytest-xdist<4,>=3.5.0; extra == ""tests""",0.13.0,No,,No,None,,, +isoduration,Base Package,EY,20.11.0,"{'base_package': 'isoduration==20.11.0', 'dependencies': ['arrow==0.15.0']}",arrow (>=0.15.0),,arrow (>=0.15.0),20.11.0,No,,No,None,,, +kedro-azureml,Base Package,EY,0.8.0.1,"{'base_package': 'kedro-azureml==0.8.0.1', 'dependencies': ['adlfs==2022.2.0', 'azure-ai-ml==1.2.0', 'azureml-fsspec==1.3.1', 'azureml-mlflow==1.42.0', 'backoff==2.2.1', 'cloudpickle==2.1.0', 'kedro==0.19.0', 'kedro-datasets==1.0.0', 'mlflow==2.0.0', 'pyarrow==11.0.0', 'pydantic==2.6.4']}","adlfs>=2022.2.0; azure-ai-ml>=1.2.0; azureml-fsspec<1.4.0,>=1.3.1; azureml-mlflow>=1.42.0; extra == ""mlflow""; backoff<3.0.0,>=2.2.1; cloudpickle<3.0.0,>=2.1.0; kedro<=0.20.0,>=0.19.0; kedro-datasets>=1.0.0; mlflow<3.0.0,>2.0.0; extra == ""mlflow""; pyarrow>=11.0.0; pydantic<2.7.0,>=2.6.4",0.9.0,"adlfs>=2022.2.0; azure-ai-ml>=1.2.0; azureml-fsspec<1.4.0,>=1.3.1; azureml-mlflow>=1.42.0; extra == ""mlflow""; backoff<3.0.0,>=2.2.1; cloudpickle<3.0.0,>=2.1.0; kedro<=0.20.0,>=0.19.0; kedro-datasets>=1.0.0; mlflow<3.0.0,>2.0.0; extra == ""mlflow""; pyarrow>=11.0.0; pydantic<2.7.0,>=2.6.4",0.9.0,No,,No,None,,, +kedro-boot,Base Package,EY,0.2.2,"{'base_package': 'kedro-boot==0.2.2', 'dependencies': ['kedro==0.19.1', 'pre-commit==2.0.0', 'jupyter==1.0.0', 'sphinx==4.5.0', 'sphinx-rtd-theme==1.0', 'sphinx-markdown-tables==0.0.15', 'sphinx-click==3.1', 'sphinx-copybutton==0.5.0', 'myst-parser==0.17.2', 'fastapi==0.100.0', 'gunicorn==21.2.0', 'pyctuator==0.18.1', 'uvicorn==0.12.0', 'pytest==5.4.0', 'pytest-cov==2.8.0', 'pytest-lazy-fixture==0.6.0', 'pytest-mock==3.1.0', 'ruff==0.1.3', 'scikit-learn==1.0', 'kedro-datasets==1.0']}","kedro<0.20,>=0.19.1; pre-commit<4.0.0,>=2.0.0; extra == ""dev""; jupyter<2.0.0,>=1.0.0; extra == ""dev""; sphinx<8.0.0,>=4.5.0; extra == ""doc""; sphinx-rtd-theme<1.4,>=1.0; extra == ""doc""; sphinx-markdown-tables~=0.0.15; extra == ""doc""; sphinx-click<5.1,>=3.1; extra == ""doc""; sphinx-copybutton~=0.5.0; extra == ""doc""; myst-parser<2.1.0,>=0.17.2; extra == ""doc""; fastapi>=0.100.0; extra == ""fastapi""; gunicorn==21.2.0; extra == ""fastapi""; pyctuator==0.18.1; extra == ""fastapi""; uvicorn[standard]>=0.12.0; extra == ""fastapi""; pytest<8.0.0,>=5.4.0; extra == ""test""; pytest-cov<5.0.0,>=2.8.0; extra == ""test""; pytest-lazy-fixture<1.0.0,>=0.6.0; extra == ""test""; pytest-mock<4.0.0,>=3.1.0; extra == ""test""; ruff==0.1.3; extra == ""test""; scikit-learn~=1.0; extra == ""test""; kedro-datasets[pandas.csvdataset,pandas.exceldataset,pandas.parquetdataset]>=1.0; extra == ""test""","0.2.3, 0.2.4","kedro<0.20,>=0.19.1; pre-commit<4.0.0,>=2.0.0; extra == ""dev""; jupyter<2.0.0,>=1.0.0; extra == ""dev""; sphinx<8.0.0,>=4.5.0; extra == ""doc""; sphinx-rtd-theme<1.4,>=1.0; extra == ""doc""; sphinx-markdown-tables~=0.0.15; extra == ""doc""; sphinx-click<5.1,>=3.1; extra == ""doc""; sphinx-copybutton~=0.5.0; extra == ""doc""; myst-parser<2.1.0,>=0.17.2; extra == ""doc""; fastapi>=0.100.0; extra == ""fastapi""; gunicorn==21.2.0; extra == ""fastapi""; pyctuator==0.18.1; extra == ""fastapi""; uvicorn[standard]>=0.12.0; extra == ""fastapi""; pytest<8.0.0,>=5.4.0; extra == ""test""; pytest-cov<5.0.0,>=2.8.0; extra == ""test""; pytest-lazy-fixture<1.0.0,>=0.6.0; extra == ""test""; pytest-mock<4.0.0,>=3.1.0; extra == ""test""; ruff==0.1.3; extra == ""test""; scikit-learn~=1.0; extra == ""test""; kedro-datasets[pandas.csvdataset,pandas.exceldataset,pandas.parquetdataset]>=1.0; extra == ""test""",0.2.4,No,,No,None,,, +kedro-datasets,Base Package,EY,4.0.0,"{'base_package': 'kedro-datasets==4.0.0', 'dependencies': ['kedro==0.19.7', 'pandas==1.3', 'pyspark==2.2', 'hdfs==2.5.8', 's3fs==2021.4', 'polars==0.18.0', 'plotly==4.8.0', 'delta-spark==1.0', 'networkx==3.4', 'requests==2.20', 'biopython==1.73', 'dask==2021.10', 'dask==2021.10', 'triad==0.6.7', 'geopandas==0.8.0', 'fiona==1.8', 'holoviews==1.13.0', 'matplotlib==3.0.3', 'matplotlib==3.0.3', 'deltalake==0.10.0', 'openpyxl==3.0.6', 'pandas-gbq==0.12.0', 'pandas-gbq==0.12.0', 'tables==3.6', 'pyarrow==6.0', 'SQLAlchemy==1.4', 'SQLAlchemy==1.4', 'pyodbc==4.0', 'lxml==4.6', 'compress-pickle==2.1.0', 'Pillow==9.0', 'pyarrow==4.0', 'xlsx2csv==0.8.0', 'deltalake==0.6.2', 'pyarrow==4.0', 'deltalake==0.6.2', 'redis==4.1', 'snowflake-snowpark-python==1.23', 'scikit-learn==1.0.2', 'scipy==1.7.3', 'tensorflow==2.0', 'pyodbc==5.0', 'tensorflow-macos==2.0', 'PyYAML==4.2', 'langchain-openai==0.1.7', 'langchain-openai==0.1.7', 'langchain-anthropic==0.1.13', 'langchain-community==0.2.0', 'langchain-cohere==0.1.5', 'langchain-community==0.2.0', 'h5netcdf==1.2.0', 'netcdf4==1.6.4', 'xarray==2023.1.0', 'prophet==1.1.5', 'rioxarray==0.15.0', 'opencv-python==4.5.5.64', 'kedro-sphinx-theme==2024.10.2', 'ipykernel==5.3', 'adlfs==2023.1', 'behave==1.2.6', 'biopython==1.73', 'cloudpickle==2.2.1', 'compress-pickle==2.1.0', 'coverage==7.2.0', 'dask==2021.10', 'delta-spark==1.0', 'deltalake==0.10.0', 'dill==0.3.1', 'filelock==3.4.0', 'fiona==1.8', 'gcsfs==2023.1', 'geopandas==0.8.0', 'hdfs==2.5.8', 'holoviews==1.13.0', 'ipython==7.31.1', 'joblib==0.14', 'jupyterlab==3.0', 'jupyter==1.0', 'lxml==4.6', 'matplotlib==3.5', 'memory_profiler==0.50.0', 'moto==5.0.0', 'networkx==3.4', 'openpyxl==3.0.3', 'pandas-gbq==0.12.0', 'pandas==2.0', 'Pillow==10.0', 'plotly==4.8.0', 'polars==1.0', 'pyarrow==1.0', 'pyarrow==7.0', 'pyspark==3.0', 'pyspark==3.4', 'pytest-cov==3.0', 'pytest-mock==1.7.1', 'pytest-xdist==2.2.1', 'pytest==7.2', 'redis==4.1', 'requests-mock==1.6', 'requests==2.20', 's3fs==2021.04', 'snowflake-snowpark-python==1.23', 'scikit-learn==1.0.2', 'scipy==1.7.3', 'pyOpenSSL==22.1.0', 'SQLAlchemy==1.2', 'tables==3.6', 'tensorflow-macos==2.0', 'tensorflow==2.0', 'triad==0.6.7', 'xarray==2023.1.0', 'xlsxwriter==1.0', 'bandit==1.6.2', 'blacken-docs==1.9.2', 'black==22.0', 'detect-secrets==1.5.0', 'import-linter==1.2.6', 'mypy==1.0', 'pre-commit==2.9.2', 'ruff==0.0.290', 'h5netcdf==1.2.0', 'netcdf4==1.6.4', 'xarray==2023.1.0', 'opencv-python==4.5.5.64', 'prophet==1.1.5']}","kedro>=0.19.7; lazy_loader; pandas<3.0,>=1.3; extra == ""pandas-base""; pyspark<4.0,>=2.2; extra == ""spark-base""; hdfs<3.0,>=2.5.8; extra == ""hdfs-base""; s3fs>=2021.4; extra == ""s3fs-base""; polars>=0.18.0; extra == ""polars-base""; plotly<6.0,>=4.8.0; extra == ""plotly-base""; delta-spark<4.0,>=1.0; extra == ""delta-base""; networkx~=3.4; extra == ""networkx-base""; requests~=2.20; extra == ""api-apidataset""; kedro-datasets[api-apidataset]; extra == ""api""; biopython~=1.73; extra == ""biosequence-biosequencedataset""; kedro-datasets[biosequence-biosequencedataset]; extra == ""biosequence""; dask[dataframe]>=2021.10; extra == ""dask-csvdataset""; dask[complete]>=2021.10; extra == ""dask-parquetdataset""; triad<1.0,>=0.6.7; extra == ""dask-parquetdataset""; kedro-datasets[dask-csvdataset,dask-parquetdataset]; extra == ""dask""; kedro-datasets[hdfs-base,s3fs-base]; extra == ""databricks-managedtabledataset""; kedro-datasets[databricks-managedtabledataset]; extra == ""databricks""; geopandas<2.0,>=0.8.0; extra == ""geopandas-genericdataset""; fiona<2.0,>=1.8; extra == ""geopandas-genericdataset""; kedro-datasets[geopandas-genericdataset]; extra == ""geopandas""; holoviews>=1.13.0; extra == ""holoviews-holoviewswriter""; kedro-datasets[holoviews-holoviewswriter]; extra == ""holoviews""; datasets; extra == ""huggingface-hfdataset""; huggingface_hub; extra == ""huggingface-hfdataset""; transformers; extra == ""huggingface-hftransformerpipelinedataset""; kedro-datasets[huggingface-hfdataset,huggingface-hftransformerpipelinedataset]; extra == ""huggingface""; ibis-framework[athena]; extra == ""ibis-athena""; ibis-framework[bigquery]; extra == ""ibis-bigquery""; ibis-framework[clickhouse]; extra == ""ibis-clickhouse""; ibis-framework[dask]<10.0; extra == ""ibis-dask""; ibis-framework[databricks]; extra == ""ibis-databricks""; ibis-framework[datafusion]; extra == ""ibis-datafusion""; ibis-framework[druid]; extra == ""ibis-druid""; ibis-framework[duckdb]; extra == ""ibis-duckdb""; ibis-framework[exasol]; extra == ""ibis-exasol""; ibis-framework; extra == ""ibis-flink""; apache-flink; extra == ""ibis-flink""; ibis-framework[impala]; extra == ""ibis-impala""; ibis-framework[mssql]; extra == ""ibis-mssql""; ibis-framework[mysql]; extra == ""ibis-mysql""; ibis-framework[oracle]; extra == ""ibis-oracle""; ibis-framework[pandas]<10.0; extra == ""ibis-pandas""; ibis-framework[polars]; extra == ""ibis-polars""; ibis-framework[postgres]; extra == ""ibis-postgres""; ibis-framework[pyspark]; extra == ""ibis-pyspark""; ibis-framework[risingwave]; extra == ""ibis-risingwave""; ibis-framework[snowflake]; extra == ""ibis-snowflake""; ibis-framework[sqlite]; extra == ""ibis-sqlite""; ibis-framework[trino]; extra == ""ibis-trino""; ibis-framework; extra == ""ibis""; kedro-datasets[json-jsondataset]; extra == ""json""; scipy; extra == ""matlab-matlabdataset""; kedro-datasets[matlab-matlabdataset]; extra == ""matlab""; matplotlib<4.0,>=3.0.3; extra == ""matplotlib-matplotlibwriter""; matplotlib<4.0,>=3.0.3; extra == ""matplotlib-matplotlibdataset""; kedro-datasets[matplotlib-matplotlibdataset,matplotlib-matplotlibwriter]; extra == ""matplotlib""; kedro-datasets[networkx-base]; extra == ""networkx-gmldataset""; kedro-datasets[networkx-base]; extra == ""networkx-graphmldataset""; kedro-datasets[networkx-base]; extra == ""networkx-jsondataset""; kedro-datasets[networkx-base]; extra == ""networkx""; optuna; extra == ""optuna-studydataset""; kedro-datasets[optuna-studydataset]; extra == ""optuna""; kedro-datasets[pandas-base]; extra == ""pandas-csvdataset""; kedro-datasets[pandas-base]; extra == ""pandas-deltatabledataset""; deltalake>=0.10.0; extra == ""pandas-deltatabledataset""; kedro-datasets[pandas-base]; extra == ""pandas-exceldataset""; openpyxl<4.0,>=3.0.6; extra == ""pandas-exceldataset""; kedro-datasets[pandas-base]; extra == ""pandas-featherdataset""; kedro-datasets[pandas-base]; extra == ""pandas-gbqtabledataset""; pandas-gbq>=0.12.0; extra == ""pandas-gbqtabledataset""; kedro-datasets[pandas-base]; extra == ""pandas-gbqquerydataset""; pandas-gbq>=0.12.0; extra == ""pandas-gbqquerydataset""; kedro-datasets[pandas-base]; extra == ""pandas-genericdataset""; kedro-datasets[pandas-base]; extra == ""pandas-hdfdataset""; tables>=3.6; extra == ""pandas-hdfdataset""; kedro-datasets[pandas-base]; extra == ""pandas-jsondataset""; kedro-datasets[pandas-base]; extra == ""pandas-parquetdataset""; pyarrow>=6.0; extra == ""pandas-parquetdataset""; kedro-datasets[pandas-base]; extra == ""pandas-sqltabledataset""; SQLAlchemy<3.0,>=1.4; extra == ""pandas-sqltabledataset""; kedro-datasets[pandas-base]; extra == ""pandas-sqlquerydataset""; SQLAlchemy<3.0,>=1.4; extra == ""pandas-sqlquerydataset""; pyodbc>=4.0; extra == ""pandas-sqlquerydataset""; kedro-datasets[pandas-base]; extra == ""pandas-xmldataset""; lxml~=4.6; extra == ""pandas-xmldataset""; kedro-datasets[pandas-csvdataset,pandas-deltatabledataset,pandas-exceldataset,pandas-featherdataset,pandas-gbqquerydataset,pandas-gbqtabledataset,pandas-genericdataset,pandas-hdfdataset,pandas-jsondataset,pandas-parquetdataset,pandas-sqlquerydataset,pandas-sqltabledataset,pandas-xmldataset]; extra == ""pandas""; compress-pickle[lz4]~=2.1.0; extra == ""pickle-pickledataset""; kedro-datasets[pickle-pickledataset]; extra == ""pickle""; Pillow>=9.0; extra == ""pillow-imagedataset""; kedro-datasets[pillow-imagedataset]; extra == ""pillow""; kedro-datasets[plotly-base]; extra == ""plotly-htmldataset""; kedro-datasets[plotly-base]; extra == ""plotly-jsondataset""; kedro-datasets[pandas-base,plotly-base]; extra == ""plotly-plotlydataset""; kedro-datasets[plotly-htmldataset,plotly-jsondataset,plotly-plotlydataset]; extra == ""plotly""; kedro-datasets[polars-base]; extra == ""polars-csvdataset""; kedro-datasets[polars-base]; extra == ""polars-eagerpolarsdataset""; pyarrow>=4.0; extra == ""polars-eagerpolarsdataset""; xlsx2csv>=0.8.0; extra == ""polars-eagerpolarsdataset""; deltalake>=0.6.2; extra == ""polars-eagerpolarsdataset""; kedro-datasets[polars-base]; extra == ""polars-lazypolarsdataset""; pyarrow>=4.0; extra == ""polars-lazypolarsdataset""; deltalake>=0.6.2; extra == ""polars-lazypolarsdataset""; kedro-datasets[polars-csvdataset,polars-eagerpolarsdataset,polars-lazypolarsdataset]; extra == ""polars""; redis~=4.1; extra == ""redis-pickledataset""; kedro-datasets[redis-pickledataset]; extra == ""redis""; snowflake-snowpark-python>=1.23; extra == ""snowflake-snowparktabledataset""; kedro-datasets[snowflake-snowparktabledataset]; extra == ""snowflake""; kedro-datasets[delta-base,hdfs-base,s3fs-base,spark-base]; extra == ""spark-deltatabledataset""; kedro-datasets[hdfs-base,s3fs-base,spark-base]; extra == ""spark-sparkdataset""; kedro-datasets[hdfs-base,s3fs-base,spark-base]; extra == ""spark-sparkhivedataset""; kedro-datasets[spark-base]; extra == ""spark-sparkjdbcdataset""; kedro-datasets[hdfs-base,s3fs-base,spark-base]; extra == ""spark-sparkstreamingdataset""; kedro-datasets[spark-deltatabledataset,spark-sparkdataset,spark-sparkhivedataset,spark-sparkjdbcdataset,spark-sparkstreamingdataset]; extra == ""spark""; scikit-learn>=1.0.2; extra == ""svmlight-svmlightdataset""; scipy>=1.7.3; extra == ""svmlight-svmlightdataset""; kedro-datasets[svmlight-svmlightdataset]; extra == ""svmlight""; tensorflow~=2.0; (platform_system != ""Darwin"" or platform_machine != ""arm64"") and extra == ""tensorflow-tensorflowmodeldataset""; pyodbc~=5.0; extra == ""test""; tensorflow-macos~=2.0; (platform_system == ""Darwin"" and platform_machine == ""arm64"") and extra == ""tensorflow-tensorflowmodeldataset""; kedro-datasets[tensorflow-tensorflowmodeldataset]; extra == ""tensorflow""; kedro-datasets[text-textdataset]; extra == ""text""; kedro-datasets[pandas-base]; extra == ""yaml-yamldataset""; PyYAML<7.0,>=4.2; extra == ""yaml-yamldataset""; kedro-datasets[yaml-yamldataset]; extra == ""yaml""; u8darts-all; extra == ""darts-torch-model-dataset""; kedro-datasets[darts-torch-model-dataset]; extra == ""darts""; kedro-datasets[hdfs-base,s3fs-base]; extra == ""databricks-externaltabledataset""; langchain-openai~=0.1.7; extra == ""langchain-chatopenaidataset""; langchain-openai~=0.1.7; extra == ""langchain-openaiembeddingsdataset""; langchain-anthropic~=0.1.13; extra == ""langchain-chatanthropicdataset""; langchain-community~=0.2.0; extra == ""langchain-chatanthropicdataset""; langchain-cohere~=0.1.5; extra == ""langchain-chatcoheredataset""; langchain-community~=0.2.0; extra == ""langchain-chatcoheredataset""; kedro-datasets[langchain-chatanthropicdataset,langchain-chatcoheredataset,langchain-chatopenaidataset,langchain-openaiembeddingsdataset]; extra == ""langchain""; h5netcdf>=1.2.0; extra == ""netcdf-netcdfdataset""; netcdf4>=1.6.4; extra == ""netcdf-netcdfdataset""; xarray>=2023.1.0; extra == ""netcdf-netcdfdataset""; kedro-datasets[netcdf-netcdfdataset]; extra == ""netcdf""; prophet>=1.1.5; extra == ""prophet-dataset""; kedro-datasets[prophet]; extra == ""prophet""; torch; extra == ""pytorch-dataset""; kedro-datasets[pytorch-dataset]; extra == ""pytorch""; rioxarray>=0.15.0; extra == ""rioxarray-geotiffdataset""; kedro-datasets[rioxarray-geotiffdataset]; extra == ""rioxarray""; safetensors; extra == ""safetensors-safetensorsdataset""; numpy; extra == ""safetensors-safetensorsdataset""; kedro-datasets[safetensors-safetensorsdataset]; extra == ""safetensors""; opencv-python~=4.5.5.64; extra == ""video-videodataset""; kedro-datasets[video-videodataset]; extra == ""video""; kedro-sphinx-theme==2024.10.2; extra == ""docs""; ipykernel<7.0,>=5.3; extra == ""docs""; Jinja2<3.2.0; extra == ""docs""; accelerate<0.32; extra == ""test""; adlfs~=2023.1; extra == ""test""; behave==1.2.6; extra == ""test""; biopython~=1.73; extra == ""test""; cloudpickle~=2.2.1; extra == ""test""; compress-pickle[lz4]~=2.1.0; extra == ""test""; coverage>=7.2.0; extra == ""test""; dask[complete]>=2021.10; extra == ""test""; delta-spark<3.0,>=1.0; extra == ""test""; deltalake>=0.10.0; extra == ""test""; dill~=0.3.1; extra == ""test""; filelock<4.0,>=3.4.0; extra == ""test""; fiona<2.0,>=1.8; extra == ""test""; gcsfs<2023.3,>=2023.1; extra == ""test""; geopandas<2.0,>=0.8.0; extra == ""test""; hdfs<3.0,>=2.5.8; extra == ""test""; holoviews>=1.13.0; extra == ""test""; ibis-framework[duckdb,examples]; extra == ""test""; ipython<8.0,>=7.31.1; extra == ""test""; Jinja2<3.2.0; extra == ""test""; joblib>=0.14; extra == ""test""; jupyterlab>=3.0; extra == ""test""; jupyter~=1.0; extra == ""test""; lxml~=4.6; extra == ""test""; matplotlib<4.0,>=3.5; extra == ""test""; memory_profiler<1.0,>=0.50.0; extra == ""test""; moto==5.0.0; extra == ""test""; networkx~=3.4; extra == ""test""; openpyxl<4.0,>=3.0.3; extra == ""test""; pandas-gbq>=0.12.0; extra == ""test""; pandas>=2.0; extra == ""test""; Pillow~=10.0; extra == ""test""; plotly<6.0,>=4.8.0; extra == ""test""; polars[deltalake,xlsx2csv]<1.25.2,>=1.0; extra == ""test""; pyarrow>=1.0; python_version < ""3.11"" and extra == ""test""; pyarrow>=7.0; python_version >= ""3.11"" and extra == ""test""; pyspark>=3.0; python_version < ""3.11"" and extra == ""test""; pyspark>=3.4; python_version >= ""3.11"" and extra == ""test""; pytest-cov~=3.0; extra == ""test""; pytest-mock<2.0,>=1.7.1; extra == ""test""; pytest-xdist[psutil]~=2.2.1; extra == ""test""; pytest~=7.2; extra == ""test""; redis~=4.1; extra == ""test""; requests-mock~=1.6; extra == ""test""; requests~=2.20; extra == ""test""; s3fs>=2021.04; extra == ""test""; snowflake-snowpark-python>=1.23; python_version < ""3.12"" and extra == ""test""; scikit-learn<2,>=1.0.2; extra == ""test""; scipy>=1.7.3; extra == ""test""; packaging; extra == ""test""; pyOpenSSL>=22.1.0; extra == ""test""; SQLAlchemy>=1.2; extra == ""test""; tables>=3.6; extra == ""test""; tensorflow-macos~=2.0; (platform_system == ""Darwin"" and platform_machine == ""arm64"") and extra == ""test""; tensorflow~=2.0; (platform_system != ""Darwin"" or platform_machine != ""arm64"") and extra == ""test""; triad<1.0,>=0.6.7; extra == ""test""; xarray>=2023.1.0; extra == ""test""; xlsxwriter~=1.0; extra == ""test""; datasets; extra == ""test""; huggingface_hub; extra == ""test""; transformers[torch]; extra == ""test""; bandit<2.0,>=1.6.2; extra == ""lint""; blacken-docs==1.9.2; extra == ""lint""; black~=22.0; extra == ""lint""; detect-secrets~=1.5.0; extra == ""lint""; import-linter[toml]==1.2.6; extra == ""lint""; mypy~=1.0; extra == ""lint""; pre-commit>=2.9.2; extra == ""lint""; ruff~=0.0.290; extra == ""lint""; types-cachetools; extra == ""lint""; types-PyYAML; extra == ""lint""; types-redis; extra == ""lint""; types-requests; extra == ""lint""; types-decorator; extra == ""lint""; types-six; extra == ""lint""; types-tabulate; extra == ""lint""; langchain-openai; extra == ""experimental""; langchain-cohere; extra == ""experimental""; langchain-anthropic; extra == ""experimental""; langchain-community; extra == ""experimental""; h5netcdf>=1.2.0; extra == ""experimental""; netcdf4>=1.6.4; extra == ""experimental""; xarray>=2023.1.0; extra == ""experimental""; rioxarray; extra == ""experimental""; torch; extra == ""experimental""; opencv-python~=4.5.5.64; extra == ""experimental""; prophet>=1.1.5; extra == ""experimental""; optuna; extra == ""experimental""; u8darts[all]; extra == ""experimental""; kedro-datasets[docs,lint,test]; extra == ""all""","4.1.0, 5.0.0, 5.1.0, 6.0.0, 7.0.0","kedro>=0.19.7; lazy_loader; pandas<3.0,>=1.3; extra == ""pandas-base""; pyspark<4.0,>=2.2; extra == ""spark-base""; hdfs<3.0,>=2.5.8; extra == ""hdfs-base""; s3fs>=2021.4; extra == ""s3fs-base""; polars>=0.18.0; extra == ""polars-base""; plotly<6.0,>=4.8.0; extra == ""plotly-base""; delta-spark<4.0,>=1.0; extra == ""delta-base""; networkx~=3.4; extra == ""networkx-base""; requests~=2.20; extra == ""api-apidataset""; kedro-datasets[api-apidataset]; extra == ""api""; biopython~=1.73; extra == ""biosequence-biosequencedataset""; kedro-datasets[biosequence-biosequencedataset]; extra == ""biosequence""; dask[dataframe]>=2021.10; extra == ""dask-csvdataset""; dask[complete]>=2021.10; extra == ""dask-parquetdataset""; triad<1.0,>=0.6.7; extra == ""dask-parquetdataset""; kedro-datasets[dask-csvdataset,dask-parquetdataset]; extra == ""dask""; kedro-datasets[hdfs-base,s3fs-base]; extra == ""databricks-managedtabledataset""; kedro-datasets[databricks-managedtabledataset]; extra == ""databricks""; geopandas<2.0,>=0.8.0; extra == ""geopandas-genericdataset""; fiona<2.0,>=1.8; extra == ""geopandas-genericdataset""; kedro-datasets[geopandas-genericdataset]; extra == ""geopandas""; holoviews>=1.13.0; extra == ""holoviews-holoviewswriter""; kedro-datasets[holoviews-holoviewswriter]; extra == ""holoviews""; datasets; extra == ""huggingface-hfdataset""; huggingface_hub; extra == ""huggingface-hfdataset""; transformers; extra == ""huggingface-hftransformerpipelinedataset""; kedro-datasets[huggingface-hfdataset,huggingface-hftransformerpipelinedataset]; extra == ""huggingface""; ibis-framework[athena]; extra == ""ibis-athena""; ibis-framework[bigquery]; extra == ""ibis-bigquery""; ibis-framework[clickhouse]; extra == ""ibis-clickhouse""; ibis-framework[dask]<10.0; extra == ""ibis-dask""; ibis-framework[databricks]; extra == ""ibis-databricks""; ibis-framework[datafusion]; extra == ""ibis-datafusion""; ibis-framework[druid]; extra == ""ibis-druid""; ibis-framework[duckdb]; extra == ""ibis-duckdb""; ibis-framework[exasol]; extra == ""ibis-exasol""; ibis-framework; extra == ""ibis-flink""; apache-flink; extra == ""ibis-flink""; ibis-framework[impala]; extra == ""ibis-impala""; ibis-framework[mssql]; extra == ""ibis-mssql""; ibis-framework[mysql]; extra == ""ibis-mysql""; ibis-framework[oracle]; extra == ""ibis-oracle""; ibis-framework[pandas]<10.0; extra == ""ibis-pandas""; ibis-framework[polars]; extra == ""ibis-polars""; ibis-framework[postgres]; extra == ""ibis-postgres""; ibis-framework[pyspark]; extra == ""ibis-pyspark""; ibis-framework[risingwave]; extra == ""ibis-risingwave""; ibis-framework[snowflake]; extra == ""ibis-snowflake""; ibis-framework[sqlite]; extra == ""ibis-sqlite""; ibis-framework[trino]; extra == ""ibis-trino""; ibis-framework; extra == ""ibis""; kedro-datasets[json-jsondataset]; extra == ""json""; scipy; extra == ""matlab-matlabdataset""; kedro-datasets[matlab-matlabdataset]; extra == ""matlab""; matplotlib<4.0,>=3.0.3; extra == ""matplotlib-matplotlibwriter""; matplotlib<4.0,>=3.0.3; extra == ""matplotlib-matplotlibdataset""; kedro-datasets[matplotlib-matplotlibdataset,matplotlib-matplotlibwriter]; extra == ""matplotlib""; kedro-datasets[networkx-base]; extra == ""networkx-gmldataset""; kedro-datasets[networkx-base]; extra == ""networkx-graphmldataset""; kedro-datasets[networkx-base]; extra == ""networkx-jsondataset""; kedro-datasets[networkx-base]; extra == ""networkx""; optuna; extra == ""optuna-studydataset""; kedro-datasets[optuna-studydataset]; extra == ""optuna""; kedro-datasets[pandas-base]; extra == ""pandas-csvdataset""; kedro-datasets[pandas-base]; extra == ""pandas-deltatabledataset""; deltalake>=0.10.0; extra == ""pandas-deltatabledataset""; kedro-datasets[pandas-base]; extra == ""pandas-exceldataset""; openpyxl<4.0,>=3.0.6; extra == ""pandas-exceldataset""; kedro-datasets[pandas-base]; extra == ""pandas-featherdataset""; kedro-datasets[pandas-base]; extra == ""pandas-gbqtabledataset""; pandas-gbq>=0.12.0; extra == ""pandas-gbqtabledataset""; kedro-datasets[pandas-base]; extra == ""pandas-gbqquerydataset""; pandas-gbq>=0.12.0; extra == ""pandas-gbqquerydataset""; kedro-datasets[pandas-base]; extra == ""pandas-genericdataset""; kedro-datasets[pandas-base]; extra == ""pandas-hdfdataset""; tables>=3.6; extra == ""pandas-hdfdataset""; kedro-datasets[pandas-base]; extra == ""pandas-jsondataset""; kedro-datasets[pandas-base]; extra == ""pandas-parquetdataset""; pyarrow>=6.0; extra == ""pandas-parquetdataset""; kedro-datasets[pandas-base]; extra == ""pandas-sqltabledataset""; SQLAlchemy<3.0,>=1.4; extra == ""pandas-sqltabledataset""; kedro-datasets[pandas-base]; extra == ""pandas-sqlquerydataset""; SQLAlchemy<3.0,>=1.4; extra == ""pandas-sqlquerydataset""; pyodbc>=4.0; extra == ""pandas-sqlquerydataset""; kedro-datasets[pandas-base]; extra == ""pandas-xmldataset""; lxml~=4.6; extra == ""pandas-xmldataset""; kedro-datasets[pandas-csvdataset,pandas-deltatabledataset,pandas-exceldataset,pandas-featherdataset,pandas-gbqquerydataset,pandas-gbqtabledataset,pandas-genericdataset,pandas-hdfdataset,pandas-jsondataset,pandas-parquetdataset,pandas-sqlquerydataset,pandas-sqltabledataset,pandas-xmldataset]; extra == ""pandas""; compress-pickle[lz4]~=2.1.0; extra == ""pickle-pickledataset""; kedro-datasets[pickle-pickledataset]; extra == ""pickle""; Pillow>=9.0; extra == ""pillow-imagedataset""; kedro-datasets[pillow-imagedataset]; extra == ""pillow""; kedro-datasets[plotly-base]; extra == ""plotly-htmldataset""; kedro-datasets[plotly-base]; extra == ""plotly-jsondataset""; kedro-datasets[pandas-base,plotly-base]; extra == ""plotly-plotlydataset""; kedro-datasets[plotly-htmldataset,plotly-jsondataset,plotly-plotlydataset]; extra == ""plotly""; kedro-datasets[polars-base]; extra == ""polars-csvdataset""; kedro-datasets[polars-base]; extra == ""polars-eagerpolarsdataset""; pyarrow>=4.0; extra == ""polars-eagerpolarsdataset""; xlsx2csv>=0.8.0; extra == ""polars-eagerpolarsdataset""; deltalake>=0.6.2; extra == ""polars-eagerpolarsdataset""; kedro-datasets[polars-base]; extra == ""polars-lazypolarsdataset""; pyarrow>=4.0; extra == ""polars-lazypolarsdataset""; deltalake>=0.6.2; extra == ""polars-lazypolarsdataset""; kedro-datasets[polars-csvdataset,polars-eagerpolarsdataset,polars-lazypolarsdataset]; extra == ""polars""; redis~=4.1; extra == ""redis-pickledataset""; kedro-datasets[redis-pickledataset]; extra == ""redis""; snowflake-snowpark-python>=1.23; extra == ""snowflake-snowparktabledataset""; kedro-datasets[snowflake-snowparktabledataset]; extra == ""snowflake""; kedro-datasets[delta-base,hdfs-base,s3fs-base,spark-base]; extra == ""spark-deltatabledataset""; kedro-datasets[hdfs-base,s3fs-base,spark-base]; extra == ""spark-sparkdataset""; kedro-datasets[hdfs-base,s3fs-base,spark-base]; extra == ""spark-sparkhivedataset""; kedro-datasets[spark-base]; extra == ""spark-sparkjdbcdataset""; kedro-datasets[hdfs-base,s3fs-base,spark-base]; extra == ""spark-sparkstreamingdataset""; kedro-datasets[spark-deltatabledataset,spark-sparkdataset,spark-sparkhivedataset,spark-sparkjdbcdataset,spark-sparkstreamingdataset]; extra == ""spark""; scikit-learn>=1.0.2; extra == ""svmlight-svmlightdataset""; scipy>=1.7.3; extra == ""svmlight-svmlightdataset""; kedro-datasets[svmlight-svmlightdataset]; extra == ""svmlight""; tensorflow~=2.0; (platform_system != ""Darwin"" or platform_machine != ""arm64"") and extra == ""tensorflow-tensorflowmodeldataset""; pyodbc~=5.0; extra == ""test""; tensorflow-macos~=2.0; (platform_system == ""Darwin"" and platform_machine == ""arm64"") and extra == ""tensorflow-tensorflowmodeldataset""; kedro-datasets[tensorflow-tensorflowmodeldataset]; extra == ""tensorflow""; kedro-datasets[text-textdataset]; extra == ""text""; kedro-datasets[pandas-base]; extra == ""yaml-yamldataset""; PyYAML<7.0,>=4.2; extra == ""yaml-yamldataset""; kedro-datasets[yaml-yamldataset]; extra == ""yaml""; u8darts-all; extra == ""darts-torch-model-dataset""; kedro-datasets[darts-torch-model-dataset]; extra == ""darts""; kedro-datasets[hdfs-base,s3fs-base]; extra == ""databricks-externaltabledataset""; langchain-openai~=0.1.7; extra == ""langchain-chatopenaidataset""; langchain-openai~=0.1.7; extra == ""langchain-openaiembeddingsdataset""; langchain-anthropic~=0.1.13; extra == ""langchain-chatanthropicdataset""; langchain-community~=0.2.0; extra == ""langchain-chatanthropicdataset""; langchain-cohere~=0.1.5; extra == ""langchain-chatcoheredataset""; langchain-community~=0.2.0; extra == ""langchain-chatcoheredataset""; kedro-datasets[langchain-chatanthropicdataset,langchain-chatcoheredataset,langchain-chatopenaidataset,langchain-openaiembeddingsdataset]; extra == ""langchain""; h5netcdf>=1.2.0; extra == ""netcdf-netcdfdataset""; netcdf4>=1.6.4; extra == ""netcdf-netcdfdataset""; xarray>=2023.1.0; extra == ""netcdf-netcdfdataset""; kedro-datasets[netcdf-netcdfdataset]; extra == ""netcdf""; prophet>=1.1.5; extra == ""prophet-dataset""; kedro-datasets[prophet]; extra == ""prophet""; torch; extra == ""pytorch-dataset""; kedro-datasets[pytorch-dataset]; extra == ""pytorch""; rioxarray>=0.15.0; extra == ""rioxarray-geotiffdataset""; kedro-datasets[rioxarray-geotiffdataset]; extra == ""rioxarray""; safetensors; extra == ""safetensors-safetensorsdataset""; numpy; extra == ""safetensors-safetensorsdataset""; kedro-datasets[safetensors-safetensorsdataset]; extra == ""safetensors""; opencv-python~=4.5.5.64; extra == ""video-videodataset""; kedro-datasets[video-videodataset]; extra == ""video""; kedro-sphinx-theme==2024.10.2; extra == ""docs""; ipykernel<7.0,>=5.3; extra == ""docs""; Jinja2<3.2.0; extra == ""docs""; accelerate<0.32; extra == ""test""; adlfs~=2023.1; extra == ""test""; behave==1.2.6; extra == ""test""; biopython~=1.73; extra == ""test""; cloudpickle~=2.2.1; extra == ""test""; compress-pickle[lz4]~=2.1.0; extra == ""test""; coverage>=7.2.0; extra == ""test""; dask[complete]>=2021.10; extra == ""test""; delta-spark<3.0,>=1.0; extra == ""test""; deltalake>=0.10.0; extra == ""test""; dill~=0.3.1; extra == ""test""; filelock<4.0,>=3.4.0; extra == ""test""; fiona<2.0,>=1.8; extra == ""test""; gcsfs<2023.3,>=2023.1; extra == ""test""; geopandas<2.0,>=0.8.0; extra == ""test""; hdfs<3.0,>=2.5.8; extra == ""test""; holoviews>=1.13.0; extra == ""test""; ibis-framework[duckdb,examples]; extra == ""test""; ipython<8.0,>=7.31.1; extra == ""test""; Jinja2<3.2.0; extra == ""test""; joblib>=0.14; extra == ""test""; jupyterlab>=3.0; extra == ""test""; jupyter~=1.0; extra == ""test""; lxml~=4.6; extra == ""test""; matplotlib<4.0,>=3.5; extra == ""test""; memory_profiler<1.0,>=0.50.0; extra == ""test""; moto==5.0.0; extra == ""test""; networkx~=3.4; extra == ""test""; openpyxl<4.0,>=3.0.3; extra == ""test""; pandas-gbq>=0.12.0; extra == ""test""; pandas>=2.0; extra == ""test""; Pillow~=10.0; extra == ""test""; plotly<6.0,>=4.8.0; extra == ""test""; polars[deltalake,xlsx2csv]<1.25.2,>=1.0; extra == ""test""; pyarrow>=1.0; python_version < ""3.11"" and extra == ""test""; pyarrow>=7.0; python_version >= ""3.11"" and extra == ""test""; pyspark>=3.0; python_version < ""3.11"" and extra == ""test""; pyspark>=3.4; python_version >= ""3.11"" and extra == ""test""; pytest-cov~=3.0; extra == ""test""; pytest-mock<2.0,>=1.7.1; extra == ""test""; pytest-xdist[psutil]~=2.2.1; extra == ""test""; pytest~=7.2; extra == ""test""; redis~=4.1; extra == ""test""; requests-mock~=1.6; extra == ""test""; requests~=2.20; extra == ""test""; s3fs>=2021.04; extra == ""test""; snowflake-snowpark-python>=1.23; python_version < ""3.12"" and extra == ""test""; scikit-learn<2,>=1.0.2; extra == ""test""; scipy>=1.7.3; extra == ""test""; packaging; extra == ""test""; pyOpenSSL>=22.1.0; extra == ""test""; SQLAlchemy>=1.2; extra == ""test""; tables>=3.6; extra == ""test""; tensorflow-macos~=2.0; (platform_system == ""Darwin"" and platform_machine == ""arm64"") and extra == ""test""; tensorflow~=2.0; (platform_system != ""Darwin"" or platform_machine != ""arm64"") and extra == ""test""; triad<1.0,>=0.6.7; extra == ""test""; xarray>=2023.1.0; extra == ""test""; xlsxwriter~=1.0; extra == ""test""; datasets; extra == ""test""; huggingface_hub; extra == ""test""; transformers[torch]; extra == ""test""; bandit<2.0,>=1.6.2; extra == ""lint""; blacken-docs==1.9.2; extra == ""lint""; black~=22.0; extra == ""lint""; detect-secrets~=1.5.0; extra == ""lint""; import-linter[toml]==1.2.6; extra == ""lint""; mypy~=1.0; extra == ""lint""; pre-commit>=2.9.2; extra == ""lint""; ruff~=0.0.290; extra == ""lint""; types-cachetools; extra == ""lint""; types-PyYAML; extra == ""lint""; types-redis; extra == ""lint""; types-requests; extra == ""lint""; types-decorator; extra == ""lint""; types-six; extra == ""lint""; types-tabulate; extra == ""lint""; langchain-openai; extra == ""experimental""; langchain-cohere; extra == ""experimental""; langchain-anthropic; extra == ""experimental""; langchain-community; extra == ""experimental""; h5netcdf>=1.2.0; extra == ""experimental""; netcdf4>=1.6.4; extra == ""experimental""; xarray>=2023.1.0; extra == ""experimental""; rioxarray; extra == ""experimental""; torch; extra == ""experimental""; opencv-python~=4.5.5.64; extra == ""experimental""; prophet>=1.1.5; extra == ""experimental""; optuna; extra == ""experimental""; u8darts[all]; extra == ""experimental""; kedro-datasets[docs,lint,test]; extra == ""all""",7.0.0,No,,No,None,,, +kedro-docker,Base Package,EY,0.6.0,"{'base_package': 'kedro-docker==0.6.0', 'dependencies': ['anyconfig==0.10.0', 'kedro==0.16.0', 'semver==2.10', 'coverage==7.2.0', 'pytest-xdist==2.2.1', 'PyYAML==5.1', 'wheel==0.32.2', 'black==22.0', 'mypy==1.0', 'pre-commit==2.9.2', 'trufflehog==2.1.0', 'ruff==0.0.290']}","anyconfig~=0.10.0; kedro>=0.16.0; semver~=2.10; behave; extra == ""test""; coverage>=7.2.0; extra == ""test""; docker; extra == ""test""; psutil; extra == ""test""; pytest; extra == ""test""; pytest-cov; extra == ""test""; pytest-mock; extra == ""test""; pytest-xdist[psutil]~=2.2.1; extra == ""test""; PyYAML<7.0,>=5.1; extra == ""test""; wheel==0.32.2; extra == ""test""; bandit; extra == ""lint""; black~=22.0; extra == ""lint""; mypy~=1.0; extra == ""lint""; pre-commit>=2.9.2; extra == ""lint""; trufflehog<3.0,>=2.1.0; extra == ""lint""; ruff~=0.0.290; extra == ""lint""","0.6.1, 0.6.2","anyconfig~=0.10.0; kedro>=0.16.0; semver~=2.10; behave; extra == ""test""; coverage>=7.2.0; extra == ""test""; docker; extra == ""test""; psutil; extra == ""test""; pytest; extra == ""test""; pytest-cov; extra == ""test""; pytest-mock; extra == ""test""; pytest-xdist[psutil]~=2.2.1; extra == ""test""; PyYAML<7.0,>=5.1; extra == ""test""; wheel==0.32.2; extra == ""test""; bandit; extra == ""lint""; black~=22.0; extra == ""lint""; mypy~=1.0; extra == ""lint""; pre-commit>=2.9.2; extra == ""lint""; trufflehog<3.0,>=2.1.0; extra == ""lint""; ruff~=0.0.290; extra == ""lint""",0.6.2,No,,No,None,,, +kedro-fast-api,Base Package,EY,0.6.1,"{'base_package': 'kedro-fast-api==0.6.1', 'dependencies': []}",,,,0.6.1,No,,No,None,,, +kedro-viz,Base Package,EY,9.1.0,"{'base_package': 'kedro-viz==9.1.0', 'dependencies': ['aiofiles==22.1.0', 'fastapi==0.100.0', 'fsspec==2021.4', 'ipython==7.0.0', 'kedro-telemetry==0.6.0', 'kedro==0.18.0', 'networkx==2.5', 'orjson==3.9', 'packaging==23.0', 'pandas==1.3', 'pathspec==0.12.1', 'plotly==4.0', 'pydantic==2.0.0', 'secure==0.3.0', 'sqlalchemy==1.4', 'strawberry-graphql==0.192.0', 'uvicorn==0.30.0', 'watchfiles==0.24.0', 's3fs==2021.4', 'adlfs==2021.4', 'kedro-sphinx-theme==2024.10.3', 'gcsfs==2021.4']}","aiofiles>=22.1.0; click-default-group; fastapi<0.200.0,>=0.100.0; fsspec>=2021.4; ipython<9.0,>=7.0.0; kedro-telemetry>=0.6.0; kedro>=0.18.0; networkx>=2.5; orjson<4.0,>=3.9; packaging>=23.0; pandas>=1.3; pathspec>=0.12.1; plotly>=4.0; pydantic>=2.0.0; secure>=0.3.0; sqlalchemy<3,>=1.4; strawberry-graphql<1.0,>=0.192.0; uvicorn[standard]<1.0,>=0.30.0; watchfiles>=0.24.0; s3fs>=2021.4; extra == ""aws""; adlfs>=2021.4; extra == ""azure""; kedro-sphinx-theme==2024.10.3; extra == ""docs""; gcsfs>=2021.4; extra == ""gcp""","9.2.0, 10.0.0, 10.1.0, 10.2.0, 11.0.0, 11.0.1, 11.0.2","aiofiles>=22.1.0; click-default-group; fastapi<0.200.0,>=0.100.0; fsspec>=2021.4; ipython<9.0,>=7.0.0; kedro-telemetry>=0.6.0; kedro>=0.18.0; networkx>=2.5; orjson<4.0,>=3.9; packaging>=23.0; pandas>=1.3; pathspec>=0.12.1; plotly>=4.0; pydantic>=2.0.0; secure>=0.3.0; sqlalchemy<3,>=1.4; strawberry-graphql<1.0,>=0.192.0; uvicorn[standard]<1.0,>=0.30.0; watchfiles>=0.24.0; s3fs>=2021.4; extra == ""aws""; adlfs>=2021.4; extra == ""azure""; kedro-sphinx-theme==2024.10.3; extra == ""docs""; gcsfs>=2021.4; extra == ""gcp""",11.0.2,No,,No,None,,, +lancedb,Base Package,EY,0.11.0,"{'base_package': 'lancedb==0.11.0', 'dependencies': ['overrides==0.7', 'pyarrow==16', 'pydantic==1.10', 'tqdm==4.27.0', 'pylance==0.25', 'pandas==1.4', 'polars==0.19', 'pylance==0.25', 'typing-extensions==4.0.0', 'requests==2.31.0', 'openai==1.6.1', 'colpali-engine==0.3.10', 'boto3==1.28.57', 'awscli==1.29.57', 'botocore==1.31.57', 'ibm-watsonx-ai==1.1.2', 'adlfs==2024.2.0']}","deprecation; numpy; overrides>=0.7; packaging; pyarrow>=16; pydantic>=1.10; tqdm>=4.27.0; pylance>=0.25; extra == ""pylance""; aiohttp; extra == ""tests""; boto3; extra == ""tests""; pandas>=1.4; extra == ""tests""; pytest; extra == ""tests""; pytest-mock; extra == ""tests""; pytest-asyncio; extra == ""tests""; duckdb; extra == ""tests""; pytz; extra == ""tests""; polars<=1.3.0,>=0.19; extra == ""tests""; tantivy; extra == ""tests""; pyarrow-stubs; extra == ""tests""; pylance>=0.25; extra == ""tests""; requests; extra == ""tests""; datafusion; extra == ""tests""; ruff; extra == ""dev""; pre-commit; extra == ""dev""; pyright; extra == ""dev""; typing-extensions>=4.0.0; python_full_version < ""3.11"" and extra == ""dev""; mkdocs; extra == ""docs""; mkdocs-jupyter; extra == ""docs""; mkdocs-material; extra == ""docs""; mkdocstrings[python]; extra == ""docs""; torch; extra == ""clip""; pillow; extra == ""clip""; open-clip-torch; extra == ""clip""; requests>=2.31.0; extra == ""embeddings""; openai>=1.6.1; extra == ""embeddings""; sentence-transformers; extra == ""embeddings""; torch; extra == ""embeddings""; pillow; extra == ""embeddings""; open-clip-torch; extra == ""embeddings""; cohere; extra == ""embeddings""; colpali-engine>=0.3.10; extra == ""embeddings""; huggingface-hub; extra == ""embeddings""; instructorembedding; extra == ""embeddings""; google-generativeai; extra == ""embeddings""; boto3>=1.28.57; extra == ""embeddings""; awscli>=1.29.57; extra == ""embeddings""; botocore>=1.31.57; extra == ""embeddings""; ollama; extra == ""embeddings""; ibm-watsonx-ai>=1.1.2; extra == ""embeddings""; adlfs>=2024.2.0; extra == ""azure""","0.12.0, 0.13.0b0, 0.13.0b1, 0.13.0, 0.14.0b0, 0.14.0, 0.14.1b0, 0.14.1b1, 0.15.0, 0.16.0b0, 0.16.0b1, 0.16.0, 0.16.1b0, 0.17.0b0, 0.17.0b3, 0.17.0, 0.17.1b0, 0.17.1b1, 0.17.1b2, 0.17.1b3, 0.17.1b4, 0.17.1, 0.18.0, 0.19.0, 0.20.0, 0.21.0, 0.21.1, 0.21.2, 0.22.0, 0.22.1, 0.23.0, 0.24.0","deprecation; numpy; overrides>=0.7; packaging; pyarrow>=16; pydantic>=1.10; tqdm>=4.27.0; pylance>=0.25; extra == ""pylance""; aiohttp; extra == ""tests""; boto3; extra == ""tests""; pandas>=1.4; extra == ""tests""; pytest; extra == ""tests""; pytest-mock; extra == ""tests""; pytest-asyncio; extra == ""tests""; duckdb; extra == ""tests""; pytz; extra == ""tests""; polars<=1.3.0,>=0.19; extra == ""tests""; tantivy; extra == ""tests""; pyarrow-stubs; extra == ""tests""; pylance>=0.25; extra == ""tests""; requests; extra == ""tests""; datafusion; extra == ""tests""; ruff; extra == ""dev""; pre-commit; extra == ""dev""; pyright; extra == ""dev""; typing-extensions>=4.0.0; python_full_version < ""3.11"" and extra == ""dev""; mkdocs; extra == ""docs""; mkdocs-jupyter; extra == ""docs""; mkdocs-material; extra == ""docs""; mkdocstrings[python]; extra == ""docs""; torch; extra == ""clip""; pillow; extra == ""clip""; open-clip-torch; extra == ""clip""; requests>=2.31.0; extra == ""embeddings""; openai>=1.6.1; extra == ""embeddings""; sentence-transformers; extra == ""embeddings""; torch; extra == ""embeddings""; pillow; extra == ""embeddings""; open-clip-torch; extra == ""embeddings""; cohere; extra == ""embeddings""; colpali-engine>=0.3.10; extra == ""embeddings""; huggingface-hub; extra == ""embeddings""; instructorembedding; extra == ""embeddings""; google-generativeai; extra == ""embeddings""; boto3>=1.28.57; extra == ""embeddings""; awscli>=1.29.57; extra == ""embeddings""; botocore>=1.31.57; extra == ""embeddings""; ollama; extra == ""embeddings""; ibm-watsonx-ai>=1.1.2; extra == ""embeddings""; adlfs>=2024.2.0; extra == ""azure""",0.24.0,No,,No,None,,, +langchain-community,Base Package,EY,0.2.12,"{'base_package': 'langchain-community==0.2.12', 'dependencies': ['langchain-core==0.3.66', 'langchain==0.3.26', 'SQLAlchemy==1.4', 'requests==2', 'PyYAML==5.3', 'aiohttp==3.8.3', 'tenacity==8.1.0', 'dataclasses-json==0.5.7', 'pydantic-settings==2.4.0', 'langsmith==0.1.125', 'httpx-sse==0.4.0', 'numpy==1.26.2', 'numpy==2.1.0']}","langchain-core<1.0.0,>=0.3.66; langchain<1.0.0,>=0.3.26; SQLAlchemy<3,>=1.4; requests<3,>=2; PyYAML>=5.3; aiohttp<4.0.0,>=3.8.3; tenacity!=8.4.0,<10,>=8.1.0; dataclasses-json<0.7,>=0.5.7; pydantic-settings<3.0.0,>=2.4.0; langsmith>=0.1.125; httpx-sse<1.0.0,>=0.4.0; numpy>=1.26.2; python_version < ""3.13""; numpy>=2.1.0; python_version >= ""3.13""","0.2.13, 0.2.14, 0.2.15, 0.2.16, 0.2.17, 0.2.18, 0.2.19, 0.3.0.dev1, 0.3.0.dev2, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.3.6, 0.3.7, 0.3.8, 0.3.9, 0.3.10, 0.3.11, 0.3.12, 0.3.13, 0.3.14, 0.3.15, 0.3.16, 0.3.17rc1, 0.3.17, 0.3.18, 0.3.19, 0.3.20, 0.3.21, 0.3.22, 0.3.23, 0.3.24, 0.3.25, 0.3.26","langchain-core<1.0.0,>=0.3.66; langchain<1.0.0,>=0.3.26; SQLAlchemy<3,>=1.4; requests<3,>=2; PyYAML>=5.3; aiohttp<4.0.0,>=3.8.3; tenacity!=8.4.0,<10,>=8.1.0; dataclasses-json<0.7,>=0.5.7; pydantic-settings<3.0.0,>=2.4.0; langsmith>=0.1.125; httpx-sse<1.0.0,>=0.4.0; numpy>=1.26.2; python_version < ""3.13""; numpy>=2.1.0; python_version >= ""3.13""",0.3.26,Yes,"CVE-2024-8309, CVSS_V3, Langchain SQL Injection vulnerability, CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L, affects: >=0,<0.2.0; >=0.2.0,<0.2.19 +CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0",Yes,"0.2.14: CVE-2024-8309, CVSS_V3, Langchain SQL Injection vulnerability, CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L, affects: >=0,<0.2.0; >=0.2.0,<0.2.19 +CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0; 0.2.15: CVE-2024-8309, CVSS_V3, Langchain SQL Injection vulnerability, CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L, affects: >=0,<0.2.0; >=0.2.0,<0.2.19 +CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0; 0.3.0.dev2: CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0; 0.3.0.dev1: CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0; 0.2.18: CVE-2024-8309, CVSS_V3, Langchain SQL Injection vulnerability, CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L, affects: >=0,<0.2.0; >=0.2.0,<0.2.19 +CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0; 0.2.19: CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0; 0.2.13: CVE-2024-8309, CVSS_V3, Langchain SQL Injection vulnerability, CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L, affects: >=0,<0.2.0; >=0.2.0,<0.2.19 +CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0; 0.2.16: CVE-2024-8309, CVSS_V3, Langchain SQL Injection vulnerability, CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L, affects: >=0,<0.2.0; >=0.2.0,<0.2.19 +CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0; 0.2.17: CVE-2024-8309, CVSS_V3, Langchain SQL Injection vulnerability, CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L, affects: >=0,<0.2.0; >=0.2.0,<0.2.19 +CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0",0.3.26,"{'base_package': 'langchain-community==0.3.26', 'dependencies': ['langchain-core==0.3.66', 'langchain==0.3.26', 'SQLAlchemy==1.4.54', 'requests==2.32.4', 'PyYAML==5.4.1', 'aiohttp==3.12.13', 'tenacity==8.5.0', 'dataclasses-json==0.6.7', 'pydantic-settings==2.10.1', 'langsmith==0.4.1', 'httpx-sse==0.4.1', 'numpy==1.26.4']}",Not Used +langchain-openai,Base Package,EY,0.1.22,"{'base_package': 'langchain-openai==0.1.22', 'dependencies': ['langchain-core==0.3.66', 'openai==1.86.0', 'tiktoken==0.7']}","langchain-core<1.0.0,>=0.3.66; openai<2.0.0,>=1.86.0; tiktoken<1,>=0.7","0.1.23, 0.1.24, 0.1.25, 0.2.0.dev0, 0.2.0.dev1, 0.2.0.dev2, 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.2.5, 0.2.6, 0.2.7, 0.2.8, 0.2.9, 0.2.10, 0.2.11, 0.2.12, 0.2.13, 0.2.14, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4rc1, 0.3.4, 0.3.5, 0.3.6, 0.3.7, 0.3.8, 0.3.9rc1, 0.3.9, 0.3.10, 0.3.11, 0.3.12, 0.3.13, 0.3.14, 0.3.15, 0.3.16, 0.3.17, 0.3.18, 0.3.19, 0.3.20, 0.3.21, 0.3.22, 0.3.23, 0.3.24, 0.3.25","langchain-core<1.0.0,>=0.3.66; openai<2.0.0,>=1.86.0; tiktoken<1,>=0.7",0.3.25,No,,No,None,,, +lime,Base Package,EY,0.2.0.1,"{'base_package': 'lime==0.2.0.1', 'dependencies': []}",,,,0.2.0.1,No,,No,None,,, +llama-hub,Base Package,EY,0.0.79.post1,"{'base_package': 'llama-hub==0.0.79.post1', 'dependencies': ['llama-index==0.9.41', 'pyaml==23.9.7']}","llama-index (>=0.9.41); html2text; psutil; retrying; pyaml (>=23.9.7,<24.0.0)",,"llama-index (>=0.9.41); html2text; psutil; retrying; pyaml (>=23.9.7,<24.0.0)",0.0.79.post1,No,,No,None,,, +llama-index-embeddings-azure-openai,Base Package,EY,0.1.6,"{'base_package': 'llama-index-embeddings-azure-openai==0.1.6', 'dependencies': ['llama-index-core==0.12.0', 'llama-index-embeddings-openai==0.3.0', 'llama-index-llms-azure-openai==0.3.0']}","llama-index-core<0.13,>=0.12.0; llama-index-embeddings-openai<0.4,>=0.3.0; llama-index-llms-azure-openai<0.4,>=0.3.0","0.1.7, 0.1.8, 0.1.9, 0.1.10, 0.1.11, 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.2.5, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.3.6, 0.3.7, 0.3.8","llama-index-core<0.13,>=0.12.0; llama-index-embeddings-openai<0.4,>=0.3.0; llama-index-llms-azure-openai<0.4,>=0.3.0",0.3.8,No,,No,None,,, +llama-index-legacy,Base Package,EY,0.9.48.post3,"{'base_package': 'llama-index-legacy==0.9.48.post3', 'dependencies': ['SQLAlchemy==1.4.49', 'beautifulsoup4==4.12.2', 'deprecated==1.2.9.3', 'fsspec==2023.5.0', 'langchain==0.0.303', 'nest-asyncio==1.5.8', 'nltk==3.8.1', 'openai==1.1.0', 'tenacity==8.2.0', 'tiktoken==0.3.3', 'typing-extensions==4.5.0', 'typing-inspect==0.8.0', 'requests==2.31.0', 'gradientai==1.4.0', 'asyncpg==0.28.0', 'pgvector==0.1.0', 'optimum==1.13.2', 'sentencepiece==0.1.99', 'transformers==4.33.1', 'guidance==0.0.64', 'lm-format-enforcer==0.4.3', 'jsonpath-ng==1.6.0', 'rank-bm25==0.2.2', 'spacy==3.7.1', 'aiohttp==3.8.6', 'networkx==3.0', 'psycopg2-binary==2.9.9', 'dirtyjson==1.0.8']}","SQLAlchemy[asyncio]>=1.4.49; beautifulsoup4<5.0.0,>=4.12.2; extra == ""html""; dataclasses-json; deprecated>=1.2.9.3; fsspec>=2023.5.0; httpx; langchain>=0.0.303; extra == ""langchain""; nest-asyncio<2.0.0,>=1.5.8; nltk>=3.8.1; numpy; openai>=1.1.0; pandas; tenacity<9.0.0,>=8.2.0; tiktoken>=0.3.3; typing-extensions>=4.5.0; typing-inspect>=0.8.0; requests>=2.31.0; gradientai>=1.4.0; extra == ""gradientai""; asyncpg<0.29.0,>=0.28.0; extra == ""postgres""; pgvector<0.2.0,>=0.1.0; extra == ""postgres""; optimum[onnxruntime]<2.0.0,>=1.13.2; extra == ""local-models""; sentencepiece<0.2.0,>=0.1.99; extra == ""local-models""; transformers[torch]<5.0.0,>=4.33.1; extra == ""local-models""; guidance<0.0.65,>=0.0.64; extra == ""query-tools""; lm-format-enforcer<0.5.0,>=0.4.3; extra == ""query-tools""; jsonpath-ng<2.0.0,>=1.6.0; extra == ""query-tools""; rank-bm25<0.3.0,>=0.2.2; extra == ""query-tools""; scikit-learn; extra == ""query-tools""; spacy<4.0.0,>=3.7.1; extra == ""query-tools""; aiohttp<4.0.0,>=3.8.6; networkx>=3.0; psycopg2-binary<3.0.0,>=2.9.9; extra == ""postgres""; dirtyjson<2.0.0,>=1.0.8",0.9.48.post4,"SQLAlchemy[asyncio]>=1.4.49; beautifulsoup4<5.0.0,>=4.12.2; extra == ""html""; dataclasses-json; deprecated>=1.2.9.3; fsspec>=2023.5.0; httpx; langchain>=0.0.303; extra == ""langchain""; nest-asyncio<2.0.0,>=1.5.8; nltk>=3.8.1; numpy; openai>=1.1.0; pandas; tenacity<9.0.0,>=8.2.0; tiktoken>=0.3.3; typing-extensions>=4.5.0; typing-inspect>=0.8.0; requests>=2.31.0; gradientai>=1.4.0; extra == ""gradientai""; asyncpg<0.29.0,>=0.28.0; extra == ""postgres""; pgvector<0.2.0,>=0.1.0; extra == ""postgres""; optimum[onnxruntime]<2.0.0,>=1.13.2; extra == ""local-models""; sentencepiece<0.2.0,>=0.1.99; extra == ""local-models""; transformers[torch]<5.0.0,>=4.33.1; extra == ""local-models""; guidance<0.0.65,>=0.0.64; extra == ""query-tools""; lm-format-enforcer<0.5.0,>=0.4.3; extra == ""query-tools""; jsonpath-ng<2.0.0,>=1.6.0; extra == ""query-tools""; rank-bm25<0.3.0,>=0.2.2; extra == ""query-tools""; scikit-learn; extra == ""query-tools""; spacy<4.0.0,>=3.7.1; extra == ""query-tools""; aiohttp<4.0.0,>=3.8.6; networkx>=3.0; psycopg2-binary<3.0.0,>=2.9.9; extra == ""postgres""; dirtyjson<2.0.0,>=1.0.8",0.9.48.post4,No,,No,None,,, +llama-index-readers-json,Base Package,EY,0.1.5,"{'base_package': 'llama-index-readers-json==0.1.5', 'dependencies': ['llama-index-core==0.12.0']}","llama-index-core<0.13.0,>=0.12.0","0.2.0, 0.3.0","llama-index-core<0.13.0,>=0.12.0",0.3.0,No,,No,None,,, +llama-index-vector-stores-azurecosmosmongo,Base Package,EY,0.1.3,"{'base_package': 'llama-index-vector-stores-azurecosmosmongo==0.1.3', 'dependencies': ['llama-index-core==0.12.0', 'pymongo==4.6.1']}","llama-index-core<0.13,>=0.12.0; pymongo<5,>=4.6.1","0.2.0, 0.3.0, 0.4.0, 0.5.0, 0.6.0","llama-index-core<0.13,>=0.12.0; pymongo<5,>=4.6.1",0.6.0,No,,No,None,,, +llamaindex-py-client,Base Package,EY,0.1.19,"{'base_package': 'llamaindex-py-client==0.1.19', 'dependencies': ['pydantic==1.10', 'httpx==0.20.0']}",pydantic>=1.10; httpx>=0.20.0,,pydantic>=1.10; httpx>=0.20.0,0.1.19,No,,No,None,,, +mlflow,Base Package,EY,2.15.1,"{'base_package': 'mlflow==2.15.1', 'dependencies': ['mlflow-skinny==3.1.0', 'docker==4.0.0', 'pyarrow==4.0.0', 'sqlalchemy==1.4.0', 'google-cloud-storage==1.30.0', 'azureml-core==1.2.0', 'azure-storage-file-datalake==12', 'google-cloud-storage==1.30.0', 'boto3==1', 'databricks-agents==1.0.0rc3', 'mlserver==1.2.0', 'mlserver-mlflow==1.2.0', 'boto3==1.28.56', 'slowapi==0.1.9', 'boto3==1.28.56', 'slowapi==0.1.9', 'langchain==0.1.0']}","mlflow-skinny==3.1.0; Flask<4; alembic!=1.10.0,<2; docker<8,>=4.0.0; graphene<4; gunicorn<24; platform_system != ""Windows""; matplotlib<4; numpy<3; pandas<3; pyarrow<21,>=4.0.0; scikit-learn<2; scipy<2; sqlalchemy<3,>=1.4.0; waitress<4; platform_system == ""Windows""; pyarrow; extra == ""extras""; requests-auth-aws-sigv4; extra == ""extras""; boto3; extra == ""extras""; botocore; extra == ""extras""; google-cloud-storage>=1.30.0; extra == ""extras""; azureml-core>=1.2.0; extra == ""extras""; pysftp; extra == ""extras""; kubernetes; extra == ""extras""; virtualenv; extra == ""extras""; prometheus-flask-exporter; extra == ""extras""; azure-storage-file-datalake>12; extra == ""databricks""; google-cloud-storage>=1.30.0; extra == ""databricks""; boto3>1; extra == ""databricks""; botocore; extra == ""databricks""; databricks-agents<2.0,>=1.0.0rc3; extra == ""databricks""; mlserver!=1.3.1,>=1.2.0; extra == ""mlserver""; mlserver-mlflow!=1.3.1,>=1.2.0; extra == ""mlserver""; fastapi<1; extra == ""gateway""; uvicorn[standard]<1; extra == ""gateway""; watchfiles<2; extra == ""gateway""; aiohttp<4; extra == ""gateway""; boto3<2,>=1.28.56; extra == ""gateway""; tiktoken<1; extra == ""gateway""; slowapi<1,>=0.1.9; extra == ""gateway""; fastapi<1; extra == ""genai""; uvicorn[standard]<1; extra == ""genai""; watchfiles<2; extra == ""genai""; aiohttp<4; extra == ""genai""; boto3<2,>=1.28.56; extra == ""genai""; tiktoken<1; extra == ""genai""; slowapi<1,>=0.1.9; extra == ""genai""; mlflow-dbstore; extra == ""sqlserver""; aliyunstoreplugin; extra == ""aliyun-oss""; mlflow-xethub; extra == ""xethub""; mlflow-jfrog-plugin; extra == ""jfrog""; langchain<=0.3.25,>=0.1.0; extra == ""langchain""; Flask-WTF<2; extra == ""auth""","2.16.0, 2.16.1, 2.16.2, 2.17.0rc0, 2.17.0, 2.17.1, 2.17.2, 2.18.0rc0, 2.18.0, 2.19.0rc0, 2.19.0, 2.20.0rc0, 2.20.0, 2.20.1, 2.20.2, 2.20.3, 2.20.4, 2.21.0rc0, 2.21.0, 2.21.1, 2.21.2, 2.21.3, 2.22.0rc0, 2.22.0, 2.22.1, 3.0.0rc0, 3.0.0rc1, 3.0.0rc2, 3.0.0rc3, 3.0.0, 3.0.1, 3.1.0rc0, 3.1.0","mlflow-skinny==3.1.0; Flask<4; alembic!=1.10.0,<2; docker<8,>=4.0.0; graphene<4; gunicorn<24; platform_system != ""Windows""; matplotlib<4; numpy<3; pandas<3; pyarrow<21,>=4.0.0; scikit-learn<2; scipy<2; sqlalchemy<3,>=1.4.0; waitress<4; platform_system == ""Windows""; pyarrow; extra == ""extras""; requests-auth-aws-sigv4; extra == ""extras""; boto3; extra == ""extras""; botocore; extra == ""extras""; google-cloud-storage>=1.30.0; extra == ""extras""; azureml-core>=1.2.0; extra == ""extras""; pysftp; extra == ""extras""; kubernetes; extra == ""extras""; virtualenv; extra == ""extras""; prometheus-flask-exporter; extra == ""extras""; azure-storage-file-datalake>12; extra == ""databricks""; google-cloud-storage>=1.30.0; extra == ""databricks""; boto3>1; extra == ""databricks""; botocore; extra == ""databricks""; databricks-agents<2.0,>=1.0.0rc3; extra == ""databricks""; mlserver!=1.3.1,>=1.2.0; extra == ""mlserver""; mlserver-mlflow!=1.3.1,>=1.2.0; extra == ""mlserver""; fastapi<1; extra == ""gateway""; uvicorn[standard]<1; extra == ""gateway""; watchfiles<2; extra == ""gateway""; aiohttp<4; extra == ""gateway""; boto3<2,>=1.28.56; extra == ""gateway""; tiktoken<1; extra == ""gateway""; slowapi<1,>=0.1.9; extra == ""gateway""; fastapi<1; extra == ""genai""; uvicorn[standard]<1; extra == ""genai""; watchfiles<2; extra == ""genai""; aiohttp<4; extra == ""genai""; boto3<2,>=1.28.56; extra == ""genai""; tiktoken<1; extra == ""genai""; slowapi<1,>=0.1.9; extra == ""genai""; mlflow-dbstore; extra == ""sqlserver""; aliyunstoreplugin; extra == ""aliyun-oss""; mlflow-xethub; extra == ""xethub""; mlflow-jfrog-plugin; extra == ""jfrog""; langchain<=0.3.25,>=0.1.0; extra == ""langchain""; Flask-WTF<2; extra == ""auth""",3.1.0,Yes,"CVE-2025-0453, CVSS_V3, MLflow Uncontrolled Resource Consumption vulnerability, CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 +CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 +CVE-2024-8859, CVSS_V3, MLflow has a Local File Read/Path Traversal in dbfs, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N, affects: >=0,<2.17.0rc0 +CVE-2024-27134, CVSS_V3, MLflow's excessive directory permissions allow local privilege escalation, CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<2.16.0 +CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 +CVE-2024-27134, CVSS_V3, , CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<2.16.0 +CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0",Yes,"3.0.0rc0: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.21.3: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.16.1: CVE-2025-0453, CVSS_V3, MLflow Uncontrolled Resource Consumption vulnerability, CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 +CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 +CVE-2024-8859, CVSS_V3, MLflow has a Local File Read/Path Traversal in dbfs, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N, affects: >=0,<2.17.0rc0 +CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 +CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 3.0.0rc3: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 3.0.0rc2: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.22.1: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.21.1: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.17.2: CVE-2025-0453, CVSS_V3, MLflow Uncontrolled Resource Consumption vulnerability, CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 +CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 +CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 +CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 +CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 2.22.0rc0: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.21.0rc0: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.18.0: CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 +CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 +CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 +CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 2.16.2: CVE-2025-0453, CVSS_V3, MLflow Uncontrolled Resource Consumption vulnerability, CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 +CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 +CVE-2024-8859, CVSS_V3, MLflow has a Local File Read/Path Traversal in dbfs, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N, affects: >=0,<2.17.0rc0 +CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 +CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 2.20.0: CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 +CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.20.3: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.21.2: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.20.4: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 3.0.0: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.22.0: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.17.0: CVE-2025-0453, CVSS_V3, MLflow Uncontrolled Resource Consumption vulnerability, CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 +CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 +CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 +CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 +CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 2.17.0rc0: CVE-2025-0453, CVSS_V3, MLflow Uncontrolled Resource Consumption vulnerability, CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 +CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 +CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 +CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 2.18.0rc0: CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 +CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 +CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 +CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 3.0.1: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.19.0rc0: CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 +CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 +CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 +CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 2.17.1: CVE-2025-0453, CVSS_V3, MLflow Uncontrolled Resource Consumption vulnerability, CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 +CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 +CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 +CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 +CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 3.0.0rc1: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.20.1: CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 +CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 3.1.0rc0: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.16.0: CVE-2025-0453, CVSS_V3, MLflow Uncontrolled Resource Consumption vulnerability, CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 +CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 +CVE-2024-8859, CVSS_V3, MLflow has a Local File Read/Path Traversal in dbfs, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N, affects: >=0,<2.17.0rc0 +CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 +CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 2.19.0: CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 +CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.21.0: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.20.0rc0: CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 +CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.20.2: CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 +CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0",Up-to-date,,Not Used +motor-types,Base Package,EY,1.0.0b4,"{'base_package': 'motor-types==1.0.0b4', 'dependencies': ['pymongo==4.3.0', 'motor==3.0.0', 'typing-extensions==4.0.0', 'dnspython==2.3.0']}","pymongo (>=4.3.0); motor (>=3.0.0) ; extra == ""motor""; typing-extensions (>=4.0.0); dnspython (>=2.3.0) ; extra == ""motor""",,"pymongo (>=4.3.0); motor (>=3.0.0) ; extra == ""motor""; typing-extensions (>=4.0.0); dnspython (>=2.3.0) ; extra == ""motor""",1.0.0b4,No,,No,None,,, +notebook,Base Package,EY,7.2.2,"{'base_package': 'notebook==7.2.2', 'dependencies': ['jupyter-server==2.4.0', 'jupyterlab-server==2.27.1', 'jupyterlab==4.4.3', 'notebook-shim==0.2', 'tornado==6.2.0', 'sphinx==1.3.6', 'importlib-resources==5.0', 'jupyter-server==2.4.0', 'jupyterlab-server==2.27.1', 'pytest==7.0']}","jupyter-server<3,>=2.4.0; jupyterlab-server<3,>=2.27.1; jupyterlab<4.5,>=4.4.3; notebook-shim<0.3,>=0.2; tornado>=6.2.0; hatch; extra == ""dev""; pre-commit; extra == ""dev""; myst-parser; extra == ""docs""; nbsphinx; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx>=1.3.6; extra == ""docs""; sphinxcontrib-github-alt; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; importlib-resources>=5.0; python_version < ""3.10"" and extra == ""test""; ipykernel; extra == ""test""; jupyter-server[test]<3,>=2.4.0; extra == ""test""; jupyterlab-server[test]<3,>=2.27.1; extra == ""test""; nbval; extra == ""test""; pytest-console-scripts; extra == ""test""; pytest-timeout; extra == ""test""; pytest-tornasync; extra == ""test""; pytest>=7.0; extra == ""test""; requests; extra == ""test""","7.2.3, 7.3.0a0, 7.3.0a1, 7.3.0b0, 7.3.0b1, 7.3.0b2, 7.3.0rc0, 7.3.0, 7.3.1, 7.3.2, 7.3.3, 7.4.0a0, 7.4.0a1, 7.4.0a2, 7.4.0a3, 7.4.0b0, 7.4.0b1, 7.4.0b2, 7.4.0b3, 7.4.0rc0, 7.4.0, 7.4.1, 7.4.2, 7.4.3, 7.5.0a0","jupyter-server<3,>=2.4.0; jupyterlab-server<3,>=2.27.1; jupyterlab<4.5,>=4.4.3; notebook-shim<0.3,>=0.2; tornado>=6.2.0; hatch; extra == ""dev""; pre-commit; extra == ""dev""; myst-parser; extra == ""docs""; nbsphinx; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx>=1.3.6; extra == ""docs""; sphinxcontrib-github-alt; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; importlib-resources>=5.0; python_version < ""3.10"" and extra == ""test""; ipykernel; extra == ""test""; jupyter-server[test]<3,>=2.4.0; extra == ""test""; jupyterlab-server[test]<3,>=2.27.1; extra == ""test""; nbval; extra == ""test""; pytest-console-scripts; extra == ""test""; pytest-timeout; extra == ""test""; pytest-tornasync; extra == ""test""; pytest>=7.0; extra == ""test""; requests; extra == ""test""",7.5.0a0,No,,No,None,,, +onnxruntime,Base Package,EY,1.18.0,"{'base_package': 'onnxruntime==1.18.0', 'dependencies': ['numpy==1.21.6']}",coloredlogs; flatbuffers; numpy>=1.21.6; packaging; protobuf; sympy,"1.18.1, 1.19.0, 1.19.2, 1.20.0, 1.20.1, 1.21.0, 1.21.1, 1.22.0",coloredlogs; flatbuffers; numpy>=1.21.6; packaging; protobuf; sympy,1.22.0,No,,No,None,,, +opencensus-ext-azure,Base Package,EY,1.1.13,"{'base_package': 'opencensus-ext-azure==1.1.13', 'dependencies': ['azure-core==1.12.0', 'azure-identity==1.5.0', 'opencensus==0.11.4', 'psutil==5.6.3', 'requests==2.19.0']}","azure-core<2.0.0,>=1.12.0; azure-identity<2.0.0,>=1.5.0; opencensus<1.0.0,>=0.11.4; psutil>=5.6.3; requests>=2.19.0","1.1.14, 1.1.15","azure-core<2.0.0,>=1.12.0; azure-identity<2.0.0,>=1.5.0; opencensus<1.0.0,>=0.11.4; psutil>=5.6.3; requests>=2.19.0",1.1.15,No,,No,None,,, +opencensus-ext-logging,Base Package,EY,0.1.1,"{'base_package': 'opencensus-ext-logging==0.1.1', 'dependencies': ['opencensus==0.8.0']}","opencensus (<1.0.0,>=0.8.0)",,"opencensus (<1.0.0,>=0.8.0)",0.1.1,No,,No,None,,, +opensearch-py,Base Package,EY,2.5.0,"{'base_package': 'opensearch-py==2.5.0', 'dependencies': ['urllib3==1.26.19', 'urllib3==1.26.19', 'requests==2.32.0', 'certifi==2024.07.04', 'requests==2.0.0', 'pytest==3.0.0', 'black==24.3.0', 'aiohttp==3.9.4', 'aiohttp==3.9.4']}","urllib3<1.27,>=1.26.19; python_version < ""3.10""; urllib3!=2.2.0,!=2.2.1,<3,>=1.26.19; python_version >= ""3.10""; requests<3.0.0,>=2.32.0; python-dateutil; certifi>=2024.07.04; Events; requests<3.0.0,>=2.0.0; extra == ""develop""; coverage<8.0.0; extra == ""develop""; pyyaml; extra == ""develop""; pytest>=3.0.0; extra == ""develop""; pytest-cov; extra == ""develop""; pytz; extra == ""develop""; botocore; extra == ""develop""; pytest-mock<4.0.0; extra == ""develop""; sphinx; extra == ""develop""; sphinx_rtd_theme; extra == ""develop""; myst_parser; extra == ""develop""; sphinx_copybutton; extra == ""develop""; black>=24.3.0; extra == ""develop""; jinja2; extra == ""develop""; sphinx; extra == ""docs""; sphinx_rtd_theme; extra == ""docs""; myst_parser; extra == ""docs""; sphinx_copybutton; extra == ""docs""; aiohttp<4,>=3.9.4; extra == ""docs""; aiohttp<4,>=3.9.4; extra == ""async""; requests_kerberos; extra == ""kerberos""","2.6.0, 2.7.0, 2.7.1, 2.8.0, 3.0.0","urllib3<1.27,>=1.26.19; python_version < ""3.10""; urllib3!=2.2.0,!=2.2.1,<3,>=1.26.19; python_version >= ""3.10""; requests<3.0.0,>=2.32.0; python-dateutil; certifi>=2024.07.04; Events; requests<3.0.0,>=2.0.0; extra == ""develop""; coverage<8.0.0; extra == ""develop""; pyyaml; extra == ""develop""; pytest>=3.0.0; extra == ""develop""; pytest-cov; extra == ""develop""; pytz; extra == ""develop""; botocore; extra == ""develop""; pytest-mock<4.0.0; extra == ""develop""; sphinx; extra == ""develop""; sphinx_rtd_theme; extra == ""develop""; myst_parser; extra == ""develop""; sphinx_copybutton; extra == ""develop""; black>=24.3.0; extra == ""develop""; jinja2; extra == ""develop""; sphinx; extra == ""docs""; sphinx_rtd_theme; extra == ""docs""; myst_parser; extra == ""docs""; sphinx_copybutton; extra == ""docs""; aiohttp<4,>=3.9.4; extra == ""docs""; aiohttp<4,>=3.9.4; extra == ""async""; requests_kerberos; extra == ""kerberos""",3.0.0,No,,No,None,,, +optuna,Base Package,EY,3.6.1,"{'base_package': 'optuna==3.6.1', 'dependencies': ['alembic==1.5.0', 'packaging==20.0', 'sqlalchemy==1.4.2', 'asv==0.5.0', 'typing_extensions==3.10.0.0', 'cmaes==0.10.0', 'plotly==4.9.0', 'sphinx_rtd_theme==1.2.0', 'cmaes==0.10.0', 'plotly==4.9.0', 'scikit-learn==0.24.2', 'protobuf==5.28.1', 'scipy==1.9.2', 'protobuf==5.28.1']}","alembic>=1.5.0; colorlog; numpy; packaging>=20.0; sqlalchemy>=1.4.2; tqdm; PyYAML; asv>=0.5.0; extra == ""benchmark""; cma; extra == ""benchmark""; virtualenv; extra == ""benchmark""; black; extra == ""checking""; blackdoc; extra == ""checking""; flake8; extra == ""checking""; isort; extra == ""checking""; mypy; extra == ""checking""; mypy_boto3_s3; extra == ""checking""; types-PyYAML; extra == ""checking""; types-redis; extra == ""checking""; types-setuptools; extra == ""checking""; types-tqdm; extra == ""checking""; typing_extensions>=3.10.0.0; extra == ""checking""; ase; extra == ""document""; cmaes>=0.10.0; extra == ""document""; fvcore; extra == ""document""; kaleido<0.4; extra == ""document""; lightgbm; extra == ""document""; matplotlib!=3.6.0; extra == ""document""; pandas; extra == ""document""; pillow; extra == ""document""; plotly>=4.9.0; extra == ""document""; scikit-learn; extra == ""document""; sphinx; extra == ""document""; sphinx-copybutton; extra == ""document""; sphinx-gallery; extra == ""document""; sphinx-notfound-page; extra == ""document""; sphinx_rtd_theme>=1.2.0; extra == ""document""; torch; extra == ""document""; torchvision; extra == ""document""; boto3; extra == ""optional""; cmaes>=0.10.0; extra == ""optional""; google-cloud-storage; extra == ""optional""; matplotlib!=3.6.0; extra == ""optional""; pandas; extra == ""optional""; plotly>=4.9.0; extra == ""optional""; redis; extra == ""optional""; scikit-learn>=0.24.2; extra == ""optional""; scipy; extra == ""optional""; torch; python_version <= ""3.12"" and extra == ""optional""; grpcio; extra == ""optional""; protobuf>=5.28.1; extra == ""optional""; coverage; extra == ""test""; fakeredis[lua]; extra == ""test""; kaleido<0.4; extra == ""test""; moto; extra == ""test""; pytest; extra == ""test""; scipy>=1.9.2; extra == ""test""; torch; python_version <= ""3.12"" and extra == ""test""; grpcio; extra == ""test""; protobuf>=5.28.1; extra == ""test""","3.6.2, 4.0.0b0, 4.0.0, 4.1.0, 4.2.0, 4.2.1, 4.3.0, 4.4.0","alembic>=1.5.0; colorlog; numpy; packaging>=20.0; sqlalchemy>=1.4.2; tqdm; PyYAML; asv>=0.5.0; extra == ""benchmark""; cma; extra == ""benchmark""; virtualenv; extra == ""benchmark""; black; extra == ""checking""; blackdoc; extra == ""checking""; flake8; extra == ""checking""; isort; extra == ""checking""; mypy; extra == ""checking""; mypy_boto3_s3; extra == ""checking""; types-PyYAML; extra == ""checking""; types-redis; extra == ""checking""; types-setuptools; extra == ""checking""; types-tqdm; extra == ""checking""; typing_extensions>=3.10.0.0; extra == ""checking""; ase; extra == ""document""; cmaes>=0.10.0; extra == ""document""; fvcore; extra == ""document""; kaleido<0.4; extra == ""document""; lightgbm; extra == ""document""; matplotlib!=3.6.0; extra == ""document""; pandas; extra == ""document""; pillow; extra == ""document""; plotly>=4.9.0; extra == ""document""; scikit-learn; extra == ""document""; sphinx; extra == ""document""; sphinx-copybutton; extra == ""document""; sphinx-gallery; extra == ""document""; sphinx-notfound-page; extra == ""document""; sphinx_rtd_theme>=1.2.0; extra == ""document""; torch; extra == ""document""; torchvision; extra == ""document""; boto3; extra == ""optional""; cmaes>=0.10.0; extra == ""optional""; google-cloud-storage; extra == ""optional""; matplotlib!=3.6.0; extra == ""optional""; pandas; extra == ""optional""; plotly>=4.9.0; extra == ""optional""; redis; extra == ""optional""; scikit-learn>=0.24.2; extra == ""optional""; scipy; extra == ""optional""; torch; python_version <= ""3.12"" and extra == ""optional""; grpcio; extra == ""optional""; protobuf>=5.28.1; extra == ""optional""; coverage; extra == ""test""; fakeredis[lua]; extra == ""test""; kaleido<0.4; extra == ""test""; moto; extra == ""test""; pytest; extra == ""test""; scipy>=1.9.2; extra == ""test""; torch; python_version <= ""3.12"" and extra == ""test""; grpcio; extra == ""test""; protobuf>=5.28.1; extra == ""test""",4.4.0,No,,No,None,,, +plotly-resampler,Base Package,EY,0.10.0,"{'base_package': 'plotly-resampler==0.10.0', 'dependencies': ['jupyter-dash==0.4.2', 'plotly==5.5.0', 'dash==2.9.0', 'pandas==1', 'numpy==1.14', 'numpy==1.24', 'orjson==3.8.0', 'Flask-Cors==3.0.10', 'kaleido==0.2.1', 'tsdownsample==0.1.3']}","jupyter-dash>=0.4.2; extra == ""inline-persistent""; plotly<6.0.0,>=5.5.0; dash>=2.9.0; pandas>=1; numpy>=1.14; python_version < ""3.11""; numpy>=1.24; python_version >= ""3.11""; orjson<4.0.0,>=3.8.0; Flask-Cors<4.0.0,>=3.0.10; extra == ""inline-persistent""; kaleido==0.2.1; extra == ""inline-persistent""; tsdownsample>=0.1.3","0.11.0rc0, 0.11.0rc1","jupyter-dash>=0.4.2; extra == ""inline-persistent""; plotly<6.0.0,>=5.5.0; dash>=2.9.0; pandas>=1; numpy>=1.14; python_version < ""3.11""; numpy>=1.24; python_version >= ""3.11""; orjson<4.0.0,>=3.8.0; Flask-Cors<4.0.0,>=3.0.10; extra == ""inline-persistent""; kaleido==0.2.1; extra == ""inline-persistent""; tsdownsample>=0.1.3",0.11.0rc1,No,,No,None,,, +poetry-plugin-export,Base Package,EY,1.8.0,"{'base_package': 'poetry-plugin-export==1.8.0', 'dependencies': ['poetry==2.0.0', 'poetry-core==1.7.0']}","poetry<3.0.0,>=2.0.0; poetry-core<3.0.0,>=1.7.0",1.9.0,"poetry<3.0.0,>=2.0.0; poetry-core<3.0.0,>=1.7.0",1.9.0,No,,No,None,,, +portalocker,Base Package,EY,2.10.1,"{'base_package': 'portalocker==2.10.1', 'dependencies': ['pywin32==226', 'coverage-conditional-plugin==0.9.0', 'pytest-cov==2.8.1', 'pytest-mypy==0.8.0', 'pytest-rerunfailures==15.0', 'pytest-timeout==2.1.0', 'pytest==5.4.1', 'sphinx==6.0.0', 'types-pywin32==310.0.0.20250429']}","pywin32>=226; platform_system == ""Windows""; portalocker[tests]; extra == ""docs""; coverage-conditional-plugin>=0.9.0; extra == ""tests""; portalocker[redis]; extra == ""tests""; pytest-cov>=2.8.1; extra == ""tests""; pytest-mypy>=0.8.0; extra == ""tests""; pytest-rerunfailures>=15.0; extra == ""tests""; pytest-timeout>=2.1.0; extra == ""tests""; pytest>=5.4.1; extra == ""tests""; sphinx>=6.0.0; extra == ""tests""; types-pywin32>=310.0.0.20250429; extra == ""tests""; types-redis; extra == ""tests""; redis; extra == ""redis""","3.0.0, 3.1.0, 3.1.1, 3.2.0","pywin32>=226; platform_system == ""Windows""; portalocker[tests]; extra == ""docs""; coverage-conditional-plugin>=0.9.0; extra == ""tests""; portalocker[redis]; extra == ""tests""; pytest-cov>=2.8.1; extra == ""tests""; pytest-mypy>=0.8.0; extra == ""tests""; pytest-rerunfailures>=15.0; extra == ""tests""; pytest-timeout>=2.1.0; extra == ""tests""; pytest>=5.4.1; extra == ""tests""; sphinx>=6.0.0; extra == ""tests""; types-pywin32>=310.0.0.20250429; extra == ""tests""; types-redis; extra == ""tests""; redis; extra == ""redis""",3.2.0,No,,No,None,,, +pre-commit,Base Package,EY,3.8.0,"{'base_package': 'pre-commit==3.8.0', 'dependencies': ['cfgv==2.0.0', 'identify==1.0.0', 'nodeenv==0.11.1', 'pyyaml==5.1', 'virtualenv==20.10.0']}",cfgv>=2.0.0; identify>=1.0.0; nodeenv>=0.11.1; pyyaml>=5.1; virtualenv>=20.10.0,"4.0.0, 4.0.1, 4.1.0, 4.2.0",cfgv>=2.0.0; identify>=1.0.0; nodeenv>=0.11.1; pyyaml>=5.1; virtualenv>=20.10.0,4.2.0,No,,No,None,,, +pyltr,Base Package,EY,0.2.6,"{'base_package': 'pyltr==0.2.6', 'dependencies': []}",numpy; pandas; scipy; scikit-learn; six,,numpy; pandas; scipy; scikit-learn; six,0.2.6,No,,No,None,,, +PySocks,Base Package,EY,1.7.1,"{'base_package': 'PySocks==1.7.1', 'dependencies': []}",,,,1.7.1,No,,No,None,,, +pytest-asyncio,Base Package,EY,0.23.6,"{'base_package': 'pytest-asyncio==0.23.6', 'dependencies': ['pytest==8.2', 'typing-extensions==4.12', 'sphinx==5.3', 'sphinx-rtd-theme==1', 'coverage==6.2', 'hypothesis==5.7.1']}","pytest<9,>=8.2; typing-extensions>=4.12; python_version < ""3.10""; sphinx>=5.3; extra == ""docs""; sphinx-rtd-theme>=1; extra == ""docs""; coverage>=6.2; extra == ""testing""; hypothesis>=5.7.1; extra == ""testing""","0.23.7, 0.23.8, 0.24.0a0, 0.24.0a1, 0.24.0, 0.25.0, 0.25.1, 0.25.2, 0.25.3, 0.26.0, 1.0.0a1, 1.0.0","pytest<9,>=8.2; typing-extensions>=4.12; python_version < ""3.10""; sphinx>=5.3; extra == ""docs""; sphinx-rtd-theme>=1; extra == ""docs""; coverage>=6.2; extra == ""testing""; hypothesis>=5.7.1; extra == ""testing""",1.0.0,No,,No,None,,, +pytest-cov,Base Package,EY,5.0.0,"{'base_package': 'pytest-cov==5.0.0', 'dependencies': ['pytest==6.2.5', 'coverage==7.5', 'pluggy==1.2']}","pytest>=6.2.5; coverage[toml]>=7.5; pluggy>=1.2; fields; extra == ""testing""; hunter; extra == ""testing""; process-tests; extra == ""testing""; pytest-xdist; extra == ""testing""; virtualenv; extra == ""testing""","6.0.0, 6.1.0, 6.1.1, 6.2.0, 6.2.1","pytest>=6.2.5; coverage[toml]>=7.5; pluggy>=1.2; fields; extra == ""testing""; hunter; extra == ""testing""; process-tests; extra == ""testing""; pytest-xdist; extra == ""testing""; virtualenv; extra == ""testing""",6.2.1,No,,No,None,,, +pytest-httpx,Base Package,EY,0.28.0,"{'base_package': 'pytest-httpx==0.28.0', 'dependencies': []}","httpx==0.28.*; pytest==8.*; pytest-cov==6.*; extra == ""testing""; pytest-asyncio==0.24.*; extra == ""testing""","0.29.0, 0.30.0, 0.31.0, 0.31.1, 0.31.2, 0.32.0, 0.33.0, 0.34.0, 0.35.0","httpx==0.28.*; pytest==8.*; pytest-cov==6.*; extra == ""testing""; pytest-asyncio==0.24.*; extra == ""testing""",0.35.0,No,,No,None,,, +pytest-mock,Base Package,EY,1.13.0,"{'base_package': 'pytest-mock==1.13.0', 'dependencies': ['pytest==6.2.5']}","pytest>=6.2.5; pre-commit; extra == ""dev""; pytest-asyncio; extra == ""dev""; tox; extra == ""dev""","2.0.0, 3.0.0, 3.1.0, 3.1.1, 3.2.0, 3.3.0, 3.3.1, 3.4.0, 3.5.0, 3.5.1, 3.6.0, 3.6.1, 3.7.0, 3.8.0, 3.8.1, 3.8.2, 3.9.0, 3.10.0, 3.11.0, 3.11.1, 3.12.0, 3.13.0, 3.14.0, 3.14.1","pytest>=6.2.5; pre-commit; extra == ""dev""; pytest-asyncio; extra == ""dev""; tox; extra == ""dev""",3.14.1,No,,No,None,,, +pytest-sugar,Base Package,EY,1.0.0,"{'base_package': 'pytest-sugar==1.0.0', 'dependencies': ['pytest==6.2.0', 'termcolor==2.1.0', 'packaging==21.3']}",pytest >=6.2.0; termcolor >=2.1.0; packaging >=21.3; black ; extra == 'dev'; flake8 ; extra == 'dev'; pre-commit ; extra == 'dev',,pytest >=6.2.0; termcolor >=2.1.0; packaging >=21.3; black ; extra == 'dev'; flake8 ; extra == 'dev'; pre-commit ; extra == 'dev',1.0.0,No,,No,None,,, +python-multipart,Base Package,EY,0.0.19,"{'base_package': 'python-multipart==0.0.19', 'dependencies': []}",,0.0.20,,0.0.20,No,,No,None,,, +recordlinkage,Base Package,EY,0.16,"{'base_package': 'recordlinkage==0.16', 'dependencies': ['jellyfish==1', 'numpy==1.13', 'pandas==1', 'scipy==1', 'scikit-learn==1', 'networkx==2']}","jellyfish (>=1); numpy (>=1.13); pandas (<3,>=1); scipy (>=1); scikit-learn (>=1); joblib; networkx (>=2) ; extra == 'all'; bottleneck ; extra == 'all'; numexpr ; extra == 'all'; sphinx ; extra == 'docs'; nbsphinx ; extra == 'docs'; sphinx-rtd-theme ; extra == 'docs'; ipykernel ; extra == 'docs'; ruff ; extra == 'lint'; pytest ; extra == 'test'",,"jellyfish (>=1); numpy (>=1.13); pandas (<3,>=1); scipy (>=1); scikit-learn (>=1); joblib; networkx (>=2) ; extra == 'all'; bottleneck ; extra == 'all'; numexpr ; extra == 'all'; sphinx ; extra == 'docs'; nbsphinx ; extra == 'docs'; sphinx-rtd-theme ; extra == 'docs'; ipykernel ; extra == 'docs'; ruff ; extra == 'lint'; pytest ; extra == 'test'",0.16,No,,No,None,,, +reportlab,Base Package,EY,4.2.0,"{'base_package': 'reportlab==4.2.0', 'dependencies': ['pillow==9.0.0', 'rl_accel==0.9.0', 'rl_renderPM==4.0.3', 'rlPyCairo==0.2.0', 'freetype-py==2.3.0']}","pillow>=9.0.0; charset-normalizer; rl_accel<1.1,>=0.9.0; extra == ""accel""; rl_renderPM<4.1,>=4.0.3; extra == ""renderpm""; rlPyCairo<1,>=0.2.0; extra == ""pycairo""; freetype-py<2.4,>=2.3.0; extra == ""pycairo""; rlbidi; extra == ""bidi""; uharfbuzz; extra == ""shaping""","4.2.2, 4.2.4, 4.2.5, 4.3.0, 4.3.1, 4.4.0, 4.4.1, 4.4.2","pillow>=9.0.0; charset-normalizer; rl_accel<1.1,>=0.9.0; extra == ""accel""; rl_renderPM<4.1,>=4.0.3; extra == ""renderpm""; rlPyCairo<1,>=0.2.0; extra == ""pycairo""; freetype-py<2.4,>=2.3.0; extra == ""pycairo""; rlbidi; extra == ""bidi""; uharfbuzz; extra == ""shaping""",4.4.2,No,,No,None,,, +retry,Base Package,EY,0.9.2,"{'base_package': 'retry==0.9.2', 'dependencies': ['decorator==3.4.2', 'py==1.4.26']}","decorator (>=3.4.2); py (<2.0.0,>=1.4.26)",,"decorator (>=3.4.2); py (<2.0.0,>=1.4.26)",0.9.2,No,,No,None,,, +ruamel.yaml,Base Package,EY,0.18.6,"{'base_package': 'ruamel.yaml==0.18.6', 'dependencies': ['ruamel.yaml.clib==0.2.7', 'ruamel.yaml.jinja2==0.2', 'mercurial==5.7']}","ruamel.yaml.clib>=0.2.7; platform_python_implementation == ""CPython"" and python_version < ""3.14""; ruamel.yaml.jinja2>=0.2; extra == ""jinja2""; ryd; extra == ""docs""; mercurial>5.7; extra == ""docs""","0.18.7, 0.18.8, 0.18.9, 0.18.10, 0.18.11, 0.18.12, 0.18.13, 0.18.14","ruamel.yaml.clib>=0.2.7; platform_python_implementation == ""CPython"" and python_version < ""3.14""; ruamel.yaml.jinja2>=0.2; extra == ""jinja2""; ryd; extra == ""docs""; mercurial>5.7; extra == ""docs""",0.18.14,No,,No,None,,, +ruamel.yaml.clib,Base Package,EY,0.2.12,"{'base_package': 'ruamel.yaml.clib==0.2.12', 'dependencies': []}",,,,0.2.12,No,,No,None,,, +ruff,Base Package,EY,0.5.7,"{'base_package': 'ruff==0.5.7', 'dependencies': []}",,"0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.6.6, 0.6.7, 0.6.8, 0.6.9, 0.7.0, 0.7.1, 0.7.2, 0.7.3, 0.7.4, 0.8.0, 0.8.1, 0.8.2, 0.8.3, 0.8.4, 0.8.5, 0.8.6, 0.9.0, 0.9.1, 0.9.2, 0.9.3, 0.9.4, 0.9.5, 0.9.6, 0.9.7, 0.9.8, 0.9.9, 0.9.10, 0.10.0, 0.11.0, 0.11.1, 0.11.2, 0.11.3, 0.11.4, 0.11.5, 0.11.6, 0.11.7, 0.11.8, 0.11.9, 0.11.10, 0.11.11, 0.11.12, 0.11.13, 0.12.0",,0.12.0,No,,No,None,,, +scikit-plot,Base Package,EY,0.3.7,"{'base_package': 'scikit-plot==0.3.7', 'dependencies': ['matplotlib==1.4.0', 'scikit-learn==0.18', 'scipy==0.9', 'joblib==0.10']}",matplotlib (>=1.4.0); scikit-learn (>=0.18); scipy (>=0.9); joblib (>=0.10); pytest; extra == 'testing',,matplotlib (>=1.4.0); scikit-learn (>=0.18); scipy (>=0.9); joblib (>=0.10); pytest; extra == 'testing',0.3.7,No,,No,None,,, +seaborn,Base Package,EY,0.13.2,"{'base_package': 'seaborn==0.13.2', 'dependencies': ['numpy==1.20', 'pandas==1.2', 'matplotlib==3.4', 'pydata_sphinx_theme==0.10.0rc2', 'scipy==1.7', 'statsmodels==0.12']}","numpy>=1.20,!=1.24.0; pandas>=1.2; matplotlib>=3.4,!=3.6.1; pytest ; extra == ""dev""; pytest-cov ; extra == ""dev""; pytest-xdist ; extra == ""dev""; flake8 ; extra == ""dev""; mypy ; extra == ""dev""; pandas-stubs ; extra == ""dev""; pre-commit ; extra == ""dev""; flit ; extra == ""dev""; numpydoc ; extra == ""docs""; nbconvert ; extra == ""docs""; ipykernel ; extra == ""docs""; sphinx<6.0.0 ; extra == ""docs""; sphinx-copybutton ; extra == ""docs""; sphinx-issues ; extra == ""docs""; sphinx-design ; extra == ""docs""; pyyaml ; extra == ""docs""; pydata_sphinx_theme==0.10.0rc2 ; extra == ""docs""; scipy>=1.7 ; extra == ""stats""; statsmodels>=0.12 ; extra == ""stats""",,"numpy>=1.20,!=1.24.0; pandas>=1.2; matplotlib>=3.4,!=3.6.1; pytest ; extra == ""dev""; pytest-cov ; extra == ""dev""; pytest-xdist ; extra == ""dev""; flake8 ; extra == ""dev""; mypy ; extra == ""dev""; pandas-stubs ; extra == ""dev""; pre-commit ; extra == ""dev""; flit ; extra == ""dev""; numpydoc ; extra == ""docs""; nbconvert ; extra == ""docs""; ipykernel ; extra == ""docs""; sphinx<6.0.0 ; extra == ""docs""; sphinx-copybutton ; extra == ""docs""; sphinx-issues ; extra == ""docs""; sphinx-design ; extra == ""docs""; pyyaml ; extra == ""docs""; pydata_sphinx_theme==0.10.0rc2 ; extra == ""docs""; scipy>=1.7 ; extra == ""stats""; statsmodels>=0.12 ; extra == ""stats""",0.13.2,No,,No,None,,, +selenium,Base Package,EY,4.21.0,"{'base_package': 'selenium==4.21.0', 'dependencies': ['urllib3==2.4.0', 'trio==0.30.0', 'trio-websocket==0.12.2', 'certifi==2025.4.26', 'typing_extensions==4.13.2', 'websocket-client==1.8.0']}",urllib3[socks]~=2.4.0; trio~=0.30.0; trio-websocket~=0.12.2; certifi>=2025.4.26; typing_extensions~=4.13.2; websocket-client~=1.8.0,"4.22.0, 4.23.0, 4.23.1, 4.24.0, 4.25.0, 4.26.0, 4.26.1, 4.27.0, 4.27.1, 4.28.0, 4.28.1, 4.29.0, 4.30.0, 4.31.0, 4.32.0, 4.33.0",urllib3[socks]~=2.4.0; trio~=0.30.0; trio-websocket~=0.12.2; certifi>=2025.4.26; typing_extensions~=4.13.2; websocket-client~=1.8.0,4.33.0,No,,No,None,,, +sentence-transformers,Base Package,EY,2.2.2,"{'base_package': 'sentence-transformers==2.2.2', 'dependencies': ['transformers==4.41.0', 'torch==1.11.0', 'huggingface-hub==0.20.0', 'typing_extensions==4.5.0', 'accelerate==0.20.3', 'optimum==1.23.1', 'optimum==1.23.1', 'optimum-intel==1.20.0', 'accelerate==0.20.3']}","transformers<5.0.0,>=4.41.0; tqdm; torch>=1.11.0; scikit-learn; scipy; huggingface-hub>=0.20.0; Pillow; typing_extensions>=4.5.0; datasets; extra == ""train""; accelerate>=0.20.3; extra == ""train""; optimum[onnxruntime]>=1.23.1; extra == ""onnx""; optimum[onnxruntime-gpu]>=1.23.1; extra == ""onnx-gpu""; optimum-intel[openvino]>=1.20.0; extra == ""openvino""; datasets; extra == ""dev""; accelerate>=0.20.3; extra == ""dev""; pre-commit; extra == ""dev""; pytest; extra == ""dev""; pytest-cov; extra == ""dev""; peft; extra == ""dev""","2.3.0, 2.3.1, 2.4.0, 2.5.0, 2.5.1, 2.6.0, 2.6.1, 2.7.0, 3.0.0, 3.0.1, 3.1.0, 3.1.1, 3.2.0, 3.2.1, 3.3.0, 3.3.1, 3.4.0, 3.4.1, 4.0.0, 4.0.1, 4.0.2, 4.1.0","transformers<5.0.0,>=4.41.0; tqdm; torch>=1.11.0; scikit-learn; scipy; huggingface-hub>=0.20.0; Pillow; typing_extensions>=4.5.0; datasets; extra == ""train""; accelerate>=0.20.3; extra == ""train""; optimum[onnxruntime]>=1.23.1; extra == ""onnx""; optimum[onnxruntime-gpu]>=1.23.1; extra == ""onnx-gpu""; optimum-intel[openvino]>=1.20.0; extra == ""openvino""; datasets; extra == ""dev""; accelerate>=0.20.3; extra == ""dev""; pre-commit; extra == ""dev""; pytest; extra == ""dev""; pytest-cov; extra == ""dev""; peft; extra == ""dev""",4.1.0,No,,No,None,,, +sktime,Base Package,EY,0.26.0,"{'base_package': 'sktime==0.26.0', 'dependencies': ['joblib==1.2.0', 'numpy==1.21', 'pandas==1.1', 'scikit-base==0.6.1', 'scikit-learn==0.24', 'scipy==1.2', 'arch==5.6', 'autots==0.6.1', 'dask==2024.8.2', 'esig==0.9.7', 'filterpy==1.4.5', 'gluonts==0.9', 'hmmlearn==0.2.7', 'matplotlib==3.3.2', 'numba==0.53', 'pmdarima==1.8', 'polars==0.20', 'prophet==1.1', 'pyod==0.8', 'ray==2.40.0', 'scikit_posthocs==0.6.5', 'seaborn==0.11', 'skforecast==0.12.1', 'skpro==2', 'statsforecast==1.0.0', 'statsmodels==0.12.1', 'stumpy==1.5.1', 'tbats==1.1', 'temporian==0.7.0', 'tensorflow==2', 'tsfresh==0.17', 'tslearn==0.5.2', 'u8darts==0.29.0', 'arch==5.6', 'autots==0.6.1', 'dask==2024.8.2', 'esig==0.9.7', 'filterpy==1.4.5', 'gluonts==0.9', 'hmmlearn==0.2.7', 'matplotlib==3.3.2', 'numba==0.53', 'pmdarima==1.8', 'polars==0.20', 'prophet==1.1', 'pyod==0.8', 'ray==2.40.0', 'scikit_posthocs==0.6.5', 'seaborn==0.11', 'skforecast==0.12.1', 'skpro==2', 'statsforecast==1.0.0', 'statsmodels==0.12.1', 'stumpy==1.5.1', 'tbats==1.1', 'temporian==0.7.0', 'tensorflow==2', 'tsfresh==0.17', 'tslearn==0.5.2', 'u8darts==0.29.0', 'dtw-python==1.3', 'numba==0.53', 'hmmlearn==0.2.7', 'numba==0.53', 'pyod==0.8', 'esig==0.9.7', 'numba==0.53', 'tensorflow==2', 'tsfresh==0.17', 'numba==0.53', 'tslearn==0.5.2', 'hmmlearn==0.2.7', 'numba==0.53', 'pyod==0.8', 'arch==5.6', 'autots==0.6.1', 'pmdarima==1.8', 'prophet==1.1', 'skforecast==0.12.1', 'skpro==2', 'statsforecast==1.0.0', 'statsmodels==0.12.1', 'tbats==1.1', 'tensorflow==2', 'seasonal==0.3.1', 'statsmodels==0.12.1', 'numba==0.53', 'tensorflow==2', 'esig==0.9.7', 'filterpy==1.4.5', 'holidays==0.29', 'mne==1.5', 'numba==0.53', 'pycatch22==0.4', 'statsmodels==0.12.1', 'stumpy==1.5.1', 'temporian==0.7.0', 'tsfresh==0.17', 'nbsphinx==0.8.6', 'pytest==7.4', 'pytest-randomly==3.15', 'pytest-timeout==2.1', 'pytest-xdist==3.3', 'neuralforecast==1.6.4', 'peft==0.10.0', 'tensorflow==2', 'pykan==0.2.1', 'pytorch-forecasting==1.0.0', 'lightning==2.0', 'gluonts==0.14.3', 'einops==0.7.0', 'huggingface-hub==0.23.0']}","joblib<1.6,>=1.2.0; numpy<2.4,>=1.21; packaging; pandas<2.4.0,>=1.1; scikit-base<0.13.0,>=0.6.1; scikit-learn<1.8.0,>=0.24; scipy<2.0.0,>=1.2; arch<7.1.0,>=5.6; python_version < ""3.13"" and extra == ""all-extras""; autots<0.7,>=0.6.1; extra == ""all-extras""; cloudpickle; python_version < ""3.13"" and extra == ""all-extras""; dash!=2.9.0; python_version < ""3.13"" and extra == ""all-extras""; dask<2025.2.1,>2024.8.2; (extra == ""dataframe"" and python_version < ""3.13"") and extra == ""all-extras""; dtaidistance<2.4; python_version < ""3.13"" and extra == ""all-extras""; dtw-python; python_version < ""3.13"" and extra == ""all-extras""; esig==0.9.7; python_version < ""3.10"" and extra == ""all-extras""; filterpy>=1.4.5; python_version < ""3.11"" and extra == ""all-extras""; gluonts>=0.9; python_version < ""3.13"" and extra == ""all-extras""; h5py; python_version < ""3.12"" and extra == ""all-extras""; hmmlearn>=0.2.7; python_version < ""3.11"" and extra == ""all-extras""; holidays; python_version < ""3.13"" and extra == ""all-extras""; matplotlib!=3.9.1,>=3.3.2; python_version < ""3.13"" and extra == ""all-extras""; mne; python_version < ""3.13"" and extra == ""all-extras""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""all-extras""; optuna<4.5; extra == ""all-extras""; pmdarima!=1.8.1,<3.0.0,>=1.8; python_version < ""3.12"" and extra == ""all-extras""; polars[pandas]<2.0,>=0.20; python_version < ""3.13"" and extra == ""all-extras""; prophet>=1.1; python_version < ""3.12"" and extra == ""all-extras""; pycatch22<0.4.6; python_version < ""3.13"" and extra == ""all-extras""; pyod>=0.8; python_version < ""3.11"" and extra == ""all-extras""; pyts<0.14.0; python_version < ""3.12"" and extra == ""all-extras""; ray>=2.40.0; python_version < ""3.13"" and extra == ""all-extras""; scikit-optimize; python_version < ""3.13"" and extra == ""all-extras""; scikit_posthocs>=0.6.5; python_version < ""3.13"" and extra == ""all-extras""; seaborn>=0.11; python_version < ""3.13"" and extra == ""all-extras""; seasonal; python_version < ""3.13"" and extra == ""all-extras""; simdkalman; extra == ""all-extras""; skforecast<0.15,>=0.12.1; python_version < ""3.13"" and extra == ""all-extras""; skpro<2.10.0,>=2; extra == ""all-extras""; statsforecast<2.1.0,>=1.0.0; python_version < ""3.13"" and extra == ""all-extras""; statsmodels>=0.12.1; python_version < ""3.13"" and extra == ""all-extras""; stumpy>=1.5.1; python_version < ""3.11"" and extra == ""all-extras""; tbats>=1.1; python_version < ""3.12"" and extra == ""all-extras""; temporian!=0.8.0,<0.9.0,>=0.7.0; (python_version < ""3.12"" and sys_platform != ""win32"" and platform_machine != ""aarch64"") and extra == ""all-extras""; tensorflow<2.20,>=2; python_version < ""3.13"" and extra == ""all-extras""; tsfresh>=0.17; python_version < ""3.12"" and extra == ""all-extras""; tslearn!=0.6.0,<0.7.0,>=0.5.2; python_version < ""3.11"" and extra == ""all-extras""; u8darts<0.32.0,>=0.29.0; python_version < ""3.13"" and extra == ""all-extras""; xarray; python_version < ""3.13"" and extra == ""all-extras""; arch<7.1.0,>=5.6; python_version < ""3.13"" and extra == ""all-extras-pandas2""; autots<0.7,>=0.6.1; python_version < ""3.13"" and extra == ""all-extras-pandas2""; cloudpickle; python_version < ""3.13"" and extra == ""all-extras-pandas2""; dash!=2.9.0; python_version < ""3.13"" and extra == ""all-extras-pandas2""; dask<2025.2.1,>2024.8.2; (extra == ""dataframe"" and python_version < ""3.13"") and extra == ""all-extras-pandas2""; dtaidistance<2.4; python_version < ""3.13"" and extra == ""all-extras-pandas2""; dtw-python; python_version < ""3.13"" and extra == ""all-extras-pandas2""; esig==0.9.7; python_version < ""3.10"" and extra == ""all-extras-pandas2""; filterpy>=1.4.5; python_version < ""3.11"" and extra == ""all-extras-pandas2""; gluonts>=0.9; python_version < ""3.13"" and extra == ""all-extras-pandas2""; h5py; python_version < ""3.12"" and extra == ""all-extras-pandas2""; hmmlearn>=0.2.7; python_version < ""3.11"" and extra == ""all-extras-pandas2""; holidays; python_version < ""3.13"" and extra == ""all-extras-pandas2""; matplotlib!=3.9.1,>=3.3.2; python_version < ""3.13"" and extra == ""all-extras-pandas2""; mne; python_version < ""3.13"" and extra == ""all-extras-pandas2""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""all-extras-pandas2""; optuna<4.5; extra == ""all-extras-pandas2""; pmdarima!=1.8.1,<3.0.0,>=1.8; python_version < ""3.12"" and extra == ""all-extras-pandas2""; polars[pandas]<2.0,>=0.20; python_version < ""3.13"" and extra == ""all-extras-pandas2""; prophet>=1.1; python_version < ""3.12"" and extra == ""all-extras-pandas2""; pycatch22<0.4.6; python_version < ""3.13"" and extra == ""all-extras-pandas2""; pyod>=0.8; python_version < ""3.11"" and extra == ""all-extras-pandas2""; ray>=2.40.0; python_version < ""3.13"" and extra == ""all-extras-pandas2""; scikit_posthocs>=0.6.5; python_version < ""3.13"" and extra == ""all-extras-pandas2""; seaborn>=0.11; python_version < ""3.13"" and extra == ""all-extras-pandas2""; seasonal; python_version < ""3.13"" and extra == ""all-extras-pandas2""; simdkalman; extra == ""all-extras-pandas2""; skforecast<0.15,>=0.12.1; python_version < ""3.13"" and extra == ""all-extras-pandas2""; skpro<2.10.0,>=2; extra == ""all-extras-pandas2""; statsforecast<2.1.0,>=1.0.0; python_version < ""3.13"" and extra == ""all-extras-pandas2""; statsmodels>=0.12.1; python_version < ""3.13"" and extra == ""all-extras-pandas2""; stumpy>=1.5.1; python_version < ""3.11"" and extra == ""all-extras-pandas2""; tbats>=1.1; python_version < ""3.12"" and extra == ""all-extras-pandas2""; temporian!=0.8.0,<0.9.0,>=0.7.0; (python_version < ""3.12"" and sys_platform != ""win32"" and platform_machine != ""aarch64"") and extra == ""all-extras-pandas2""; tensorflow<2.20,>=2; python_version < ""3.13"" and extra == ""all-extras-pandas2""; tsfresh>=0.17; python_version < ""3.12"" and extra == ""all-extras-pandas2""; tslearn!=0.6.0,<0.7.0,>=0.5.2; python_version < ""3.11"" and extra == ""all-extras-pandas2""; u8darts<0.32.0,>=0.29.0; python_version < ""3.13"" and extra == ""all-extras-pandas2""; xarray; python_version < ""3.13"" and extra == ""all-extras-pandas2""; dtaidistance<2.4; python_version < ""3.13"" and extra == ""alignment""; dtw-python<1.6,>=1.3; python_version < ""3.13"" and extra == ""alignment""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""alignment""; hmmlearn<0.4,>=0.2.7; python_version < ""3.13"" and extra == ""annotation""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""annotation""; pyod<1.2,>=0.8; python_version < ""3.12"" and extra == ""annotation""; esig<0.10,>=0.9.7; python_version < ""3.11"" and extra == ""classification""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""classification""; tensorflow<2.20,>=2; python_version < ""3.13"" and extra == ""classification""; tsfresh<0.21,>=0.17; python_version < ""3.12"" and extra == ""classification""; networkx<3.5; extra == ""clustering""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""clustering""; tslearn!=0.6.0,<0.7.0,>=0.5.2; python_version < ""3.12"" and extra == ""clustering""; ts2vg<1.3; python_version < ""3.13"" and extra == ""clustering""; hmmlearn<0.4,>=0.2.7; python_version < ""3.13"" and extra == ""detection""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""detection""; pyod<1.2,>=0.8; python_version < ""3.12"" and extra == ""detection""; arch<7.1,>=5.6; python_version < ""3.13"" and extra == ""forecasting""; autots<0.7,>=0.6.1; python_version < ""3.13"" and extra == ""forecasting""; pmdarima!=1.8.1,<2.1,>=1.8; python_version < ""3.12"" and extra == ""forecasting""; prophet<1.2,>=1.1; python_version < ""3.13"" and extra == ""forecasting""; skforecast<0.15,>=0.12.1; python_version < ""3.13"" and extra == ""forecasting""; skpro<2.10.0,>=2; extra == ""forecasting""; statsforecast<2.1.0,>=1.0.0; python_version < ""3.13"" and extra == ""forecasting""; statsmodels<0.15,>=0.12.1; python_version < ""3.13"" and extra == ""forecasting""; tbats<1.2,>=1.1; python_version < ""3.12"" and extra == ""forecasting""; tensorflow<2.20,>=2; python_version < ""3.13"" and extra == ""networks""; seasonal<0.4,>=0.3.1; python_version < ""3.13"" and extra == ""param-est""; statsmodels<0.15,>=0.12.1; python_version < ""3.13"" and extra == ""param-est""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""regression""; tensorflow<2.20,>=2; python_version < ""3.13"" and extra == ""regression""; esig<0.10,>=0.9.7; python_version < ""3.11"" and extra == ""transformations""; filterpy<1.5,>=1.4.5; python_version < ""3.13"" and extra == ""transformations""; holidays<0.59,>=0.29; python_version < ""3.13"" and extra == ""transformations""; mne<1.9,>=1.5; python_version < ""3.13"" and extra == ""transformations""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""transformations""; pycatch22<0.4.6,>=0.4; python_version < ""3.13"" and extra == ""transformations""; simdkalman; extra == ""transformations""; statsmodels<0.15,>=0.12.1; python_version < ""3.13"" and extra == ""transformations""; stumpy<1.13,>=1.5.1; python_version < ""3.12"" and extra == ""transformations""; temporian!=0.8.0,<0.9.0,>=0.7.0; (python_version < ""3.12"" and sys_platform != ""win32"" and platform_machine != ""aarch64"") and extra == ""transformations""; tsfresh<0.21,>=0.17; python_version < ""3.12"" and extra == ""transformations""; backoff; extra == ""dev""; httpx; extra == ""dev""; pre-commit; extra == ""dev""; pytest; extra == ""dev""; pytest-randomly; extra == ""dev""; pytest-timeout; extra == ""dev""; pytest-xdist; extra == ""dev""; wheel; extra == ""dev""; jupyter; extra == ""docs""; myst-parser; extra == ""docs""; nbsphinx>=0.8.6; extra == ""docs""; numpydoc; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; Sphinx!=7.2.0,<9.0.0; extra == ""docs""; sphinx-copybutton; extra == ""docs""; sphinx-design<0.7.0; extra == ""docs""; sphinx-gallery<0.20.0; extra == ""docs""; sphinx-issues<6.0.0; extra == ""docs""; tabulate; extra == ""docs""; pytest<8.5,>=7.4; extra == ""tests""; pytest-randomly<3.17,>=3.15; extra == ""tests""; pytest-timeout<2.5,>=2.1; extra == ""tests""; pytest-xdist<3.8,>=3.3; extra == ""tests""; jupyter; extra == ""binder""; pandas<2.0.0; extra == ""binder""; skchange; extra == ""binder""; mrseql<0.0.3; extra == ""cython-extras""; mrsqm; python_version < ""3.11"" and extra == ""cython-extras""; numba<0.62; extra == ""cython-extras""; rdata; extra == ""datasets""; requests; extra == ""datasets""; FrEIA; python_version < ""3.12"" and extra == ""dl""; neuralforecast<1.8.0,>=1.6.4; python_version < ""3.11"" and extra == ""dl""; peft<0.14.0,>=0.10.0; python_version < ""3.12"" and extra == ""dl""; tensorflow<2.20,>=2; python_version < ""3.13"" and extra == ""dl""; torch; (sys_platform != ""darwin"" or python_version != ""3.13"") and extra == ""dl""; transformers[torch]<4.41.0; python_version < ""3.12"" and extra == ""dl""; pykan<0.2.9,>=0.2.1; python_version > ""3.9.7"" and extra == ""dl""; pytorch-forecasting<1.5.0,>=1.0.0; (sys_platform != ""darwin"" or python_version != ""3.13"") and extra == ""dl""; lightning>=2.0; python_version < ""3.12"" and extra == ""dl""; gluonts>=0.14.3; python_version < ""3.12"" and extra == ""dl""; einops>0.7.0; python_version < ""3.12"" and extra == ""dl""; huggingface-hub>=0.23.0; python_version < ""3.12"" and extra == ""dl""; accelerate; extra == ""dl""; tqdm; extra == ""dl""; hydra-core; python_version < ""3.13"" and extra == ""dl""; mlflow<4.0; extra == ""mlflow""; mlflow<3.0; extra == ""mlflow2""; boto3; extra == ""mlflow-tests""; botocore; extra == ""mlflow-tests""; mlflow<4.0; extra == ""mlflow-tests""; moto; extra == ""mlflow-tests""; numpy<2.0.0; extra == ""numpy1""; pandas<2.0.0; extra == ""pandas1""; catboost; python_version < ""3.13"" and extra == ""compatibility-tests""","0.26.1, 0.27.0, 0.27.1, 0.28.0, 0.28.1, 0.29.0, 0.29.1, 0.30.0, 0.30.1, 0.30.2, 0.31.0, 0.31.1, 0.31.2, 0.32.0, 0.32.1, 0.32.2, 0.32.3, 0.32.4, 0.33.0, 0.33.1, 0.33.2, 0.34.0, 0.34.1, 0.35.0, 0.35.1, 0.36.0, 0.36.1, 0.37.0, 0.37.1, 0.38.0","joblib<1.6,>=1.2.0; numpy<2.4,>=1.21; packaging; pandas<2.4.0,>=1.1; scikit-base<0.13.0,>=0.6.1; scikit-learn<1.8.0,>=0.24; scipy<2.0.0,>=1.2; arch<7.1.0,>=5.6; python_version < ""3.13"" and extra == ""all-extras""; autots<0.7,>=0.6.1; extra == ""all-extras""; cloudpickle; python_version < ""3.13"" and extra == ""all-extras""; dash!=2.9.0; python_version < ""3.13"" and extra == ""all-extras""; dask<2025.2.1,>2024.8.2; (extra == ""dataframe"" and python_version < ""3.13"") and extra == ""all-extras""; dtaidistance<2.4; python_version < ""3.13"" and extra == ""all-extras""; dtw-python; python_version < ""3.13"" and extra == ""all-extras""; esig==0.9.7; python_version < ""3.10"" and extra == ""all-extras""; filterpy>=1.4.5; python_version < ""3.11"" and extra == ""all-extras""; gluonts>=0.9; python_version < ""3.13"" and extra == ""all-extras""; h5py; python_version < ""3.12"" and extra == ""all-extras""; hmmlearn>=0.2.7; python_version < ""3.11"" and extra == ""all-extras""; holidays; python_version < ""3.13"" and extra == ""all-extras""; matplotlib!=3.9.1,>=3.3.2; python_version < ""3.13"" and extra == ""all-extras""; mne; python_version < ""3.13"" and extra == ""all-extras""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""all-extras""; optuna<4.5; extra == ""all-extras""; pmdarima!=1.8.1,<3.0.0,>=1.8; python_version < ""3.12"" and extra == ""all-extras""; polars[pandas]<2.0,>=0.20; python_version < ""3.13"" and extra == ""all-extras""; prophet>=1.1; python_version < ""3.12"" and extra == ""all-extras""; pycatch22<0.4.6; python_version < ""3.13"" and extra == ""all-extras""; pyod>=0.8; python_version < ""3.11"" and extra == ""all-extras""; pyts<0.14.0; python_version < ""3.12"" and extra == ""all-extras""; ray>=2.40.0; python_version < ""3.13"" and extra == ""all-extras""; scikit-optimize; python_version < ""3.13"" and extra == ""all-extras""; scikit_posthocs>=0.6.5; python_version < ""3.13"" and extra == ""all-extras""; seaborn>=0.11; python_version < ""3.13"" and extra == ""all-extras""; seasonal; python_version < ""3.13"" and extra == ""all-extras""; simdkalman; extra == ""all-extras""; skforecast<0.15,>=0.12.1; python_version < ""3.13"" and extra == ""all-extras""; skpro<2.10.0,>=2; extra == ""all-extras""; statsforecast<2.1.0,>=1.0.0; python_version < ""3.13"" and extra == ""all-extras""; statsmodels>=0.12.1; python_version < ""3.13"" and extra == ""all-extras""; stumpy>=1.5.1; python_version < ""3.11"" and extra == ""all-extras""; tbats>=1.1; python_version < ""3.12"" and extra == ""all-extras""; temporian!=0.8.0,<0.9.0,>=0.7.0; (python_version < ""3.12"" and sys_platform != ""win32"" and platform_machine != ""aarch64"") and extra == ""all-extras""; tensorflow<2.20,>=2; python_version < ""3.13"" and extra == ""all-extras""; tsfresh>=0.17; python_version < ""3.12"" and extra == ""all-extras""; tslearn!=0.6.0,<0.7.0,>=0.5.2; python_version < ""3.11"" and extra == ""all-extras""; u8darts<0.32.0,>=0.29.0; python_version < ""3.13"" and extra == ""all-extras""; xarray; python_version < ""3.13"" and extra == ""all-extras""; arch<7.1.0,>=5.6; python_version < ""3.13"" and extra == ""all-extras-pandas2""; autots<0.7,>=0.6.1; python_version < ""3.13"" and extra == ""all-extras-pandas2""; cloudpickle; python_version < ""3.13"" and extra == ""all-extras-pandas2""; dash!=2.9.0; python_version < ""3.13"" and extra == ""all-extras-pandas2""; dask<2025.2.1,>2024.8.2; (extra == ""dataframe"" and python_version < ""3.13"") and extra == ""all-extras-pandas2""; dtaidistance<2.4; python_version < ""3.13"" and extra == ""all-extras-pandas2""; dtw-python; python_version < ""3.13"" and extra == ""all-extras-pandas2""; esig==0.9.7; python_version < ""3.10"" and extra == ""all-extras-pandas2""; filterpy>=1.4.5; python_version < ""3.11"" and extra == ""all-extras-pandas2""; gluonts>=0.9; python_version < ""3.13"" and extra == ""all-extras-pandas2""; h5py; python_version < ""3.12"" and extra == ""all-extras-pandas2""; hmmlearn>=0.2.7; python_version < ""3.11"" and extra == ""all-extras-pandas2""; holidays; python_version < ""3.13"" and extra == ""all-extras-pandas2""; matplotlib!=3.9.1,>=3.3.2; python_version < ""3.13"" and extra == ""all-extras-pandas2""; mne; python_version < ""3.13"" and extra == ""all-extras-pandas2""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""all-extras-pandas2""; optuna<4.5; extra == ""all-extras-pandas2""; pmdarima!=1.8.1,<3.0.0,>=1.8; python_version < ""3.12"" and extra == ""all-extras-pandas2""; polars[pandas]<2.0,>=0.20; python_version < ""3.13"" and extra == ""all-extras-pandas2""; prophet>=1.1; python_version < ""3.12"" and extra == ""all-extras-pandas2""; pycatch22<0.4.6; python_version < ""3.13"" and extra == ""all-extras-pandas2""; pyod>=0.8; python_version < ""3.11"" and extra == ""all-extras-pandas2""; ray>=2.40.0; python_version < ""3.13"" and extra == ""all-extras-pandas2""; scikit_posthocs>=0.6.5; python_version < ""3.13"" and extra == ""all-extras-pandas2""; seaborn>=0.11; python_version < ""3.13"" and extra == ""all-extras-pandas2""; seasonal; python_version < ""3.13"" and extra == ""all-extras-pandas2""; simdkalman; extra == ""all-extras-pandas2""; skforecast<0.15,>=0.12.1; python_version < ""3.13"" and extra == ""all-extras-pandas2""; skpro<2.10.0,>=2; extra == ""all-extras-pandas2""; statsforecast<2.1.0,>=1.0.0; python_version < ""3.13"" and extra == ""all-extras-pandas2""; statsmodels>=0.12.1; python_version < ""3.13"" and extra == ""all-extras-pandas2""; stumpy>=1.5.1; python_version < ""3.11"" and extra == ""all-extras-pandas2""; tbats>=1.1; python_version < ""3.12"" and extra == ""all-extras-pandas2""; temporian!=0.8.0,<0.9.0,>=0.7.0; (python_version < ""3.12"" and sys_platform != ""win32"" and platform_machine != ""aarch64"") and extra == ""all-extras-pandas2""; tensorflow<2.20,>=2; python_version < ""3.13"" and extra == ""all-extras-pandas2""; tsfresh>=0.17; python_version < ""3.12"" and extra == ""all-extras-pandas2""; tslearn!=0.6.0,<0.7.0,>=0.5.2; python_version < ""3.11"" and extra == ""all-extras-pandas2""; u8darts<0.32.0,>=0.29.0; python_version < ""3.13"" and extra == ""all-extras-pandas2""; xarray; python_version < ""3.13"" and extra == ""all-extras-pandas2""; dtaidistance<2.4; python_version < ""3.13"" and extra == ""alignment""; dtw-python<1.6,>=1.3; python_version < ""3.13"" and extra == ""alignment""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""alignment""; hmmlearn<0.4,>=0.2.7; python_version < ""3.13"" and extra == ""annotation""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""annotation""; pyod<1.2,>=0.8; python_version < ""3.12"" and extra == ""annotation""; esig<0.10,>=0.9.7; python_version < ""3.11"" and extra == ""classification""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""classification""; tensorflow<2.20,>=2; python_version < ""3.13"" and extra == ""classification""; tsfresh<0.21,>=0.17; python_version < ""3.12"" and extra == ""classification""; networkx<3.5; extra == ""clustering""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""clustering""; tslearn!=0.6.0,<0.7.0,>=0.5.2; python_version < ""3.12"" and extra == ""clustering""; ts2vg<1.3; python_version < ""3.13"" and extra == ""clustering""; hmmlearn<0.4,>=0.2.7; python_version < ""3.13"" and extra == ""detection""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""detection""; pyod<1.2,>=0.8; python_version < ""3.12"" and extra == ""detection""; arch<7.1,>=5.6; python_version < ""3.13"" and extra == ""forecasting""; autots<0.7,>=0.6.1; python_version < ""3.13"" and extra == ""forecasting""; pmdarima!=1.8.1,<2.1,>=1.8; python_version < ""3.12"" and extra == ""forecasting""; prophet<1.2,>=1.1; python_version < ""3.13"" and extra == ""forecasting""; skforecast<0.15,>=0.12.1; python_version < ""3.13"" and extra == ""forecasting""; skpro<2.10.0,>=2; extra == ""forecasting""; statsforecast<2.1.0,>=1.0.0; python_version < ""3.13"" and extra == ""forecasting""; statsmodels<0.15,>=0.12.1; python_version < ""3.13"" and extra == ""forecasting""; tbats<1.2,>=1.1; python_version < ""3.12"" and extra == ""forecasting""; tensorflow<2.20,>=2; python_version < ""3.13"" and extra == ""networks""; seasonal<0.4,>=0.3.1; python_version < ""3.13"" and extra == ""param-est""; statsmodels<0.15,>=0.12.1; python_version < ""3.13"" and extra == ""param-est""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""regression""; tensorflow<2.20,>=2; python_version < ""3.13"" and extra == ""regression""; esig<0.10,>=0.9.7; python_version < ""3.11"" and extra == ""transformations""; filterpy<1.5,>=1.4.5; python_version < ""3.13"" and extra == ""transformations""; holidays<0.59,>=0.29; python_version < ""3.13"" and extra == ""transformations""; mne<1.9,>=1.5; python_version < ""3.13"" and extra == ""transformations""; numba<0.62,>=0.53; python_version < ""3.13"" and extra == ""transformations""; pycatch22<0.4.6,>=0.4; python_version < ""3.13"" and extra == ""transformations""; simdkalman; extra == ""transformations""; statsmodels<0.15,>=0.12.1; python_version < ""3.13"" and extra == ""transformations""; stumpy<1.13,>=1.5.1; python_version < ""3.12"" and extra == ""transformations""; temporian!=0.8.0,<0.9.0,>=0.7.0; (python_version < ""3.12"" and sys_platform != ""win32"" and platform_machine != ""aarch64"") and extra == ""transformations""; tsfresh<0.21,>=0.17; python_version < ""3.12"" and extra == ""transformations""; backoff; extra == ""dev""; httpx; extra == ""dev""; pre-commit; extra == ""dev""; pytest; extra == ""dev""; pytest-randomly; extra == ""dev""; pytest-timeout; extra == ""dev""; pytest-xdist; extra == ""dev""; wheel; extra == ""dev""; jupyter; extra == ""docs""; myst-parser; extra == ""docs""; nbsphinx>=0.8.6; extra == ""docs""; numpydoc; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; Sphinx!=7.2.0,<9.0.0; extra == ""docs""; sphinx-copybutton; extra == ""docs""; sphinx-design<0.7.0; extra == ""docs""; sphinx-gallery<0.20.0; extra == ""docs""; sphinx-issues<6.0.0; extra == ""docs""; tabulate; extra == ""docs""; pytest<8.5,>=7.4; extra == ""tests""; pytest-randomly<3.17,>=3.15; extra == ""tests""; pytest-timeout<2.5,>=2.1; extra == ""tests""; pytest-xdist<3.8,>=3.3; extra == ""tests""; jupyter; extra == ""binder""; pandas<2.0.0; extra == ""binder""; skchange; extra == ""binder""; mrseql<0.0.3; extra == ""cython-extras""; mrsqm; python_version < ""3.11"" and extra == ""cython-extras""; numba<0.62; extra == ""cython-extras""; rdata; extra == ""datasets""; requests; extra == ""datasets""; FrEIA; python_version < ""3.12"" and extra == ""dl""; neuralforecast<1.8.0,>=1.6.4; python_version < ""3.11"" and extra == ""dl""; peft<0.14.0,>=0.10.0; python_version < ""3.12"" and extra == ""dl""; tensorflow<2.20,>=2; python_version < ""3.13"" and extra == ""dl""; torch; (sys_platform != ""darwin"" or python_version != ""3.13"") and extra == ""dl""; transformers[torch]<4.41.0; python_version < ""3.12"" and extra == ""dl""; pykan<0.2.9,>=0.2.1; python_version > ""3.9.7"" and extra == ""dl""; pytorch-forecasting<1.5.0,>=1.0.0; (sys_platform != ""darwin"" or python_version != ""3.13"") and extra == ""dl""; lightning>=2.0; python_version < ""3.12"" and extra == ""dl""; gluonts>=0.14.3; python_version < ""3.12"" and extra == ""dl""; einops>0.7.0; python_version < ""3.12"" and extra == ""dl""; huggingface-hub>=0.23.0; python_version < ""3.12"" and extra == ""dl""; accelerate; extra == ""dl""; tqdm; extra == ""dl""; hydra-core; python_version < ""3.13"" and extra == ""dl""; mlflow<4.0; extra == ""mlflow""; mlflow<3.0; extra == ""mlflow2""; boto3; extra == ""mlflow-tests""; botocore; extra == ""mlflow-tests""; mlflow<4.0; extra == ""mlflow-tests""; moto; extra == ""mlflow-tests""; numpy<2.0.0; extra == ""numpy1""; pandas<2.0.0; extra == ""pandas1""; catboost; python_version < ""3.13"" and extra == ""compatibility-tests""",0.38.0,No,,No,None,,, +streamlit,Base Package,EY,1.37.1,"{'base_package': 'streamlit==1.37.1', 'dependencies': ['altair==4.0', 'blinker==1.5.0', 'cachetools==4.0', 'click==7.0', 'numpy==1.23', 'packaging==20', 'pandas==1.4.0', 'pillow==7.1.0', 'protobuf==3.20', 'pyarrow==7.0', 'requests==2.27', 'tenacity==8.1.0', 'toml==0.10.1', 'typing-extensions==4.4.0', 'watchdog==2.1.5', 'gitpython==3.0.7', 'pydeck==0.8.0b4', 'tornado==6.0.3', 'snowflake-snowpark-python==1.17.0', 'snowflake-connector-python==3.3.0']}","altair<6,>=4.0; blinker<2,>=1.5.0; cachetools<7,>=4.0; click<9,>=7.0; numpy<3,>=1.23; packaging<26,>=20; pandas<3,>=1.4.0; pillow<12,>=7.1.0; protobuf<7,>=3.20; pyarrow>=7.0; requests<3,>=2.27; tenacity<10,>=8.1.0; toml<2,>=0.10.1; typing-extensions<5,>=4.4.0; watchdog<7,>=2.1.5; platform_system != ""Darwin""; gitpython!=3.1.19,<4,>=3.0.7; pydeck<1,>=0.8.0b4; tornado!=6.5.0,<7,>=6.0.3; snowflake-snowpark-python[modin]>=1.17.0; python_version < ""3.12"" and extra == ""snowflake""; snowflake-connector-python>=3.3.0; python_version < ""3.12"" and extra == ""snowflake""","1.38.0, 1.39.0, 1.39.1, 1.40.0, 1.40.1, 1.40.2, 1.41.0, 1.41.1, 1.42.0, 1.42.1, 1.42.2, 1.43.0, 1.43.1, 1.43.2, 1.44.0, 1.44.1, 1.45.0, 1.45.1, 1.46.0","altair<6,>=4.0; blinker<2,>=1.5.0; cachetools<7,>=4.0; click<9,>=7.0; numpy<3,>=1.23; packaging<26,>=20; pandas<3,>=1.4.0; pillow<12,>=7.1.0; protobuf<7,>=3.20; pyarrow>=7.0; requests<3,>=2.27; tenacity<10,>=8.1.0; toml<2,>=0.10.1; typing-extensions<5,>=4.4.0; watchdog<7,>=2.1.5; platform_system != ""Darwin""; gitpython!=3.1.19,<4,>=3.0.7; pydeck<1,>=0.8.0b4; tornado!=6.5.0,<7,>=6.0.3; snowflake-snowpark-python[modin]>=1.17.0; python_version < ""3.12"" and extra == ""snowflake""; snowflake-connector-python>=3.3.0; python_version < ""3.12"" and extra == ""snowflake""",1.46.0,No,,No,None,,, +tabula-py,Base Package,EY,2.1.1,"{'base_package': 'tabula-py==2.1.1', 'dependencies': ['pandas==0.25.3', 'numpy==1.24.4', 'sphinx==7.1.2', 'sphinx-rtd-theme==1.3.0', 'Jinja2==3.1.2']}","pandas>=0.25.3; numpy>1.24.4; distro; pytest; extra == ""dev""; ruff; extra == ""dev""; mypy; extra == ""dev""; Flake8-pyproject; extra == ""dev""; sphinx==7.1.2; extra == ""doc""; sphinx-rtd-theme==1.3.0; extra == ""doc""; Jinja2==3.1.2; extra == ""doc""; jpype1; extra == ""jpype""; pytest; extra == ""test""","2.2.0, 2.3.0, 2.3.1, 2.4.0, 2.5.0, 2.5.1, 2.6.0, 2.7.0rc0, 2.7.0, 2.8.0rc0, 2.8.0, 2.8.1, 2.8.2rc0, 2.8.2, 2.9.0rc0, 2.9.0, 2.9.1rc0, 2.9.1, 2.9.2, 2.9.3, 2.10.0rc1, 2.10.0","pandas>=0.25.3; numpy>1.24.4; distro; pytest; extra == ""dev""; ruff; extra == ""dev""; mypy; extra == ""dev""; Flake8-pyproject; extra == ""dev""; sphinx==7.1.2; extra == ""doc""; sphinx-rtd-theme==1.3.0; extra == ""doc""; Jinja2==3.1.2; extra == ""doc""; jpype1; extra == ""jpype""; pytest; extra == ""test""",2.10.0,No,,No,None,,, +tbats,Base Package,EY,1.1.3,"{'base_package': 'tbats==1.1.3', 'dependencies': []}",numpy; scipy; pmdarima; scikit-learn; pip-tools ; extra == 'dev'; pytest ; extra == 'dev'; rpy2 ; extra == 'dev',,numpy; scipy; pmdarima; scikit-learn; pip-tools ; extra == 'dev'; pytest ; extra == 'dev'; rpy2 ; extra == 'dev',1.1.3,No,,No,None,,, +tensorflow,Base Package,EY,2.16.1,"{'base_package': 'tensorflow==2.16.1', 'dependencies': ['absl-py==1.0.0', 'astunparse==1.6.0', 'flatbuffers==24.3.25', 'gast==0.2.1', 'google-pasta==0.1.1', 'libclang==13.0.0', 'opt-einsum==2.3.2', 'protobuf==3.20.3', 'requests==2.21.0', 'six==1.12.0', 'termcolor==1.1.0', 'typing-extensions==3.6.6', 'wrapt==1.11.0', 'grpcio==1.24.3', 'tensorboard==2.19.0', 'keras==3.5.0', 'numpy==1.26.0', 'h5py==3.11.0', 'ml-dtypes==0.5.1', 'tensorflow-io-gcs-filesystem==0.23.1', 'nvidia-cublas-cu12==12.5.3.2', 'nvidia-cuda-cupti-cu12==12.5.82', 'nvidia-cuda-nvcc-cu12==12.5.82', 'nvidia-cuda-nvrtc-cu12==12.5.82', 'nvidia-cuda-runtime-cu12==12.5.82', 'nvidia-cudnn-cu12==9.3.0.75', 'nvidia-cufft-cu12==11.2.3.61', 'nvidia-curand-cu12==10.3.6.82', 'nvidia-cusolver-cu12==11.6.3.83', 'nvidia-cusparse-cu12==12.5.1.3', 'nvidia-nccl-cu12==2.23.4', 'nvidia-nvjitlink-cu12==12.5.82']}","absl-py>=1.0.0; astunparse>=1.6.0; flatbuffers>=24.3.25; gast!=0.5.0,!=0.5.1,!=0.5.2,>=0.2.1; google-pasta>=0.1.1; libclang>=13.0.0; opt-einsum>=2.3.2; packaging; protobuf!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<6.0.0dev,>=3.20.3; requests<3,>=2.21.0; setuptools; six>=1.12.0; termcolor>=1.1.0; typing-extensions>=3.6.6; wrapt>=1.11.0; grpcio<2.0,>=1.24.3; tensorboard~=2.19.0; keras>=3.5.0; numpy<2.2.0,>=1.26.0; h5py>=3.11.0; ml-dtypes<1.0.0,>=0.5.1; tensorflow-io-gcs-filesystem>=0.23.1; python_version < ""3.12""; nvidia-cublas-cu12==12.5.3.2; extra == ""and-cuda""; nvidia-cuda-cupti-cu12==12.5.82; extra == ""and-cuda""; nvidia-cuda-nvcc-cu12==12.5.82; extra == ""and-cuda""; nvidia-cuda-nvrtc-cu12==12.5.82; extra == ""and-cuda""; nvidia-cuda-runtime-cu12==12.5.82; extra == ""and-cuda""; nvidia-cudnn-cu12==9.3.0.75; extra == ""and-cuda""; nvidia-cufft-cu12==11.2.3.61; extra == ""and-cuda""; nvidia-curand-cu12==10.3.6.82; extra == ""and-cuda""; nvidia-cusolver-cu12==11.6.3.83; extra == ""and-cuda""; nvidia-cusparse-cu12==12.5.1.3; extra == ""and-cuda""; nvidia-nccl-cu12==2.23.4; extra == ""and-cuda""; nvidia-nvjitlink-cu12==12.5.82; extra == ""and-cuda""","2.16.2, 2.17.0rc0, 2.17.0rc1, 2.17.0, 2.17.1, 2.18.0rc0, 2.18.0rc1, 2.18.0rc2, 2.18.0, 2.18.1, 2.19.0rc0, 2.19.0","absl-py>=1.0.0; astunparse>=1.6.0; flatbuffers>=24.3.25; gast!=0.5.0,!=0.5.1,!=0.5.2,>=0.2.1; google-pasta>=0.1.1; libclang>=13.0.0; opt-einsum>=2.3.2; packaging; protobuf!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<6.0.0dev,>=3.20.3; requests<3,>=2.21.0; setuptools; six>=1.12.0; termcolor>=1.1.0; typing-extensions>=3.6.6; wrapt>=1.11.0; grpcio<2.0,>=1.24.3; tensorboard~=2.19.0; keras>=3.5.0; numpy<2.2.0,>=1.26.0; h5py>=3.11.0; ml-dtypes<1.0.0,>=0.5.1; tensorflow-io-gcs-filesystem>=0.23.1; python_version < ""3.12""; nvidia-cublas-cu12==12.5.3.2; extra == ""and-cuda""; nvidia-cuda-cupti-cu12==12.5.82; extra == ""and-cuda""; nvidia-cuda-nvcc-cu12==12.5.82; extra == ""and-cuda""; nvidia-cuda-nvrtc-cu12==12.5.82; extra == ""and-cuda""; nvidia-cuda-runtime-cu12==12.5.82; extra == ""and-cuda""; nvidia-cudnn-cu12==9.3.0.75; extra == ""and-cuda""; nvidia-cufft-cu12==11.2.3.61; extra == ""and-cuda""; nvidia-curand-cu12==10.3.6.82; extra == ""and-cuda""; nvidia-cusolver-cu12==11.6.3.83; extra == ""and-cuda""; nvidia-cusparse-cu12==12.5.1.3; extra == ""and-cuda""; nvidia-nccl-cu12==2.23.4; extra == ""and-cuda""; nvidia-nvjitlink-cu12==12.5.82; extra == ""and-cuda""",2.19.0,No,,No,None,,, +textblob,Base Package,EY,0.15.3,"{'base_package': 'textblob==0.15.3', 'dependencies': ['nltk==3.9', 'pre-commit==3.5', 'sphinx==8.0.2', 'sphinx-issues==4.1.0', 'PyYAML==6.0.2']}","nltk>=3.9; textblob[tests]; extra == ""dev""; tox; extra == ""dev""; pre-commit~=3.5; extra == ""dev""; sphinx==8.0.2; extra == ""docs""; sphinx-issues==4.1.0; extra == ""docs""; PyYAML==6.0.2; extra == ""docs""; pytest; extra == ""tests""; numpy; extra == ""tests""","0.17.0, 0.17.1, 0.18.0, 0.18.0.post0, 0.19.0","nltk>=3.9; textblob[tests]; extra == ""dev""; tox; extra == ""dev""; pre-commit~=3.5; extra == ""dev""; sphinx==8.0.2; extra == ""docs""; sphinx-issues==4.1.0; extra == ""docs""; PyYAML==6.0.2; extra == ""docs""; pytest; extra == ""tests""; numpy; extra == ""tests""",0.19.0,No,,No,None,,, +tf2onnx,Base Package,EY,1.16.1,"{'base_package': 'tf2onnx==1.16.1', 'dependencies': ['numpy==1.14.1', 'onnx==1.4.1', 'flatbuffers==1.12', 'protobuf==3.20']}",numpy (>=1.14.1); onnx (>=1.4.1); requests; six; flatbuffers (>=1.12); protobuf (~=3.20),,numpy (>=1.14.1); onnx (>=1.4.1); requests; six; flatbuffers (>=1.12); protobuf (~=3.20),1.16.1,No,,No,None,,, +tinycss2,Base Package,EY,1.3.0,"{'base_package': 'tinycss2==1.3.0', 'dependencies': ['webencodings==0.4']}","webencodings>=0.4; sphinx; extra == ""doc""; sphinx_rtd_theme; extra == ""doc""; pytest; extra == ""test""; ruff; extra == ""test""",1.4.0,"webencodings>=0.4; sphinx; extra == ""doc""; sphinx_rtd_theme; extra == ""doc""; pytest; extra == ""test""; ruff; extra == ""test""",1.4.0,No,,No,None,,, +tomli,Base Package,EY,2.0.2,"{'base_package': 'tomli==2.0.2', 'dependencies': []}",,"2.1.0, 2.2.1",,2.2.1,No,,No,None,,, +toposort,Base Package,EY,1.1,"{'base_package': 'toposort==1.1', 'dependencies': []}",,"1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 1.10",,1.10,No,,No,None,,, +tox,Base Package,EY,4.15.0,"{'base_package': 'tox==4.15.0', 'dependencies': ['cachetools==5.5.1', 'chardet==5.2', 'colorama==0.4.6', 'filelock==3.16.1', 'packaging==24.2', 'platformdirs==4.3.6', 'pluggy==1.5', 'pyproject-api==1.8', 'tomli==2.2.1', 'typing-extensions==4.12.2', 'virtualenv==20.31', 'devpi-process==1.0.2', 'pytest-mock==3.14', 'pytest==8.3.4']}","cachetools>=5.5.1; chardet>=5.2; colorama>=0.4.6; filelock>=3.16.1; packaging>=24.2; platformdirs>=4.3.6; pluggy>=1.5; pyproject-api>=1.8; tomli>=2.2.1; python_version < ""3.11""; typing-extensions>=4.12.2; python_version < ""3.11""; virtualenv>=20.31; devpi-process>=1.0.2; extra == ""test""; pytest-mock>=3.14; extra == ""test""; pytest>=8.3.4; extra == ""test""","4.15.1, 4.16.0, 4.17.0, 4.17.1, 4.18.0, 4.18.1, 4.19.0, 4.20.0, 4.21.0, 4.21.1, 4.21.2, 4.22.0, 4.23.0, 4.23.1, 4.23.2, 4.24.0, 4.24.1, 4.24.2, 4.25.0, 4.26.0, 4.27.0","cachetools>=5.5.1; chardet>=5.2; colorama>=0.4.6; filelock>=3.16.1; packaging>=24.2; platformdirs>=4.3.6; pluggy>=1.5; pyproject-api>=1.8; tomli>=2.2.1; python_version < ""3.11""; typing-extensions>=4.12.2; python_version < ""3.11""; virtualenv>=20.31; devpi-process>=1.0.2; extra == ""test""; pytest-mock>=3.14; extra == ""test""; pytest>=8.3.4; extra == ""test""",4.27.0,No,,No,None,,, +twine,Base Package,EY,5.1.1,"{'base_package': 'twine==5.1.1', 'dependencies': ['readme-renderer==35.0', 'requests==2.20', 'requests-toolbelt==0.8.0', 'urllib3==1.26.0', 'importlib-metadata==3.6', 'keyring==15.1', 'rfc3986==1.4.0', 'rich==12.0.0', 'packaging==24.0', 'keyring==15.1']}","readme-renderer>=35.0; requests>=2.20; requests-toolbelt!=0.9.0,>=0.8.0; urllib3>=1.26.0; importlib-metadata>=3.6; python_version < ""3.10""; keyring>=15.1; platform_machine != ""ppc64le"" and platform_machine != ""s390x""; rfc3986>=1.4.0; rich>=12.0.0; packaging>=24.0; id; keyring>=15.1; extra == ""keyring""","6.0.0, 6.0.1, 6.1.0","readme-renderer>=35.0; requests>=2.20; requests-toolbelt!=0.9.0,>=0.8.0; urllib3>=1.26.0; importlib-metadata>=3.6; python_version < ""3.10""; keyring>=15.1; platform_machine != ""ppc64le"" and platform_machine != ""s390x""; rfc3986>=1.4.0; rich>=12.0.0; packaging>=24.0; id; keyring>=15.1; extra == ""keyring""",6.1.0,No,,No,None,,, +unstructured,Base Package,EY,0.14.2,"{'base_package': 'unstructured==0.14.2', 'dependencies': ['onnx==1.17.0', 'unstructured.pytesseract==0.3.12', 'unstructured-inference==1.0.5', 'python-pptx==1.0.1', 'python-docx==1.1.2', 'onnxruntime==1.19.0', 'python-docx==1.1.2', 'python-docx==1.1.2', 'onnx==1.17.0', 'onnxruntime==1.19.0', 'unstructured-inference==1.0.5', 'unstructured.pytesseract==0.3.12', 'onnx==1.17.0', 'unstructured.pytesseract==0.3.12', 'unstructured-inference==1.0.5', 'python-pptx==1.0.1', 'python-docx==1.1.2', 'onnxruntime==1.19.0', 'python-docx==1.1.2', 'paddlepaddle==3.0.0b1', 'unstructured.paddleocr==2.10.0', 'onnx==1.17.0', 'onnxruntime==1.19.0', 'unstructured-inference==1.0.5', 'unstructured.pytesseract==0.3.12', 'python-pptx==1.0.1', 'python-pptx==1.0.1']}","chardet; filetype; python-magic; lxml; nltk; requests; beautifulsoup4; emoji; dataclasses-json; python-iso639; langdetect; numpy; rapidfuzz; backoff; typing-extensions; unstructured-client; wrapt; tqdm; psutil; python-oxmsg; html5lib; onnx>=1.17.0; extra == ""all-docs""; pi-heif; extra == ""all-docs""; markdown; extra == ""all-docs""; pdf2image; extra == ""all-docs""; networkx; extra == ""all-docs""; pandas; extra == ""all-docs""; unstructured.pytesseract>=0.3.12; extra == ""all-docs""; google-cloud-vision; extra == ""all-docs""; unstructured-inference>=1.0.5; extra == ""all-docs""; xlrd; extra == ""all-docs""; effdet; extra == ""all-docs""; pypdf; extra == ""all-docs""; python-pptx>=1.0.1; extra == ""all-docs""; pdfminer.six; extra == ""all-docs""; python-docx>=1.1.2; extra == ""all-docs""; pypandoc; extra == ""all-docs""; onnxruntime>=1.19.0; extra == ""all-docs""; pikepdf; extra == ""all-docs""; openpyxl; extra == ""all-docs""; pandas; extra == ""csv""; python-docx>=1.1.2; extra == ""doc""; python-docx>=1.1.2; extra == ""docx""; pypandoc; extra == ""epub""; langdetect; extra == ""huggingface""; sacremoses; extra == ""huggingface""; sentencepiece; extra == ""huggingface""; torch; extra == ""huggingface""; transformers; extra == ""huggingface""; onnx>=1.17.0; extra == ""image""; onnxruntime>=1.19.0; extra == ""image""; pdf2image; extra == ""image""; pdfminer.six; extra == ""image""; pikepdf; extra == ""image""; pi-heif; extra == ""image""; pypdf; extra == ""image""; google-cloud-vision; extra == ""image""; effdet; extra == ""image""; unstructured-inference>=1.0.5; extra == ""image""; unstructured.pytesseract>=0.3.12; extra == ""image""; onnx>=1.17.0; extra == ""local-inference""; pi-heif; extra == ""local-inference""; markdown; extra == ""local-inference""; pdf2image; extra == ""local-inference""; networkx; extra == ""local-inference""; pandas; extra == ""local-inference""; unstructured.pytesseract>=0.3.12; extra == ""local-inference""; google-cloud-vision; extra == ""local-inference""; unstructured-inference>=1.0.5; extra == ""local-inference""; xlrd; extra == ""local-inference""; effdet; extra == ""local-inference""; pypdf; extra == ""local-inference""; python-pptx>=1.0.1; extra == ""local-inference""; pdfminer.six; extra == ""local-inference""; python-docx>=1.1.2; extra == ""local-inference""; pypandoc; extra == ""local-inference""; onnxruntime>=1.19.0; extra == ""local-inference""; pikepdf; extra == ""local-inference""; openpyxl; extra == ""local-inference""; markdown; extra == ""md""; python-docx>=1.1.2; extra == ""odt""; pypandoc; extra == ""odt""; pypandoc; extra == ""org""; paddlepaddle>=3.0.0b1; extra == ""paddleocr""; unstructured.paddleocr==2.10.0; extra == ""paddleocr""; onnx>=1.17.0; extra == ""pdf""; onnxruntime>=1.19.0; extra == ""pdf""; pdf2image; extra == ""pdf""; pdfminer.six; extra == ""pdf""; pikepdf; extra == ""pdf""; pi-heif; extra == ""pdf""; pypdf; extra == ""pdf""; google-cloud-vision; extra == ""pdf""; effdet; extra == ""pdf""; unstructured-inference>=1.0.5; extra == ""pdf""; unstructured.pytesseract>=0.3.12; extra == ""pdf""; python-pptx>=1.0.1; extra == ""ppt""; python-pptx>=1.0.1; extra == ""pptx""; pypandoc; extra == ""rst""; pypandoc; extra == ""rtf""; pandas; extra == ""tsv""; openpyxl; extra == ""xlsx""; pandas; extra == ""xlsx""; xlrd; extra == ""xlsx""; networkx; extra == ""xlsx""","0.14.3, 0.14.4, 0.14.5, 0.14.6, 0.14.7, 0.14.8, 0.14.9, 0.14.10, 0.15.0, 0.15.1, 0.15.3, 0.15.5, 0.15.6, 0.15.7, 0.15.8, 0.15.9, 0.15.10, 0.15.12, 0.15.13, 0.15.14, 0.16.0, 0.16.1, 0.16.2, 0.16.3, 0.16.4, 0.16.5, 0.16.6, 0.16.7, 0.16.8, 0.16.9, 0.16.10, 0.16.11, 0.16.12, 0.16.13, 0.16.14, 0.16.15, 0.16.16, 0.16.17, 0.16.19, 0.16.20, 0.16.21, 0.16.22, 0.16.23, 0.16.24, 0.16.25, 0.17.0, 0.17.2, 0.18.1","chardet; filetype; python-magic; lxml; nltk; requests; beautifulsoup4; emoji; dataclasses-json; python-iso639; langdetect; numpy; rapidfuzz; backoff; typing-extensions; unstructured-client; wrapt; tqdm; psutil; python-oxmsg; html5lib; onnx>=1.17.0; extra == ""all-docs""; pi-heif; extra == ""all-docs""; markdown; extra == ""all-docs""; pdf2image; extra == ""all-docs""; networkx; extra == ""all-docs""; pandas; extra == ""all-docs""; unstructured.pytesseract>=0.3.12; extra == ""all-docs""; google-cloud-vision; extra == ""all-docs""; unstructured-inference>=1.0.5; extra == ""all-docs""; xlrd; extra == ""all-docs""; effdet; extra == ""all-docs""; pypdf; extra == ""all-docs""; python-pptx>=1.0.1; extra == ""all-docs""; pdfminer.six; extra == ""all-docs""; python-docx>=1.1.2; extra == ""all-docs""; pypandoc; extra == ""all-docs""; onnxruntime>=1.19.0; extra == ""all-docs""; pikepdf; extra == ""all-docs""; openpyxl; extra == ""all-docs""; pandas; extra == ""csv""; python-docx>=1.1.2; extra == ""doc""; python-docx>=1.1.2; extra == ""docx""; pypandoc; extra == ""epub""; langdetect; extra == ""huggingface""; sacremoses; extra == ""huggingface""; sentencepiece; extra == ""huggingface""; torch; extra == ""huggingface""; transformers; extra == ""huggingface""; onnx>=1.17.0; extra == ""image""; onnxruntime>=1.19.0; extra == ""image""; pdf2image; extra == ""image""; pdfminer.six; extra == ""image""; pikepdf; extra == ""image""; pi-heif; extra == ""image""; pypdf; extra == ""image""; google-cloud-vision; extra == ""image""; effdet; extra == ""image""; unstructured-inference>=1.0.5; extra == ""image""; unstructured.pytesseract>=0.3.12; extra == ""image""; onnx>=1.17.0; extra == ""local-inference""; pi-heif; extra == ""local-inference""; markdown; extra == ""local-inference""; pdf2image; extra == ""local-inference""; networkx; extra == ""local-inference""; pandas; extra == ""local-inference""; unstructured.pytesseract>=0.3.12; extra == ""local-inference""; google-cloud-vision; extra == ""local-inference""; unstructured-inference>=1.0.5; extra == ""local-inference""; xlrd; extra == ""local-inference""; effdet; extra == ""local-inference""; pypdf; extra == ""local-inference""; python-pptx>=1.0.1; extra == ""local-inference""; pdfminer.six; extra == ""local-inference""; python-docx>=1.1.2; extra == ""local-inference""; pypandoc; extra == ""local-inference""; onnxruntime>=1.19.0; extra == ""local-inference""; pikepdf; extra == ""local-inference""; openpyxl; extra == ""local-inference""; markdown; extra == ""md""; python-docx>=1.1.2; extra == ""odt""; pypandoc; extra == ""odt""; pypandoc; extra == ""org""; paddlepaddle>=3.0.0b1; extra == ""paddleocr""; unstructured.paddleocr==2.10.0; extra == ""paddleocr""; onnx>=1.17.0; extra == ""pdf""; onnxruntime>=1.19.0; extra == ""pdf""; pdf2image; extra == ""pdf""; pdfminer.six; extra == ""pdf""; pikepdf; extra == ""pdf""; pi-heif; extra == ""pdf""; pypdf; extra == ""pdf""; google-cloud-vision; extra == ""pdf""; effdet; extra == ""pdf""; unstructured-inference>=1.0.5; extra == ""pdf""; unstructured.pytesseract>=0.3.12; extra == ""pdf""; python-pptx>=1.0.1; extra == ""ppt""; python-pptx>=1.0.1; extra == ""pptx""; pypandoc; extra == ""rst""; pypandoc; extra == ""rtf""; pandas; extra == ""tsv""; openpyxl; extra == ""xlsx""; pandas; extra == ""xlsx""; xlrd; extra == ""xlsx""; networkx; extra == ""xlsx""",0.18.1,Yes,"CVE-2024-46455, CVSS_V4, unstructured XML External Entity (XXE), CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N, affects: >=0,<0.14.3",No,None,0.18.1,"{'base_package': 'unstructured==0.18.1', 'dependencies': ['chardet==5.2.0', 'filetype==1.2.0', 'python-magic==0.4.27', 'lxml==5.4.0', 'requests==2.32.4', 'beautifulsoup4==4.13.4', 'emoji==2.14.1', 'dataclasses-json==0.6.7', 'python-iso639==2025.2.18', 'langdetect==1.0.9', 'numpy==2.3.1', 'rapidfuzz==3.13.0', 'backoff==2.2.1', 'typing-extensions==4.14.0', 'unstructured-client==0.37.2', 'wrapt==1.17.2', 'tqdm==4.67.1', 'psutil==7.0.0', 'python-oxmsg==0.0.2', 'html5lib==1.1', 'onnx==1.18.0', 'pi-heif==0.22.0', 'markdown==3.8.2', 'pdf2image==1.17.0', 'networkx==3.5', 'pandas==2.3.0', 'unstructured.pytesseract==0.3.15', 'google-cloud-vision==3.10.2', 'unstructured-inference==1.0.5', 'xlrd==2.0.2', 'effdet==0.4.1', 'pypdf==5.6.1', 'python-pptx==1.0.2', 'pdfminer.six==20250506', 'python-docx==1.2.0', 'pypandoc==1.15', 'onnxruntime==1.22.0', 'pikepdf==9.9.0', 'openpyxl==3.2.0b1', 'sacremoses==2.3.0', 'sentencepiece==1.2.0', 'torch==1.2.0', 'transformers==1.15', 'paddlepaddle==1.0.9', 'unstructured.paddleocr==0.1.1']}",Not Used +uri-template,Base Package,EY,1.3.0,"{'base_package': 'uri-template==1.3.0', 'dependencies': []}",types-PyYAML ; extra == 'dev'; mypy ; extra == 'dev'; flake8 ; extra == 'dev'; flake8-annotations ; extra == 'dev'; flake8-bandit ; extra == 'dev'; flake8-bugbear ; extra == 'dev'; flake8-commas ; extra == 'dev'; flake8-comprehensions ; extra == 'dev'; flake8-continuation ; extra == 'dev'; flake8-datetimez ; extra == 'dev'; flake8-docstrings ; extra == 'dev'; flake8-import-order ; extra == 'dev'; flake8-literal ; extra == 'dev'; flake8-modern-annotations ; extra == 'dev'; flake8-noqa ; extra == 'dev'; flake8-pyproject ; extra == 'dev'; flake8-requirements ; extra == 'dev'; flake8-typechecking-import ; extra == 'dev'; flake8-use-fstring ; extra == 'dev'; pep8-naming ; extra == 'dev',,types-PyYAML ; extra == 'dev'; mypy ; extra == 'dev'; flake8 ; extra == 'dev'; flake8-annotations ; extra == 'dev'; flake8-bandit ; extra == 'dev'; flake8-bugbear ; extra == 'dev'; flake8-commas ; extra == 'dev'; flake8-comprehensions ; extra == 'dev'; flake8-continuation ; extra == 'dev'; flake8-datetimez ; extra == 'dev'; flake8-docstrings ; extra == 'dev'; flake8-import-order ; extra == 'dev'; flake8-literal ; extra == 'dev'; flake8-modern-annotations ; extra == 'dev'; flake8-noqa ; extra == 'dev'; flake8-pyproject ; extra == 'dev'; flake8-requirements ; extra == 'dev'; flake8-typechecking-import ; extra == 'dev'; flake8-use-fstring ; extra == 'dev'; pep8-naming ; extra == 'dev',1.3.0,No,,No,None,,, +uvloop,Base Package,EY,0.20.0,"{'base_package': 'uvloop==0.20.0', 'dependencies': ['setuptools==60', 'Cython==3.0', 'Sphinx==4.1.2', 'sphinxcontrib-asyncio==0.3.0', 'sphinx-rtd-theme==0.5.2', 'aiohttp==3.10.5', 'flake8==5.0', 'pycodestyle==2.9.0', 'pyOpenSSL==23.0.0', 'mypy==0.800']}","setuptools>=60; extra == ""dev""; Cython~=3.0; extra == ""dev""; Sphinx~=4.1.2; extra == ""docs""; sphinxcontrib-asyncio~=0.3.0; extra == ""docs""; sphinx-rtd-theme~=0.5.2; extra == ""docs""; aiohttp>=3.10.5; extra == ""test""; flake8~=5.0; extra == ""test""; psutil; extra == ""test""; pycodestyle~=2.9.0; extra == ""test""; pyOpenSSL~=23.0.0; extra == ""test""; mypy>=0.800; extra == ""test""","0.21.0b1, 0.21.0","setuptools>=60; extra == ""dev""; Cython~=3.0; extra == ""dev""; Sphinx~=4.1.2; extra == ""docs""; sphinxcontrib-asyncio~=0.3.0; extra == ""docs""; sphinx-rtd-theme~=0.5.2; extra == ""docs""; aiohttp>=3.10.5; extra == ""test""; flake8~=5.0; extra == ""test""; psutil; extra == ""test""; pycodestyle~=2.9.0; extra == ""test""; pyOpenSSL~=23.0.0; extra == ""test""; mypy>=0.800; extra == ""test""",0.21.0,No,,No,None,,, +watchgod,Base Package,EY,0.8.2,"{'base_package': 'watchgod==0.8.2', 'dependencies': ['anyio==3.0.0']}","anyio (<4,>=3.0.0)",0.10a1,"anyio (<4,>=3.0.0)",0.10a1,No,,No,None,,, +webcolors,Base Package,EY,24.8.0,"{'base_package': 'webcolors==24.8.0', 'dependencies': []}",,"24.11.0, 24.11.1",,24.11.1,No,,No,None,,, +websockets,Base Package,EY,13.1,"{'base_package': 'websockets==13.1', 'dependencies': []}",,"14.0, 14.1, 14.2, 15.0, 15.0.1",,15.0.1,No,,No,None,,, +xattr,Base Package,EY,1.1.0,"{'base_package': 'xattr==1.1.0', 'dependencies': ['cffi==1.16.0']}","cffi>=1.16.0; pytest; extra == ""test""",1.1.4,"cffi>=1.16.0; pytest; extra == ""test""",1.1.4,No,,No,None,,, +yellowbrick,Base Package,EY,1.5,"{'base_package': 'yellowbrick==1.5', 'dependencies': ['matplotlib==2.0.2', 'scipy==1.0.0', 'scikit-learn==1.0.0', 'numpy==1.16.0', 'cycler==0.10.0']}","matplotlib (!=3.0.0,>=2.0.2); scipy (>=1.0.0); scikit-learn (>=1.0.0); numpy (>=1.16.0); cycler (>=0.10.0)",,"matplotlib (!=3.0.0,>=2.0.2); scipy (>=1.0.0); scikit-learn (>=1.0.0); numpy (>=1.16.0); cycler (>=0.10.0)",1.5,No,,No,None,,, +adal,Dependency Package,EY,1.2.7,,"PyJWT (<3,>=1.0.0); requests (<3,>=2.0.0); python-dateutil (<3,>=2.1.0); cryptography (>=1.1.0)",,"PyJWT (<3,>=1.0.0); requests (<3,>=2.0.0); python-dateutil (<3,>=2.1.0); cryptography (>=1.1.0)",1.2.7,No,,No,None,,, +aiofiles,Dependency Package,EY,24.1.0,,,,,24.1.0,No,,No,None,,, +aiohappyeyeballs,Dependency Package,EY,2.4.6,,,"2.4.7, 2.4.8, 2.5.0, 2.6.0, 2.6.1",,2.6.1,No,,No,None,,, +aiohttp,Dependency Package,EY,3.11.13,,"aiohappyeyeballs>=2.5.0; aiosignal>=1.1.2; async-timeout<6.0,>=4.0; python_version < ""3.11""; attrs>=17.3.0; frozenlist>=1.1.1; multidict<7.0,>=4.5; propcache>=0.2.0; yarl<2.0,>=1.17.0; aiodns>=3.3.0; extra == ""speedups""; Brotli; platform_python_implementation == ""CPython"" and extra == ""speedups""; brotlicffi; platform_python_implementation != ""CPython"" and extra == ""speedups""","3.11.14, 3.11.15, 3.11.16, 3.11.17, 3.11.18, 3.12.0b0, 3.12.0b1, 3.12.0b2, 3.12.0b3, 3.12.0rc0, 3.12.0rc1, 3.12.0, 3.12.1rc0, 3.12.1, 3.12.2, 3.12.3, 3.12.4, 3.12.6, 3.12.7rc0, 3.12.7, 3.12.8, 3.12.9, 3.12.10, 3.12.11, 3.12.12, 3.12.13, 4.0.0a0, 4.0.0a1","aiohappyeyeballs>=2.5.0; aiosignal>=1.1.2; async-timeout<6.0,>=4.0; python_version < ""3.11""; attrs>=17.3.0; frozenlist>=1.1.1; multidict<7.0,>=4.5; propcache>=0.2.0; yarl<2.0,>=1.17.0; aiodns>=3.3.0; extra == ""speedups""; Brotli; platform_python_implementation == ""CPython"" and extra == ""speedups""; brotlicffi; platform_python_implementation != ""CPython"" and extra == ""speedups""",4.0.0a1,No,,No,None,,, +aiosignal,Dependency Package,EY,1.3.2,,frozenlist>=1.1.0,,frozenlist>=1.1.0,1.3.2,No,,No,None,,, +annotated-types,Dependency Package,EY,0.7.0,,"typing-extensions>=4.0.0; python_version < ""3.9""",,"typing-extensions>=4.0.0; python_version < ""3.9""",0.7.0,No,,No,None,,, +antlr4-python3-runtime,Dependency Package,EY,4.9.3,,"typing; python_version < ""3.5""","4.10, 4.11.0, 4.11.1, 4.12.0, 4.13.0, 4.13.1, 4.13.2","typing; python_version < ""3.5""",4.13.2,No,,No,None,,, +anyconfig,Dependency Package,EY,0.14.0,,,,,0.14.0,No,,No,None,,, +anyio,Dependency Package,EY,4.8.0,,"exceptiongroup>=1.0.2; python_version < ""3.11""; idna>=2.8; sniffio>=1.1; typing_extensions>=4.5; python_version < ""3.13""; trio>=0.26.1; extra == ""trio""; anyio[trio]; extra == ""test""; blockbuster>=1.5.23; extra == ""test""; coverage[toml]>=7; extra == ""test""; exceptiongroup>=1.2.0; extra == ""test""; hypothesis>=4.0; extra == ""test""; psutil>=5.9; extra == ""test""; pytest>=7.0; extra == ""test""; trustme; extra == ""test""; truststore>=0.9.1; python_version >= ""3.10"" and extra == ""test""; uvloop>=0.21; (platform_python_implementation == ""CPython"" and platform_system != ""Windows"" and python_version < ""3.14"") and extra == ""test""; packaging; extra == ""doc""; Sphinx~=8.2; extra == ""doc""; sphinx_rtd_theme; extra == ""doc""; sphinx-autodoc-typehints>=1.2.0; extra == ""doc""",4.9.0,"exceptiongroup>=1.0.2; python_version < ""3.11""; idna>=2.8; sniffio>=1.1; typing_extensions>=4.5; python_version < ""3.13""; trio>=0.26.1; extra == ""trio""; anyio[trio]; extra == ""test""; blockbuster>=1.5.23; extra == ""test""; coverage[toml]>=7; extra == ""test""; exceptiongroup>=1.2.0; extra == ""test""; hypothesis>=4.0; extra == ""test""; psutil>=5.9; extra == ""test""; pytest>=7.0; extra == ""test""; trustme; extra == ""test""; truststore>=0.9.1; python_version >= ""3.10"" and extra == ""test""; uvloop>=0.21; (platform_python_implementation == ""CPython"" and platform_system != ""Windows"" and python_version < ""3.14"") and extra == ""test""; packaging; extra == ""doc""; Sphinx~=8.2; extra == ""doc""; sphinx_rtd_theme; extra == ""doc""; sphinx-autodoc-typehints>=1.2.0; extra == ""doc""",4.9.0,No,,No,None,,, +appdirs,Dependency Package,EY,1.4.4,,,,,1.4.4,No,,No,None,,, +argcomplete,Dependency Package,EY,3.5.1,,"coverage; extra == ""test""; mypy; extra == ""test""; pexpect; extra == ""test""; ruff; extra == ""test""; wheel; extra == ""test""","3.5.2, 3.5.3, 3.6.0, 3.6.1, 3.6.2","coverage; extra == ""test""; mypy; extra == ""test""; pexpect; extra == ""test""; ruff; extra == ""test""; wheel; extra == ""test""",3.6.2,No,,No,None,,, +argon2-cffi,Dependency Package,EY,23.1.0,,argon2-cffi-bindings,25.1.0,argon2-cffi-bindings,25.1.0,No,,No,None,,, +argon2-cffi-bindings,Dependency Package,EY,21.2.0,,,,,21.2.0,No,,No,None,,, +arrow,Dependency Package,EY,1.3.0,,"python-dateutil>=2.7.0; types-python-dateutil>=2.8.10; doc8 ; extra == ""doc""; sphinx>=7.0.0 ; extra == ""doc""; sphinx-autobuild ; extra == ""doc""; sphinx-autodoc-typehints ; extra == ""doc""; sphinx_rtd_theme>=1.3.0 ; extra == ""doc""; dateparser==1.* ; extra == ""test""; pre-commit ; extra == ""test""; pytest ; extra == ""test""; pytest-cov ; extra == ""test""; pytest-mock ; extra == ""test""; pytz==2021.1 ; extra == ""test""; simplejson==3.* ; extra == ""test""",,"python-dateutil>=2.7.0; types-python-dateutil>=2.8.10; doc8 ; extra == ""doc""; sphinx>=7.0.0 ; extra == ""doc""; sphinx-autobuild ; extra == ""doc""; sphinx-autodoc-typehints ; extra == ""doc""; sphinx_rtd_theme>=1.3.0 ; extra == ""doc""; dateparser==1.* ; extra == ""test""; pre-commit ; extra == ""test""; pytest ; extra == ""test""; pytest-cov ; extra == ""test""; pytest-mock ; extra == ""test""; pytz==2021.1 ; extra == ""test""; simplejson==3.* ; extra == ""test""",1.3.0,No,,No,None,,, +asttokens,Dependency Package,EY,2.4.1,,"astroid<4,>=2; extra == ""astroid""; astroid<4,>=2; extra == ""test""; pytest; extra == ""test""; pytest-cov; extra == ""test""; pytest-xdist; extra == ""test""",3.0.0,"astroid<4,>=2; extra == ""astroid""; astroid<4,>=2; extra == ""test""; pytest; extra == ""test""; pytest-cov; extra == ""test""; pytest-xdist; extra == ""test""",3.0.0,No,,No,None,,, +async-lru,Dependency Package,EY,2.0.4,,"typing_extensions>=4.0.0; python_version < ""3.11""",2.0.5,"typing_extensions>=4.0.0; python_version < ""3.11""",2.0.5,No,,No,None,,, +attrs,Dependency Package,EY,24.2.0,,"cloudpickle; platform_python_implementation == ""CPython"" and extra == ""benchmark""; hypothesis; extra == ""benchmark""; mypy>=1.11.1; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""benchmark""; pympler; extra == ""benchmark""; pytest-codspeed; extra == ""benchmark""; pytest-mypy-plugins; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""benchmark""; pytest-xdist[psutil]; extra == ""benchmark""; pytest>=4.3.0; extra == ""benchmark""; cloudpickle; platform_python_implementation == ""CPython"" and extra == ""cov""; coverage[toml]>=5.3; extra == ""cov""; hypothesis; extra == ""cov""; mypy>=1.11.1; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""cov""; pympler; extra == ""cov""; pytest-mypy-plugins; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""cov""; pytest-xdist[psutil]; extra == ""cov""; pytest>=4.3.0; extra == ""cov""; cloudpickle; platform_python_implementation == ""CPython"" and extra == ""dev""; hypothesis; extra == ""dev""; mypy>=1.11.1; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""dev""; pre-commit-uv; extra == ""dev""; pympler; extra == ""dev""; pytest-mypy-plugins; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""dev""; pytest-xdist[psutil]; extra == ""dev""; pytest>=4.3.0; extra == ""dev""; cogapp; extra == ""docs""; furo; extra == ""docs""; myst-parser; extra == ""docs""; sphinx; extra == ""docs""; sphinx-notfound-page; extra == ""docs""; sphinxcontrib-towncrier; extra == ""docs""; towncrier; extra == ""docs""; cloudpickle; platform_python_implementation == ""CPython"" and extra == ""tests""; hypothesis; extra == ""tests""; mypy>=1.11.1; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""tests""; pympler; extra == ""tests""; pytest-mypy-plugins; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""tests""; pytest-xdist[psutil]; extra == ""tests""; pytest>=4.3.0; extra == ""tests""; mypy>=1.11.1; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""tests-mypy""; pytest-mypy-plugins; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""tests-mypy""","24.3.0, 25.1.0, 25.2.0, 25.3.0","cloudpickle; platform_python_implementation == ""CPython"" and extra == ""benchmark""; hypothesis; extra == ""benchmark""; mypy>=1.11.1; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""benchmark""; pympler; extra == ""benchmark""; pytest-codspeed; extra == ""benchmark""; pytest-mypy-plugins; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""benchmark""; pytest-xdist[psutil]; extra == ""benchmark""; pytest>=4.3.0; extra == ""benchmark""; cloudpickle; platform_python_implementation == ""CPython"" and extra == ""cov""; coverage[toml]>=5.3; extra == ""cov""; hypothesis; extra == ""cov""; mypy>=1.11.1; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""cov""; pympler; extra == ""cov""; pytest-mypy-plugins; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""cov""; pytest-xdist[psutil]; extra == ""cov""; pytest>=4.3.0; extra == ""cov""; cloudpickle; platform_python_implementation == ""CPython"" and extra == ""dev""; hypothesis; extra == ""dev""; mypy>=1.11.1; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""dev""; pre-commit-uv; extra == ""dev""; pympler; extra == ""dev""; pytest-mypy-plugins; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""dev""; pytest-xdist[psutil]; extra == ""dev""; pytest>=4.3.0; extra == ""dev""; cogapp; extra == ""docs""; furo; extra == ""docs""; myst-parser; extra == ""docs""; sphinx; extra == ""docs""; sphinx-notfound-page; extra == ""docs""; sphinxcontrib-towncrier; extra == ""docs""; towncrier; extra == ""docs""; cloudpickle; platform_python_implementation == ""CPython"" and extra == ""tests""; hypothesis; extra == ""tests""; mypy>=1.11.1; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""tests""; pympler; extra == ""tests""; pytest-mypy-plugins; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""tests""; pytest-xdist[psutil]; extra == ""tests""; pytest>=4.3.0; extra == ""tests""; mypy>=1.11.1; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""tests-mypy""; pytest-mypy-plugins; (platform_python_implementation == ""CPython"" and python_version >= ""3.10"") and extra == ""tests-mypy""",25.3.0,No,,No,None,,, +azure-ai-ml,Dependency Package,EY,1.21.1,,"pyyaml<7.0.0,>=5.1.0; msrest<1.0.0,>=0.6.18; azure-core>=1.23.0; azure-mgmt-core>=1.3.0; marshmallow<4.0.0,>=3.5; jsonschema<5.0.0,>=4.0.0; tqdm<5.0.0; strictyaml<2.0.0; colorama<1.0.0; pyjwt<3.0.0; azure-storage-blob>=12.10.0; azure-storage-file-share; azure-storage-file-datalake>=12.2.0; pydash<9.0.0,>=6.0.0; isodate<1.0.0; azure-common>=1.1; typing-extensions<5.0.0; azure-monitor-opentelemetry; six>=1.11.0; mldesigner; extra == ""designer""; azureml-dataprep-rslex>=2.22.0; python_version < ""3.13"" and extra == ""mount""","1.22.0, 1.22.1, 1.22.2, 1.22.3, 1.22.4, 1.23.0, 1.23.1, 1.24.0, 1.25.0, 1.26.0, 1.26.1, 1.26.2, 1.26.3, 1.26.4, 1.26.5, 1.27.0, 1.27.1","pyyaml<7.0.0,>=5.1.0; msrest<1.0.0,>=0.6.18; azure-core>=1.23.0; azure-mgmt-core>=1.3.0; marshmallow<4.0.0,>=3.5; jsonschema<5.0.0,>=4.0.0; tqdm<5.0.0; strictyaml<2.0.0; colorama<1.0.0; pyjwt<3.0.0; azure-storage-blob>=12.10.0; azure-storage-file-share; azure-storage-file-datalake>=12.2.0; pydash<9.0.0,>=6.0.0; isodate<1.0.0; azure-common>=1.1; typing-extensions<5.0.0; azure-monitor-opentelemetry; six>=1.11.0; mldesigner; extra == ""designer""; azureml-dataprep-rslex>=2.22.0; python_version < ""3.13"" and extra == ""mount""",1.27.1,No,,No,None,,, +azure-common,Dependency Package,EY,1.1.28,,azure-nspkg ; python_version<'3.0',,azure-nspkg ; python_version<'3.0',1.1.28,No,,No,None,,, +azure-core,Dependency Package,EY,1.31.0,,"requests>=2.21.0; six>=1.11.0; typing-extensions>=4.6.0; aiohttp>=3.0; extra == ""aio""; opentelemetry-api~=1.26; extra == ""tracing""","1.32.0, 1.33.0, 1.34.0","requests>=2.21.0; six>=1.11.0; typing-extensions>=4.6.0; aiohttp>=3.0; extra == ""aio""; opentelemetry-api~=1.26; extra == ""tracing""",1.34.0,No,,No,None,,, +azure-datalake-store,Dependency Package,EY,0.0.53,,"cffi; requests>=2.20.0; azure-identity; extra == ""auth""","1.0.0a0, 1.0.1","cffi; requests>=2.20.0; azure-identity; extra == ""auth""",1.0.1,No,,No,None,,, +azure-graphrbac,Dependency Package,EY,0.61.1,,"msrest>=0.6.21; msrestazure<2.0.0,>=0.4.32; azure-common~=1.1; azure-nspkg; python_version < ""3.0""",0.61.2,"msrest>=0.6.21; msrestazure<2.0.0,>=0.4.32; azure-common~=1.1; azure-nspkg; python_version < ""3.0""",0.61.2,No,,No,None,,, +azure-identity,Dependency Package,EY,1.19.0,,azure-core>=1.31.0; cryptography>=2.5; msal>=1.30.0; msal-extensions>=1.2.0; typing-extensions>=4.0.0,"1.20.0, 1.21.0, 1.22.0, 1.23.0",azure-core>=1.31.0; cryptography>=2.5; msal>=1.30.0; msal-extensions>=1.2.0; typing-extensions>=4.0.0,1.23.0,No,,No,None,,, +azure-mgmt-authorization,Dependency Package,EY,4.0.0,,,,,4.0.0,No,,No,None,,, +azure-mgmt-containerregistry,Dependency Package,EY,10.3.0,,isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.5.0,"11.0.0, 12.0.0, 13.0.0, 14.0.0, 14.1.0b1",isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.5.0,14.1.0b1,No,,No,None,,, +azure-mgmt-core,Dependency Package,EY,1.4.0,,azure-core>=1.31.0,1.5.0,azure-core>=1.31.0,1.5.0,No,,No,None,,, +azure-mgmt-keyvault,Dependency Package,EY,10.3.1,,isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.3.2,11.0.0,isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.3.2,11.0.0,No,,No,None,,, +azure-mgmt-network,Dependency Package,EY,27.0.0,,isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.5.0,"28.0.0, 28.1.0, 29.0.0",isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.5.0,29.0.0,No,,No,None,,, +azure-mgmt-resource,Dependency Package,EY,23.2.0,,isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.5.0,"23.3.0, 23.4.0, 24.0.0",isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.5.0,24.0.0,No,,No,None,,, +azure-mgmt-storage,Dependency Package,EY,21.2.1,,isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.5.0,"22.0.0, 22.1.0, 22.1.1, 22.2.0, 23.0.0",isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.5.0,23.0.0,No,,No,None,,, +azure-storage-blob,Dependency Package,EY,12.23.1,,"azure-core>=1.30.0; cryptography>=2.1.4; typing-extensions>=4.6.0; isodate>=0.6.1; azure-core[aio]>=1.30.0; extra == ""aio""","12.24.0b1, 12.24.0, 12.24.1, 12.25.0b1, 12.25.0, 12.25.1, 12.26.0b1, 12.27.0b1","azure-core>=1.30.0; cryptography>=2.1.4; typing-extensions>=4.6.0; isodate>=0.6.1; azure-core[aio]>=1.30.0; extra == ""aio""",12.27.0b1,No,,No,None,,, +azure-storage-file-datalake,Dependency Package,EY,12.17.0,,"azure-core>=1.30.0; azure-storage-blob>=12.25.1; typing-extensions>=4.6.0; isodate>=0.6.1; azure-core[aio]>=1.30.0; extra == ""aio""","12.18.0b1, 12.18.0, 12.18.1, 12.19.0b1, 12.19.0, 12.20.0, 12.21.0b1, 12.22.0b1","azure-core>=1.30.0; azure-storage-blob>=12.25.1; typing-extensions>=4.6.0; isodate>=0.6.1; azure-core[aio]>=1.30.0; extra == ""aio""",12.22.0b1,No,,No,None,,, +azure-storage-file-share,Dependency Package,EY,12.19.0,,"azure-core>=1.30.0; cryptography>=2.1.4; typing-extensions>=4.6.0; isodate>=0.6.1; azure-core[aio]>=1.30.0; extra == ""aio""","12.20.0b1, 12.20.0, 12.20.1, 12.21.0b1, 12.21.0, 12.22.0b1, 12.23.0b1","azure-core>=1.30.0; cryptography>=2.1.4; typing-extensions>=4.6.0; isodate>=0.6.1; azure-core[aio]>=1.30.0; extra == ""aio""",12.23.0b1,No,,No,None,,, +azureml-core,Dependency Package,EY,1.58.0,,"pytz; backports.tempfile; pathspec<1.0.0; requests[socks]<3.0.0,>=2.19.1; msal<2.0.0,>=1.15.0; msal-extensions<=2.0.0,>=0.3.0; knack<0.13.0; azure-core<2.0.0; pkginfo; argcomplete<4; humanfriendly<11.0,>=4.7; paramiko<4.0.0,>=2.0.8; azure-mgmt-resource<=24.0.0,>=15.0.0; azure-mgmt-containerregistry<14,>=8.2.0; azure-mgmt-storage<=23.0.0,>=16.0.0; azure-mgmt-keyvault<12.0.0,>=0.40.0; azure-mgmt-authorization<5,>=0.40.0; azure-mgmt-network<=29.0.0; azure-graphrbac<1.0.0,>=0.40.0; azure-common<2.0.0,>=1.1.12; msrest<=0.7.1,>=0.5.1; msrestazure<=0.7,>=0.4.33; urllib3<3.0.0,>1.26.17; packaging<26.0,>=20.0; python-dateutil<3.0.0,>=2.7.3; ndg-httpsclient<=0.5.1; SecretStorage<4.0.0; jsonpickle<5.0.0; contextlib2<22.0.0; docker<8.0.0; PyJWT<3.0.0; adal<=1.2.7,>=1.2.0; pyopenssl<26.0.0; jmespath<2.0.0","1.58.0.post1, 1.59.0, 1.59.0.post1, 1.59.0.post2, 1.60.0, 1.60.0.post1","pytz; backports.tempfile; pathspec<1.0.0; requests[socks]<3.0.0,>=2.19.1; msal<2.0.0,>=1.15.0; msal-extensions<=2.0.0,>=0.3.0; knack<0.13.0; azure-core<2.0.0; pkginfo; argcomplete<4; humanfriendly<11.0,>=4.7; paramiko<4.0.0,>=2.0.8; azure-mgmt-resource<=24.0.0,>=15.0.0; azure-mgmt-containerregistry<14,>=8.2.0; azure-mgmt-storage<=23.0.0,>=16.0.0; azure-mgmt-keyvault<12.0.0,>=0.40.0; azure-mgmt-authorization<5,>=0.40.0; azure-mgmt-network<=29.0.0; azure-graphrbac<1.0.0,>=0.40.0; azure-common<2.0.0,>=1.1.12; msrest<=0.7.1,>=0.5.1; msrestazure<=0.7,>=0.4.33; urllib3<3.0.0,>1.26.17; packaging<26.0,>=20.0; python-dateutil<3.0.0,>=2.7.3; ndg-httpsclient<=0.5.1; SecretStorage<4.0.0; jsonpickle<5.0.0; contextlib2<22.0.0; docker<8.0.0; PyJWT<3.0.0; adal<=1.2.7,>=1.2.0; pyopenssl<26.0.0; jmespath<2.0.0",1.60.0.post1,No,,No,None,,, +azureml-dataprep,Dependency Package,EY,5.1.6,,"azureml-dataprep-native<42.0.0,>=41.0.0; azureml-dataprep-rslex~=2.24.0dev0; cloudpickle<3.0.0,>=1.1.0; azure-identity<=1.17.0,>=1.16.0; jsonschema; pyyaml<7.0.0,>=5.1.0; numpy>=1.14.0; extra == ""pandas""; pandas>=0.23.4; extra == ""pandas""; pyarrow>=0.17.0; extra == ""pandas""; pyarrow>=0.17.0; extra == ""parquet""; pyspark==2.3.0; extra == ""pyspark""; fusepy<4.0.0,>=3.0.1; extra == ""fuse""; scipy>=1.1.0; extra == ""scipy""; pyarrow>=0.17.0; extra == ""pyarrow""","5.2.0, 5.2.1, 5.3.0, 5.3.1, 5.3.2, 5.3.3","azureml-dataprep-native<42.0.0,>=41.0.0; azureml-dataprep-rslex~=2.24.0dev0; cloudpickle<3.0.0,>=1.1.0; azure-identity<=1.17.0,>=1.16.0; jsonschema; pyyaml<7.0.0,>=5.1.0; numpy>=1.14.0; extra == ""pandas""; pandas>=0.23.4; extra == ""pandas""; pyarrow>=0.17.0; extra == ""pandas""; pyarrow>=0.17.0; extra == ""parquet""; pyspark==2.3.0; extra == ""pyspark""; fusepy<4.0.0,>=3.0.1; extra == ""fuse""; scipy>=1.1.0; extra == ""scipy""; pyarrow>=0.17.0; extra == ""pyarrow""",5.3.3,No,,No,None,,, +azureml-dataprep-native,Dependency Package,EY,41.0.0,,,,,41.0.0,No,,No,None,,, +azureml-dataprep-rslex,Dependency Package,EY,2.22.4,,,"2.22.5, 2.23.0, 2.23.1, 2.23.2, 2.23.3, 2.23.4, 2.23.5, 2.23.6, 2.23.7, 2.23.8, 2.24.0, 2.24.1, 2.24.2, 2.24.3, 2.24.4, 2.24.5",,2.24.5,No,,No,None,,, +babel,Dependency Package,EY,2.16.0,,"pytz>=2015.7; python_version < ""3.9""; tzdata; sys_platform == ""win32"" and extra == ""dev""; backports.zoneinfo; python_version < ""3.9"" and extra == ""dev""; freezegun~=1.0; extra == ""dev""; jinja2>=3.0; extra == ""dev""; pytest-cov; extra == ""dev""; pytest>=6.0; extra == ""dev""; pytz; extra == ""dev""; setuptools; extra == ""dev""",2.17.0,"pytz>=2015.7; python_version < ""3.9""; tzdata; sys_platform == ""win32"" and extra == ""dev""; backports.zoneinfo; python_version < ""3.9"" and extra == ""dev""; freezegun~=1.0; extra == ""dev""; jinja2>=3.0; extra == ""dev""; pytest-cov; extra == ""dev""; pytest>=6.0; extra == ""dev""; pytz; extra == ""dev""; setuptools; extra == ""dev""",2.17.0,No,,No,None,,, +backoff,Dependency Package,EY,2.2.1,,,,,2.2.1,No,,No,None,,, +bcrypt,Dependency Package,EY,4.2.0,,"pytest!=3.3.0,>=3.2.1; extra == ""tests""; mypy; extra == ""typecheck""","4.2.1, 4.3.0","pytest!=3.3.0,>=3.2.1; extra == ""tests""; mypy; extra == ""typecheck""",4.3.0,No,,No,None,,, +beautifulsoup4,Dependency Package,EY,4.12.3,,"soupsieve>1.2; typing-extensions>=4.0.0; cchardet; extra == ""cchardet""; chardet; extra == ""chardet""; charset-normalizer; extra == ""charset-normalizer""; html5lib; extra == ""html5lib""; lxml; extra == ""lxml""","4.13.0b2, 4.13.0b3, 4.13.0, 4.13.1, 4.13.2, 4.13.3, 4.13.4","soupsieve>1.2; typing-extensions>=4.0.0; cchardet; extra == ""cchardet""; chardet; extra == ""chardet""; charset-normalizer; extra == ""charset-normalizer""; html5lib; extra == ""html5lib""; lxml; extra == ""lxml""",4.13.4,No,,No,None,,, +binaryornot,Dependency Package,EY,0.4.4,,,,,0.4.4,No,,No,None,,, +bleach,Dependency Package,EY,6.1.0,,"webencodings; tinycss2<1.5,>=1.1.0; extra == ""css""",6.2.0,"webencodings; tinycss2<1.5,>=1.1.0; extra == ""css""",6.2.0,No,,No,None,,, +blis,Dependency Package,EY,1.0.1,,"numpy<3.0.0,>=1.15.0; python_version < ""3.9""; numpy<3.0.0,>=1.19.0; python_version >= ""3.9""","1.0.2, 1.1.0a0, 1.1.0, 1.2.0, 1.2.1, 1.3.0","numpy<3.0.0,>=1.15.0; python_version < ""3.9""; numpy<3.0.0,>=1.19.0; python_version >= ""3.9""",1.3.0,No,,No,None,,, +build,Dependency Package,EY,1.2.2.post1,,"packaging>=19.1; pyproject_hooks; colorama; os_name == ""nt""; importlib-metadata>=4.6; python_full_version < ""3.10.2""; tomli>=1.1.0; python_version < ""3.11""; furo>=2023.08.17; extra == ""docs""; sphinx~=7.0; extra == ""docs""; sphinx-argparse-cli>=1.5; extra == ""docs""; sphinx-autodoc-typehints>=1.10; extra == ""docs""; sphinx-issues>=3.0.0; extra == ""docs""; build[uv,virtualenv]; extra == ""test""; filelock>=3; extra == ""test""; pytest>=6.2.4; extra == ""test""; pytest-cov>=2.12; extra == ""test""; pytest-mock>=2; extra == ""test""; pytest-rerunfailures>=9.1; extra == ""test""; pytest-xdist>=1.34; extra == ""test""; wheel>=0.36.0; extra == ""test""; setuptools>=42.0.0; extra == ""test"" and python_version < ""3.10""; setuptools>=56.0.0; extra == ""test"" and python_version == ""3.10""; setuptools>=56.0.0; extra == ""test"" and python_version == ""3.11""; setuptools>=67.8.0; extra == ""test"" and python_version >= ""3.12""; build[uv]; extra == ""typing""; importlib-metadata>=5.1; extra == ""typing""; mypy~=1.9.0; extra == ""typing""; tomli; extra == ""typing""; typing-extensions>=3.7.4.3; extra == ""typing""; uv>=0.1.18; extra == ""uv""; virtualenv>=20.0.35; extra == ""virtualenv""",,"packaging>=19.1; pyproject_hooks; colorama; os_name == ""nt""; importlib-metadata>=4.6; python_full_version < ""3.10.2""; tomli>=1.1.0; python_version < ""3.11""; furo>=2023.08.17; extra == ""docs""; sphinx~=7.0; extra == ""docs""; sphinx-argparse-cli>=1.5; extra == ""docs""; sphinx-autodoc-typehints>=1.10; extra == ""docs""; sphinx-issues>=3.0.0; extra == ""docs""; build[uv,virtualenv]; extra == ""test""; filelock>=3; extra == ""test""; pytest>=6.2.4; extra == ""test""; pytest-cov>=2.12; extra == ""test""; pytest-mock>=2; extra == ""test""; pytest-rerunfailures>=9.1; extra == ""test""; pytest-xdist>=1.34; extra == ""test""; wheel>=0.36.0; extra == ""test""; setuptools>=42.0.0; extra == ""test"" and python_version < ""3.10""; setuptools>=56.0.0; extra == ""test"" and python_version == ""3.10""; setuptools>=56.0.0; extra == ""test"" and python_version == ""3.11""; setuptools>=67.8.0; extra == ""test"" and python_version >= ""3.12""; build[uv]; extra == ""typing""; importlib-metadata>=5.1; extra == ""typing""; mypy~=1.9.0; extra == ""typing""; tomli; extra == ""typing""; typing-extensions>=3.7.4.3; extra == ""typing""; uv>=0.1.18; extra == ""uv""; virtualenv>=20.0.35; extra == ""virtualenv""",1.2.2.post1,No,,No,None,,, +cachetools,Dependency Package,EY,5.5.0,,,"5.5.1, 5.5.2, 6.0.0, 6.1.0",,6.1.0,No,,No,None,,, +catalogue,Dependency Package,EY,2.0.10,,"zipp >=0.5 ; python_version < ""3.8""; typing-extensions >=3.6.4 ; python_version < ""3.8""",2.1.0,"zipp >=0.5 ; python_version < ""3.8""; typing-extensions >=3.6.4 ; python_version < ""3.8""",2.1.0,No,,No,None,,, +certifi,Dependency Package,EY,2025.1.31,,,"2025.4.26, 2025.6.15",,2025.6.15,No,,No,None,,, +cffi,Dependency Package,EY,1.17.1,,pycparser,,pycparser,1.17.1,No,,No,None,,, +chardet,Dependency Package,EY,5.2.0,,,,,5.2.0,No,,No,None,,, +charset-normalizer,Dependency Package,EY,3.4.1,,,3.4.2,,3.4.2,No,,No,None,,, +click,Dependency Package,EY,8.1.7,,"colorama; platform_system == ""Windows""","8.1.8, 8.2.0, 8.2.1","colorama; platform_system == ""Windows""",8.2.1,No,,No,None,,, +click-default-group,Dependency Package,EY,1.2.4,,"click; pytest ; extra == ""test""",,"click; pytest ; extra == ""test""",1.2.4,No,,No,None,,, +cloudpathlib,Dependency Package,EY,0.19.0,,"typing-extensions>4; python_version < ""3.11""; cloudpathlib[azure]; extra == ""all""; cloudpathlib[gs]; extra == ""all""; cloudpathlib[s3]; extra == ""all""; azure-storage-blob>=12; extra == ""azure""; azure-storage-file-datalake>=12; extra == ""azure""; google-cloud-storage; extra == ""gs""; boto3>=1.34.0; extra == ""s3""","0.20.0, 0.21.0, 0.21.1","typing-extensions>4; python_version < ""3.11""; cloudpathlib[azure]; extra == ""all""; cloudpathlib[gs]; extra == ""all""; cloudpathlib[s3]; extra == ""all""; azure-storage-blob>=12; extra == ""azure""; azure-storage-file-datalake>=12; extra == ""azure""; google-cloud-storage; extra == ""gs""; boto3>=1.34.0; extra == ""s3""",0.21.1,No,,No,None,,, +cloudpickle,Dependency Package,EY,3.1.0,,,3.1.1,,3.1.1,No,,No,None,,, +colorama,Dependency Package,EY,0.4.6,,,,,0.4.6,No,,No,None,,, +comm,Dependency Package,EY,0.2.2,,traitlets>=4; pytest; extra == 'test',,traitlets>=4; pytest; extra == 'test',0.2.2,No,,No,None,,, +confection,Dependency Package,EY,0.1.5,,"pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4; srsly<3.0.0,>=2.4.0; typing-extensions<5.0.0,>=3.7.4.1; python_version < ""3.8""",1.0.0.dev0,"pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4; srsly<3.0.0,>=2.4.0; typing-extensions<5.0.0,>=3.7.4.1; python_version < ""3.8""",1.0.0.dev0,No,,No,None,,, +contextlib2,Dependency Package,EY,21.6.0,,,,,21.6.0,No,,No,None,,, +contourpy,Dependency Package,EY,1.3.0,,"numpy>=1.23; furo; extra == ""docs""; sphinx>=7.2; extra == ""docs""; sphinx-copybutton; extra == ""docs""; bokeh; extra == ""bokeh""; selenium; extra == ""bokeh""; contourpy[bokeh,docs]; extra == ""mypy""; bokeh; extra == ""mypy""; docutils-stubs; extra == ""mypy""; mypy==1.15.0; extra == ""mypy""; types-Pillow; extra == ""mypy""; contourpy[test-no-images]; extra == ""test""; matplotlib; extra == ""test""; Pillow; extra == ""test""; pytest; extra == ""test-no-images""; pytest-cov; extra == ""test-no-images""; pytest-rerunfailures; extra == ""test-no-images""; pytest-xdist; extra == ""test-no-images""; wurlitzer; extra == ""test-no-images""","1.3.1, 1.3.2","numpy>=1.23; furo; extra == ""docs""; sphinx>=7.2; extra == ""docs""; sphinx-copybutton; extra == ""docs""; bokeh; extra == ""bokeh""; selenium; extra == ""bokeh""; contourpy[bokeh,docs]; extra == ""mypy""; bokeh; extra == ""mypy""; docutils-stubs; extra == ""mypy""; mypy==1.15.0; extra == ""mypy""; types-Pillow; extra == ""mypy""; contourpy[test-no-images]; extra == ""test""; matplotlib; extra == ""test""; Pillow; extra == ""test""; pytest; extra == ""test-no-images""; pytest-cov; extra == ""test-no-images""; pytest-rerunfailures; extra == ""test-no-images""; pytest-xdist; extra == ""test-no-images""; wurlitzer; extra == ""test-no-images""",1.3.2,No,,No,None,,, +cookiecutter,Dependency Package,EY,2.6.0,,"binaryornot >=0.4.4; Jinja2 <4.0.0,>=2.7; click <9.0.0,>=7.0; pyyaml >=5.3.1; python-slugify >=4.0.0; requests >=2.23.0; arrow; rich",,"binaryornot >=0.4.4; Jinja2 <4.0.0,>=2.7; click <9.0.0,>=7.0; pyyaml >=5.3.1; python-slugify >=4.0.0; requests >=2.23.0; arrow; rich",2.6.0,No,,No,None,,, +coverage,Dependency Package,EY,7.6.4,,"tomli; python_full_version <= ""3.11.0a6"" and extra == ""toml""","7.6.5, 7.6.6, 7.6.7, 7.6.8, 7.6.9, 7.6.10, 7.6.11, 7.6.12, 7.7.0, 7.7.1, 7.8.0, 7.8.1, 7.8.2, 7.9.0, 7.9.1","tomli; python_full_version <= ""3.11.0a6"" and extra == ""toml""",7.9.1,No,,No,None,,, +cryptography,Dependency Package,EY,44.0.2,,"cffi>=1.14; platform_python_implementation != ""PyPy""; bcrypt>=3.1.5; extra == ""ssh""; nox>=2024.4.15; extra == ""nox""; nox[uv]>=2024.3.2; python_full_version >= ""3.8"" and extra == ""nox""; cryptography-vectors==45.0.4; extra == ""test""; pytest>=7.4.0; extra == ""test""; pytest-benchmark>=4.0; extra == ""test""; pytest-cov>=2.10.1; extra == ""test""; pytest-xdist>=3.5.0; extra == ""test""; pretend>=0.7; extra == ""test""; certifi>=2024; extra == ""test""; pytest-randomly; extra == ""test-randomorder""; sphinx>=5.3.0; extra == ""docs""; sphinx-rtd-theme>=3.0.0; python_full_version >= ""3.8"" and extra == ""docs""; sphinx-inline-tabs; python_full_version >= ""3.8"" and extra == ""docs""; pyenchant>=3; extra == ""docstest""; readme-renderer>=30.0; extra == ""docstest""; sphinxcontrib-spelling>=7.3.1; extra == ""docstest""; build>=1.0.0; extra == ""sdist""; ruff>=0.3.6; extra == ""pep8test""; mypy>=1.4; extra == ""pep8test""; check-sdist; python_full_version >= ""3.8"" and extra == ""pep8test""; click>=8.0.1; extra == ""pep8test""","44.0.3, 45.0.0, 45.0.1, 45.0.2, 45.0.3, 45.0.4","cffi>=1.14; platform_python_implementation != ""PyPy""; bcrypt>=3.1.5; extra == ""ssh""; nox>=2024.4.15; extra == ""nox""; nox[uv]>=2024.3.2; python_full_version >= ""3.8"" and extra == ""nox""; cryptography-vectors==45.0.4; extra == ""test""; pytest>=7.4.0; extra == ""test""; pytest-benchmark>=4.0; extra == ""test""; pytest-cov>=2.10.1; extra == ""test""; pytest-xdist>=3.5.0; extra == ""test""; pretend>=0.7; extra == ""test""; certifi>=2024; extra == ""test""; pytest-randomly; extra == ""test-randomorder""; sphinx>=5.3.0; extra == ""docs""; sphinx-rtd-theme>=3.0.0; python_full_version >= ""3.8"" and extra == ""docs""; sphinx-inline-tabs; python_full_version >= ""3.8"" and extra == ""docs""; pyenchant>=3; extra == ""docstest""; readme-renderer>=30.0; extra == ""docstest""; sphinxcontrib-spelling>=7.3.1; extra == ""docstest""; build>=1.0.0; extra == ""sdist""; ruff>=0.3.6; extra == ""pep8test""; mypy>=1.4; extra == ""pep8test""; check-sdist; python_full_version >= ""3.8"" and extra == ""pep8test""; click>=8.0.1; extra == ""pep8test""",45.0.4,No,,No,None,,, +cycler,Dependency Package,EY,0.12.1,,ipython ; extra == 'docs'; matplotlib ; extra == 'docs'; numpydoc ; extra == 'docs'; sphinx ; extra == 'docs'; pytest ; extra == 'tests'; pytest-cov ; extra == 'tests'; pytest-xdist ; extra == 'tests',,ipython ; extra == 'docs'; matplotlib ; extra == 'docs'; numpydoc ; extra == 'docs'; sphinx ; extra == 'docs'; pytest ; extra == 'tests'; pytest-cov ; extra == 'tests'; pytest-xdist ; extra == 'tests',0.12.1,No,,No,None,,, +cymem,Dependency Package,EY,2.0.8,,,"2.0.9a2, 2.0.9a3, 2.0.10, 2.0.11",,2.0.11,No,,No,None,,, +debugpy,Dependency Package,EY,1.8.7,,,"1.8.8, 1.8.9, 1.8.10, 1.8.11, 1.8.12, 1.8.13, 1.8.14",,1.8.14,No,,No,None,,, +decorator,Dependency Package,EY,5.1.1,,,"5.2.0, 5.2.1",,5.2.1,No,,No,None,,, +defusedxml,Dependency Package,EY,0.7.1,,,"0.8.0rc1, 0.8.0rc2",,0.8.0rc2,No,,No,None,,, +distro,Dependency Package,EY,1.9.0,,,,,1.9.0,No,,No,None,,, +dnspython,Dependency Package,EY,2.7.0,,"black>=23.1.0; extra == ""dev""; coverage>=7.0; extra == ""dev""; flake8>=7; extra == ""dev""; hypercorn>=0.16.0; extra == ""dev""; mypy>=1.8; extra == ""dev""; pylint>=3; extra == ""dev""; pytest-cov>=4.1.0; extra == ""dev""; pytest>=7.4; extra == ""dev""; quart-trio>=0.11.0; extra == ""dev""; sphinx-rtd-theme>=2.0.0; extra == ""dev""; sphinx>=7.2.0; extra == ""dev""; twine>=4.0.0; extra == ""dev""; wheel>=0.42.0; extra == ""dev""; cryptography>=43; extra == ""dnssec""; h2>=4.1.0; extra == ""doh""; httpcore>=1.0.0; extra == ""doh""; httpx>=0.26.0; extra == ""doh""; aioquic>=1.0.0; extra == ""doq""; idna>=3.7; extra == ""idna""; trio>=0.23; extra == ""trio""; wmi>=1.5.1; extra == ""wmi""",,"black>=23.1.0; extra == ""dev""; coverage>=7.0; extra == ""dev""; flake8>=7; extra == ""dev""; hypercorn>=0.16.0; extra == ""dev""; mypy>=1.8; extra == ""dev""; pylint>=3; extra == ""dev""; pytest-cov>=4.1.0; extra == ""dev""; pytest>=7.4; extra == ""dev""; quart-trio>=0.11.0; extra == ""dev""; sphinx-rtd-theme>=2.0.0; extra == ""dev""; sphinx>=7.2.0; extra == ""dev""; twine>=4.0.0; extra == ""dev""; wheel>=0.42.0; extra == ""dev""; cryptography>=43; extra == ""dnssec""; h2>=4.1.0; extra == ""doh""; httpcore>=1.0.0; extra == ""doh""; httpx>=0.26.0; extra == ""doh""; aioquic>=1.0.0; extra == ""doq""; idna>=3.7; extra == ""idna""; trio>=0.23; extra == ""trio""; wmi>=1.5.1; extra == ""wmi""",2.7.0,No,,No,None,,, +docker,Dependency Package,EY,7.1.0,,"pywin32>=304; sys_platform == ""win32""; requests>=2.26.0; urllib3>=1.26.0; coverage==7.2.7; extra == ""dev""; pytest-cov==4.1.0; extra == ""dev""; pytest-timeout==2.1.0; extra == ""dev""; pytest==7.4.2; extra == ""dev""; ruff==0.1.8; extra == ""dev""; myst-parser==0.18.0; extra == ""docs""; sphinx==5.1.1; extra == ""docs""; paramiko>=2.4.3; extra == ""ssh""; websocket-client>=1.3.0; extra == ""websockets""",,"pywin32>=304; sys_platform == ""win32""; requests>=2.26.0; urllib3>=1.26.0; coverage==7.2.7; extra == ""dev""; pytest-cov==4.1.0; extra == ""dev""; pytest-timeout==2.1.0; extra == ""dev""; pytest==7.4.2; extra == ""dev""; ruff==0.1.8; extra == ""dev""; myst-parser==0.18.0; extra == ""docs""; sphinx==5.1.1; extra == ""docs""; paramiko>=2.4.3; extra == ""ssh""; websocket-client>=1.3.0; extra == ""websockets""",7.1.0,No,,No,None,,, +dynaconf,Dependency Package,EY,3.2.6,,"redis; extra == ""all""; ruamel.yaml; extra == ""all""; configobj; extra == ""all""; hvac; extra == ""all""; configobj; extra == ""configobj""; configobj; extra == ""ini""; redis; extra == ""redis""; pytest; extra == ""test""; pytest-cov; extra == ""test""; pytest-xdist; extra == ""test""; pytest-mock; extra == ""test""; radon; extra == ""test""; flask>=0.12; extra == ""test""; django; extra == ""test""; python-dotenv; extra == ""test""; toml; extra == ""test""; redis; extra == ""test""; hvac>=1.1.0; extra == ""test""; configobj; extra == ""test""; toml; extra == ""toml""; hvac; extra == ""vault""; ruamel.yaml; extra == ""yaml""","3.2.7, 3.2.8, 3.2.9, 3.2.10, 3.2.11","redis; extra == ""all""; ruamel.yaml; extra == ""all""; configobj; extra == ""all""; hvac; extra == ""all""; configobj; extra == ""configobj""; configobj; extra == ""ini""; redis; extra == ""redis""; pytest; extra == ""test""; pytest-cov; extra == ""test""; pytest-xdist; extra == ""test""; pytest-mock; extra == ""test""; radon; extra == ""test""; flask>=0.12; extra == ""test""; django; extra == ""test""; python-dotenv; extra == ""test""; toml; extra == ""test""; redis; extra == ""test""; hvac>=1.1.0; extra == ""test""; configobj; extra == ""test""; toml; extra == ""toml""; hvac; extra == ""vault""; ruamel.yaml; extra == ""yaml""",3.2.11,No,,No,None,,, +executing,Dependency Package,EY,2.1.0,,"asttokens>=2.1.0; extra == ""tests""; ipython; extra == ""tests""; pytest; extra == ""tests""; coverage; extra == ""tests""; coverage-enable-subprocess; extra == ""tests""; littleutils; extra == ""tests""; rich; python_version >= ""3.11"" and extra == ""tests""",2.2.0,"asttokens>=2.1.0; extra == ""tests""; ipython; extra == ""tests""; pytest; extra == ""tests""; coverage; extra == ""tests""; coverage-enable-subprocess; extra == ""tests""; littleutils; extra == ""tests""; rich; python_version >= ""3.11"" and extra == ""tests""",2.2.0,No,,No,None,,, +Faker,Dependency Package,EY,26.3.0,,tzdata,"27.0.0, 27.1.0, 27.2.0, 27.3.0, 27.4.0, 28.0.0, 28.1.0, 28.2.0, 28.3.0, 28.4.0, 28.4.1, 29.0.0, 30.0.0, 30.1.0, 30.2.0, 30.3.0, 30.4.0, 30.5.0, 30.6.0, 30.7.0, 30.8.0, 30.8.1, 30.8.2, 30.9.0, 30.10.0, 31.0.0, 32.0.0, 32.1.0, 33.0.0, 33.1.0, 33.1.1, 33.1.2, 33.1.3, 33.2.0, 33.3.0, 33.3.1, 34.0.0, 34.0.1, 34.0.2, 35.0.0, 35.1.0, 35.2.0, 35.2.1, 35.2.2, 36.0.0, 36.1.0, 36.1.1, 36.2.0, 36.2.1, 36.2.2, 36.2.3, 37.0.0, 37.0.1, 37.0.2, 37.1.0, 37.1.1, 37.2.0, 37.2.1, 37.3.0, 37.4.0",tzdata,37.4.0,No,,No,None,,, +fastapi,Dependency Package,EY,0.111.1,,"starlette<0.47.0,>=0.40.0; pydantic!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0,>=1.7.4; typing-extensions>=4.8.0; fastapi-cli[standard]>=0.0.5; extra == ""standard""; httpx>=0.23.0; extra == ""standard""; jinja2>=3.1.5; extra == ""standard""; python-multipart>=0.0.18; extra == ""standard""; email-validator>=2.0.0; extra == ""standard""; uvicorn[standard]>=0.12.0; extra == ""standard""; fastapi-cli[standard]>=0.0.5; extra == ""all""; httpx>=0.23.0; extra == ""all""; jinja2>=3.1.5; extra == ""all""; python-multipart>=0.0.18; extra == ""all""; itsdangerous>=1.1.0; extra == ""all""; pyyaml>=5.3.1; extra == ""all""; ujson!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,>=4.0.1; extra == ""all""; orjson>=3.2.1; extra == ""all""; email-validator>=2.0.0; extra == ""all""; uvicorn[standard]>=0.12.0; extra == ""all""; pydantic-settings>=2.0.0; extra == ""all""; pydantic-extra-types>=2.0.0; extra == ""all""","0.112.0, 0.112.1, 0.112.2, 0.112.3, 0.112.4, 0.113.0, 0.114.0, 0.114.1, 0.114.2, 0.115.0, 0.115.1, 0.115.2, 0.115.3, 0.115.4, 0.115.5, 0.115.6, 0.115.7, 0.115.8, 0.115.9, 0.115.10, 0.115.11, 0.115.12, 0.115.13","starlette<0.47.0,>=0.40.0; pydantic!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0,>=1.7.4; typing-extensions>=4.8.0; fastapi-cli[standard]>=0.0.5; extra == ""standard""; httpx>=0.23.0; extra == ""standard""; jinja2>=3.1.5; extra == ""standard""; python-multipart>=0.0.18; extra == ""standard""; email-validator>=2.0.0; extra == ""standard""; uvicorn[standard]>=0.12.0; extra == ""standard""; fastapi-cli[standard]>=0.0.5; extra == ""all""; httpx>=0.23.0; extra == ""all""; jinja2>=3.1.5; extra == ""all""; python-multipart>=0.0.18; extra == ""all""; itsdangerous>=1.1.0; extra == ""all""; pyyaml>=5.3.1; extra == ""all""; ujson!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,>=4.0.1; extra == ""all""; orjson>=3.2.1; extra == ""all""; email-validator>=2.0.0; extra == ""all""; uvicorn[standard]>=0.12.0; extra == ""all""; pydantic-settings>=2.0.0; extra == ""all""; pydantic-extra-types>=2.0.0; extra == ""all""",0.115.13,No,,No,None,,, +fastjsonschema,Dependency Package,EY,2.20.0,,"colorama; extra == ""devel""; jsonschema; extra == ""devel""; json-spec; extra == ""devel""; pylint; extra == ""devel""; pytest; extra == ""devel""; pytest-benchmark; extra == ""devel""; pytest-cache; extra == ""devel""; validictory; extra == ""devel""","2.21.0, 2.21.1","colorama; extra == ""devel""; jsonschema; extra == ""devel""; json-spec; extra == ""devel""; pylint; extra == ""devel""; pytest; extra == ""devel""; pytest-benchmark; extra == ""devel""; pytest-cache; extra == ""devel""; validictory; extra == ""devel""",2.21.1,No,,No,None,,, +filelock,Dependency Package,EY,3.16.1,,"furo>=2024.8.6; extra == ""docs""; sphinx-autodoc-typehints>=3; extra == ""docs""; sphinx>=8.1.3; extra == ""docs""; covdefaults>=2.3; extra == ""testing""; coverage>=7.6.10; extra == ""testing""; diff-cover>=9.2.1; extra == ""testing""; pytest-asyncio>=0.25.2; extra == ""testing""; pytest-cov>=6; extra == ""testing""; pytest-mock>=3.14; extra == ""testing""; pytest-timeout>=2.3.1; extra == ""testing""; pytest>=8.3.4; extra == ""testing""; virtualenv>=20.28.1; extra == ""testing""; typing-extensions>=4.12.2; python_version < ""3.11"" and extra == ""typing""","3.17.0, 3.18.0","furo>=2024.8.6; extra == ""docs""; sphinx-autodoc-typehints>=3; extra == ""docs""; sphinx>=8.1.3; extra == ""docs""; covdefaults>=2.3; extra == ""testing""; coverage>=7.6.10; extra == ""testing""; diff-cover>=9.2.1; extra == ""testing""; pytest-asyncio>=0.25.2; extra == ""testing""; pytest-cov>=6; extra == ""testing""; pytest-mock>=3.14; extra == ""testing""; pytest-timeout>=2.3.1; extra == ""testing""; pytest>=8.3.4; extra == ""testing""; virtualenv>=20.28.1; extra == ""testing""; typing-extensions>=4.12.2; python_version < ""3.11"" and extra == ""typing""",3.18.0,No,,No,None,,, +fonttools,Dependency Package,EY,4.54.1,,"fs<3,>=2.2.0; extra == ""ufo""; lxml>=4.0; extra == ""lxml""; brotli>=1.0.1; platform_python_implementation == ""CPython"" and extra == ""woff""; brotlicffi>=0.8.0; platform_python_implementation != ""CPython"" and extra == ""woff""; zopfli>=0.1.4; extra == ""woff""; unicodedata2>=15.1.0; python_version <= ""3.12"" and extra == ""unicode""; lz4>=1.7.4.2; extra == ""graphite""; scipy; platform_python_implementation != ""PyPy"" and extra == ""interpolatable""; munkres; platform_python_implementation == ""PyPy"" and extra == ""interpolatable""; pycairo; extra == ""interpolatable""; matplotlib; extra == ""plot""; sympy; extra == ""symfont""; xattr; sys_platform == ""darwin"" and extra == ""type1""; skia-pathops>=0.5.0; extra == ""pathops""; uharfbuzz>=0.23.0; extra == ""repacker""; fs<3,>=2.2.0; extra == ""all""; lxml>=4.0; extra == ""all""; brotli>=1.0.1; platform_python_implementation == ""CPython"" and extra == ""all""; brotlicffi>=0.8.0; platform_python_implementation != ""CPython"" and extra == ""all""; zopfli>=0.1.4; extra == ""all""; unicodedata2>=15.1.0; python_version <= ""3.12"" and extra == ""all""; lz4>=1.7.4.2; extra == ""all""; scipy; platform_python_implementation != ""PyPy"" and extra == ""all""; munkres; platform_python_implementation == ""PyPy"" and extra == ""all""; pycairo; extra == ""all""; matplotlib; extra == ""all""; sympy; extra == ""all""; xattr; sys_platform == ""darwin"" and extra == ""all""; skia-pathops>=0.5.0; extra == ""all""; uharfbuzz>=0.23.0; extra == ""all""","4.55.0, 4.55.1, 4.55.2, 4.55.3, 4.55.4, 4.55.5, 4.55.6, 4.55.7, 4.55.8, 4.56.0, 4.57.0, 4.58.0, 4.58.1, 4.58.2, 4.58.3, 4.58.4","fs<3,>=2.2.0; extra == ""ufo""; lxml>=4.0; extra == ""lxml""; brotli>=1.0.1; platform_python_implementation == ""CPython"" and extra == ""woff""; brotlicffi>=0.8.0; platform_python_implementation != ""CPython"" and extra == ""woff""; zopfli>=0.1.4; extra == ""woff""; unicodedata2>=15.1.0; python_version <= ""3.12"" and extra == ""unicode""; lz4>=1.7.4.2; extra == ""graphite""; scipy; platform_python_implementation != ""PyPy"" and extra == ""interpolatable""; munkres; platform_python_implementation == ""PyPy"" and extra == ""interpolatable""; pycairo; extra == ""interpolatable""; matplotlib; extra == ""plot""; sympy; extra == ""symfont""; xattr; sys_platform == ""darwin"" and extra == ""type1""; skia-pathops>=0.5.0; extra == ""pathops""; uharfbuzz>=0.23.0; extra == ""repacker""; fs<3,>=2.2.0; extra == ""all""; lxml>=4.0; extra == ""all""; brotli>=1.0.1; platform_python_implementation == ""CPython"" and extra == ""all""; brotlicffi>=0.8.0; platform_python_implementation != ""CPython"" and extra == ""all""; zopfli>=0.1.4; extra == ""all""; unicodedata2>=15.1.0; python_version <= ""3.12"" and extra == ""all""; lz4>=1.7.4.2; extra == ""all""; scipy; platform_python_implementation != ""PyPy"" and extra == ""all""; munkres; platform_python_implementation == ""PyPy"" and extra == ""all""; pycairo; extra == ""all""; matplotlib; extra == ""all""; sympy; extra == ""all""; xattr; sys_platform == ""darwin"" and extra == ""all""; skia-pathops>=0.5.0; extra == ""all""; uharfbuzz>=0.23.0; extra == ""all""",4.58.4,No,,No,None,,, +frozenlist,Dependency Package,EY,1.5.0,,,"1.6.0, 1.6.1, 1.6.2, 1.7.0",,1.7.0,No,,No,None,,, +fsspec,Dependency Package,EY,2024.10.0,,"adlfs; extra == ""abfs""; adlfs; extra == ""adl""; pyarrow>=1; extra == ""arrow""; dask; extra == ""dask""; distributed; extra == ""dask""; pre-commit; extra == ""dev""; ruff; extra == ""dev""; numpydoc; extra == ""doc""; sphinx; extra == ""doc""; sphinx-design; extra == ""doc""; sphinx-rtd-theme; extra == ""doc""; yarl; extra == ""doc""; dropbox; extra == ""dropbox""; dropboxdrivefs; extra == ""dropbox""; requests; extra == ""dropbox""; adlfs; extra == ""full""; aiohttp!=4.0.0a0,!=4.0.0a1; extra == ""full""; dask; extra == ""full""; distributed; extra == ""full""; dropbox; extra == ""full""; dropboxdrivefs; extra == ""full""; fusepy; extra == ""full""; gcsfs; extra == ""full""; libarchive-c; extra == ""full""; ocifs; extra == ""full""; panel; extra == ""full""; paramiko; extra == ""full""; pyarrow>=1; extra == ""full""; pygit2; extra == ""full""; requests; extra == ""full""; s3fs; extra == ""full""; smbprotocol; extra == ""full""; tqdm; extra == ""full""; fusepy; extra == ""fuse""; gcsfs; extra == ""gcs""; pygit2; extra == ""git""; requests; extra == ""github""; gcsfs; extra == ""gs""; panel; extra == ""gui""; pyarrow>=1; extra == ""hdfs""; aiohttp!=4.0.0a0,!=4.0.0a1; extra == ""http""; libarchive-c; extra == ""libarchive""; ocifs; extra == ""oci""; s3fs; extra == ""s3""; paramiko; extra == ""sftp""; smbprotocol; extra == ""smb""; paramiko; extra == ""ssh""; aiohttp!=4.0.0a0,!=4.0.0a1; extra == ""test""; numpy; extra == ""test""; pytest; extra == ""test""; pytest-asyncio!=0.22.0; extra == ""test""; pytest-benchmark; extra == ""test""; pytest-cov; extra == ""test""; pytest-mock; extra == ""test""; pytest-recording; extra == ""test""; pytest-rerunfailures; extra == ""test""; requests; extra == ""test""; aiobotocore<3.0.0,>=2.5.4; extra == ""test-downstream""; dask[dataframe,test]; extra == ""test-downstream""; moto[server]<5,>4; extra == ""test-downstream""; pytest-timeout; extra == ""test-downstream""; xarray; extra == ""test-downstream""; adlfs; extra == ""test-full""; aiohttp!=4.0.0a0,!=4.0.0a1; extra == ""test-full""; cloudpickle; extra == ""test-full""; dask; extra == ""test-full""; distributed; extra == ""test-full""; dropbox; extra == ""test-full""; dropboxdrivefs; extra == ""test-full""; fastparquet; extra == ""test-full""; fusepy; extra == ""test-full""; gcsfs; extra == ""test-full""; jinja2; extra == ""test-full""; kerchunk; extra == ""test-full""; libarchive-c; extra == ""test-full""; lz4; extra == ""test-full""; notebook; extra == ""test-full""; numpy; extra == ""test-full""; ocifs; extra == ""test-full""; pandas; extra == ""test-full""; panel; extra == ""test-full""; paramiko; extra == ""test-full""; pyarrow; extra == ""test-full""; pyarrow>=1; extra == ""test-full""; pyftpdlib; extra == ""test-full""; pygit2; extra == ""test-full""; pytest; extra == ""test-full""; pytest-asyncio!=0.22.0; extra == ""test-full""; pytest-benchmark; extra == ""test-full""; pytest-cov; extra == ""test-full""; pytest-mock; extra == ""test-full""; pytest-recording; extra == ""test-full""; pytest-rerunfailures; extra == ""test-full""; python-snappy; extra == ""test-full""; requests; extra == ""test-full""; smbprotocol; extra == ""test-full""; tqdm; extra == ""test-full""; urllib3; extra == ""test-full""; zarr; extra == ""test-full""; zstandard; extra == ""test-full""; tqdm; extra == ""tqdm""","2024.12.0, 2025.2.0, 2025.3.0, 2025.3.1, 2025.3.2, 2025.5.0, 2025.5.1","adlfs; extra == ""abfs""; adlfs; extra == ""adl""; pyarrow>=1; extra == ""arrow""; dask; extra == ""dask""; distributed; extra == ""dask""; pre-commit; extra == ""dev""; ruff; extra == ""dev""; numpydoc; extra == ""doc""; sphinx; extra == ""doc""; sphinx-design; extra == ""doc""; sphinx-rtd-theme; extra == ""doc""; yarl; extra == ""doc""; dropbox; extra == ""dropbox""; dropboxdrivefs; extra == ""dropbox""; requests; extra == ""dropbox""; adlfs; extra == ""full""; aiohttp!=4.0.0a0,!=4.0.0a1; extra == ""full""; dask; extra == ""full""; distributed; extra == ""full""; dropbox; extra == ""full""; dropboxdrivefs; extra == ""full""; fusepy; extra == ""full""; gcsfs; extra == ""full""; libarchive-c; extra == ""full""; ocifs; extra == ""full""; panel; extra == ""full""; paramiko; extra == ""full""; pyarrow>=1; extra == ""full""; pygit2; extra == ""full""; requests; extra == ""full""; s3fs; extra == ""full""; smbprotocol; extra == ""full""; tqdm; extra == ""full""; fusepy; extra == ""fuse""; gcsfs; extra == ""gcs""; pygit2; extra == ""git""; requests; extra == ""github""; gcsfs; extra == ""gs""; panel; extra == ""gui""; pyarrow>=1; extra == ""hdfs""; aiohttp!=4.0.0a0,!=4.0.0a1; extra == ""http""; libarchive-c; extra == ""libarchive""; ocifs; extra == ""oci""; s3fs; extra == ""s3""; paramiko; extra == ""sftp""; smbprotocol; extra == ""smb""; paramiko; extra == ""ssh""; aiohttp!=4.0.0a0,!=4.0.0a1; extra == ""test""; numpy; extra == ""test""; pytest; extra == ""test""; pytest-asyncio!=0.22.0; extra == ""test""; pytest-benchmark; extra == ""test""; pytest-cov; extra == ""test""; pytest-mock; extra == ""test""; pytest-recording; extra == ""test""; pytest-rerunfailures; extra == ""test""; requests; extra == ""test""; aiobotocore<3.0.0,>=2.5.4; extra == ""test-downstream""; dask[dataframe,test]; extra == ""test-downstream""; moto[server]<5,>4; extra == ""test-downstream""; pytest-timeout; extra == ""test-downstream""; xarray; extra == ""test-downstream""; adlfs; extra == ""test-full""; aiohttp!=4.0.0a0,!=4.0.0a1; extra == ""test-full""; cloudpickle; extra == ""test-full""; dask; extra == ""test-full""; distributed; extra == ""test-full""; dropbox; extra == ""test-full""; dropboxdrivefs; extra == ""test-full""; fastparquet; extra == ""test-full""; fusepy; extra == ""test-full""; gcsfs; extra == ""test-full""; jinja2; extra == ""test-full""; kerchunk; extra == ""test-full""; libarchive-c; extra == ""test-full""; lz4; extra == ""test-full""; notebook; extra == ""test-full""; numpy; extra == ""test-full""; ocifs; extra == ""test-full""; pandas; extra == ""test-full""; panel; extra == ""test-full""; paramiko; extra == ""test-full""; pyarrow; extra == ""test-full""; pyarrow>=1; extra == ""test-full""; pyftpdlib; extra == ""test-full""; pygit2; extra == ""test-full""; pytest; extra == ""test-full""; pytest-asyncio!=0.22.0; extra == ""test-full""; pytest-benchmark; extra == ""test-full""; pytest-cov; extra == ""test-full""; pytest-mock; extra == ""test-full""; pytest-recording; extra == ""test-full""; pytest-rerunfailures; extra == ""test-full""; python-snappy; extra == ""test-full""; requests; extra == ""test-full""; smbprotocol; extra == ""test-full""; tqdm; extra == ""test-full""; urllib3; extra == ""test-full""; zarr; extra == ""test-full""; zstandard; extra == ""test-full""; tqdm; extra == ""tqdm""",2025.5.1,No,,No,None,,, +gitdb,Dependency Package,EY,4.0.11,,"smmap<6,>=3.0.1",4.0.12,"smmap<6,>=3.0.1",4.0.12,No,,No,None,,, +GitPython,Dependency Package,EY,3.1.43,,"gitdb<5,>=4.0.1; typing-extensions>=3.7.4.3; python_version < ""3.8""; coverage[toml]; extra == ""test""; ddt!=1.4.3,>=1.1.1; extra == ""test""; mock; python_version < ""3.8"" and extra == ""test""; mypy; extra == ""test""; pre-commit; extra == ""test""; pytest>=7.3.1; extra == ""test""; pytest-cov; extra == ""test""; pytest-instafail; extra == ""test""; pytest-mock; extra == ""test""; pytest-sugar; extra == ""test""; typing-extensions; python_version < ""3.11"" and extra == ""test""; sphinx<7.2,>=7.1.2; extra == ""doc""; sphinx_rtd_theme; extra == ""doc""; sphinx-autodoc-typehints; extra == ""doc""",3.1.44,"gitdb<5,>=4.0.1; typing-extensions>=3.7.4.3; python_version < ""3.8""; coverage[toml]; extra == ""test""; ddt!=1.4.3,>=1.1.1; extra == ""test""; mock; python_version < ""3.8"" and extra == ""test""; mypy; extra == ""test""; pre-commit; extra == ""test""; pytest>=7.3.1; extra == ""test""; pytest-cov; extra == ""test""; pytest-instafail; extra == ""test""; pytest-mock; extra == ""test""; pytest-sugar; extra == ""test""; typing-extensions; python_version < ""3.11"" and extra == ""test""; sphinx<7.2,>=7.1.2; extra == ""doc""; sphinx_rtd_theme; extra == ""doc""; sphinx-autodoc-typehints; extra == ""doc""",3.1.44,No,,No,None,,, +google-api-core,Dependency Package,EY,2.21.0,,"googleapis-common-protos<2.0.0,>=1.56.2; protobuf!=3.20.0,!=3.20.1,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<7.0.0,>=3.19.5; proto-plus<2.0.0,>=1.22.3; proto-plus<2.0.0,>=1.25.0; python_version >= ""3.13""; google-auth<3.0.0,>=2.14.1; requests<3.0.0,>=2.18.0; google-auth[aiohttp]<3.0.0,>=2.35.0; extra == ""async-rest""; grpcio<2.0.0,>=1.33.2; extra == ""grpc""; grpcio<2.0.0,>=1.49.1; python_version >= ""3.11"" and extra == ""grpc""; grpcio-status<2.0.0,>=1.33.2; extra == ""grpc""; grpcio-status<2.0.0,>=1.49.1; python_version >= ""3.11"" and extra == ""grpc""; grpcio-gcp<1.0.0,>=0.2.2; extra == ""grpcgcp""; grpcio-gcp<1.0.0,>=0.2.2; extra == ""grpcio-gcp""","2.22.0rc0, 2.22.0, 2.23.0rc0, 2.23.0, 2.24.0, 2.24.1rc0, 2.24.1rc1, 2.24.1, 2.24.2, 2.25.0rc0, 2.25.0rc1, 2.25.0, 2.25.1rc0, 2.25.1","googleapis-common-protos<2.0.0,>=1.56.2; protobuf!=3.20.0,!=3.20.1,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<7.0.0,>=3.19.5; proto-plus<2.0.0,>=1.22.3; proto-plus<2.0.0,>=1.25.0; python_version >= ""3.13""; google-auth<3.0.0,>=2.14.1; requests<3.0.0,>=2.18.0; google-auth[aiohttp]<3.0.0,>=2.35.0; extra == ""async-rest""; grpcio<2.0.0,>=1.33.2; extra == ""grpc""; grpcio<2.0.0,>=1.49.1; python_version >= ""3.11"" and extra == ""grpc""; grpcio-status<2.0.0,>=1.33.2; extra == ""grpc""; grpcio-status<2.0.0,>=1.49.1; python_version >= ""3.11"" and extra == ""grpc""; grpcio-gcp<1.0.0,>=0.2.2; extra == ""grpcgcp""; grpcio-gcp<1.0.0,>=0.2.2; extra == ""grpcio-gcp""",2.25.1,No,,No,None,,, +google-auth,Dependency Package,EY,2.35.0,,"cachetools<6.0,>=2.0.0; pyasn1-modules>=0.2.1; rsa<5,>=3.1.4; aiohttp<4.0.0,>=3.6.2; extra == ""aiohttp""; requests<3.0.0,>=2.20.0; extra == ""aiohttp""; cryptography; extra == ""enterprise-cert""; pyopenssl; extra == ""enterprise-cert""; pyjwt>=2.0; extra == ""pyjwt""; cryptography>=38.0.3; extra == ""pyjwt""; cryptography<39.0.0; python_version < ""3.8"" and extra == ""pyjwt""; pyopenssl>=20.0.0; extra == ""pyopenssl""; cryptography>=38.0.3; extra == ""pyopenssl""; cryptography<39.0.0; python_version < ""3.8"" and extra == ""pyopenssl""; pyu2f>=0.1.5; extra == ""reauth""; requests<3.0.0,>=2.20.0; extra == ""requests""; grpcio; extra == ""testing""; flask; extra == ""testing""; freezegun; extra == ""testing""; mock; extra == ""testing""; oauth2client; extra == ""testing""; pyjwt>=2.0; extra == ""testing""; cryptography>=38.0.3; extra == ""testing""; pytest; extra == ""testing""; pytest-cov; extra == ""testing""; pytest-localserver; extra == ""testing""; pyopenssl>=20.0.0; extra == ""testing""; pyu2f>=0.1.5; extra == ""testing""; responses; extra == ""testing""; urllib3; extra == ""testing""; packaging; extra == ""testing""; aiohttp<4.0.0,>=3.6.2; extra == ""testing""; requests<3.0.0,>=2.20.0; extra == ""testing""; aioresponses; extra == ""testing""; pytest-asyncio; extra == ""testing""; pyopenssl<24.3.0; extra == ""testing""; aiohttp<3.10.0; extra == ""testing""; cryptography<39.0.0; python_version < ""3.8"" and extra == ""testing""; urllib3; extra == ""urllib3""; packaging; extra == ""urllib3""","2.36.0, 2.37.0, 2.38.0, 2.39.0, 2.40.0, 2.40.1, 2.40.2, 2.40.3","cachetools<6.0,>=2.0.0; pyasn1-modules>=0.2.1; rsa<5,>=3.1.4; aiohttp<4.0.0,>=3.6.2; extra == ""aiohttp""; requests<3.0.0,>=2.20.0; extra == ""aiohttp""; cryptography; extra == ""enterprise-cert""; pyopenssl; extra == ""enterprise-cert""; pyjwt>=2.0; extra == ""pyjwt""; cryptography>=38.0.3; extra == ""pyjwt""; cryptography<39.0.0; python_version < ""3.8"" and extra == ""pyjwt""; pyopenssl>=20.0.0; extra == ""pyopenssl""; cryptography>=38.0.3; extra == ""pyopenssl""; cryptography<39.0.0; python_version < ""3.8"" and extra == ""pyopenssl""; pyu2f>=0.1.5; extra == ""reauth""; requests<3.0.0,>=2.20.0; extra == ""requests""; grpcio; extra == ""testing""; flask; extra == ""testing""; freezegun; extra == ""testing""; mock; extra == ""testing""; oauth2client; extra == ""testing""; pyjwt>=2.0; extra == ""testing""; cryptography>=38.0.3; extra == ""testing""; pytest; extra == ""testing""; pytest-cov; extra == ""testing""; pytest-localserver; extra == ""testing""; pyopenssl>=20.0.0; extra == ""testing""; pyu2f>=0.1.5; extra == ""testing""; responses; extra == ""testing""; urllib3; extra == ""testing""; packaging; extra == ""testing""; aiohttp<4.0.0,>=3.6.2; extra == ""testing""; requests<3.0.0,>=2.20.0; extra == ""testing""; aioresponses; extra == ""testing""; pytest-asyncio; extra == ""testing""; pyopenssl<24.3.0; extra == ""testing""; aiohttp<3.10.0; extra == ""testing""; cryptography<39.0.0; python_version < ""3.8"" and extra == ""testing""; urllib3; extra == ""urllib3""; packaging; extra == ""urllib3""",2.40.3,No,,No,None,,, +googleapis-common-protos,Dependency Package,EY,1.65.0,,"protobuf!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<7.0.0,>=3.20.2; grpcio<2.0.0,>=1.44.0; extra == ""grpc""","1.66.0, 1.67.0rc1, 1.67.0, 1.68.0, 1.69.0, 1.69.1, 1.69.2, 1.70.0","protobuf!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<7.0.0,>=3.20.2; grpcio<2.0.0,>=1.44.0; extra == ""grpc""",1.70.0,No,,No,None,,, +graphql-core,Dependency Package,EY,3.2.4,,"typing-extensions<5,>=4; python_version < ""3.10""","3.2.5, 3.2.6, 3.3.0a1, 3.3.0a2, 3.3.0a3, 3.3.0a4, 3.3.0a5, 3.3.0a6, 3.3.0a7, 3.3.0a8, 3.3.0a9","typing-extensions<5,>=4; python_version < ""3.10""",3.3.0a9,No,,No,None,,, +greenlet,Dependency Package,EY,3.1.1,,"Sphinx; extra == ""docs""; furo; extra == ""docs""; objgraph; extra == ""test""; psutil; extra == ""test""","3.2.0, 3.2.1, 3.2.2, 3.2.3","Sphinx; extra == ""docs""; furo; extra == ""docs""; objgraph; extra == ""test""; psutil; extra == ""test""",3.2.3,No,,No,None,,, +h11,Dependency Package,EY,0.16.0,,,,,0.16.0,No,,No,None,,, +httpcore,Dependency Package,EY,1.0.7,,"certifi; h11>=0.16; anyio<5.0,>=4.0; extra == ""asyncio""; h2<5,>=3; extra == ""http2""; socksio==1.*; extra == ""socks""; trio<1.0,>=0.22.0; extra == ""trio""","1.0.8, 1.0.9","certifi; h11>=0.16; anyio<5.0,>=4.0; extra == ""asyncio""; h2<5,>=3; extra == ""http2""; socksio==1.*; extra == ""socks""; trio<1.0,>=0.22.0; extra == ""trio""",1.0.9,No,,No,None,,, +httpx,Dependency Package,EY,0.28.1,,"anyio; certifi; httpcore==1.*; idna; brotli; platform_python_implementation == ""CPython"" and extra == ""brotli""; brotlicffi; platform_python_implementation != ""CPython"" and extra == ""brotli""; click==8.*; extra == ""cli""; pygments==2.*; extra == ""cli""; rich<14,>=10; extra == ""cli""; h2<5,>=3; extra == ""http2""; socksio==1.*; extra == ""socks""; zstandard>=0.18.0; extra == ""zstd""",1.0.0b0,"anyio; certifi; httpcore==1.*; idna; brotli; platform_python_implementation == ""CPython"" and extra == ""brotli""; brotlicffi; platform_python_implementation != ""CPython"" and extra == ""brotli""; click==8.*; extra == ""cli""; pygments==2.*; extra == ""cli""; rich<14,>=10; extra == ""cli""; h2<5,>=3; extra == ""http2""; socksio==1.*; extra == ""socks""; zstandard>=0.18.0; extra == ""zstd""",1.0.0b0,No,,No,None,,, +humanfriendly,Dependency Package,EY,10,,"monotonic ; python_version == ""2.7""; pyreadline ; sys_platform == ""win32"" and python_version<""3.8""; pyreadline3 ; sys_platform == ""win32"" and python_version>=""3.8""",,"monotonic ; python_version == ""2.7""; pyreadline ; sys_platform == ""win32"" and python_version<""3.8""; pyreadline3 ; sys_platform == ""win32"" and python_version>=""3.8""",10.0,No,,No,None,,, +idna,Dependency Package,EY,3.1,,"ruff>=0.6.2; extra == ""all""; mypy>=1.11.2; extra == ""all""; pytest>=8.3.2; extra == ""all""; flake8>=7.1.1; extra == ""all""","3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10","ruff>=0.6.2; extra == ""all""; mypy>=1.11.2; extra == ""all""; pytest>=8.3.2; extra == ""all""; flake8>=7.1.1; extra == ""all""",3.10,Yes,"CVE-2024-3651, CVSS_V3, Internationalized Domain Names in Applications (IDNA) vulnerable to denial of service from specially crafted inputs to idna.encode, CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<3.7 +CVE-2024-3651, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.1,<3.7",Yes,"3.4: CVE-2024-3651, CVSS_V3, Internationalized Domain Names in Applications (IDNA) vulnerable to denial of service from specially crafted inputs to idna.encode, CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<3.7 +CVE-2024-3651, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.1,<3.7; 3.2: CVE-2024-3651, CVSS_V3, Internationalized Domain Names in Applications (IDNA) vulnerable to denial of service from specially crafted inputs to idna.encode, CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<3.7 +CVE-2024-3651, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.1,<3.7; 3.5: CVE-2024-3651, CVSS_V3, Internationalized Domain Names in Applications (IDNA) vulnerable to denial of service from specially crafted inputs to idna.encode, CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<3.7 +CVE-2024-3651, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.1,<3.7; 3.3: CVE-2024-3651, CVSS_V3, Internationalized Domain Names in Applications (IDNA) vulnerable to denial of service from specially crafted inputs to idna.encode, CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<3.7 +CVE-2024-3651, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.1,<3.7; 3.6: CVE-2024-3651, CVSS_V3, Internationalized Domain Names in Applications (IDNA) vulnerable to denial of service from specially crafted inputs to idna.encode, CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<3.7 +CVE-2024-3651, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.1,<3.7",3.10,"{'base_package': 'idna==3.10', 'dependencies': ['ruff==0.12.0', 'mypy==1.16.1', 'pytest==8.4.1', 'flake8==7.3.0']}",Not Used +importlib-metadata,Dependency Package,EY,8.5.0,,"zipp>=3.20; typing-extensions>=3.6.4; python_version < ""3.8""; pytest!=8.1.*,>=6; extra == ""test""; importlib_resources>=1.3; python_version < ""3.9"" and extra == ""test""; packaging; extra == ""test""; pyfakefs; extra == ""test""; flufl.flake8; extra == ""test""; pytest-perf>=0.9.2; extra == ""test""; jaraco.test>=5.4; extra == ""test""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; ipython; extra == ""perf""; pytest-checkdocs>=2.4; extra == ""check""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""check""; pytest-cov; extra == ""cover""; pytest-enabler>=2.2; extra == ""enabler""; pytest-mypy; extra == ""type""","8.6.0, 8.6.1, 8.7.0","zipp>=3.20; typing-extensions>=3.6.4; python_version < ""3.8""; pytest!=8.1.*,>=6; extra == ""test""; importlib_resources>=1.3; python_version < ""3.9"" and extra == ""test""; packaging; extra == ""test""; pyfakefs; extra == ""test""; flufl.flake8; extra == ""test""; pytest-perf>=0.9.2; extra == ""test""; jaraco.test>=5.4; extra == ""test""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; ipython; extra == ""perf""; pytest-checkdocs>=2.4; extra == ""check""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""check""; pytest-cov; extra == ""cover""; pytest-enabler>=2.2; extra == ""enabler""; pytest-mypy; extra == ""type""",8.7.0,No,,No,None,,, +importlib-resources,Dependency Package,EY,6.4.0,,"zipp>=3.1.0; python_version < ""3.10""; pytest!=8.1.*,>=6; extra == ""test""; zipp>=3.17; extra == ""test""; jaraco.test>=5.4; extra == ""test""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; pytest-checkdocs>=2.4; extra == ""check""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""check""; pytest-cov; extra == ""cover""; pytest-enabler>=2.2; extra == ""enabler""; pytest-mypy; extra == ""type""","6.4.1, 6.4.2, 6.4.3, 6.4.4, 6.4.5, 6.5.0, 6.5.1, 6.5.2","zipp>=3.1.0; python_version < ""3.10""; pytest!=8.1.*,>=6; extra == ""test""; zipp>=3.17; extra == ""test""; jaraco.test>=5.4; extra == ""test""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; pytest-checkdocs>=2.4; extra == ""check""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""check""; pytest-cov; extra == ""cover""; pytest-enabler>=2.2; extra == ""enabler""; pytest-mypy; extra == ""type""",6.5.2,No,,No,None,,, +iniconfig,Dependency Package,EY,2.0.0,,,2.1.0,,2.1.0,No,,No,None,,, +ipykernel,Dependency Package,EY,6.29.5,,"appnope; platform_system == ""Darwin""; comm>=0.1.1; debugpy>=1.6.5; ipython>=7.23.1; jupyter-client>=6.1.12; jupyter-core!=5.0.*,>=4.12; matplotlib-inline>=0.1; nest-asyncio; packaging; psutil; pyzmq>=24; tornado>=6.1; traitlets>=5.4.0; coverage[toml]; extra == ""cov""; curio; extra == ""cov""; matplotlib; extra == ""cov""; pytest-cov; extra == ""cov""; trio; extra == ""cov""; myst-parser; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx; extra == ""docs""; sphinx-autodoc-typehints; extra == ""docs""; sphinxcontrib-github-alt; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; trio; extra == ""docs""; pyqt5; extra == ""pyqt5""; pyside6; extra == ""pyside6""; flaky; extra == ""test""; ipyparallel; extra == ""test""; pre-commit; extra == ""test""; pytest-asyncio>=0.23.5; extra == ""test""; pytest-cov; extra == ""test""; pytest-timeout; extra == ""test""; pytest>=7.0; extra == ""test""","6.30.0a0, 7.0.0a0, 7.0.0a1","appnope; platform_system == ""Darwin""; comm>=0.1.1; debugpy>=1.6.5; ipython>=7.23.1; jupyter-client>=6.1.12; jupyter-core!=5.0.*,>=4.12; matplotlib-inline>=0.1; nest-asyncio; packaging; psutil; pyzmq>=24; tornado>=6.1; traitlets>=5.4.0; coverage[toml]; extra == ""cov""; curio; extra == ""cov""; matplotlib; extra == ""cov""; pytest-cov; extra == ""cov""; trio; extra == ""cov""; myst-parser; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx; extra == ""docs""; sphinx-autodoc-typehints; extra == ""docs""; sphinxcontrib-github-alt; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; trio; extra == ""docs""; pyqt5; extra == ""pyqt5""; pyside6; extra == ""pyside6""; flaky; extra == ""test""; ipyparallel; extra == ""test""; pre-commit; extra == ""test""; pytest-asyncio>=0.23.5; extra == ""test""; pytest-cov; extra == ""test""; pytest-timeout; extra == ""test""; pytest>=7.0; extra == ""test""",7.0.0a1,No,,No,None,,, +ipython,Dependency Package,EY,8.28.0,,"colorama; sys_platform == ""win32""; decorator; ipython-pygments-lexers; jedi>=0.16; matplotlib-inline; pexpect>4.3; sys_platform != ""win32"" and sys_platform != ""emscripten""; prompt_toolkit<3.1.0,>=3.0.41; pygments>=2.4.0; stack_data; traitlets>=5.13.0; typing_extensions>=4.6; python_version < ""3.12""; black; extra == ""black""; docrepr; extra == ""doc""; exceptiongroup; extra == ""doc""; intersphinx_registry; extra == ""doc""; ipykernel; extra == ""doc""; ipython[test]; extra == ""doc""; matplotlib; extra == ""doc""; setuptools>=18.5; extra == ""doc""; sphinx_toml==0.0.4; extra == ""doc""; sphinx-rtd-theme; extra == ""doc""; sphinx>=1.3; extra == ""doc""; typing_extensions; extra == ""doc""; pytest; extra == ""test""; pytest-asyncio<0.22; extra == ""test""; testpath; extra == ""test""; packaging; extra == ""test""; ipython[test]; extra == ""test-extra""; curio; extra == ""test-extra""; jupyter_ai; extra == ""test-extra""; matplotlib!=3.2.0; extra == ""test-extra""; nbformat; extra == ""test-extra""; nbclient; extra == ""test-extra""; ipykernel; extra == ""test-extra""; numpy>=1.23; extra == ""test-extra""; pandas; extra == ""test-extra""; trio; extra == ""test-extra""; matplotlib; extra == ""matplotlib""; ipython[doc,matplotlib,test,test_extra]; extra == ""all""","8.29.0, 8.30.0, 8.31.0, 8.32.0, 8.33.0, 8.34.0, 8.35.0, 8.36.0, 8.37.0, 9.0.0b1, 9.0.0b2, 9.0.0, 9.0.1, 9.0.2, 9.1.0, 9.2.0, 9.3.0","colorama; sys_platform == ""win32""; decorator; ipython-pygments-lexers; jedi>=0.16; matplotlib-inline; pexpect>4.3; sys_platform != ""win32"" and sys_platform != ""emscripten""; prompt_toolkit<3.1.0,>=3.0.41; pygments>=2.4.0; stack_data; traitlets>=5.13.0; typing_extensions>=4.6; python_version < ""3.12""; black; extra == ""black""; docrepr; extra == ""doc""; exceptiongroup; extra == ""doc""; intersphinx_registry; extra == ""doc""; ipykernel; extra == ""doc""; ipython[test]; extra == ""doc""; matplotlib; extra == ""doc""; setuptools>=18.5; extra == ""doc""; sphinx_toml==0.0.4; extra == ""doc""; sphinx-rtd-theme; extra == ""doc""; sphinx>=1.3; extra == ""doc""; typing_extensions; extra == ""doc""; pytest; extra == ""test""; pytest-asyncio<0.22; extra == ""test""; testpath; extra == ""test""; packaging; extra == ""test""; ipython[test]; extra == ""test-extra""; curio; extra == ""test-extra""; jupyter_ai; extra == ""test-extra""; matplotlib!=3.2.0; extra == ""test-extra""; nbformat; extra == ""test-extra""; nbclient; extra == ""test-extra""; ipykernel; extra == ""test-extra""; numpy>=1.23; extra == ""test-extra""; pandas; extra == ""test-extra""; trio; extra == ""test-extra""; matplotlib; extra == ""matplotlib""; ipython[doc,matplotlib,test,test_extra]; extra == ""all""",9.3.0,No,,No,None,,, +isodate,Dependency Package,EY,0.7.2,,,,,0.7.2,No,,No,None,,, +iterative-telemetry,Dependency Package,EY,0.0.8,,"requests; appdirs; filelock; distro; pytest==7.2.0; extra == ""tests""; pytest-sugar==0.9.5; extra == ""tests""; pytest-cov==3.0.0; extra == ""tests""; pytest-mock==3.8.2; extra == ""tests""; pylint==2.15.0; extra == ""tests""; mypy==1.11.2; extra == ""tests""; types-requests; extra == ""tests""; pytest==7.2.0; extra == ""dev""; pytest-sugar==0.9.5; extra == ""dev""; pytest-cov==3.0.0; extra == ""dev""; pytest-mock==3.8.2; extra == ""dev""; pylint==2.15.0; extra == ""dev""; mypy==1.11.2; extra == ""dev""; types-requests; extra == ""dev""","0.0.9, 0.0.10","requests; appdirs; filelock; distro; pytest==7.2.0; extra == ""tests""; pytest-sugar==0.9.5; extra == ""tests""; pytest-cov==3.0.0; extra == ""tests""; pytest-mock==3.8.2; extra == ""tests""; pylint==2.15.0; extra == ""tests""; mypy==1.11.2; extra == ""tests""; types-requests; extra == ""tests""; pytest==7.2.0; extra == ""dev""; pytest-sugar==0.9.5; extra == ""dev""; pytest-cov==3.0.0; extra == ""dev""; pytest-mock==3.8.2; extra == ""dev""; pylint==2.15.0; extra == ""dev""; mypy==1.11.2; extra == ""dev""; types-requests; extra == ""dev""",0.0.10,No,,No,None,,, +jedi,Dependency Package,EY,0.19.1,,"parso<0.9.0,>=0.8.4; Jinja2==2.11.3; extra == ""docs""; MarkupSafe==1.1.1; extra == ""docs""; Pygments==2.8.1; extra == ""docs""; alabaster==0.7.12; extra == ""docs""; babel==2.9.1; extra == ""docs""; chardet==4.0.0; extra == ""docs""; commonmark==0.8.1; extra == ""docs""; docutils==0.17.1; extra == ""docs""; future==0.18.2; extra == ""docs""; idna==2.10; extra == ""docs""; imagesize==1.2.0; extra == ""docs""; mock==1.0.1; extra == ""docs""; packaging==20.9; extra == ""docs""; pyparsing==2.4.7; extra == ""docs""; pytz==2021.1; extra == ""docs""; readthedocs-sphinx-ext==2.1.4; extra == ""docs""; recommonmark==0.5.0; extra == ""docs""; requests==2.25.1; extra == ""docs""; six==1.15.0; extra == ""docs""; snowballstemmer==2.1.0; extra == ""docs""; sphinx-rtd-theme==0.4.3; extra == ""docs""; sphinx==1.8.5; extra == ""docs""; sphinxcontrib-serializinghtml==1.1.4; extra == ""docs""; sphinxcontrib-websupport==1.2.4; extra == ""docs""; urllib3==1.26.4; extra == ""docs""; flake8==5.0.4; extra == ""qa""; mypy==0.971; extra == ""qa""; types-setuptools==67.2.0.1; extra == ""qa""; Django; extra == ""testing""; attrs; extra == ""testing""; colorama; extra == ""testing""; docopt; extra == ""testing""; pytest<9.0.0; extra == ""testing""",0.19.2,"parso<0.9.0,>=0.8.4; Jinja2==2.11.3; extra == ""docs""; MarkupSafe==1.1.1; extra == ""docs""; Pygments==2.8.1; extra == ""docs""; alabaster==0.7.12; extra == ""docs""; babel==2.9.1; extra == ""docs""; chardet==4.0.0; extra == ""docs""; commonmark==0.8.1; extra == ""docs""; docutils==0.17.1; extra == ""docs""; future==0.18.2; extra == ""docs""; idna==2.10; extra == ""docs""; imagesize==1.2.0; extra == ""docs""; mock==1.0.1; extra == ""docs""; packaging==20.9; extra == ""docs""; pyparsing==2.4.7; extra == ""docs""; pytz==2021.1; extra == ""docs""; readthedocs-sphinx-ext==2.1.4; extra == ""docs""; recommonmark==0.5.0; extra == ""docs""; requests==2.25.1; extra == ""docs""; six==1.15.0; extra == ""docs""; snowballstemmer==2.1.0; extra == ""docs""; sphinx-rtd-theme==0.4.3; extra == ""docs""; sphinx==1.8.5; extra == ""docs""; sphinxcontrib-serializinghtml==1.1.4; extra == ""docs""; sphinxcontrib-websupport==1.2.4; extra == ""docs""; urllib3==1.26.4; extra == ""docs""; flake8==5.0.4; extra == ""qa""; mypy==0.971; extra == ""qa""; types-setuptools==67.2.0.1; extra == ""qa""; Django; extra == ""testing""; attrs; extra == ""testing""; colorama; extra == ""testing""; docopt; extra == ""testing""; pytest<9.0.0; extra == ""testing""",0.19.2,No,,No,None,,, +jeepney,Dependency Package,EY,0.8.0,,"pytest; extra == ""test""; pytest-trio; extra == ""test""; pytest-asyncio>=0.17; extra == ""test""; testpath; extra == ""test""; trio; extra == ""test""; async-timeout; extra == ""test"" and python_version < ""3.11""; trio; extra == ""trio""",0.9.0,"pytest; extra == ""test""; pytest-trio; extra == ""test""; pytest-asyncio>=0.17; extra == ""test""; testpath; extra == ""test""; trio; extra == ""test""; async-timeout; extra == ""test"" and python_version < ""3.11""; trio; extra == ""trio""",0.9.0,No,,No,None,,, +Jinja2,Dependency Package,EY,3.1.6,,"MarkupSafe>=2.0; Babel>=2.7; extra == ""i18n""",,"MarkupSafe>=2.0; Babel>=2.7; extra == ""i18n""",3.1.6,No,,No,None,,, +jmespath,Dependency Package,EY,1.0.1,,,,,1.0.1,No,,No,None,,, +joblib,Dependency Package,EY,1.4.2,,,"1.5.0, 1.5.1",,1.5.1,No,,No,None,,, +json5,Dependency Package,EY,0.9.25,,"build==1.2.2.post1; extra == ""dev""; coverage==7.5.4; python_version < ""3.9"" and extra == ""dev""; coverage==7.8.0; python_version >= ""3.9"" and extra == ""dev""; mypy==1.14.1; python_version < ""3.9"" and extra == ""dev""; mypy==1.15.0; python_version >= ""3.9"" and extra == ""dev""; pip==25.0.1; extra == ""dev""; pylint==3.2.7; python_version < ""3.9"" and extra == ""dev""; pylint==3.3.6; python_version >= ""3.9"" and extra == ""dev""; ruff==0.11.2; extra == ""dev""; twine==6.1.0; extra == ""dev""; uv==0.6.11; extra == ""dev""","0.9.26, 0.9.27, 0.9.28, 0.10.0, 0.11.0, 0.12.0","build==1.2.2.post1; extra == ""dev""; coverage==7.5.4; python_version < ""3.9"" and extra == ""dev""; coverage==7.8.0; python_version >= ""3.9"" and extra == ""dev""; mypy==1.14.1; python_version < ""3.9"" and extra == ""dev""; mypy==1.15.0; python_version >= ""3.9"" and extra == ""dev""; pip==25.0.1; extra == ""dev""; pylint==3.2.7; python_version < ""3.9"" and extra == ""dev""; pylint==3.3.6; python_version >= ""3.9"" and extra == ""dev""; ruff==0.11.2; extra == ""dev""; twine==6.1.0; extra == ""dev""; uv==0.6.11; extra == ""dev""",0.12.0,No,,No,None,,, +jsonpickle,Dependency Package,EY,3.3.0,,"pytest-cov; extra == ""cov""; black; extra == ""dev""; pyupgrade; extra == ""dev""; pytest!=8.1.*,>=6.0; extra == ""testing""; pytest-benchmark; extra == ""testing""; pytest-benchmark[histogram]; extra == ""testing""; pytest-checkdocs>=1.2.3; extra == ""testing""; pytest-enabler>=1.0.1; extra == ""testing""; pytest-ruff>=0.2.1; extra == ""testing""; bson; extra == ""testing""; ecdsa; extra == ""testing""; feedparser; extra == ""testing""; gmpy2; extra == ""testing""; numpy; extra == ""testing""; pandas; extra == ""testing""; pymongo; extra == ""testing""; PyYAML; extra == ""testing""; scikit-learn; extra == ""testing""; scipy>=1.9.3; python_version > ""3.10"" and extra == ""testing""; scipy; python_version <= ""3.10"" and extra == ""testing""; simplejson; extra == ""testing""; sqlalchemy; extra == ""testing""; ujson; extra == ""testing""; atheris~=2.3.0; python_version < ""3.12"" and extra == ""testing""; furo; extra == ""docs""; rst.linker>=1.9; extra == ""docs""; sphinx>=3.5; extra == ""docs""; build; extra == ""packaging""; setuptools>=61.2; extra == ""packaging""; setuptools_scm[toml]>=6.0; extra == ""packaging""; twine; extra == ""packaging""","3.4.0, 3.4.1, 3.4.2, 4.0.0, 4.0.1, 4.0.2, 4.0.3, 4.0.4, 4.0.5, 4.1.0, 4.1.1, 5.0.0rc1","pytest-cov; extra == ""cov""; black; extra == ""dev""; pyupgrade; extra == ""dev""; pytest!=8.1.*,>=6.0; extra == ""testing""; pytest-benchmark; extra == ""testing""; pytest-benchmark[histogram]; extra == ""testing""; pytest-checkdocs>=1.2.3; extra == ""testing""; pytest-enabler>=1.0.1; extra == ""testing""; pytest-ruff>=0.2.1; extra == ""testing""; bson; extra == ""testing""; ecdsa; extra == ""testing""; feedparser; extra == ""testing""; gmpy2; extra == ""testing""; numpy; extra == ""testing""; pandas; extra == ""testing""; pymongo; extra == ""testing""; PyYAML; extra == ""testing""; scikit-learn; extra == ""testing""; scipy>=1.9.3; python_version > ""3.10"" and extra == ""testing""; scipy; python_version <= ""3.10"" and extra == ""testing""; simplejson; extra == ""testing""; sqlalchemy; extra == ""testing""; ujson; extra == ""testing""; atheris~=2.3.0; python_version < ""3.12"" and extra == ""testing""; furo; extra == ""docs""; rst.linker>=1.9; extra == ""docs""; sphinx>=3.5; extra == ""docs""; build; extra == ""packaging""; setuptools>=61.2; extra == ""packaging""; setuptools_scm[toml]>=6.0; extra == ""packaging""; twine; extra == ""packaging""",5.0.0rc1,No,,No,None,,, +jsonpointer,Dependency Package,EY,3.0.0,,,,,3.0.0,No,,No,None,,, +jsonschema,Dependency Package,EY,4.23.0,,"attrs>=22.2.0; importlib-resources>=1.4.0; python_version < ""3.9""; jsonschema-specifications>=2023.03.6; pkgutil-resolve-name>=1.3.10; python_version < ""3.9""; referencing>=0.28.4; rpds-py>=0.7.1; fqdn; extra == ""format""; idna; extra == ""format""; isoduration; extra == ""format""; jsonpointer>1.13; extra == ""format""; rfc3339-validator; extra == ""format""; rfc3987; extra == ""format""; uri-template; extra == ""format""; webcolors>=1.11; extra == ""format""; fqdn; extra == ""format-nongpl""; idna; extra == ""format-nongpl""; isoduration; extra == ""format-nongpl""; jsonpointer>1.13; extra == ""format-nongpl""; rfc3339-validator; extra == ""format-nongpl""; rfc3986-validator>0.1.0; extra == ""format-nongpl""; uri-template; extra == ""format-nongpl""; webcolors>=24.6.0; extra == ""format-nongpl""",4.24.0,"attrs>=22.2.0; importlib-resources>=1.4.0; python_version < ""3.9""; jsonschema-specifications>=2023.03.6; pkgutil-resolve-name>=1.3.10; python_version < ""3.9""; referencing>=0.28.4; rpds-py>=0.7.1; fqdn; extra == ""format""; idna; extra == ""format""; isoduration; extra == ""format""; jsonpointer>1.13; extra == ""format""; rfc3339-validator; extra == ""format""; rfc3987; extra == ""format""; uri-template; extra == ""format""; webcolors>=1.11; extra == ""format""; fqdn; extra == ""format-nongpl""; idna; extra == ""format-nongpl""; isoduration; extra == ""format-nongpl""; jsonpointer>1.13; extra == ""format-nongpl""; rfc3339-validator; extra == ""format-nongpl""; rfc3986-validator>0.1.0; extra == ""format-nongpl""; uri-template; extra == ""format-nongpl""; webcolors>=24.6.0; extra == ""format-nongpl""",4.24.0,No,,No,None,,, +jsonschema-specifications,Dependency Package,EY,2024.10.1,,referencing>=0.31.0,2025.4.1,referencing>=0.31.0,2025.4.1,No,,No,None,,, +jupyter-client,Dependency Package,EY,8.6.3,,"importlib-metadata>=4.8.3; python_version < ""3.10""; jupyter-core!=5.0.*,>=4.12; python-dateutil>=2.8.2; pyzmq>=23.0; tornado>=6.2; traitlets>=5.3; ipykernel; extra == ""docs""; myst-parser; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx-autodoc-typehints; extra == ""docs""; sphinx>=4; extra == ""docs""; sphinxcontrib-github-alt; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; coverage; extra == ""test""; ipykernel>=6.14; extra == ""test""; mypy; extra == ""test""; paramiko; sys_platform == ""win32"" and extra == ""test""; pre-commit; extra == ""test""; pytest-cov; extra == ""test""; pytest-jupyter[client]>=0.4.1; extra == ""test""; pytest-timeout; extra == ""test""; pytest<8.2.0; extra == ""test""",,"importlib-metadata>=4.8.3; python_version < ""3.10""; jupyter-core!=5.0.*,>=4.12; python-dateutil>=2.8.2; pyzmq>=23.0; tornado>=6.2; traitlets>=5.3; ipykernel; extra == ""docs""; myst-parser; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx-autodoc-typehints; extra == ""docs""; sphinx>=4; extra == ""docs""; sphinxcontrib-github-alt; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; coverage; extra == ""test""; ipykernel>=6.14; extra == ""test""; mypy; extra == ""test""; paramiko; sys_platform == ""win32"" and extra == ""test""; pre-commit; extra == ""test""; pytest-cov; extra == ""test""; pytest-jupyter[client]>=0.4.1; extra == ""test""; pytest-timeout; extra == ""test""; pytest<8.2.0; extra == ""test""",8.6.3,No,,No,None,,, +jupyter-core,Dependency Package,EY,5.8.1,,"platformdirs>=2.5; pywin32>=300; sys_platform == ""win32"" and platform_python_implementation != ""PyPy""; traitlets>=5.3; intersphinx-registry; extra == ""docs""; myst-parser; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx-autodoc-typehints; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; traitlets; extra == ""docs""; ipykernel; extra == ""test""; pre-commit; extra == ""test""; pytest-cov; extra == ""test""; pytest-timeout; extra == ""test""; pytest<9; extra == ""test""",,"platformdirs>=2.5; pywin32>=300; sys_platform == ""win32"" and platform_python_implementation != ""PyPy""; traitlets>=5.3; intersphinx-registry; extra == ""docs""; myst-parser; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx-autodoc-typehints; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; traitlets; extra == ""docs""; ipykernel; extra == ""test""; pre-commit; extra == ""test""; pytest-cov; extra == ""test""; pytest-timeout; extra == ""test""; pytest<9; extra == ""test""",5.8.1,No,,No,None,,, +jupyter-events,Dependency Package,EY,0.10.0,,"jsonschema[format-nongpl]>=4.18.0; packaging; python-json-logger>=2.0.4; pyyaml>=5.3; referencing; rfc3339-validator; rfc3986-validator>=0.1.1; traitlets>=5.3; click; extra == ""cli""; rich; extra == ""cli""; jupyterlite-sphinx; extra == ""docs""; myst-parser; extra == ""docs""; pydata-sphinx-theme>=0.16; extra == ""docs""; sphinx>=8; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; click; extra == ""test""; pre-commit; extra == ""test""; pytest-asyncio>=0.19.0; extra == ""test""; pytest-console-scripts; extra == ""test""; pytest>=7.0; extra == ""test""; rich; extra == ""test""","0.11.0, 0.12.0","jsonschema[format-nongpl]>=4.18.0; packaging; python-json-logger>=2.0.4; pyyaml>=5.3; referencing; rfc3339-validator; rfc3986-validator>=0.1.1; traitlets>=5.3; click; extra == ""cli""; rich; extra == ""cli""; jupyterlite-sphinx; extra == ""docs""; myst-parser; extra == ""docs""; pydata-sphinx-theme>=0.16; extra == ""docs""; sphinx>=8; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; click; extra == ""test""; pre-commit; extra == ""test""; pytest-asyncio>=0.19.0; extra == ""test""; pytest-console-scripts; extra == ""test""; pytest>=7.0; extra == ""test""; rich; extra == ""test""",0.12.0,No,,No,None,,, +jupyter-lsp,Dependency Package,EY,2.2.5,,"jupyter-server>=1.1.2; importlib-metadata>=4.8.3; python_version < ""3.10""",,"jupyter-server>=1.1.2; importlib-metadata>=4.8.3; python_version < ""3.10""",2.2.5,No,,No,None,,, +jupyter-server,Dependency Package,EY,2.14.2,,"anyio>=3.1.0; argon2-cffi>=21.1; jinja2>=3.0.3; jupyter-client>=7.4.4; jupyter-core!=5.0.*,>=4.12; jupyter-events>=0.11.0; jupyter-server-terminals>=0.4.4; nbconvert>=6.4.4; nbformat>=5.3.0; overrides>=5.0; packaging>=22.0; prometheus-client>=0.9; pywinpty>=2.0.1; os_name == ""nt""; pyzmq>=24; send2trash>=1.8.2; terminado>=0.8.3; tornado>=6.2.0; traitlets>=5.6.0; websocket-client>=1.7; ipykernel; extra == ""docs""; jinja2; extra == ""docs""; jupyter-client; extra == ""docs""; myst-parser; extra == ""docs""; nbformat; extra == ""docs""; prometheus-client; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; send2trash; extra == ""docs""; sphinx-autodoc-typehints; extra == ""docs""; sphinxcontrib-github-alt; extra == ""docs""; sphinxcontrib-openapi>=0.8.0; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; sphinxemoji; extra == ""docs""; tornado; extra == ""docs""; typing-extensions; extra == ""docs""; flaky; extra == ""test""; ipykernel; extra == ""test""; pre-commit; extra == ""test""; pytest-console-scripts; extra == ""test""; pytest-jupyter[server]>=0.7; extra == ""test""; pytest-timeout; extra == ""test""; pytest<9,>=7.0; extra == ""test""; requests; extra == ""test""","2.15.0, 2.16.0","anyio>=3.1.0; argon2-cffi>=21.1; jinja2>=3.0.3; jupyter-client>=7.4.4; jupyter-core!=5.0.*,>=4.12; jupyter-events>=0.11.0; jupyter-server-terminals>=0.4.4; nbconvert>=6.4.4; nbformat>=5.3.0; overrides>=5.0; packaging>=22.0; prometheus-client>=0.9; pywinpty>=2.0.1; os_name == ""nt""; pyzmq>=24; send2trash>=1.8.2; terminado>=0.8.3; tornado>=6.2.0; traitlets>=5.6.0; websocket-client>=1.7; ipykernel; extra == ""docs""; jinja2; extra == ""docs""; jupyter-client; extra == ""docs""; myst-parser; extra == ""docs""; nbformat; extra == ""docs""; prometheus-client; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; send2trash; extra == ""docs""; sphinx-autodoc-typehints; extra == ""docs""; sphinxcontrib-github-alt; extra == ""docs""; sphinxcontrib-openapi>=0.8.0; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; sphinxemoji; extra == ""docs""; tornado; extra == ""docs""; typing-extensions; extra == ""docs""; flaky; extra == ""test""; ipykernel; extra == ""test""; pre-commit; extra == ""test""; pytest-console-scripts; extra == ""test""; pytest-jupyter[server]>=0.7; extra == ""test""; pytest-timeout; extra == ""test""; pytest<9,>=7.0; extra == ""test""; requests; extra == ""test""",2.16.0,No,,No,None,,, +jupyter-server-terminals,Dependency Package,EY,0.5.3,,pywinpty>=2.0.3; os_name == 'nt'; terminado>=0.8.3; jinja2; extra == 'docs'; jupyter-server; extra == 'docs'; mistune<4.0; extra == 'docs'; myst-parser; extra == 'docs'; nbformat; extra == 'docs'; packaging; extra == 'docs'; pydata-sphinx-theme; extra == 'docs'; sphinxcontrib-github-alt; extra == 'docs'; sphinxcontrib-openapi; extra == 'docs'; sphinxcontrib-spelling; extra == 'docs'; sphinxemoji; extra == 'docs'; tornado; extra == 'docs'; jupyter-server>=2.0.0; extra == 'test'; pytest-jupyter[server]>=0.5.3; extra == 'test'; pytest-timeout; extra == 'test'; pytest>=7.0; extra == 'test',,pywinpty>=2.0.3; os_name == 'nt'; terminado>=0.8.3; jinja2; extra == 'docs'; jupyter-server; extra == 'docs'; mistune<4.0; extra == 'docs'; myst-parser; extra == 'docs'; nbformat; extra == 'docs'; packaging; extra == 'docs'; pydata-sphinx-theme; extra == 'docs'; sphinxcontrib-github-alt; extra == 'docs'; sphinxcontrib-openapi; extra == 'docs'; sphinxcontrib-spelling; extra == 'docs'; sphinxemoji; extra == 'docs'; tornado; extra == 'docs'; jupyter-server>=2.0.0; extra == 'test'; pytest-jupyter[server]>=0.5.3; extra == 'test'; pytest-timeout; extra == 'test'; pytest>=7.0; extra == 'test',0.5.3,No,,No,None,,, +jupyterlab,Dependency Package,EY,4.2.5,,"jupyter-server<3,>=2.4.0; jupyterlab-server<3,>=2.27.1; notebook-shim>=0.2; packaging; async-lru>=1.0.0; httpx>=0.25.0; importlib-metadata>=4.8.3; python_version < ""3.10""; ipykernel>=6.5.0; jinja2>=3.0.3; jupyter-core; jupyter-lsp>=2.0.0; setuptools>=41.1.0; tomli>=1.2.2; python_version < ""3.11""; tornado>=6.2.0; traitlets; build; extra == ""dev""; bump2version; extra == ""dev""; coverage; extra == ""dev""; hatch; extra == ""dev""; pre-commit; extra == ""dev""; pytest-cov; extra == ""dev""; ruff==0.11.4; extra == ""dev""; jsx-lexer; extra == ""docs""; myst-parser; extra == ""docs""; pydata-sphinx-theme>=0.13.0; extra == ""docs""; pytest; extra == ""docs""; pytest-check-links; extra == ""docs""; pytest-jupyter; extra == ""docs""; sphinx-copybutton; extra == ""docs""; sphinx<8.2.0,>=1.8; extra == ""docs""; altair==5.5.0; extra == ""docs-screenshots""; ipython==8.16.1; extra == ""docs-screenshots""; ipywidgets==8.1.5; extra == ""docs-screenshots""; jupyterlab-geojson==3.4.0; extra == ""docs-screenshots""; jupyterlab-language-pack-zh-cn==4.3.post1; extra == ""docs-screenshots""; matplotlib==3.10.0; extra == ""docs-screenshots""; nbconvert>=7.0.0; extra == ""docs-screenshots""; pandas==2.2.3; extra == ""docs-screenshots""; scipy==1.15.1; extra == ""docs-screenshots""; vega-datasets==0.9.0; extra == ""docs-screenshots""; coverage; extra == ""test""; pytest-check-links>=0.7; extra == ""test""; pytest-console-scripts; extra == ""test""; pytest-cov; extra == ""test""; pytest-jupyter>=0.5.3; extra == ""test""; pytest-timeout; extra == ""test""; pytest-tornasync; extra == ""test""; pytest>=7.0; extra == ""test""; requests; extra == ""test""; requests-cache; extra == ""test""; virtualenv; extra == ""test""; copier<10,>=9; extra == ""upgrade-extension""; jinja2-time<0.3; extra == ""upgrade-extension""; pydantic<3.0; extra == ""upgrade-extension""; pyyaml-include<3.0; extra == ""upgrade-extension""; tomli-w<2.0; extra == ""upgrade-extension""","4.2.6, 4.2.7, 4.3.0a0, 4.3.0a1, 4.3.0a2, 4.3.0b0, 4.3.0b1, 4.3.0b2, 4.3.0b3, 4.3.0rc0, 4.3.0rc1, 4.3.0, 4.3.1, 4.3.2, 4.3.3, 4.3.4, 4.3.5, 4.3.6, 4.3.7, 4.3.8, 4.4.0a0, 4.4.0a1, 4.4.0a2, 4.4.0a3, 4.4.0b0, 4.4.0b1, 4.4.0b2, 4.4.0rc0, 4.4.0rc1, 4.4.0, 4.4.1, 4.4.2, 4.4.3, 4.5.0a0, 4.5.0a1","jupyter-server<3,>=2.4.0; jupyterlab-server<3,>=2.27.1; notebook-shim>=0.2; packaging; async-lru>=1.0.0; httpx>=0.25.0; importlib-metadata>=4.8.3; python_version < ""3.10""; ipykernel>=6.5.0; jinja2>=3.0.3; jupyter-core; jupyter-lsp>=2.0.0; setuptools>=41.1.0; tomli>=1.2.2; python_version < ""3.11""; tornado>=6.2.0; traitlets; build; extra == ""dev""; bump2version; extra == ""dev""; coverage; extra == ""dev""; hatch; extra == ""dev""; pre-commit; extra == ""dev""; pytest-cov; extra == ""dev""; ruff==0.11.4; extra == ""dev""; jsx-lexer; extra == ""docs""; myst-parser; extra == ""docs""; pydata-sphinx-theme>=0.13.0; extra == ""docs""; pytest; extra == ""docs""; pytest-check-links; extra == ""docs""; pytest-jupyter; extra == ""docs""; sphinx-copybutton; extra == ""docs""; sphinx<8.2.0,>=1.8; extra == ""docs""; altair==5.5.0; extra == ""docs-screenshots""; ipython==8.16.1; extra == ""docs-screenshots""; ipywidgets==8.1.5; extra == ""docs-screenshots""; jupyterlab-geojson==3.4.0; extra == ""docs-screenshots""; jupyterlab-language-pack-zh-cn==4.3.post1; extra == ""docs-screenshots""; matplotlib==3.10.0; extra == ""docs-screenshots""; nbconvert>=7.0.0; extra == ""docs-screenshots""; pandas==2.2.3; extra == ""docs-screenshots""; scipy==1.15.1; extra == ""docs-screenshots""; vega-datasets==0.9.0; extra == ""docs-screenshots""; coverage; extra == ""test""; pytest-check-links>=0.7; extra == ""test""; pytest-console-scripts; extra == ""test""; pytest-cov; extra == ""test""; pytest-jupyter>=0.5.3; extra == ""test""; pytest-timeout; extra == ""test""; pytest-tornasync; extra == ""test""; pytest>=7.0; extra == ""test""; requests; extra == ""test""; requests-cache; extra == ""test""; virtualenv; extra == ""test""; copier<10,>=9; extra == ""upgrade-extension""; jinja2-time<0.3; extra == ""upgrade-extension""; pydantic<3.0; extra == ""upgrade-extension""; pyyaml-include<3.0; extra == ""upgrade-extension""; tomli-w<2.0; extra == ""upgrade-extension""",4.5.0a1,No,,No,None,,, +jupyterlab-pygments,Dependency Package,EY,0.3.0,,,,,0.3.0,No,,No,None,,, +jupyterlab-server,Dependency Package,EY,2.27.3,,"babel>=2.10; importlib-metadata>=4.8.3; python_version < ""3.10""; jinja2>=3.0.3; json5>=0.9.0; jsonschema>=4.18.0; jupyter-server<3,>=1.21; packaging>=21.3; requests>=2.31; autodoc-traits; extra == ""docs""; jinja2<3.2.0; extra == ""docs""; mistune<4; extra == ""docs""; myst-parser; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx; extra == ""docs""; sphinx-copybutton; extra == ""docs""; sphinxcontrib-openapi>0.8; extra == ""docs""; openapi-core~=0.18.0; extra == ""openapi""; ruamel-yaml; extra == ""openapi""; hatch; extra == ""test""; ipykernel; extra == ""test""; openapi-core~=0.18.0; extra == ""test""; openapi-spec-validator<0.8.0,>=0.6.0; extra == ""test""; pytest-console-scripts; extra == ""test""; pytest-cov; extra == ""test""; pytest-jupyter[server]>=0.6.2; extra == ""test""; pytest-timeout; extra == ""test""; pytest<8,>=7.0; extra == ""test""; requests-mock; extra == ""test""; ruamel-yaml; extra == ""test""; sphinxcontrib-spelling; extra == ""test""; strict-rfc3339; extra == ""test""; werkzeug; extra == ""test""",,"babel>=2.10; importlib-metadata>=4.8.3; python_version < ""3.10""; jinja2>=3.0.3; json5>=0.9.0; jsonschema>=4.18.0; jupyter-server<3,>=1.21; packaging>=21.3; requests>=2.31; autodoc-traits; extra == ""docs""; jinja2<3.2.0; extra == ""docs""; mistune<4; extra == ""docs""; myst-parser; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx; extra == ""docs""; sphinx-copybutton; extra == ""docs""; sphinxcontrib-openapi>0.8; extra == ""docs""; openapi-core~=0.18.0; extra == ""openapi""; ruamel-yaml; extra == ""openapi""; hatch; extra == ""test""; ipykernel; extra == ""test""; openapi-core~=0.18.0; extra == ""test""; openapi-spec-validator<0.8.0,>=0.6.0; extra == ""test""; pytest-console-scripts; extra == ""test""; pytest-cov; extra == ""test""; pytest-jupyter[server]>=0.6.2; extra == ""test""; pytest-timeout; extra == ""test""; pytest<8,>=7.0; extra == ""test""; requests-mock; extra == ""test""; ruamel-yaml; extra == ""test""; sphinxcontrib-spelling; extra == ""test""; strict-rfc3339; extra == ""test""; werkzeug; extra == ""test""",2.27.3,No,,No,None,,, +kedro,Dependency Package,EY,0.19.12,,"attrs>=21.3; build>=0.7.0; cachetools>=4.1; click<8.2.0,>=4.0; cookiecutter<3.0,>=2.1.1; dynaconf<4.0,>=3.1.2; fsspec>=2021.4; gitpython>=3.0; importlib-metadata<9.0,>=3.6; importlib_resources<7.0,>=1.3; kedro-telemetry>=0.5.0; more_itertools>=8.14.0; omegaconf>=2.1.1; parse>=1.19.0; pluggy>=1.0; pre-commit-hooks; PyYAML<7.0,>=4.2; rich<15.0,>=12.0; rope<2.0,>=0.21; toml>=0.10.0; typing_extensions>=4.0; behave==1.2.6; extra == ""test""; coverage[toml]; extra == ""test""; detect-secrets~=1.5.0; extra == ""test""; import-linter==2.3; extra == ""test""; ipylab>=1.0.0; extra == ""test""; ipython~=8.10; extra == ""test""; jupyterlab_server>=2.11.1; extra == ""test""; jupyterlab<5,>=3; extra == ""test""; jupyter~=1.0; extra == ""test""; kedro-datasets; extra == ""test""; mypy~=1.0; extra == ""test""; pandas~=2.0; extra == ""test""; pluggy>=1.0; extra == ""test""; pre-commit<5.0,>=2.9.2; extra == ""test""; pytest-cov<7,>=3; extra == ""test""; pytest-mock<4.0,>=1.7.1; extra == ""test""; pytest-xdist[psutil]~=2.2.1; extra == ""test""; pytest<9.0,>=7.2; extra == ""test""; s3fs<2025.6,>=2021.4; extra == ""test""; requests_mock; extra == ""test""; pandas-stubs; extra == ""test""; types-PyYAML; extra == ""test""; types-cachetools; extra == ""test""; types-requests; extra == ""test""; types-toml; extra == ""test""; ipykernel<7.0,>=5.3; extra == ""docs""; Jinja2<3.2.0; extra == ""docs""; kedro-sphinx-theme==2024.10.3; extra == ""docs""; sphinx-notfound-page!=1.0.3; extra == ""docs""; ipylab>=1.0.0; extra == ""jupyter""; notebook>=7.0.0; extra == ""jupyter""; asv; extra == ""benchmark""; kedro[benchmark,docs,jupyter,test]; extra == ""all""","0.19.13, 0.19.14, 1.0.0rc1","attrs>=21.3; build>=0.7.0; cachetools>=4.1; click<8.2.0,>=4.0; cookiecutter<3.0,>=2.1.1; dynaconf<4.0,>=3.1.2; fsspec>=2021.4; gitpython>=3.0; importlib-metadata<9.0,>=3.6; importlib_resources<7.0,>=1.3; kedro-telemetry>=0.5.0; more_itertools>=8.14.0; omegaconf>=2.1.1; parse>=1.19.0; pluggy>=1.0; pre-commit-hooks; PyYAML<7.0,>=4.2; rich<15.0,>=12.0; rope<2.0,>=0.21; toml>=0.10.0; typing_extensions>=4.0; behave==1.2.6; extra == ""test""; coverage[toml]; extra == ""test""; detect-secrets~=1.5.0; extra == ""test""; import-linter==2.3; extra == ""test""; ipylab>=1.0.0; extra == ""test""; ipython~=8.10; extra == ""test""; jupyterlab_server>=2.11.1; extra == ""test""; jupyterlab<5,>=3; extra == ""test""; jupyter~=1.0; extra == ""test""; kedro-datasets; extra == ""test""; mypy~=1.0; extra == ""test""; pandas~=2.0; extra == ""test""; pluggy>=1.0; extra == ""test""; pre-commit<5.0,>=2.9.2; extra == ""test""; pytest-cov<7,>=3; extra == ""test""; pytest-mock<4.0,>=1.7.1; extra == ""test""; pytest-xdist[psutil]~=2.2.1; extra == ""test""; pytest<9.0,>=7.2; extra == ""test""; s3fs<2025.6,>=2021.4; extra == ""test""; requests_mock; extra == ""test""; pandas-stubs; extra == ""test""; types-PyYAML; extra == ""test""; types-cachetools; extra == ""test""; types-requests; extra == ""test""; types-toml; extra == ""test""; ipykernel<7.0,>=5.3; extra == ""docs""; Jinja2<3.2.0; extra == ""docs""; kedro-sphinx-theme==2024.10.3; extra == ""docs""; sphinx-notfound-page!=1.0.3; extra == ""docs""; ipylab>=1.0.0; extra == ""jupyter""; notebook>=7.0.0; extra == ""jupyter""; asv; extra == ""benchmark""; kedro[benchmark,docs,jupyter,test]; extra == ""all""",1.0.0rc1,No,,No,None,,, +kedro-telemetry,Dependency Package,EY,0.5.0,,"kedro>=0.18.0; requests~=2.20; appdirs>=1.4.4; pytest; extra == ""test""; pytest-cov; extra == ""test""; pytest-mock; extra == ""test""; pytest-xdist[psutil]~=2.2.1; extra == ""test""; PyYAML==5.3.1; extra == ""test""; wheel; extra == ""test""; bandit<2.0,>=1.6.2; extra == ""lint""; black~=22.0; extra == ""lint""; detect-secrets~=1.5.0; extra == ""lint""; mypy~=1.0; extra == ""lint""; pre-commit>=2.9.2; extra == ""lint""; ruff~=0.0.290; extra == ""lint""; types-requests; extra == ""lint""; types-PyYAML; extra == ""lint""; types-toml; extra == ""lint""","0.6.0, 0.6.1, 0.6.2, 0.6.3","kedro>=0.18.0; requests~=2.20; appdirs>=1.4.4; pytest; extra == ""test""; pytest-cov; extra == ""test""; pytest-mock; extra == ""test""; pytest-xdist[psutil]~=2.2.1; extra == ""test""; PyYAML==5.3.1; extra == ""test""; wheel; extra == ""test""; bandit<2.0,>=1.6.2; extra == ""lint""; black~=22.0; extra == ""lint""; detect-secrets~=1.5.0; extra == ""lint""; mypy~=1.0; extra == ""lint""; pre-commit>=2.9.2; extra == ""lint""; ruff~=0.0.290; extra == ""lint""; types-requests; extra == ""lint""; types-PyYAML; extra == ""lint""; types-toml; extra == ""lint""",0.6.3,No,,No,None,,, +kiwisolver,Dependency Package,EY,1.4.7,,,1.4.8,,1.4.8,No,,No,None,,, +knack,Dependency Package,EY,0.12.0,,argcomplete; jmespath; packaging; pygments; pyyaml; tabulate,,argcomplete; jmespath; packaging; pygments; pyyaml; tabulate,0.12.0,No,,No,None,,, +langcodes,Dependency Package,EY,3.4.1,,"language-data>=1.2; build; extra == ""build""; twine; extra == ""build""; pytest; extra == ""test""; pytest-cov; extra == ""test""",3.5.0,"language-data>=1.2; build; extra == ""build""; twine; extra == ""build""; pytest; extra == ""test""; pytest-cov; extra == ""test""",3.5.0,No,,No,None,,, +language-data,Dependency Package,EY,1.2.0,,"marisa-trie>=1.1.0; build; extra == ""build""; twine; extra == ""build""; pytest; extra == ""test""; pytest-cov; extra == ""test""",1.3.0,"marisa-trie>=1.1.0; build; extra == ""build""; twine; extra == ""build""; pytest; extra == ""test""; pytest-cov; extra == ""test""",1.3.0,No,,No,None,,, +lazy-loader,Dependency Package,EY,0.4,,"packaging; importlib-metadata; python_version < ""3.8""; changelist==0.5; extra == ""dev""; pre-commit==3.7.0; extra == ""lint""; pytest>=7.4; extra == ""test""; pytest-cov>=4.1; extra == ""test""",,"packaging; importlib-metadata; python_version < ""3.8""; changelist==0.5; extra == ""dev""; pre-commit==3.7.0; extra == ""lint""; pytest>=7.4; extra == ""test""; pytest-cov>=4.1; extra == ""test""",0.4,No,,No,None,,, +litestar,Dependency Package,EY,2.13.0,,"anyio>=3; click; exceptiongroup; python_version < ""3.11""; exceptiongroup>=1.2.2; python_version < ""3.11""; httpx>=0.22; importlib-metadata; python_version < ""3.10""; importlib-resources>=5.12.0; python_version < ""3.9""; litestar-htmx>=0.4.0; msgspec>=0.18.2; multidict>=6.0.2; multipart>=1.2.0; polyfactory>=2.6.3; pyyaml; rich-click; rich>=13.0.0; typing-extensions; annotated-types; extra == ""annotated-types""; attrs; extra == ""attrs""; brotli; extra == ""brotli""; jsbeautifier; extra == ""cli""; uvicorn[standard]; extra == ""cli""; uvloop>=0.18.0; sys_platform != ""win32"" and extra == ""cli""; cryptography; extra == ""cryptography""; advanced-alchemy>=0.2.2; extra == ""full""; annotated-types; extra == ""full""; attrs; extra == ""full""; brotli; extra == ""full""; cryptography; extra == ""full""; email-validator; extra == ""full""; fast-query-parsers>=1.0.2; extra == ""full""; jinja2; extra == ""full""; jinja2>=3.1.2; extra == ""full""; jsbeautifier; extra == ""full""; mako>=1.2.4; extra == ""full""; minijinja>=1.0.0; extra == ""full""; opentelemetry-instrumentation-asgi; extra == ""full""; piccolo; extra == ""full""; picologging; python_version < ""3.13"" and extra == ""full""; prometheus-client; extra == ""full""; pydantic; extra == ""full""; pydantic-extra-types!=2.9.0; python_version < ""3.9"" and extra == ""full""; pydantic-extra-types; python_version >= ""3.9"" and extra == ""full""; pyjwt>=2.9.0; extra == ""full""; redis[hiredis]>=4.4.4; extra == ""full""; structlog; extra == ""full""; uvicorn[standard]; extra == ""full""; uvloop>=0.18.0; sys_platform != ""win32"" and extra == ""full""; valkey[libvalkey]>=6.0.2; extra == ""full""; jinja2>=3.1.2; extra == ""jinja""; cryptography; extra == ""jwt""; pyjwt>=2.9.0; extra == ""jwt""; mako>=1.2.4; extra == ""mako""; minijinja>=1.0.0; extra == ""minijinja""; opentelemetry-instrumentation-asgi; extra == ""opentelemetry""; piccolo; extra == ""piccolo""; picologging; python_version < ""3.13"" and extra == ""picologging""; prometheus-client; extra == ""prometheus""; email-validator; extra == ""pydantic""; pydantic; extra == ""pydantic""; pydantic-extra-types!=2.9.0; python_version < ""3.9"" and extra == ""pydantic""; pydantic-extra-types; python_version >= ""3.9"" and extra == ""pydantic""; redis[hiredis]>=4.4.4; extra == ""redis""; advanced-alchemy>=0.2.2; extra == ""sqlalchemy""; fast-query-parsers>=1.0.2; extra == ""standard""; jinja2; extra == ""standard""; jsbeautifier; extra == ""standard""; uvicorn[standard]; extra == ""standard""; uvloop>=0.18.0; sys_platform != ""win32"" and extra == ""standard""; structlog; extra == ""structlog""; valkey[libvalkey]>=6.0.2; extra == ""valkey""","2.14.0, 2.15.0, 2.15.1, 2.15.2, 2.16.0","anyio>=3; click; exceptiongroup; python_version < ""3.11""; exceptiongroup>=1.2.2; python_version < ""3.11""; httpx>=0.22; importlib-metadata; python_version < ""3.10""; importlib-resources>=5.12.0; python_version < ""3.9""; litestar-htmx>=0.4.0; msgspec>=0.18.2; multidict>=6.0.2; multipart>=1.2.0; polyfactory>=2.6.3; pyyaml; rich-click; rich>=13.0.0; typing-extensions; annotated-types; extra == ""annotated-types""; attrs; extra == ""attrs""; brotli; extra == ""brotli""; jsbeautifier; extra == ""cli""; uvicorn[standard]; extra == ""cli""; uvloop>=0.18.0; sys_platform != ""win32"" and extra == ""cli""; cryptography; extra == ""cryptography""; advanced-alchemy>=0.2.2; extra == ""full""; annotated-types; extra == ""full""; attrs; extra == ""full""; brotli; extra == ""full""; cryptography; extra == ""full""; email-validator; extra == ""full""; fast-query-parsers>=1.0.2; extra == ""full""; jinja2; extra == ""full""; jinja2>=3.1.2; extra == ""full""; jsbeautifier; extra == ""full""; mako>=1.2.4; extra == ""full""; minijinja>=1.0.0; extra == ""full""; opentelemetry-instrumentation-asgi; extra == ""full""; piccolo; extra == ""full""; picologging; python_version < ""3.13"" and extra == ""full""; prometheus-client; extra == ""full""; pydantic; extra == ""full""; pydantic-extra-types!=2.9.0; python_version < ""3.9"" and extra == ""full""; pydantic-extra-types; python_version >= ""3.9"" and extra == ""full""; pyjwt>=2.9.0; extra == ""full""; redis[hiredis]>=4.4.4; extra == ""full""; structlog; extra == ""full""; uvicorn[standard]; extra == ""full""; uvloop>=0.18.0; sys_platform != ""win32"" and extra == ""full""; valkey[libvalkey]>=6.0.2; extra == ""full""; jinja2>=3.1.2; extra == ""jinja""; cryptography; extra == ""jwt""; pyjwt>=2.9.0; extra == ""jwt""; mako>=1.2.4; extra == ""mako""; minijinja>=1.0.0; extra == ""minijinja""; opentelemetry-instrumentation-asgi; extra == ""opentelemetry""; piccolo; extra == ""piccolo""; picologging; python_version < ""3.13"" and extra == ""picologging""; prometheus-client; extra == ""prometheus""; email-validator; extra == ""pydantic""; pydantic; extra == ""pydantic""; pydantic-extra-types!=2.9.0; python_version < ""3.9"" and extra == ""pydantic""; pydantic-extra-types; python_version >= ""3.9"" and extra == ""pydantic""; redis[hiredis]>=4.4.4; extra == ""redis""; advanced-alchemy>=0.2.2; extra == ""sqlalchemy""; fast-query-parsers>=1.0.2; extra == ""standard""; jinja2; extra == ""standard""; jsbeautifier; extra == ""standard""; uvicorn[standard]; extra == ""standard""; uvloop>=0.18.0; sys_platform != ""win32"" and extra == ""standard""; structlog; extra == ""structlog""; valkey[libvalkey]>=6.0.2; extra == ""valkey""",2.16.0,No,,No,None,,, +marisa-trie,Dependency Package,EY,1.2.0,,"setuptools; hypothesis; extra == ""test""; pytest; extra == ""test""; readme-renderer; extra == ""test""",1.2.1,"setuptools; hypothesis; extra == ""test""; pytest; extra == ""test""; readme-renderer; extra == ""test""",1.2.1,No,,No,None,,, +markdown-it-py,Dependency Package,EY,3.0.0,,"mdurl~=0.1; psutil ; extra == ""benchmarking""; pytest ; extra == ""benchmarking""; pytest-benchmark ; extra == ""benchmarking""; pre-commit~=3.0 ; extra == ""code_style""; commonmark~=0.9 ; extra == ""compare""; markdown~=3.4 ; extra == ""compare""; mistletoe~=1.0 ; extra == ""compare""; mistune~=2.0 ; extra == ""compare""; panflute~=2.3 ; extra == ""compare""; linkify-it-py>=1,<3 ; extra == ""linkify""; mdit-py-plugins ; extra == ""plugins""; gprof2dot ; extra == ""profiling""; mdit-py-plugins ; extra == ""rtd""; myst-parser ; extra == ""rtd""; pyyaml ; extra == ""rtd""; sphinx ; extra == ""rtd""; sphinx-copybutton ; extra == ""rtd""; sphinx-design ; extra == ""rtd""; sphinx_book_theme ; extra == ""rtd""; jupyter_sphinx ; extra == ""rtd""; coverage ; extra == ""testing""; pytest ; extra == ""testing""; pytest-cov ; extra == ""testing""; pytest-regressions ; extra == ""testing""",,"mdurl~=0.1; psutil ; extra == ""benchmarking""; pytest ; extra == ""benchmarking""; pytest-benchmark ; extra == ""benchmarking""; pre-commit~=3.0 ; extra == ""code_style""; commonmark~=0.9 ; extra == ""compare""; markdown~=3.4 ; extra == ""compare""; mistletoe~=1.0 ; extra == ""compare""; mistune~=2.0 ; extra == ""compare""; panflute~=2.3 ; extra == ""compare""; linkify-it-py>=1,<3 ; extra == ""linkify""; mdit-py-plugins ; extra == ""plugins""; gprof2dot ; extra == ""profiling""; mdit-py-plugins ; extra == ""rtd""; myst-parser ; extra == ""rtd""; pyyaml ; extra == ""rtd""; sphinx ; extra == ""rtd""; sphinx-copybutton ; extra == ""rtd""; sphinx-design ; extra == ""rtd""; sphinx_book_theme ; extra == ""rtd""; jupyter_sphinx ; extra == ""rtd""; coverage ; extra == ""testing""; pytest ; extra == ""testing""; pytest-cov ; extra == ""testing""; pytest-regressions ; extra == ""testing""",3.0.0,No,,No,None,,, +MarkupSafe,Dependency Package,EY,3.0.2,,,,,3.0.2,No,,No,None,,, +marshmallow,Dependency Package,EY,3.23.0,,"backports-datetime-fromisoformat; python_version < ""3.11""; typing-extensions; python_version < ""3.11""; marshmallow[tests]; extra == ""dev""; tox; extra == ""dev""; pre-commit<5.0,>=3.5; extra == ""dev""; autodocsumm==0.2.14; extra == ""docs""; furo==2024.8.6; extra == ""docs""; sphinx-copybutton==0.5.2; extra == ""docs""; sphinx-issues==5.0.1; extra == ""docs""; sphinx==8.2.3; extra == ""docs""; sphinxext-opengraph==0.10.0; extra == ""docs""; pytest; extra == ""tests""; simplejson; extra == ""tests""","3.23.1, 3.23.2, 3.23.3, 3.24.0, 3.24.1, 3.24.2, 3.25.0, 3.25.1, 3.26.0, 3.26.1, 4.0.0","backports-datetime-fromisoformat; python_version < ""3.11""; typing-extensions; python_version < ""3.11""; marshmallow[tests]; extra == ""dev""; tox; extra == ""dev""; pre-commit<5.0,>=3.5; extra == ""dev""; autodocsumm==0.2.14; extra == ""docs""; furo==2024.8.6; extra == ""docs""; sphinx-copybutton==0.5.2; extra == ""docs""; sphinx-issues==5.0.1; extra == ""docs""; sphinx==8.2.3; extra == ""docs""; sphinxext-opengraph==0.10.0; extra == ""docs""; pytest; extra == ""tests""; simplejson; extra == ""tests""",4.0.0,No,,No,None,,, +matplotlib,Dependency Package,EY,3.9.2,,"contourpy>=1.0.1; cycler>=0.10; fonttools>=4.22.0; kiwisolver>=1.3.1; numpy>=1.23; packaging>=20.0; pillow>=8; pyparsing>=2.3.1; python-dateutil>=2.7; meson-python<0.17.0,>=0.13.1; extra == ""dev""; pybind11!=2.13.3,>=2.13.2; extra == ""dev""; setuptools_scm>=7; extra == ""dev""; setuptools>=64; extra == ""dev""","3.9.3, 3.9.4, 3.10.0rc1, 3.10.0, 3.10.1, 3.10.3","contourpy>=1.0.1; cycler>=0.10; fonttools>=4.22.0; kiwisolver>=1.3.1; numpy>=1.23; packaging>=20.0; pillow>=8; pyparsing>=2.3.1; python-dateutil>=2.7; meson-python<0.17.0,>=0.13.1; extra == ""dev""; pybind11!=2.13.3,>=2.13.2; extra == ""dev""; setuptools_scm>=7; extra == ""dev""; setuptools>=64; extra == ""dev""",3.10.3,No,,No,None,,, +matplotlib-inline,Dependency Package,EY,0.1.7,,traitlets,,traitlets,0.1.7,No,,No,None,,, +mdurl,Dependency Package,EY,0.1.2,,,,,0.1.2,No,,No,None,,, +mistune,Dependency Package,EY,3.0.2,,"typing-extensions; python_version < ""3.11""","3.1.0, 3.1.1, 3.1.2, 3.1.3","typing-extensions; python_version < ""3.11""",3.1.3,No,,No,None,,, +mltable,Dependency Package,EY,1.6.1,,"azureml-dataprep[parquet] <5.2.0a,>=5.1.0a; pyyaml <7.0.0,>=5.1.0; jsonschema <5.0.0,>=4.0.0; msrest >=0.6.18; azure-core !=1.22.0,<2.0.0,>=1.8.0; azure-mgmt-core <2.0.0,>=1.3.0; python-dateutil <3.0.0,>=2.7.3; cryptography !=1.9,!=2.0.*,!=2.1.*,!=2.2.*; PyJWT <3.0.0; pytz; azure-ai-ml ; extra == 'azure-ai-ml'",,"azureml-dataprep[parquet] <5.2.0a,>=5.1.0a; pyyaml <7.0.0,>=5.1.0; jsonschema <5.0.0,>=4.0.0; msrest >=0.6.18; azure-core !=1.22.0,<2.0.0,>=1.8.0; azure-mgmt-core <2.0.0,>=1.3.0; python-dateutil <3.0.0,>=2.7.3; cryptography !=1.9,!=2.0.*,!=2.1.*,!=2.2.*; PyJWT <3.0.0; pytz; azure-ai-ml ; extra == 'azure-ai-ml'",1.6.1,No,,No,None,,, +more-itertools,Dependency Package,EY,10.5.0,,,"10.6.0, 10.7.0",,10.7.0,No,,No,None,,, +msal,Dependency Package,EY,1.31.0,,"requests<3,>=2.0.0; PyJWT[crypto]<3,>=1.0.0; cryptography<47,>=2.5; pymsalruntime<0.18,>=0.14; (python_version >= ""3.6"" and platform_system == ""Windows"") and extra == ""broker""; pymsalruntime<0.18,>=0.17; (python_version >= ""3.8"" and platform_system == ""Darwin"") and extra == ""broker""","1.31.1, 1.31.2b1, 1.32.0, 1.32.1, 1.32.2, 1.32.3, 1.33.0b1","requests<3,>=2.0.0; PyJWT[crypto]<3,>=1.0.0; cryptography<47,>=2.5; pymsalruntime<0.18,>=0.14; (python_version >= ""3.6"" and platform_system == ""Windows"") and extra == ""broker""; pymsalruntime<0.18,>=0.17; (python_version >= ""3.8"" and platform_system == ""Darwin"") and extra == ""broker""",1.33.0b1,No,,No,None,,, +msal-extensions,Dependency Package,EY,1.2.0,,"msal<2,>=1.29; portalocker<4,>=1.4; extra == ""portalocker""","1.3.0, 1.3.1","msal<2,>=1.29; portalocker<4,>=1.4; extra == ""portalocker""",1.3.1,No,,No,None,,, +msgspec,Dependency Package,EY,0.18.6,,"pyyaml; extra == ""yaml""; tomli; python_version < ""3.11"" and extra == ""toml""; tomli_w; extra == ""toml""; sphinx; extra == ""doc""; furo; extra == ""doc""; sphinx-copybutton; extra == ""doc""; sphinx-design; extra == ""doc""; ipython; extra == ""doc""; pytest; extra == ""test""; msgpack; extra == ""test""; attrs; extra == ""test""; eval-type-backport; python_version < ""3.10"" and extra == ""test""; pyyaml; extra == ""test""; tomli; python_version < ""3.11"" and extra == ""test""; tomli_w; extra == ""test""; pre-commit; extra == ""dev""; coverage; extra == ""dev""; mypy; extra == ""dev""; pyright; extra == ""dev""; sphinx; extra == ""dev""; furo; extra == ""dev""; sphinx-copybutton; extra == ""dev""; sphinx-design; extra == ""dev""; ipython; extra == ""dev""; pytest; extra == ""dev""; msgpack; extra == ""dev""; attrs; extra == ""dev""; eval-type-backport; python_version < ""3.10"" and extra == ""dev""; pyyaml; extra == ""dev""; tomli; python_version < ""3.11"" and extra == ""dev""; tomli_w; extra == ""dev""",0.19.0,"pyyaml; extra == ""yaml""; tomli; python_version < ""3.11"" and extra == ""toml""; tomli_w; extra == ""toml""; sphinx; extra == ""doc""; furo; extra == ""doc""; sphinx-copybutton; extra == ""doc""; sphinx-design; extra == ""doc""; ipython; extra == ""doc""; pytest; extra == ""test""; msgpack; extra == ""test""; attrs; extra == ""test""; eval-type-backport; python_version < ""3.10"" and extra == ""test""; pyyaml; extra == ""test""; tomli; python_version < ""3.11"" and extra == ""test""; tomli_w; extra == ""test""; pre-commit; extra == ""dev""; coverage; extra == ""dev""; mypy; extra == ""dev""; pyright; extra == ""dev""; sphinx; extra == ""dev""; furo; extra == ""dev""; sphinx-copybutton; extra == ""dev""; sphinx-design; extra == ""dev""; ipython; extra == ""dev""; pytest; extra == ""dev""; msgpack; extra == ""dev""; attrs; extra == ""dev""; eval-type-backport; python_version < ""3.10"" and extra == ""dev""; pyyaml; extra == ""dev""; tomli; python_version < ""3.11"" and extra == ""dev""; tomli_w; extra == ""dev""",0.19.0,No,,No,None,,, +msrest,Dependency Package,EY,0.7.1,,azure-core (>=1.24.0); certifi (>=2017.4.17); isodate (>=0.6.0); requests-oauthlib (>=0.5.0); requests (~=2.16); aiodns ; (python_version>='3.5') and extra == 'async'; aiohttp (>=3.0) ; (python_version>='3.5') and extra == 'async',,azure-core (>=1.24.0); certifi (>=2017.4.17); isodate (>=0.6.0); requests-oauthlib (>=0.5.0); requests (~=2.16); aiodns ; (python_version>='3.5') and extra == 'async'; aiohttp (>=3.0) ; (python_version>='3.5') and extra == 'async',0.7.1,No,,No,None,,, +msrestazure,Dependency Package,EY,0.6.4.post1,,"adal<2.0.0,>=0.6.0; msrest<2.0.0,>=0.6.0; six",,"adal<2.0.0,>=0.6.0; msrest<2.0.0,>=0.6.0; six",0.6.4.post1,No,,No,None,,, +multidict,Dependency Package,EY,6.1.0,,"typing-extensions>=4.1.0; python_version < ""3.11""","6.2.0, 6.3.0, 6.3.1, 6.3.2, 6.4.0, 6.4.1, 6.4.2, 6.4.3, 6.4.4, 6.5.0, 6.5.1","typing-extensions>=4.1.0; python_version < ""3.11""",6.5.1,No,,No,None,,, +murmurhash,Dependency Package,EY,1.0.10,,,"1.0.11, 1.0.12, 1.0.13, 1.1.0.dev0",,1.1.0.dev0,No,,No,None,,, +mypy-extensions,Dependency Package,EY,1.0.0,,,1.1.0,,1.1.0,No,,No,None,,, +nbclient,Dependency Package,EY,0.10.0,,"jupyter-client>=6.1.12; jupyter-core!=5.0.*,>=4.12; nbformat>=5.1; traitlets>=5.4; pre-commit; extra == ""dev""; autodoc-traits; extra == ""docs""; flaky; extra == ""docs""; ipykernel>=6.19.3; extra == ""docs""; ipython; extra == ""docs""; ipywidgets; extra == ""docs""; mock; extra == ""docs""; moto; extra == ""docs""; myst-parser; extra == ""docs""; nbconvert>=7.1.0; extra == ""docs""; pytest-asyncio; extra == ""docs""; pytest-cov>=4.0; extra == ""docs""; pytest<8,>=7.0; extra == ""docs""; sphinx-book-theme; extra == ""docs""; sphinx>=1.7; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; testpath; extra == ""docs""; xmltodict; extra == ""docs""; flaky; extra == ""test""; ipykernel>=6.19.3; extra == ""test""; ipython; extra == ""test""; ipywidgets; extra == ""test""; nbconvert>=7.1.0; extra == ""test""; pytest-asyncio; extra == ""test""; pytest-cov>=4.0; extra == ""test""; pytest<8,>=7.0; extra == ""test""; testpath; extra == ""test""; xmltodict; extra == ""test""","0.10.1, 0.10.2","jupyter-client>=6.1.12; jupyter-core!=5.0.*,>=4.12; nbformat>=5.1; traitlets>=5.4; pre-commit; extra == ""dev""; autodoc-traits; extra == ""docs""; flaky; extra == ""docs""; ipykernel>=6.19.3; extra == ""docs""; ipython; extra == ""docs""; ipywidgets; extra == ""docs""; mock; extra == ""docs""; moto; extra == ""docs""; myst-parser; extra == ""docs""; nbconvert>=7.1.0; extra == ""docs""; pytest-asyncio; extra == ""docs""; pytest-cov>=4.0; extra == ""docs""; pytest<8,>=7.0; extra == ""docs""; sphinx-book-theme; extra == ""docs""; sphinx>=1.7; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; testpath; extra == ""docs""; xmltodict; extra == ""docs""; flaky; extra == ""test""; ipykernel>=6.19.3; extra == ""test""; ipython; extra == ""test""; ipywidgets; extra == ""test""; nbconvert>=7.1.0; extra == ""test""; pytest-asyncio; extra == ""test""; pytest-cov>=4.0; extra == ""test""; pytest<8,>=7.0; extra == ""test""; testpath; extra == ""test""; xmltodict; extra == ""test""",0.10.2,No,,No,None,,, +nbconvert,Dependency Package,EY,7.16.4,,"beautifulsoup4; bleach[css]!=5.0.0; defusedxml; importlib-metadata>=3.6; python_version < ""3.10""; jinja2>=3.0; jupyter-core>=4.7; jupyterlab-pygments; markupsafe>=2.0; mistune<4,>=2.0.3; nbclient>=0.5.0; nbformat>=5.7; packaging; pandocfilters>=1.4.1; pygments>=2.4.1; traitlets>=5.1; flaky; extra == ""all""; ipykernel; extra == ""all""; ipython; extra == ""all""; ipywidgets>=7.5; extra == ""all""; myst-parser; extra == ""all""; nbsphinx>=0.2.12; extra == ""all""; playwright; extra == ""all""; pydata-sphinx-theme; extra == ""all""; pyqtwebengine>=5.15; extra == ""all""; pytest>=7; extra == ""all""; sphinx==5.0.2; extra == ""all""; sphinxcontrib-spelling; extra == ""all""; tornado>=6.1; extra == ""all""; ipykernel; extra == ""docs""; ipython; extra == ""docs""; myst-parser; extra == ""docs""; nbsphinx>=0.2.12; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx==5.0.2; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; pyqtwebengine>=5.15; extra == ""qtpdf""; pyqtwebengine>=5.15; extra == ""qtpng""; tornado>=6.1; extra == ""serve""; flaky; extra == ""test""; ipykernel; extra == ""test""; ipywidgets>=7.5; extra == ""test""; pytest>=7; extra == ""test""; playwright; extra == ""webpdf""","7.16.5, 7.16.6","beautifulsoup4; bleach[css]!=5.0.0; defusedxml; importlib-metadata>=3.6; python_version < ""3.10""; jinja2>=3.0; jupyter-core>=4.7; jupyterlab-pygments; markupsafe>=2.0; mistune<4,>=2.0.3; nbclient>=0.5.0; nbformat>=5.7; packaging; pandocfilters>=1.4.1; pygments>=2.4.1; traitlets>=5.1; flaky; extra == ""all""; ipykernel; extra == ""all""; ipython; extra == ""all""; ipywidgets>=7.5; extra == ""all""; myst-parser; extra == ""all""; nbsphinx>=0.2.12; extra == ""all""; playwright; extra == ""all""; pydata-sphinx-theme; extra == ""all""; pyqtwebengine>=5.15; extra == ""all""; pytest>=7; extra == ""all""; sphinx==5.0.2; extra == ""all""; sphinxcontrib-spelling; extra == ""all""; tornado>=6.1; extra == ""all""; ipykernel; extra == ""docs""; ipython; extra == ""docs""; myst-parser; extra == ""docs""; nbsphinx>=0.2.12; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx==5.0.2; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; pyqtwebengine>=5.15; extra == ""qtpdf""; pyqtwebengine>=5.15; extra == ""qtpng""; tornado>=6.1; extra == ""serve""; flaky; extra == ""test""; ipykernel; extra == ""test""; ipywidgets>=7.5; extra == ""test""; pytest>=7; extra == ""test""; playwright; extra == ""webpdf""",7.16.6,No,,No,None,,, +nbformat,Dependency Package,EY,5.10.4,,"fastjsonschema>=2.15; jsonschema>=2.6; jupyter-core!=5.0.*,>=4.12; traitlets>=5.1; myst-parser; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx; extra == ""docs""; sphinxcontrib-github-alt; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; pep440; extra == ""test""; pre-commit; extra == ""test""; pytest; extra == ""test""; testpath; extra == ""test""",,"fastjsonschema>=2.15; jsonschema>=2.6; jupyter-core!=5.0.*,>=4.12; traitlets>=5.1; myst-parser; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx; extra == ""docs""; sphinxcontrib-github-alt; extra == ""docs""; sphinxcontrib-spelling; extra == ""docs""; pep440; extra == ""test""; pre-commit; extra == ""test""; pytest; extra == ""test""; testpath; extra == ""test""",5.10.4,No,,No,None,,, +ndg-httpsclient,Dependency Package,EY,0.5.1,,,,,0.5.1,No,,No,None,,, +nest-asyncio,Dependency Package,EY,1.6.0,,,,,1.6.0,No,,No,None,,, +networkx,Dependency Package,EY,3.4.2,,"numpy>=1.25; extra == ""default""; scipy>=1.11.2; extra == ""default""; matplotlib>=3.8; extra == ""default""; pandas>=2.0; extra == ""default""; pre-commit>=4.1; extra == ""developer""; mypy>=1.15; extra == ""developer""; sphinx>=8.0; extra == ""doc""; pydata-sphinx-theme>=0.16; extra == ""doc""; sphinx-gallery>=0.18; extra == ""doc""; numpydoc>=1.8.0; extra == ""doc""; pillow>=10; extra == ""doc""; texext>=0.6.7; extra == ""doc""; myst-nb>=1.1; extra == ""doc""; intersphinx-registry; extra == ""doc""; osmnx>=2.0.0; extra == ""example""; momepy>=0.7.2; extra == ""example""; contextily>=1.6; extra == ""example""; seaborn>=0.13; extra == ""example""; cairocffi>=1.7; extra == ""example""; igraph>=0.11; extra == ""example""; scikit-learn>=1.5; extra == ""example""; lxml>=4.6; extra == ""extra""; pygraphviz>=1.14; extra == ""extra""; pydot>=3.0.1; extra == ""extra""; sympy>=1.10; extra == ""extra""; pytest>=7.2; extra == ""test""; pytest-cov>=4.0; extra == ""test""; pytest-xdist>=3.0; extra == ""test""; pytest-mpl; extra == ""test-extras""; pytest-randomly; extra == ""test-extras""","3.5rc0, 3.5","numpy>=1.25; extra == ""default""; scipy>=1.11.2; extra == ""default""; matplotlib>=3.8; extra == ""default""; pandas>=2.0; extra == ""default""; pre-commit>=4.1; extra == ""developer""; mypy>=1.15; extra == ""developer""; sphinx>=8.0; extra == ""doc""; pydata-sphinx-theme>=0.16; extra == ""doc""; sphinx-gallery>=0.18; extra == ""doc""; numpydoc>=1.8.0; extra == ""doc""; pillow>=10; extra == ""doc""; texext>=0.6.7; extra == ""doc""; myst-nb>=1.1; extra == ""doc""; intersphinx-registry; extra == ""doc""; osmnx>=2.0.0; extra == ""example""; momepy>=0.7.2; extra == ""example""; contextily>=1.6; extra == ""example""; seaborn>=0.13; extra == ""example""; cairocffi>=1.7; extra == ""example""; igraph>=0.11; extra == ""example""; scikit-learn>=1.5; extra == ""example""; lxml>=4.6; extra == ""extra""; pygraphviz>=1.14; extra == ""extra""; pydot>=3.0.1; extra == ""extra""; sympy>=1.10; extra == ""extra""; pytest>=7.2; extra == ""test""; pytest-cov>=4.0; extra == ""test""; pytest-xdist>=3.0; extra == ""test""; pytest-mpl; extra == ""test-extras""; pytest-randomly; extra == ""test-extras""",3.5,No,,No,None,,, +nltk,Dependency Package,EY,3.9.1,,"click; joblib; regex>=2021.8.3; tqdm; numpy; extra == ""all""; requests; extra == ""all""; twython; extra == ""all""; python-crfsuite; extra == ""all""; pyparsing; extra == ""all""; scipy; extra == ""all""; matplotlib; extra == ""all""; scikit-learn; extra == ""all""; requests; extra == ""corenlp""; numpy; extra == ""machine-learning""; python-crfsuite; extra == ""machine-learning""; scikit-learn; extra == ""machine-learning""; scipy; extra == ""machine-learning""; matplotlib; extra == ""plot""; pyparsing; extra == ""tgrep""; twython; extra == ""twitter""",,"click; joblib; regex>=2021.8.3; tqdm; numpy; extra == ""all""; requests; extra == ""all""; twython; extra == ""all""; python-crfsuite; extra == ""all""; pyparsing; extra == ""all""; scipy; extra == ""all""; matplotlib; extra == ""all""; scikit-learn; extra == ""all""; requests; extra == ""corenlp""; numpy; extra == ""machine-learning""; python-crfsuite; extra == ""machine-learning""; scikit-learn; extra == ""machine-learning""; scipy; extra == ""machine-learning""; matplotlib; extra == ""plot""; pyparsing; extra == ""tgrep""; twython; extra == ""twitter""",3.9.1,No,,No,None,,, +notebook-shim,Dependency Package,EY,0.2.4,,"jupyter-server<3,>=1.8; pytest; extra == 'test'; pytest-console-scripts; extra == 'test'; pytest-jupyter; extra == 'test'; pytest-tornasync; extra == 'test'",,"jupyter-server<3,>=1.8; pytest; extra == 'test'; pytest-console-scripts; extra == 'test'; pytest-jupyter; extra == 'test'; pytest-tornasync; extra == 'test'",0.2.4,No,,No,None,,, +numpy,Dependency Package,EY,2.2.3,,,"2.2.4, 2.2.5, 2.2.6, 2.3.0rc1, 2.3.0, 2.3.1",,2.3.1,No,,No,None,,, +oauthlib,Dependency Package,EY,3.2.2,,"cryptography>=3.0.0; extra == ""rsa""; cryptography>=3.0.0; extra == ""signedtoken""; pyjwt<3,>=2.0.0; extra == ""signedtoken""; blinker>=1.4.0; extra == ""signals""","3.3.0, 3.3.1","cryptography>=3.0.0; extra == ""rsa""; cryptography>=3.0.0; extra == ""signedtoken""; pyjwt<3,>=2.0.0; extra == ""signedtoken""; blinker>=1.4.0; extra == ""signals""",3.3.1,No,,No,None,,, +omegaconf,Dependency Package,EY,2.3.0,,"antlr4-python3-runtime (==4.9.*); PyYAML (>=5.1.0); dataclasses ; python_version == ""3.6""","2.4.0.dev0, 2.4.0.dev1, 2.4.0.dev2, 2.4.0.dev3","antlr4-python3-runtime (==4.9.*); PyYAML (>=5.1.0); dataclasses ; python_version == ""3.6""",2.4.0.dev3,No,,No,None,,, +opencensus,Dependency Package,EY,0.11.4,,"opencensus-context (>=0.1.3); six (~=1.16); google-api-core (<2.0.0,>=1.0.0) ; python_version < ""3.6""; google-api-core (<3.0.0,>=1.0.0) ; python_version >= ""3.6""",,"opencensus-context (>=0.1.3); six (~=1.16); google-api-core (<2.0.0,>=1.0.0) ; python_version < ""3.6""; google-api-core (<3.0.0,>=1.0.0) ; python_version >= ""3.6""",0.11.4,No,,No,None,,, +opencensus-context,Dependency Package,EY,0.1.3,,"contextvars ; python_version >= ""3.6"" and python_version < ""3.7""",0.2.dev0,"contextvars ; python_version >= ""3.6"" and python_version < ""3.7""",0.2.dev0,No,,No,None,,, +orjson,Dependency Package,EY,3.10.7,,,"3.10.8, 3.10.9, 3.10.10, 3.10.11, 3.10.12, 3.10.13, 3.10.14, 3.10.15, 3.10.16, 3.10.17, 3.10.18",,3.10.18,No,,No,None,,, +overrides,Dependency Package,EY,7.7.0,,"typing ; python_version < ""3.5""",,"typing ; python_version < ""3.5""",7.7.0,No,,No,None,,, +packaging,Dependency Package,EY,24.2,,,25.0,,25.0,No,,No,None,,, +pandas,Dependency Package,EY,2.2.3,,"numpy>=1.22.4; python_version < ""3.11""; numpy>=1.23.2; python_version == ""3.11""; numpy>=1.26.0; python_version >= ""3.12""; python-dateutil>=2.8.2; pytz>=2020.1; tzdata>=2022.7; hypothesis>=6.46.1; extra == ""test""; pytest>=7.3.2; extra == ""test""; pytest-xdist>=2.2.0; extra == ""test""; pyarrow>=10.0.1; extra == ""pyarrow""; bottleneck>=1.3.6; extra == ""performance""; numba>=0.56.4; extra == ""performance""; numexpr>=2.8.4; extra == ""performance""; scipy>=1.10.0; extra == ""computation""; xarray>=2022.12.0; extra == ""computation""; fsspec>=2022.11.0; extra == ""fss""; s3fs>=2022.11.0; extra == ""aws""; gcsfs>=2022.11.0; extra == ""gcp""; pandas-gbq>=0.19.0; extra == ""gcp""; odfpy>=1.4.1; extra == ""excel""; openpyxl>=3.1.0; extra == ""excel""; python-calamine>=0.1.7; extra == ""excel""; pyxlsb>=1.0.10; extra == ""excel""; xlrd>=2.0.1; extra == ""excel""; xlsxwriter>=3.0.5; extra == ""excel""; pyarrow>=10.0.1; extra == ""parquet""; pyarrow>=10.0.1; extra == ""feather""; tables>=3.8.0; extra == ""hdf5""; pyreadstat>=1.2.0; extra == ""spss""; SQLAlchemy>=2.0.0; extra == ""postgresql""; psycopg2>=2.9.6; extra == ""postgresql""; adbc-driver-postgresql>=0.8.0; extra == ""postgresql""; SQLAlchemy>=2.0.0; extra == ""mysql""; pymysql>=1.0.2; extra == ""mysql""; SQLAlchemy>=2.0.0; extra == ""sql-other""; adbc-driver-postgresql>=0.8.0; extra == ""sql-other""; adbc-driver-sqlite>=0.8.0; extra == ""sql-other""; beautifulsoup4>=4.11.2; extra == ""html""; html5lib>=1.1; extra == ""html""; lxml>=4.9.2; extra == ""html""; lxml>=4.9.2; extra == ""xml""; matplotlib>=3.6.3; extra == ""plot""; jinja2>=3.1.2; extra == ""output-formatting""; tabulate>=0.9.0; extra == ""output-formatting""; PyQt5>=5.15.9; extra == ""clipboard""; qtpy>=2.3.0; extra == ""clipboard""; zstandard>=0.19.0; extra == ""compression""; dataframe-api-compat>=0.1.7; extra == ""consortium-standard""; adbc-driver-postgresql>=0.8.0; extra == ""all""; adbc-driver-sqlite>=0.8.0; extra == ""all""; beautifulsoup4>=4.11.2; extra == ""all""; bottleneck>=1.3.6; extra == ""all""; dataframe-api-compat>=0.1.7; extra == ""all""; fastparquet>=2022.12.0; extra == ""all""; fsspec>=2022.11.0; extra == ""all""; gcsfs>=2022.11.0; extra == ""all""; html5lib>=1.1; extra == ""all""; hypothesis>=6.46.1; extra == ""all""; jinja2>=3.1.2; extra == ""all""; lxml>=4.9.2; extra == ""all""; matplotlib>=3.6.3; extra == ""all""; numba>=0.56.4; extra == ""all""; numexpr>=2.8.4; extra == ""all""; odfpy>=1.4.1; extra == ""all""; openpyxl>=3.1.0; extra == ""all""; pandas-gbq>=0.19.0; extra == ""all""; psycopg2>=2.9.6; extra == ""all""; pyarrow>=10.0.1; extra == ""all""; pymysql>=1.0.2; extra == ""all""; PyQt5>=5.15.9; extra == ""all""; pyreadstat>=1.2.0; extra == ""all""; pytest>=7.3.2; extra == ""all""; pytest-xdist>=2.2.0; extra == ""all""; python-calamine>=0.1.7; extra == ""all""; pyxlsb>=1.0.10; extra == ""all""; qtpy>=2.3.0; extra == ""all""; scipy>=1.10.0; extra == ""all""; s3fs>=2022.11.0; extra == ""all""; SQLAlchemy>=2.0.0; extra == ""all""; tables>=3.8.0; extra == ""all""; tabulate>=0.9.0; extra == ""all""; xarray>=2022.12.0; extra == ""all""; xlrd>=2.0.1; extra == ""all""; xlsxwriter>=3.0.5; extra == ""all""; zstandard>=0.19.0; extra == ""all""",2.3.0,"numpy>=1.22.4; python_version < ""3.11""; numpy>=1.23.2; python_version == ""3.11""; numpy>=1.26.0; python_version >= ""3.12""; python-dateutil>=2.8.2; pytz>=2020.1; tzdata>=2022.7; hypothesis>=6.46.1; extra == ""test""; pytest>=7.3.2; extra == ""test""; pytest-xdist>=2.2.0; extra == ""test""; pyarrow>=10.0.1; extra == ""pyarrow""; bottleneck>=1.3.6; extra == ""performance""; numba>=0.56.4; extra == ""performance""; numexpr>=2.8.4; extra == ""performance""; scipy>=1.10.0; extra == ""computation""; xarray>=2022.12.0; extra == ""computation""; fsspec>=2022.11.0; extra == ""fss""; s3fs>=2022.11.0; extra == ""aws""; gcsfs>=2022.11.0; extra == ""gcp""; pandas-gbq>=0.19.0; extra == ""gcp""; odfpy>=1.4.1; extra == ""excel""; openpyxl>=3.1.0; extra == ""excel""; python-calamine>=0.1.7; extra == ""excel""; pyxlsb>=1.0.10; extra == ""excel""; xlrd>=2.0.1; extra == ""excel""; xlsxwriter>=3.0.5; extra == ""excel""; pyarrow>=10.0.1; extra == ""parquet""; pyarrow>=10.0.1; extra == ""feather""; tables>=3.8.0; extra == ""hdf5""; pyreadstat>=1.2.0; extra == ""spss""; SQLAlchemy>=2.0.0; extra == ""postgresql""; psycopg2>=2.9.6; extra == ""postgresql""; adbc-driver-postgresql>=0.8.0; extra == ""postgresql""; SQLAlchemy>=2.0.0; extra == ""mysql""; pymysql>=1.0.2; extra == ""mysql""; SQLAlchemy>=2.0.0; extra == ""sql-other""; adbc-driver-postgresql>=0.8.0; extra == ""sql-other""; adbc-driver-sqlite>=0.8.0; extra == ""sql-other""; beautifulsoup4>=4.11.2; extra == ""html""; html5lib>=1.1; extra == ""html""; lxml>=4.9.2; extra == ""html""; lxml>=4.9.2; extra == ""xml""; matplotlib>=3.6.3; extra == ""plot""; jinja2>=3.1.2; extra == ""output-formatting""; tabulate>=0.9.0; extra == ""output-formatting""; PyQt5>=5.15.9; extra == ""clipboard""; qtpy>=2.3.0; extra == ""clipboard""; zstandard>=0.19.0; extra == ""compression""; dataframe-api-compat>=0.1.7; extra == ""consortium-standard""; adbc-driver-postgresql>=0.8.0; extra == ""all""; adbc-driver-sqlite>=0.8.0; extra == ""all""; beautifulsoup4>=4.11.2; extra == ""all""; bottleneck>=1.3.6; extra == ""all""; dataframe-api-compat>=0.1.7; extra == ""all""; fastparquet>=2022.12.0; extra == ""all""; fsspec>=2022.11.0; extra == ""all""; gcsfs>=2022.11.0; extra == ""all""; html5lib>=1.1; extra == ""all""; hypothesis>=6.46.1; extra == ""all""; jinja2>=3.1.2; extra == ""all""; lxml>=4.9.2; extra == ""all""; matplotlib>=3.6.3; extra == ""all""; numba>=0.56.4; extra == ""all""; numexpr>=2.8.4; extra == ""all""; odfpy>=1.4.1; extra == ""all""; openpyxl>=3.1.0; extra == ""all""; pandas-gbq>=0.19.0; extra == ""all""; psycopg2>=2.9.6; extra == ""all""; pyarrow>=10.0.1; extra == ""all""; pymysql>=1.0.2; extra == ""all""; PyQt5>=5.15.9; extra == ""all""; pyreadstat>=1.2.0; extra == ""all""; pytest>=7.3.2; extra == ""all""; pytest-xdist>=2.2.0; extra == ""all""; python-calamine>=0.1.7; extra == ""all""; pyxlsb>=1.0.10; extra == ""all""; qtpy>=2.3.0; extra == ""all""; scipy>=1.10.0; extra == ""all""; s3fs>=2022.11.0; extra == ""all""; SQLAlchemy>=2.0.0; extra == ""all""; tables>=3.8.0; extra == ""all""; tabulate>=0.9.0; extra == ""all""; xarray>=2022.12.0; extra == ""all""; xlrd>=2.0.1; extra == ""all""; xlsxwriter>=3.0.5; extra == ""all""; zstandard>=0.19.0; extra == ""all""",2.3.0,No,,No,None,,, +pandocfilters,Dependency Package,EY,1.5.1,,,,,1.5.1,No,,No,None,,, +paramiko,Dependency Package,EY,3.5.0,,"bcrypt>=3.2; cryptography>=3.3; pynacl>=1.5; pyasn1>=0.1.7; extra == ""gssapi""; gssapi>=1.4.1; platform_system != ""Windows"" and extra == ""gssapi""; pywin32>=2.1.8; platform_system == ""Windows"" and extra == ""gssapi""; invoke>=2.0; extra == ""invoke""; pyasn1>=0.1.7; extra == ""all""; gssapi>=1.4.1; platform_system != ""Windows"" and extra == ""all""; pywin32>=2.1.8; platform_system == ""Windows"" and extra == ""all""; invoke>=2.0; extra == ""all""",3.5.1,"bcrypt>=3.2; cryptography>=3.3; pynacl>=1.5; pyasn1>=0.1.7; extra == ""gssapi""; gssapi>=1.4.1; platform_system != ""Windows"" and extra == ""gssapi""; pywin32>=2.1.8; platform_system == ""Windows"" and extra == ""gssapi""; invoke>=2.0; extra == ""invoke""; pyasn1>=0.1.7; extra == ""all""; gssapi>=1.4.1; platform_system != ""Windows"" and extra == ""all""; pywin32>=2.1.8; platform_system == ""Windows"" and extra == ""all""; invoke>=2.0; extra == ""all""",3.5.1,No,,No,None,,, +parse,Dependency Package,EY,1.20.2,,,,,1.20.2,No,,No,None,,, +parso,Dependency Package,EY,0.8.4,,"flake8==5.0.4; extra == ""qa""; mypy==0.971; extra == ""qa""; types-setuptools==67.2.0.1; extra == ""qa""; docopt; extra == ""testing""; pytest; extra == ""testing""",,"flake8==5.0.4; extra == ""qa""; mypy==0.971; extra == ""qa""; types-setuptools==67.2.0.1; extra == ""qa""; docopt; extra == ""testing""; pytest; extra == ""testing""",0.8.4,No,,No,None,,, +pathspec,Dependency Package,EY,0.12.1,,,,,0.12.1,No,,No,None,,, +patsy,Dependency Package,EY,0.5.6,,"numpy>=1.4; pytest; extra == ""test""; pytest-cov; extra == ""test""; scipy; extra == ""test""","1.0.0, 1.0.1","numpy>=1.4; pytest; extra == ""test""; pytest-cov; extra == ""test""; scipy; extra == ""test""",1.0.1,No,,No,None,,, +pexpect,Dependency Package,EY,4.9.0,,ptyprocess (>=0.5),,ptyprocess (>=0.5),4.9.0,No,,No,None,,, +pillow,Dependency Package,EY,11.0.0,,"furo; extra == ""docs""; olefile; extra == ""docs""; sphinx>=8.2; extra == ""docs""; sphinx-copybutton; extra == ""docs""; sphinx-inline-tabs; extra == ""docs""; sphinxext-opengraph; extra == ""docs""; olefile; extra == ""fpx""; olefile; extra == ""mic""; pyarrow; extra == ""test-arrow""; check-manifest; extra == ""tests""; coverage>=7.4.2; extra == ""tests""; defusedxml; extra == ""tests""; markdown2; extra == ""tests""; olefile; extra == ""tests""; packaging; extra == ""tests""; pyroma; extra == ""tests""; pytest; extra == ""tests""; pytest-cov; extra == ""tests""; pytest-timeout; extra == ""tests""; trove-classifiers>=2024.10.12; extra == ""tests""; typing-extensions; python_version < ""3.10"" and extra == ""typing""; defusedxml; extra == ""xmp""","11.1.0, 11.2.1","furo; extra == ""docs""; olefile; extra == ""docs""; sphinx>=8.2; extra == ""docs""; sphinx-copybutton; extra == ""docs""; sphinx-inline-tabs; extra == ""docs""; sphinxext-opengraph; extra == ""docs""; olefile; extra == ""fpx""; olefile; extra == ""mic""; pyarrow; extra == ""test-arrow""; check-manifest; extra == ""tests""; coverage>=7.4.2; extra == ""tests""; defusedxml; extra == ""tests""; markdown2; extra == ""tests""; olefile; extra == ""tests""; packaging; extra == ""tests""; pyroma; extra == ""tests""; pytest; extra == ""tests""; pytest-cov; extra == ""tests""; pytest-timeout; extra == ""tests""; trove-classifiers>=2024.10.12; extra == ""tests""; typing-extensions; python_version < ""3.10"" and extra == ""typing""; defusedxml; extra == ""xmp""",11.2.1,No,,No,None,,, +pkginfo,Dependency Package,EY,1.11.2,,"pytest; extra == ""testing""; pytest-cov; extra == ""testing""; wheel; extra == ""testing""","1.11.3, 1.12.0, 1.12.1, 1.12.1.1, 1.12.1.2","pytest; extra == ""testing""; pytest-cov; extra == ""testing""; wheel; extra == ""testing""",1.12.1.2,No,,No,None,,, +platformdirs,Dependency Package,EY,4.3.6,,"furo>=2024.8.6; extra == ""docs""; proselint>=0.14; extra == ""docs""; sphinx-autodoc-typehints>=3; extra == ""docs""; sphinx>=8.1.3; extra == ""docs""; appdirs==1.4.4; extra == ""test""; covdefaults>=2.3; extra == ""test""; pytest-cov>=6; extra == ""test""; pytest-mock>=3.14; extra == ""test""; pytest>=8.3.4; extra == ""test""; mypy>=1.14.1; extra == ""type""","4.3.7, 4.3.8","furo>=2024.8.6; extra == ""docs""; proselint>=0.14; extra == ""docs""; sphinx-autodoc-typehints>=3; extra == ""docs""; sphinx>=8.1.3; extra == ""docs""; appdirs==1.4.4; extra == ""test""; covdefaults>=2.3; extra == ""test""; pytest-cov>=6; extra == ""test""; pytest-mock>=3.14; extra == ""test""; pytest>=8.3.4; extra == ""test""; mypy>=1.14.1; extra == ""type""",4.3.8,No,,No,None,,, +plotly,Dependency Package,EY,5.24.1,,"narwhals>=1.15.1; packaging; numpy; extra == ""express""; kaleido==1.0.0rc13; extra == ""kaleido""; black==25.1.0; extra == ""dev""","6.0.0rc0, 6.0.0, 6.0.1, 6.1.0b0, 6.1.0rc0, 6.1.0, 6.1.1, 6.1.2","narwhals>=1.15.1; packaging; numpy; extra == ""express""; kaleido==1.0.0rc13; extra == ""kaleido""; black==25.1.0; extra == ""dev""",6.1.2,No,,No,None,,, +pluggy,Dependency Package,EY,1.5.0,,"pre-commit; extra == ""dev""; tox; extra == ""dev""; pytest; extra == ""testing""; pytest-benchmark; extra == ""testing""; coverage; extra == ""testing""",1.6.0,"pre-commit; extra == ""dev""; tox; extra == ""dev""; pytest; extra == ""testing""; pytest-benchmark; extra == ""testing""; coverage; extra == ""testing""",1.6.0,No,,No,None,,, +polyfactory,Dependency Package,EY,2.16.2,,"faker>=5.0.0; typing-extensions>=4.6.0; attrs>=22.2.0; extra == ""attrs""; beanie; extra == ""beanie""; pydantic[email]; extra == ""beanie""; pymongo<4.9; extra == ""beanie""; attrs; extra == ""full""; beanie; extra == ""full""; msgspec; extra == ""full""; odmantic; extra == ""full""; pydantic; extra == ""full""; sqlalchemy; extra == ""full""; msgspec; extra == ""msgspec""; odmantic<1.0.0; extra == ""odmantic""; pydantic[email]; extra == ""odmantic""; pydantic[email]>=1.10; extra == ""pydantic""; sqlalchemy>=1.4.29; extra == ""sqlalchemy""","2.17.0, 2.18.0, 2.18.1, 2.19.0, 2.20.0, 2.21.0","faker>=5.0.0; typing-extensions>=4.6.0; attrs>=22.2.0; extra == ""attrs""; beanie; extra == ""beanie""; pydantic[email]; extra == ""beanie""; pymongo<4.9; extra == ""beanie""; attrs; extra == ""full""; beanie; extra == ""full""; msgspec; extra == ""full""; odmantic; extra == ""full""; pydantic; extra == ""full""; sqlalchemy; extra == ""full""; msgspec; extra == ""msgspec""; odmantic<1.0.0; extra == ""odmantic""; pydantic[email]; extra == ""odmantic""; pydantic[email]>=1.10; extra == ""pydantic""; sqlalchemy>=1.4.29; extra == ""sqlalchemy""",2.21.0,No,,No,None,,, +pre-commit-hooks,Dependency Package,EY,4.6.0,,"ruamel.yaml>=0.15; tomli>=1.1.0; python_version < ""3.11""",5.0.0,"ruamel.yaml>=0.15; tomli>=1.1.0; python_version < ""3.11""",5.0.0,No,,No,None,,, +preshed,Dependency Package,EY,3.0.9,,"cymem<2.1.0,>=2.0.2; murmurhash<1.1.0,>=0.28.0","3.0.10, 4.0.0","cymem<2.1.0,>=2.0.2; murmurhash<1.1.0,>=0.28.0",4.0.0,No,,No,None,,, +prometheus-client,Dependency Package,EY,0.21.0,,"twisted; extra == ""twisted""","0.21.1, 0.22.0, 0.22.1","twisted; extra == ""twisted""",0.22.1,No,,No,None,,, +prompt-toolkit,Dependency Package,EY,3.0.48,,wcwidth,"3.0.49, 3.0.50, 3.0.51",wcwidth,3.0.51,No,,No,None,,, +proto-plus,Dependency Package,EY,1.25.0,,"protobuf<7.0.0,>=3.19.0; google-api-core>=1.31.5; extra == ""testing""","1.26.0rc1, 1.26.0, 1.26.1","protobuf<7.0.0,>=3.19.0; google-api-core>=1.31.5; extra == ""testing""",1.26.1,No,,No,None,,, +protobuf,Dependency Package,EY,6.31.1,,,,,6.31.1,No,,No,None,,, +psutil,Dependency Package,EY,6.1.0,,"pytest; extra == ""dev""; pytest-xdist; extra == ""dev""; setuptools; extra == ""dev""; abi3audit; extra == ""dev""; black==24.10.0; extra == ""dev""; check-manifest; extra == ""dev""; coverage; extra == ""dev""; packaging; extra == ""dev""; pylint; extra == ""dev""; pyperf; extra == ""dev""; pypinfo; extra == ""dev""; pytest-cov; extra == ""dev""; requests; extra == ""dev""; rstcheck; extra == ""dev""; ruff; extra == ""dev""; sphinx; extra == ""dev""; sphinx_rtd_theme; extra == ""dev""; toml-sort; extra == ""dev""; twine; extra == ""dev""; virtualenv; extra == ""dev""; vulture; extra == ""dev""; wheel; extra == ""dev""; pytest; extra == ""test""; pytest-xdist; extra == ""test""; setuptools; extra == ""test""","6.1.1, 7.0.0","pytest; extra == ""dev""; pytest-xdist; extra == ""dev""; setuptools; extra == ""dev""; abi3audit; extra == ""dev""; black==24.10.0; extra == ""dev""; check-manifest; extra == ""dev""; coverage; extra == ""dev""; packaging; extra == ""dev""; pylint; extra == ""dev""; pyperf; extra == ""dev""; pypinfo; extra == ""dev""; pytest-cov; extra == ""dev""; requests; extra == ""dev""; rstcheck; extra == ""dev""; ruff; extra == ""dev""; sphinx; extra == ""dev""; sphinx_rtd_theme; extra == ""dev""; toml-sort; extra == ""dev""; twine; extra == ""dev""; virtualenv; extra == ""dev""; vulture; extra == ""dev""; wheel; extra == ""dev""; pytest; extra == ""test""; pytest-xdist; extra == ""test""; setuptools; extra == ""test""",7.0.0,No,,No,None,,, +ptyprocess,Dependency Package,EY,0.7.0,,,,,0.7.0,No,,No,None,,, +pure-eval,Dependency Package,EY,0.2.3,,"pytest; extra == ""tests""",,"pytest; extra == ""tests""",0.2.3,No,,No,None,,, +pyarrow,Dependency Package,EY,19.0.1,,"pytest; extra == ""test""; hypothesis; extra == ""test""; cffi; extra == ""test""; pytz; extra == ""test""; pandas; extra == ""test""",20.0.0,"pytest; extra == ""test""; hypothesis; extra == ""test""; cffi; extra == ""test""; pytz; extra == ""test""; pandas; extra == ""test""",20.0.0,No,,No,None,,, +pyasn1,Dependency Package,EY,0.6.1,,,,,0.6.1,No,,No,None,,, +pyasn1-modules,Dependency Package,EY,0.4.1,,"pyasn1<0.7.0,>=0.6.1",0.4.2,"pyasn1<0.7.0,>=0.6.1",0.4.2,No,,No,None,,, +pycparser,Dependency Package,EY,2.22,,,,,2.22,No,,No,None,,, +pydantic,Dependency Package,EY,2.9.2,,"annotated-types>=0.6.0; pydantic-core==2.33.2; typing-extensions>=4.12.2; typing-inspection>=0.4.0; email-validator>=2.0.0; extra == ""email""; tzdata; (python_version >= ""3.9"" and platform_system == ""Windows"") and extra == ""timezone""","2.10.0b1, 2.10.0b2, 2.10.0, 2.10.1, 2.10.2, 2.10.3, 2.10.4, 2.10.5, 2.10.6, 2.11.0a1, 2.11.0a2, 2.11.0b1, 2.11.0b2, 2.11.0, 2.11.1, 2.11.2, 2.11.3, 2.11.4, 2.11.5, 2.11.6, 2.11.7","annotated-types>=0.6.0; pydantic-core==2.33.2; typing-extensions>=4.12.2; typing-inspection>=0.4.0; email-validator>=2.0.0; extra == ""email""; tzdata; (python_version >= ""3.9"" and platform_system == ""Windows"") and extra == ""timezone""",2.11.7,No,,No,None,,, +pydantic-core,Dependency Package,EY,2.23.4,,typing-extensions>=4.13.0,"2.24.0, 2.24.1, 2.24.2, 2.25.0, 2.25.1, 2.26.0, 2.27.0, 2.27.1, 2.27.2, 2.28.0, 2.29.0, 2.30.0, 2.31.0, 2.31.1, 2.32.0, 2.33.0, 2.33.1, 2.33.2, 2.34.0, 2.34.1, 2.35.0, 2.35.1",typing-extensions>=4.13.0,2.35.1,No,,No,None,,, +pydash,Dependency Package,EY,8.0.3,,"typing-extensions!=4.6.0,>3.10; build; extra == ""dev""; coverage; extra == ""dev""; ruff; extra == ""dev""; furo; extra == ""dev""; invoke; extra == ""dev""; mypy; extra == ""dev""; pytest; extra == ""dev""; pytest-mypy-testing; extra == ""dev""; pytest-cov; extra == ""dev""; sphinx; extra == ""dev""; tox; extra == ""dev""; twine; extra == ""dev""; wheel; extra == ""dev""; sphinx-autodoc-typehints; extra == ""dev""","8.0.4, 8.0.5","typing-extensions!=4.6.0,>3.10; build; extra == ""dev""; coverage; extra == ""dev""; ruff; extra == ""dev""; furo; extra == ""dev""; invoke; extra == ""dev""; mypy; extra == ""dev""; pytest; extra == ""dev""; pytest-mypy-testing; extra == ""dev""; pytest-cov; extra == ""dev""; sphinx; extra == ""dev""; tox; extra == ""dev""; twine; extra == ""dev""; wheel; extra == ""dev""; sphinx-autodoc-typehints; extra == ""dev""",8.0.5,No,,No,None,,, +Pygments,Dependency Package,EY,2.18.0,,"colorama>=0.4.6; extra == ""windows-terminal""","2.19.0, 2.19.1, 2.19.2","colorama>=0.4.6; extra == ""windows-terminal""",2.19.2,No,,No,None,,, +PyJWT,Dependency Package,EY,2.9.0,,"cryptography>=3.4.0; extra == ""crypto""; coverage[toml]==5.0.4; extra == ""dev""; cryptography>=3.4.0; extra == ""dev""; pre-commit; extra == ""dev""; pytest<7.0.0,>=6.0.0; extra == ""dev""; sphinx; extra == ""dev""; sphinx-rtd-theme; extra == ""dev""; zope.interface; extra == ""dev""; sphinx; extra == ""docs""; sphinx-rtd-theme; extra == ""docs""; zope.interface; extra == ""docs""; coverage[toml]==5.0.4; extra == ""tests""; pytest<7.0.0,>=6.0.0; extra == ""tests""","2.10.0, 2.10.1","cryptography>=3.4.0; extra == ""crypto""; coverage[toml]==5.0.4; extra == ""dev""; cryptography>=3.4.0; extra == ""dev""; pre-commit; extra == ""dev""; pytest<7.0.0,>=6.0.0; extra == ""dev""; sphinx; extra == ""dev""; sphinx-rtd-theme; extra == ""dev""; zope.interface; extra == ""dev""; sphinx; extra == ""docs""; sphinx-rtd-theme; extra == ""docs""; zope.interface; extra == ""docs""; coverage[toml]==5.0.4; extra == ""tests""; pytest<7.0.0,>=6.0.0; extra == ""tests""",2.10.1,No,,Yes,"2.10.0: CVE-2024-53861, CVSS_V3, PyJWT Issuer field partial matches allowed, CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:N/I:L/A:N, affects: >=2.10.0,<2.10.1",,, +PyNaCl,Dependency Package,EY,1.5.0,,,,,1.5.0,No,,No,None,,, +pyOpenSSL,Dependency Package,EY,24.2.1,,"cryptography<46,>=41.0.5; typing-extensions>=4.9; python_version < ""3.13"" and python_version >= ""3.8""; pytest-rerunfailures; extra == ""test""; pretend; extra == ""test""; pytest>=3.0.1; extra == ""test""; sphinx!=5.2.0,!=5.2.0.post0,!=7.2.5; extra == ""docs""; sphinx_rtd_theme; extra == ""docs""","24.3.0, 25.0.0, 25.1.0","cryptography<46,>=41.0.5; typing-extensions>=4.9; python_version < ""3.13"" and python_version >= ""3.8""; pytest-rerunfailures; extra == ""test""; pretend; extra == ""test""; pytest>=3.0.1; extra == ""test""; sphinx!=5.2.0,!=5.2.0.post0,!=7.2.5; extra == ""docs""; sphinx_rtd_theme; extra == ""docs""",25.1.0,No,,No,None,,, +pyparsing,Dependency Package,EY,3.2.0,,"railroad-diagrams; extra == ""diagrams""; jinja2; extra == ""diagrams""","3.2.1, 3.2.2, 3.2.3","railroad-diagrams; extra == ""diagrams""; jinja2; extra == ""diagrams""",3.2.3,No,,No,None,,, +pyproject-hooks,Dependency Package,EY,1.2.0,,,,,1.2.0,No,,No,None,,, +pytest,Dependency Package,EY,8.3.3,,"colorama>=0.4; sys_platform == ""win32""; exceptiongroup>=1; python_version < ""3.11""; iniconfig>=1; packaging>=20; pluggy<2,>=1.5; pygments>=2.7.2; tomli>=1; python_version < ""3.11""; argcomplete; extra == ""dev""; attrs>=19.2; extra == ""dev""; hypothesis>=3.56; extra == ""dev""; mock; extra == ""dev""; requests; extra == ""dev""; setuptools; extra == ""dev""; xmlschema; extra == ""dev""","8.3.4, 8.3.5, 8.4.0, 8.4.1","colorama>=0.4; sys_platform == ""win32""; exceptiongroup>=1; python_version < ""3.11""; iniconfig>=1; packaging>=20; pluggy<2,>=1.5; pygments>=2.7.2; tomli>=1; python_version < ""3.11""; argcomplete; extra == ""dev""; attrs>=19.2; extra == ""dev""; hypothesis>=3.56; extra == ""dev""; mock; extra == ""dev""; requests; extra == ""dev""; setuptools; extra == ""dev""; xmlschema; extra == ""dev""",8.4.1,No,,No,None,,, +python-dateutil,Dependency Package,EY,2.9.0.post0,,six >=1.5,,six >=1.5,2.9.0.post0,No,,No,None,,, +python-dotenv,Dependency Package,EY,1.0.1,,"click>=5.0; extra == ""cli""","1.1.0, 1.1.1","click>=5.0; extra == ""cli""",1.1.1,No,,No,None,,, +python-json-logger,Dependency Package,EY,2.0.7,,"typing_extensions; python_version < ""3.10""; orjson; implementation_name != ""pypy"" and extra == ""dev""; msgspec; implementation_name != ""pypy"" and extra == ""dev""; validate-pyproject[all]; extra == ""dev""; black; extra == ""dev""; pylint; extra == ""dev""; mypy; extra == ""dev""; pytest; extra == ""dev""; freezegun; extra == ""dev""; backports.zoneinfo; python_version < ""3.9"" and extra == ""dev""; tzdata; extra == ""dev""; build; extra == ""dev""; mkdocs; extra == ""dev""; mkdocs-material>=8.5; extra == ""dev""; mkdocs-awesome-pages-plugin; extra == ""dev""; mdx_truly_sane_lists; extra == ""dev""; mkdocstrings[python]; extra == ""dev""; mkdocs-gen-files; extra == ""dev""; mkdocs-literate-nav; extra == ""dev""; mike; extra == ""dev""","3.0.0, 3.0.1, 3.1.0, 3.2.0, 3.2.1.dev1, 3.2.1, 3.3.0, 4.0.0.dev0","typing_extensions; python_version < ""3.10""; orjson; implementation_name != ""pypy"" and extra == ""dev""; msgspec; implementation_name != ""pypy"" and extra == ""dev""; validate-pyproject[all]; extra == ""dev""; black; extra == ""dev""; pylint; extra == ""dev""; mypy; extra == ""dev""; pytest; extra == ""dev""; freezegun; extra == ""dev""; backports.zoneinfo; python_version < ""3.9"" and extra == ""dev""; tzdata; extra == ""dev""; build; extra == ""dev""; mkdocs; extra == ""dev""; mkdocs-material>=8.5; extra == ""dev""; mkdocs-awesome-pages-plugin; extra == ""dev""; mdx_truly_sane_lists; extra == ""dev""; mkdocstrings[python]; extra == ""dev""; mkdocs-gen-files; extra == ""dev""; mkdocs-literate-nav; extra == ""dev""; mike; extra == ""dev""",4.0.0.dev0,No,,No,None,,, +python-slugify,Dependency Package,EY,8.0.4,,text-unidecode (>=1.3); Unidecode (>=1.1.1) ; extra == 'unidecode',,text-unidecode (>=1.3); Unidecode (>=1.1.1) ; extra == 'unidecode',8.0.4,No,,No,None,,, +pytoolconfig,Dependency Package,EY,1.3.1,,"tomli>=2.0.1; python_version < ""3.11""; packaging>=23.2; pydantic>=2.5.3; extra == ""validation""; platformdirs>=3.11.0; extra == ""global""; tabulate>=0.9.0; extra == ""doc""; sphinx>=7.1.2; extra == ""doc""; sphinx>=7.1.2; extra == ""gendocs""; sphinx-autodoc-typehints>=1.25.2; extra == ""gendocs""; sphinx-rtd-theme>=2.0.0; extra == ""gendocs""; pytoolconfig[doc]; extra == ""gendocs""",,"tomli>=2.0.1; python_version < ""3.11""; packaging>=23.2; pydantic>=2.5.3; extra == ""validation""; platformdirs>=3.11.0; extra == ""global""; tabulate>=0.9.0; extra == ""doc""; sphinx>=7.1.2; extra == ""doc""; sphinx>=7.1.2; extra == ""gendocs""; sphinx-autodoc-typehints>=1.25.2; extra == ""gendocs""; sphinx-rtd-theme>=2.0.0; extra == ""gendocs""; pytoolconfig[doc]; extra == ""gendocs""",1.3.1,No,,No,None,,, +pytz,Dependency Package,EY,2024.2,,,"2025.1, 2025.2",,2025.2,No,,No,None,,, +PyYAML,Dependency Package,EY,6.0.2,,,,,6.0.2,No,,No,None,,, +pyzmq,Dependency Package,EY,26.2.0,,"cffi; implementation_name == ""pypy""","26.2.1, 26.3.0, 26.4.0, 27.0.0","cffi; implementation_name == ""pypy""",27.0.0,No,,No,None,,, +referencing,Dependency Package,EY,0.35.1,,"attrs>=22.2.0; rpds-py>=0.7.0; typing-extensions>=4.4.0; python_version < ""3.13""","0.36.0, 0.36.1, 0.36.2","attrs>=22.2.0; rpds-py>=0.7.0; typing-extensions>=4.4.0; python_version < ""3.13""",0.36.2,No,,No,None,,, +regex,Dependency Package,EY,2024.9.11,,,2024.11.6,,2024.11.6,No,,No,None,,, +requests,Dependency Package,EY,2.32.4,,"charset_normalizer<4,>=2; idna<4,>=2.5; urllib3<3,>=1.21.1; certifi>=2017.4.17; PySocks!=1.5.7,>=1.5.6; extra == ""socks""; chardet<6,>=3.0.2; extra == ""use-chardet-on-py3""",,"charset_normalizer<4,>=2; idna<4,>=2.5; urllib3<3,>=1.21.1; certifi>=2017.4.17; PySocks!=1.5.7,>=1.5.6; extra == ""socks""; chardet<6,>=3.0.2; extra == ""use-chardet-on-py3""",2.32.4,No,,No,None,,, +requests-oauthlib,Dependency Package,EY,2.0.0,,"oauthlib>=3.0.0; requests>=2.0.0; oauthlib[signedtoken]>=3.0.0; extra == ""rsa""",,"oauthlib>=3.0.0; requests>=2.0.0; oauthlib[signedtoken]>=3.0.0; extra == ""rsa""",2.0.0,No,,No,None,,, +rfc3339-validator,Dependency Package,EY,0.1.4,,six,,six,0.1.4,No,,No,None,,, +rfc3986-validator,Dependency Package,EY,0.1.1,,,,,0.1.1,No,,No,None,,, +rich,Dependency Package,EY,13.9.2,,"typing-extensions<5.0,>=4.0.0; python_version < ""3.11""; pygments<3.0.0,>=2.13.0; ipywidgets<9,>=7.5.1; extra == ""jupyter""; markdown-it-py>=2.2.0","13.9.3, 13.9.4, 14.0.0","typing-extensions<5.0,>=4.0.0; python_version < ""3.11""; pygments<3.0.0,>=2.13.0; ipywidgets<9,>=7.5.1; extra == ""jupyter""; markdown-it-py>=2.2.0",14.0.0,No,,No,None,,, +rich-click,Dependency Package,EY,1.8.3,,"click>=7; importlib-metadata; python_version < ""3.8""; rich>=10.7; typing_extensions>=4; mypy; extra == ""dev""; packaging; extra == ""dev""; pre-commit; extra == ""dev""; pytest; extra == ""dev""; pytest-cov; extra == ""dev""; rich-codex; extra == ""dev""; ruff; extra == ""dev""; types-setuptools; extra == ""dev""; markdown_include; extra == ""docs""; mkdocs; extra == ""docs""; mkdocs-glightbox; extra == ""docs""; mkdocs-material[imaging]~=9.5.18; extra == ""docs""; mkdocs-material-extensions; extra == ""docs""; mkdocs-rss-plugin; extra == ""docs""; mkdocstrings[python]; extra == ""docs""; rich-codex; extra == ""docs""","1.8.4, 1.8.5, 1.8.6, 1.8.7.dev0, 1.8.7, 1.8.8, 1.8.9","click>=7; importlib-metadata; python_version < ""3.8""; rich>=10.7; typing_extensions>=4; mypy; extra == ""dev""; packaging; extra == ""dev""; pre-commit; extra == ""dev""; pytest; extra == ""dev""; pytest-cov; extra == ""dev""; rich-codex; extra == ""dev""; ruff; extra == ""dev""; types-setuptools; extra == ""dev""; markdown_include; extra == ""docs""; mkdocs; extra == ""docs""; mkdocs-glightbox; extra == ""docs""; mkdocs-material[imaging]~=9.5.18; extra == ""docs""; mkdocs-material-extensions; extra == ""docs""; mkdocs-rss-plugin; extra == ""docs""; mkdocstrings[python]; extra == ""docs""; rich-codex; extra == ""docs""",1.8.9,No,,No,None,,, +rope,Dependency Package,EY,1.13.0,,"pytoolconfig[global]>=1.2.2; pytest>=7.0.1; extra == ""dev""; pytest-cov>=4.1.0; extra == ""dev""; pytest-timeout>=2.1.0; extra == ""dev""; build>=0.7.0; extra == ""dev""; pre-commit>=2.20.0; extra == ""dev""; pytoolconfig[doc]; extra == ""doc""; sphinx>=4.5.0; extra == ""doc""; sphinx-autodoc-typehints>=1.18.1; extra == ""doc""; sphinx-rtd-theme>=1.0.0; extra == ""doc""; toml>=0.10.2; extra == ""release""; twine>=4.0.2; extra == ""release""; pip-tools>=6.12.1; extra == ""release""",,"pytoolconfig[global]>=1.2.2; pytest>=7.0.1; extra == ""dev""; pytest-cov>=4.1.0; extra == ""dev""; pytest-timeout>=2.1.0; extra == ""dev""; build>=0.7.0; extra == ""dev""; pre-commit>=2.20.0; extra == ""dev""; pytoolconfig[doc]; extra == ""doc""; sphinx>=4.5.0; extra == ""doc""; sphinx-autodoc-typehints>=1.18.1; extra == ""doc""; sphinx-rtd-theme>=1.0.0; extra == ""doc""; toml>=0.10.2; extra == ""release""; twine>=4.0.2; extra == ""release""; pip-tools>=6.12.1; extra == ""release""",1.13.0,No,,No,None,,, +rpds-py,Dependency Package,EY,0.20.0,,,"0.20.1, 0.21.0, 0.22.0, 0.22.1, 0.22.3, 0.23.0, 0.23.1, 0.24.0, 0.25.0, 0.25.1",,0.25.1,No,,No,None,,, +rsa,Dependency Package,EY,4.9,,pyasn1>=0.1.3,4.9.1,pyasn1>=0.1.3,4.9.1,No,,No,None,,, +scikit-learn,Dependency Package,EY,1.5.2,,"numpy>=1.22.0; scipy>=1.8.0; joblib>=1.2.0; threadpoolctl>=3.1.0; numpy>=1.22.0; extra == ""build""; scipy>=1.8.0; extra == ""build""; cython>=3.0.10; extra == ""build""; meson-python>=0.16.0; extra == ""build""; numpy>=1.22.0; extra == ""install""; scipy>=1.8.0; extra == ""install""; joblib>=1.2.0; extra == ""install""; threadpoolctl>=3.1.0; extra == ""install""; matplotlib>=3.5.0; extra == ""benchmark""; pandas>=1.4.0; extra == ""benchmark""; memory_profiler>=0.57.0; extra == ""benchmark""; matplotlib>=3.5.0; extra == ""docs""; scikit-image>=0.19.0; extra == ""docs""; pandas>=1.4.0; extra == ""docs""; seaborn>=0.9.0; extra == ""docs""; memory_profiler>=0.57.0; extra == ""docs""; sphinx>=7.3.7; extra == ""docs""; sphinx-copybutton>=0.5.2; extra == ""docs""; sphinx-gallery>=0.17.1; extra == ""docs""; numpydoc>=1.2.0; extra == ""docs""; Pillow>=8.4.0; extra == ""docs""; pooch>=1.6.0; extra == ""docs""; sphinx-prompt>=1.4.0; extra == ""docs""; sphinxext-opengraph>=0.9.1; extra == ""docs""; plotly>=5.14.0; extra == ""docs""; polars>=0.20.30; extra == ""docs""; sphinx-design>=0.5.0; extra == ""docs""; sphinx-design>=0.6.0; extra == ""docs""; sphinxcontrib-sass>=0.3.4; extra == ""docs""; pydata-sphinx-theme>=0.15.3; extra == ""docs""; sphinx-remove-toctrees>=1.0.0.post1; extra == ""docs""; towncrier>=24.8.0; extra == ""docs""; matplotlib>=3.5.0; extra == ""examples""; scikit-image>=0.19.0; extra == ""examples""; pandas>=1.4.0; extra == ""examples""; seaborn>=0.9.0; extra == ""examples""; pooch>=1.6.0; extra == ""examples""; plotly>=5.14.0; extra == ""examples""; matplotlib>=3.5.0; extra == ""tests""; scikit-image>=0.19.0; extra == ""tests""; pandas>=1.4.0; extra == ""tests""; pytest>=7.1.2; extra == ""tests""; pytest-cov>=2.9.0; extra == ""tests""; ruff>=0.11.7; extra == ""tests""; mypy>=1.15; extra == ""tests""; pyamg>=4.2.1; extra == ""tests""; polars>=0.20.30; extra == ""tests""; pyarrow>=12.0.0; extra == ""tests""; numpydoc>=1.2.0; extra == ""tests""; pooch>=1.6.0; extra == ""tests""; conda-lock==3.0.1; extra == ""maintenance""","1.6.0rc1, 1.6.0, 1.6.1, 1.7.0rc1, 1.7.0","numpy>=1.22.0; scipy>=1.8.0; joblib>=1.2.0; threadpoolctl>=3.1.0; numpy>=1.22.0; extra == ""build""; scipy>=1.8.0; extra == ""build""; cython>=3.0.10; extra == ""build""; meson-python>=0.16.0; extra == ""build""; numpy>=1.22.0; extra == ""install""; scipy>=1.8.0; extra == ""install""; joblib>=1.2.0; extra == ""install""; threadpoolctl>=3.1.0; extra == ""install""; matplotlib>=3.5.0; extra == ""benchmark""; pandas>=1.4.0; extra == ""benchmark""; memory_profiler>=0.57.0; extra == ""benchmark""; matplotlib>=3.5.0; extra == ""docs""; scikit-image>=0.19.0; extra == ""docs""; pandas>=1.4.0; extra == ""docs""; seaborn>=0.9.0; extra == ""docs""; memory_profiler>=0.57.0; extra == ""docs""; sphinx>=7.3.7; extra == ""docs""; sphinx-copybutton>=0.5.2; extra == ""docs""; sphinx-gallery>=0.17.1; extra == ""docs""; numpydoc>=1.2.0; extra == ""docs""; Pillow>=8.4.0; extra == ""docs""; pooch>=1.6.0; extra == ""docs""; sphinx-prompt>=1.4.0; extra == ""docs""; sphinxext-opengraph>=0.9.1; extra == ""docs""; plotly>=5.14.0; extra == ""docs""; polars>=0.20.30; extra == ""docs""; sphinx-design>=0.5.0; extra == ""docs""; sphinx-design>=0.6.0; extra == ""docs""; sphinxcontrib-sass>=0.3.4; extra == ""docs""; pydata-sphinx-theme>=0.15.3; extra == ""docs""; sphinx-remove-toctrees>=1.0.0.post1; extra == ""docs""; towncrier>=24.8.0; extra == ""docs""; matplotlib>=3.5.0; extra == ""examples""; scikit-image>=0.19.0; extra == ""examples""; pandas>=1.4.0; extra == ""examples""; seaborn>=0.9.0; extra == ""examples""; pooch>=1.6.0; extra == ""examples""; plotly>=5.14.0; extra == ""examples""; matplotlib>=3.5.0; extra == ""tests""; scikit-image>=0.19.0; extra == ""tests""; pandas>=1.4.0; extra == ""tests""; pytest>=7.1.2; extra == ""tests""; pytest-cov>=2.9.0; extra == ""tests""; ruff>=0.11.7; extra == ""tests""; mypy>=1.15; extra == ""tests""; pyamg>=4.2.1; extra == ""tests""; polars>=0.20.30; extra == ""tests""; pyarrow>=12.0.0; extra == ""tests""; numpydoc>=1.2.0; extra == ""tests""; pooch>=1.6.0; extra == ""tests""; conda-lock==3.0.1; extra == ""maintenance""",1.7.0,No,,No,None,,, +scipy,Dependency Package,EY,1.14.1,,"numpy<2.6,>=1.25.2; pytest; extra == ""test""; pytest-cov; extra == ""test""; pytest-timeout; extra == ""test""; pytest-xdist; extra == ""test""; asv; extra == ""test""; mpmath; extra == ""test""; gmpy2; extra == ""test""; threadpoolctl; extra == ""test""; scikit-umfpack; extra == ""test""; pooch; extra == ""test""; hypothesis>=6.30; extra == ""test""; array-api-strict>=2.3.1; extra == ""test""; Cython; extra == ""test""; meson; extra == ""test""; ninja; sys_platform != ""emscripten"" and extra == ""test""; sphinx<8.2.0,>=5.0.0; extra == ""doc""; intersphinx_registry; extra == ""doc""; pydata-sphinx-theme>=0.15.2; extra == ""doc""; sphinx-copybutton; extra == ""doc""; sphinx-design>=0.4.0; extra == ""doc""; matplotlib>=3.5; extra == ""doc""; numpydoc; extra == ""doc""; jupytext; extra == ""doc""; myst-nb>=1.2.0; extra == ""doc""; pooch; extra == ""doc""; jupyterlite-sphinx>=0.19.1; extra == ""doc""; jupyterlite-pyodide-kernel; extra == ""doc""; linkify-it-py; extra == ""doc""; mypy==1.10.0; extra == ""dev""; typing_extensions; extra == ""dev""; types-psutil; extra == ""dev""; pycodestyle; extra == ""dev""; ruff>=0.0.292; extra == ""dev""; cython-lint>=0.12.2; extra == ""dev""; rich-click; extra == ""dev""; doit>=0.36.0; extra == ""dev""; pydevtool; extra == ""dev""","1.15.0rc1, 1.15.0rc2, 1.15.0, 1.15.1, 1.15.2, 1.15.3, 1.16.0rc1, 1.16.0rc2, 1.16.0","numpy<2.6,>=1.25.2; pytest; extra == ""test""; pytest-cov; extra == ""test""; pytest-timeout; extra == ""test""; pytest-xdist; extra == ""test""; asv; extra == ""test""; mpmath; extra == ""test""; gmpy2; extra == ""test""; threadpoolctl; extra == ""test""; scikit-umfpack; extra == ""test""; pooch; extra == ""test""; hypothesis>=6.30; extra == ""test""; array-api-strict>=2.3.1; extra == ""test""; Cython; extra == ""test""; meson; extra == ""test""; ninja; sys_platform != ""emscripten"" and extra == ""test""; sphinx<8.2.0,>=5.0.0; extra == ""doc""; intersphinx_registry; extra == ""doc""; pydata-sphinx-theme>=0.15.2; extra == ""doc""; sphinx-copybutton; extra == ""doc""; sphinx-design>=0.4.0; extra == ""doc""; matplotlib>=3.5; extra == ""doc""; numpydoc; extra == ""doc""; jupytext; extra == ""doc""; myst-nb>=1.2.0; extra == ""doc""; pooch; extra == ""doc""; jupyterlite-sphinx>=0.19.1; extra == ""doc""; jupyterlite-pyodide-kernel; extra == ""doc""; linkify-it-py; extra == ""doc""; mypy==1.10.0; extra == ""dev""; typing_extensions; extra == ""dev""; types-psutil; extra == ""dev""; pycodestyle; extra == ""dev""; ruff>=0.0.292; extra == ""dev""; cython-lint>=0.12.2; extra == ""dev""; rich-click; extra == ""dev""; doit>=0.36.0; extra == ""dev""; pydevtool; extra == ""dev""",1.16.0,No,,No,None,,, +SecretStorage,Dependency Package,EY,3.3.3,,cryptography (>=2.0); jeepney (>=0.6),,cryptography (>=2.0); jeepney (>=0.6),3.3.3,No,,No,None,,, +secure,Dependency Package,EY,0.3.0,,,"1.0.0, 1.0.1",,1.0.1,No,,No,None,,, +semver,Dependency Package,EY,2.13.0,,,"3.0.0.dev1, 3.0.0.dev2, 3.0.0.dev3, 3.0.0.dev4, 3.0.0rc1, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4",,3.0.4,No,,No,None,,, +Send2Trash,Dependency Package,EY,1.8.3,,"pyobjc-framework-Cocoa; sys_platform == ""darwin"" and extra == ""nativelib""; pywin32; sys_platform == ""win32"" and extra == ""nativelib""; pyobjc-framework-Cocoa; sys_platform == ""darwin"" and extra == ""objc""; pywin32; sys_platform == ""win32"" and extra == ""win32""",,"pyobjc-framework-Cocoa; sys_platform == ""darwin"" and extra == ""nativelib""; pywin32; sys_platform == ""win32"" and extra == ""nativelib""; pyobjc-framework-Cocoa; sys_platform == ""darwin"" and extra == ""objc""; pywin32; sys_platform == ""win32"" and extra == ""win32""",1.8.3,No,,No,None,,, +shellingham,Dependency Package,EY,1.5.4,,,,,1.5.4,No,,No,None,,, +six,Dependency Package,EY,1.17.0,,,,,1.17.0,No,,No,None,,, +smart-open,Dependency Package,EY,7.0.4,,,"7.0.5, 7.1.0",,7.1.0,No,,No,None,,, +smmap,Dependency Package,EY,5.0.1,,,"5.0.2, 6.0.0",,6.0.0,No,,No,None,,, +sniffio,Dependency Package,EY,1.3.1,,,,,1.3.1,No,,No,None,,, +soupsieve,Dependency Package,EY,2.6,,,2.7,,2.7,No,,No,None,,, +spacy,Dependency Package,EY,3.8.2,,"spacy-legacy<3.1.0,>=3.0.11; spacy-loggers<2.0.0,>=1.0.0; murmurhash<1.1.0,>=0.28.0; cymem<2.1.0,>=2.0.2; preshed<3.1.0,>=3.0.2; thinc<8.4.0,>=8.3.4; wasabi<1.2.0,>=0.9.1; srsly<3.0.0,>=2.4.3; catalogue<2.1.0,>=2.0.6; weasel<0.5.0,>=0.1.0; typer<1.0.0,>=0.3.0; tqdm<5.0.0,>=4.38.0; numpy>=1.15.0; python_version < ""3.9""; numpy>=1.19.0; python_version >= ""3.9""; requests<3.0.0,>=2.13.0; pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4; jinja2; setuptools; packaging>=20.0; langcodes<4.0.0,>=3.2.0; spacy_lookups_data<1.1.0,>=1.0.3; extra == ""lookups""; spacy_transformers<1.4.0,>=1.1.2; extra == ""transformers""; cupy<13.0.0,>=5.0.0b4; extra == ""cuda""; cupy-cuda80<13.0.0,>=5.0.0b4; extra == ""cuda80""; cupy-cuda90<13.0.0,>=5.0.0b4; extra == ""cuda90""; cupy-cuda91<13.0.0,>=5.0.0b4; extra == ""cuda91""; cupy-cuda92<13.0.0,>=5.0.0b4; extra == ""cuda92""; cupy-cuda100<13.0.0,>=5.0.0b4; extra == ""cuda100""; cupy-cuda101<13.0.0,>=5.0.0b4; extra == ""cuda101""; cupy-cuda102<13.0.0,>=5.0.0b4; extra == ""cuda102""; cupy-cuda110<13.0.0,>=5.0.0b4; extra == ""cuda110""; cupy-cuda111<13.0.0,>=5.0.0b4; extra == ""cuda111""; cupy-cuda112<13.0.0,>=5.0.0b4; extra == ""cuda112""; cupy-cuda113<13.0.0,>=5.0.0b4; extra == ""cuda113""; cupy-cuda114<13.0.0,>=5.0.0b4; extra == ""cuda114""; cupy-cuda115<13.0.0,>=5.0.0b4; extra == ""cuda115""; cupy-cuda116<13.0.0,>=5.0.0b4; extra == ""cuda116""; cupy-cuda117<13.0.0,>=5.0.0b4; extra == ""cuda117""; cupy-cuda11x<13.0.0,>=11.0.0; extra == ""cuda11x""; cupy-cuda12x<13.0.0,>=11.5.0; extra == ""cuda12x""; cupy-wheel<13.0.0,>=11.0.0; extra == ""cuda-autodetect""; thinc-apple-ops<2.0.0,>=1.0.0; extra == ""apple""; sudachipy!=0.6.1,>=0.5.2; extra == ""ja""; sudachidict_core>=20211220; extra == ""ja""; natto-py>=0.9.0; extra == ""ko""; pythainlp>=2.0; extra == ""th""","3.8.3, 3.8.4, 3.8.5, 3.8.6, 3.8.7, 4.0.0.dev1, 4.0.0.dev2, 4.0.0.dev3","spacy-legacy<3.1.0,>=3.0.11; spacy-loggers<2.0.0,>=1.0.0; murmurhash<1.1.0,>=0.28.0; cymem<2.1.0,>=2.0.2; preshed<3.1.0,>=3.0.2; thinc<8.4.0,>=8.3.4; wasabi<1.2.0,>=0.9.1; srsly<3.0.0,>=2.4.3; catalogue<2.1.0,>=2.0.6; weasel<0.5.0,>=0.1.0; typer<1.0.0,>=0.3.0; tqdm<5.0.0,>=4.38.0; numpy>=1.15.0; python_version < ""3.9""; numpy>=1.19.0; python_version >= ""3.9""; requests<3.0.0,>=2.13.0; pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4; jinja2; setuptools; packaging>=20.0; langcodes<4.0.0,>=3.2.0; spacy_lookups_data<1.1.0,>=1.0.3; extra == ""lookups""; spacy_transformers<1.4.0,>=1.1.2; extra == ""transformers""; cupy<13.0.0,>=5.0.0b4; extra == ""cuda""; cupy-cuda80<13.0.0,>=5.0.0b4; extra == ""cuda80""; cupy-cuda90<13.0.0,>=5.0.0b4; extra == ""cuda90""; cupy-cuda91<13.0.0,>=5.0.0b4; extra == ""cuda91""; cupy-cuda92<13.0.0,>=5.0.0b4; extra == ""cuda92""; cupy-cuda100<13.0.0,>=5.0.0b4; extra == ""cuda100""; cupy-cuda101<13.0.0,>=5.0.0b4; extra == ""cuda101""; cupy-cuda102<13.0.0,>=5.0.0b4; extra == ""cuda102""; cupy-cuda110<13.0.0,>=5.0.0b4; extra == ""cuda110""; cupy-cuda111<13.0.0,>=5.0.0b4; extra == ""cuda111""; cupy-cuda112<13.0.0,>=5.0.0b4; extra == ""cuda112""; cupy-cuda113<13.0.0,>=5.0.0b4; extra == ""cuda113""; cupy-cuda114<13.0.0,>=5.0.0b4; extra == ""cuda114""; cupy-cuda115<13.0.0,>=5.0.0b4; extra == ""cuda115""; cupy-cuda116<13.0.0,>=5.0.0b4; extra == ""cuda116""; cupy-cuda117<13.0.0,>=5.0.0b4; extra == ""cuda117""; cupy-cuda11x<13.0.0,>=11.0.0; extra == ""cuda11x""; cupy-cuda12x<13.0.0,>=11.5.0; extra == ""cuda12x""; cupy-wheel<13.0.0,>=11.0.0; extra == ""cuda-autodetect""; thinc-apple-ops<2.0.0,>=1.0.0; extra == ""apple""; sudachipy!=0.6.1,>=0.5.2; extra == ""ja""; sudachidict_core>=20211220; extra == ""ja""; natto-py>=0.9.0; extra == ""ko""; pythainlp>=2.0; extra == ""th""",4.0.0.dev3,No,,No,None,,, +spacy-legacy,Dependency Package,EY,3.0.12,,,"4.0.0.dev0, 4.0.0.dev1",,4.0.0.dev1,No,,No,None,,, +spacy-loggers,Dependency Package,EY,1.0.5,,,,,1.0.5,No,,No,None,,, +SQLAlchemy,Dependency Package,EY,2.0.38,,"importlib-metadata; python_version < ""3.8""; greenlet>=1; python_version < ""3.14"" and (platform_machine == ""aarch64"" or (platform_machine == ""ppc64le"" or (platform_machine == ""x86_64"" or (platform_machine == ""amd64"" or (platform_machine == ""AMD64"" or (platform_machine == ""win32"" or platform_machine == ""WIN32"")))))); typing-extensions>=4.6.0; greenlet>=1; extra == ""asyncio""; mypy>=0.910; extra == ""mypy""; pyodbc; extra == ""mssql""; pymssql; extra == ""mssql-pymssql""; pyodbc; extra == ""mssql-pyodbc""; mysqlclient>=1.4.0; extra == ""mysql""; mysql-connector-python; extra == ""mysql-connector""; mariadb!=1.1.10,!=1.1.2,!=1.1.5,>=1.0.1; extra == ""mariadb-connector""; cx_oracle>=8; extra == ""oracle""; oracledb>=1.0.1; extra == ""oracle-oracledb""; psycopg2>=2.7; extra == ""postgresql""; pg8000>=1.29.1; extra == ""postgresql-pg8000""; greenlet>=1; extra == ""postgresql-asyncpg""; asyncpg; extra == ""postgresql-asyncpg""; psycopg2-binary; extra == ""postgresql-psycopg2binary""; psycopg2cffi; extra == ""postgresql-psycopg2cffi""; psycopg>=3.0.7; extra == ""postgresql-psycopg""; psycopg[binary]>=3.0.7; extra == ""postgresql-psycopgbinary""; pymysql; extra == ""pymysql""; greenlet>=1; extra == ""aiomysql""; aiomysql>=0.2.0; extra == ""aiomysql""; greenlet>=1; extra == ""aioodbc""; aioodbc; extra == ""aioodbc""; greenlet>=1; extra == ""asyncmy""; asyncmy!=0.2.4,!=0.2.6,>=0.2.3; extra == ""asyncmy""; greenlet>=1; extra == ""aiosqlite""; aiosqlite; extra == ""aiosqlite""; typing_extensions!=3.10.0.1; extra == ""aiosqlite""; sqlcipher3_binary; extra == ""sqlcipher""","2.0.39, 2.0.40, 2.0.41","importlib-metadata; python_version < ""3.8""; greenlet>=1; python_version < ""3.14"" and (platform_machine == ""aarch64"" or (platform_machine == ""ppc64le"" or (platform_machine == ""x86_64"" or (platform_machine == ""amd64"" or (platform_machine == ""AMD64"" or (platform_machine == ""win32"" or platform_machine == ""WIN32"")))))); typing-extensions>=4.6.0; greenlet>=1; extra == ""asyncio""; mypy>=0.910; extra == ""mypy""; pyodbc; extra == ""mssql""; pymssql; extra == ""mssql-pymssql""; pyodbc; extra == ""mssql-pyodbc""; mysqlclient>=1.4.0; extra == ""mysql""; mysql-connector-python; extra == ""mysql-connector""; mariadb!=1.1.10,!=1.1.2,!=1.1.5,>=1.0.1; extra == ""mariadb-connector""; cx_oracle>=8; extra == ""oracle""; oracledb>=1.0.1; extra == ""oracle-oracledb""; psycopg2>=2.7; extra == ""postgresql""; pg8000>=1.29.1; extra == ""postgresql-pg8000""; greenlet>=1; extra == ""postgresql-asyncpg""; asyncpg; extra == ""postgresql-asyncpg""; psycopg2-binary; extra == ""postgresql-psycopg2binary""; psycopg2cffi; extra == ""postgresql-psycopg2cffi""; psycopg>=3.0.7; extra == ""postgresql-psycopg""; psycopg[binary]>=3.0.7; extra == ""postgresql-psycopgbinary""; pymysql; extra == ""pymysql""; greenlet>=1; extra == ""aiomysql""; aiomysql>=0.2.0; extra == ""aiomysql""; greenlet>=1; extra == ""aioodbc""; aioodbc; extra == ""aioodbc""; greenlet>=1; extra == ""asyncmy""; asyncmy!=0.2.4,!=0.2.6,>=0.2.3; extra == ""asyncmy""; greenlet>=1; extra == ""aiosqlite""; aiosqlite; extra == ""aiosqlite""; typing_extensions!=3.10.0.1; extra == ""aiosqlite""; sqlcipher3_binary; extra == ""sqlcipher""",2.0.41,No,,No,None,,, +srsly,Dependency Package,EY,2.4.8,,"catalogue<2.1.0,>=2.0.3","2.5.0, 2.5.1","catalogue<2.1.0,>=2.0.3",2.5.1,No,,No,None,,, +stack-data,Dependency Package,EY,0.6.3,,executing >=1.2.0; asttokens >=2.1.0; pure-eval; pytest ; extra == 'tests'; typeguard ; extra == 'tests'; pygments ; extra == 'tests'; littleutils ; extra == 'tests'; cython ; extra == 'tests',,executing >=1.2.0; asttokens >=2.1.0; pure-eval; pytest ; extra == 'tests'; typeguard ; extra == 'tests'; pygments ; extra == 'tests'; littleutils ; extra == 'tests'; cython ; extra == 'tests',0.6.3,No,,No,None,,, +starlette,Dependency Package,EY,0.40.0,,"anyio<5,>=3.6.2; typing-extensions>=4.10.0; python_version < ""3.13""; httpx<0.29.0,>=0.27.0; extra == ""full""; itsdangerous; extra == ""full""; jinja2; extra == ""full""; python-multipart>=0.0.18; extra == ""full""; pyyaml; extra == ""full""","0.41.0, 0.41.1, 0.41.2, 0.41.3, 0.42.0, 0.43.0, 0.44.0, 0.45.0, 0.45.1, 0.45.2, 0.45.3, 0.46.0, 0.46.1, 0.46.2, 0.47.0, 0.47.1","anyio<5,>=3.6.2; typing-extensions>=4.10.0; python_version < ""3.13""; httpx<0.29.0,>=0.27.0; extra == ""full""; itsdangerous; extra == ""full""; jinja2; extra == ""full""; python-multipart>=0.0.18; extra == ""full""; pyyaml; extra == ""full""",0.47.1,No,,No,None,,, +statsmodels,Dependency Package,EY,0.14.4,,"numpy<3,>=1.22.3; scipy!=1.9.2,>=1.8; pandas!=2.1.0,>=1.4; patsy>=0.5.6; packaging>=21.3; cython>=3.0.10; extra == ""build""; cython>=3.0.10; extra == ""develop""; cython<4,>=3.0.10; extra == ""develop""; setuptools-scm[toml]~=8.0; extra == ""develop""; matplotlib>=3; extra == ""develop""; colorama; extra == ""develop""; joblib; extra == ""develop""; pytest<8,>=7.3.0; extra == ""develop""; pytest-randomly; extra == ""develop""; pytest-xdist; extra == ""develop""; pytest-cov; extra == ""develop""; flake8; extra == ""develop""; isort; extra == ""develop""; pywinpty; os_name == ""nt"" and extra == ""develop""; sphinx; extra == ""docs""; nbconvert; extra == ""docs""; jupyter-client; extra == ""docs""; ipykernel; extra == ""docs""; matplotlib; extra == ""docs""; nbformat; extra == ""docs""; numpydoc; extra == ""docs""; pandas-datareader; extra == ""docs""",,"numpy<3,>=1.22.3; scipy!=1.9.2,>=1.8; pandas!=2.1.0,>=1.4; patsy>=0.5.6; packaging>=21.3; cython>=3.0.10; extra == ""build""; cython>=3.0.10; extra == ""develop""; cython<4,>=3.0.10; extra == ""develop""; setuptools-scm[toml]~=8.0; extra == ""develop""; matplotlib>=3; extra == ""develop""; colorama; extra == ""develop""; joblib; extra == ""develop""; pytest<8,>=7.3.0; extra == ""develop""; pytest-randomly; extra == ""develop""; pytest-xdist; extra == ""develop""; pytest-cov; extra == ""develop""; flake8; extra == ""develop""; isort; extra == ""develop""; pywinpty; os_name == ""nt"" and extra == ""develop""; sphinx; extra == ""docs""; nbconvert; extra == ""docs""; jupyter-client; extra == ""docs""; ipykernel; extra == ""docs""; matplotlib; extra == ""docs""; nbformat; extra == ""docs""; numpydoc; extra == ""docs""; pandas-datareader; extra == ""docs""",0.14.4,No,,No,None,,, +strawberry-graphql,Dependency Package,EY,0.243.0,,"graphql-core<3.4.0,>=3.2.0; typing-extensions>=4.5.0; python-dateutil<3.0,>=2.7; packaging>=23; aiohttp<4,>=3.7.4.post0; extra == ""aiohttp""; starlette>=0.18.0; extra == ""asgi""; python-multipart>=0.0.7; extra == ""asgi""; rich>=12.0.0; extra == ""debug""; libcst; extra == ""debug""; starlette>=0.18.0; extra == ""debug-server""; uvicorn>=0.11.6; extra == ""debug-server""; websockets<16,>=15.0.1; extra == ""debug-server""; python-multipart>=0.0.7; extra == ""debug-server""; typer>=0.7.0; extra == ""debug-server""; pygments<3.0,>=2.3; extra == ""debug-server""; rich>=12.0.0; extra == ""debug-server""; libcst; extra == ""debug-server""; Django>=3.2; extra == ""django""; asgiref<4.0,>=3.2; extra == ""django""; channels>=3.0.5; extra == ""channels""; asgiref<4.0,>=3.2; extra == ""channels""; flask>=1.1; extra == ""flask""; quart>=0.19.3; extra == ""quart""; opentelemetry-api<2; extra == ""opentelemetry""; opentelemetry-sdk<2; extra == ""opentelemetry""; pydantic>1.6.1; extra == ""pydantic""; sanic>=20.12.2; extra == ""sanic""; fastapi>=0.65.2; extra == ""fastapi""; python-multipart>=0.0.7; extra == ""fastapi""; chalice<2.0,>=1.22; extra == ""chalice""; typer>=0.7.0; extra == ""cli""; pygments<3.0,>=2.3; extra == ""cli""; rich>=12.0.0; extra == ""cli""; libcst; extra == ""cli""; litestar>=2; python_version ~= ""3.10"" and extra == ""litestar""; pyinstrument>=4.0.0; extra == ""pyinstrument""","0.243.1, 0.244.0, 0.244.1, 0.245.0, 0.246.0, 0.246.1, 0.246.2, 0.246.3, 0.247.0, 0.247.1, 0.247.2, 0.248.0, 0.248.1, 0.249.0, 0.250.0, 0.250.1, 0.251.0, 0.252.0, 0.253.0, 0.253.1, 0.254.0, 0.254.1, 0.255.0, 0.256.0, 0.256.1, 0.257.0.dev1735244504, 0.257.0, 0.258.0, 0.258.1, 0.259.0, 0.259.1, 0.260.0, 0.260.1, 0.260.2, 0.260.3, 0.260.4, 0.261.0, 0.261.1, 0.262.0, 0.262.1, 0.262.2, 0.262.3, 0.262.4, 0.262.5, 0.262.6, 0.262.7.dev1743345593, 0.263.0.dev1743450281, 0.263.0.dev1743450503, 0.263.0.dev1743450741, 0.263.0.dev1743582446, 0.263.0, 0.263.1, 0.263.2, 0.264.0, 0.264.1, 0.265.0, 0.265.1, 0.266.0.dev1744797470, 0.266.0, 0.266.1, 0.267.0.dev1746643548, 0.267.0, 0.268.0, 0.268.1, 0.268.2.dev1747436835, 0.268.2, 0.269.0.dev1746905409, 0.269.0.dev1747164009, 0.269.0, 0.270.0, 0.270.1, 0.270.2, 0.270.3, 0.270.4, 0.270.5, 0.270.6, 0.271.0, 0.271.1, 0.271.2, 0.272.0, 0.272.1, 0.273.0, 0.273.1, 0.273.2, 0.273.3, 0.274.0, 0.274.1, 0.274.2, 0.274.3, 0.275.0, 0.275.1, 0.275.2, 0.276.0.dev1750672223","graphql-core<3.4.0,>=3.2.0; typing-extensions>=4.5.0; python-dateutil<3.0,>=2.7; packaging>=23; aiohttp<4,>=3.7.4.post0; extra == ""aiohttp""; starlette>=0.18.0; extra == ""asgi""; python-multipart>=0.0.7; extra == ""asgi""; rich>=12.0.0; extra == ""debug""; libcst; extra == ""debug""; starlette>=0.18.0; extra == ""debug-server""; uvicorn>=0.11.6; extra == ""debug-server""; websockets<16,>=15.0.1; extra == ""debug-server""; python-multipart>=0.0.7; extra == ""debug-server""; typer>=0.7.0; extra == ""debug-server""; pygments<3.0,>=2.3; extra == ""debug-server""; rich>=12.0.0; extra == ""debug-server""; libcst; extra == ""debug-server""; Django>=3.2; extra == ""django""; asgiref<4.0,>=3.2; extra == ""django""; channels>=3.0.5; extra == ""channels""; asgiref<4.0,>=3.2; extra == ""channels""; flask>=1.1; extra == ""flask""; quart>=0.19.3; extra == ""quart""; opentelemetry-api<2; extra == ""opentelemetry""; opentelemetry-sdk<2; extra == ""opentelemetry""; pydantic>1.6.1; extra == ""pydantic""; sanic>=20.12.2; extra == ""sanic""; fastapi>=0.65.2; extra == ""fastapi""; python-multipart>=0.0.7; extra == ""fastapi""; chalice<2.0,>=1.22; extra == ""chalice""; typer>=0.7.0; extra == ""cli""; pygments<3.0,>=2.3; extra == ""cli""; rich>=12.0.0; extra == ""cli""; libcst; extra == ""cli""; litestar>=2; python_version ~= ""3.10"" and extra == ""litestar""; pyinstrument>=4.0.0; extra == ""pyinstrument""",0.276.0.dev1750672223,Yes,"CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0",Yes,"0.257.0.dev1735244504: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.246.2: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.247.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.243.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.251.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.245.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.247.2: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.248.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.253.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.247.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.244.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.250.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.249.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.244.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.246.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.253.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.254.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.255.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.254.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.248.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.256.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.246.3: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.252.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.256.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.250.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.246.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0",0.276.0.dev1750672223,"{'base_package': 'strawberry-graphql==0.276.0.dev1750672223', 'dependencies': ['graphql-core==3.3.0a9', 'typing-extensions==4.14.0', 'python-dateutil==2.9.0.post0', 'packaging==23.2', 'aiohttp==3.12.13', 'starlette==0.47.1', 'python-multipart==0.0.20', 'rich==12.6.0', 'libcst==1.8.2', 'uvicorn==0.47.1', 'websockets==0.34.3', 'typer==15.0.1', 'pygments==0.0.20', 'Django==0.16.0', 'asgiref==2.19.2', 'channels==12.6.0', 'flask==1.8.2', 'opentelemetry-api==3.8.1', 'opentelemetry-sdk==3.0.5', 'pydantic==3.8.1', 'fastapi==0.20.0', 'chalice==1.34.1', 'litestar==1.34.1', 'pyinstrument==1.10.22']}",Not Used +strictyaml,Dependency Package,EY,1.7.3,,python-dateutil (>=2.6.0),,python-dateutil (>=2.6.0),1.7.3,No,,No,None,,, +tabulate,Dependency Package,EY,0.9.0,,wcwidth ; extra == 'widechars',,wcwidth ; extra == 'widechars',0.9.0,No,,No,None,,, +tenacity,Dependency Package,EY,9.0.0,,"reno; extra == ""doc""; sphinx; extra == ""doc""; pytest; extra == ""test""; tornado>=4.5; extra == ""test""; typeguard; extra == ""test""",9.1.2,"reno; extra == ""doc""; sphinx; extra == ""doc""; pytest; extra == ""test""; tornado>=4.5; extra == ""test""; typeguard; extra == ""test""",9.1.2,No,,No,None,,, +terminado,Dependency Package,EY,0.18.1,,ptyprocess; os_name != 'nt'; pywinpty>=1.1.0; os_name == 'nt'; tornado>=6.1.0; myst-parser; extra == 'docs'; pydata-sphinx-theme; extra == 'docs'; sphinx; extra == 'docs'; pre-commit; extra == 'test'; pytest-timeout; extra == 'test'; pytest>=7.0; extra == 'test'; mypy~=1.6; extra == 'typing'; traitlets>=5.11.1; extra == 'typing',,ptyprocess; os_name != 'nt'; pywinpty>=1.1.0; os_name == 'nt'; tornado>=6.1.0; myst-parser; extra == 'docs'; pydata-sphinx-theme; extra == 'docs'; sphinx; extra == 'docs'; pre-commit; extra == 'test'; pytest-timeout; extra == 'test'; pytest>=7.0; extra == 'test'; mypy~=1.6; extra == 'typing'; traitlets>=5.11.1; extra == 'typing',0.18.1,No,,No,None,,, +text-unidecode,Dependency Package,EY,1.3,,,,,1.3,No,,No,None,,, +thinc,Dependency Package,EY,8.3.2,,"blis<1.1.0,>=1.0.0; murmurhash<1.1.0,>=1.0.2; cymem<2.1.0,>=2.0.2; preshed<3.1.0,>=3.0.2; wasabi<1.2.0,>=0.8.1; srsly<3.0.0,>=2.4.0; catalogue<2.1.0,>=2.0.4; confection<1.0.0,>=0.0.1; setuptools; numpy<3.0.0,>=2.0.0; pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4; packaging>=20.0; cupy>=5.0.0b4; extra == ""cuda""; cupy-wheel>=11.0.0; extra == ""cuda-autodetect""; cupy-cuda100>=5.0.0b4; extra == ""cuda100""; cupy-cuda101>=5.0.0b4; extra == ""cuda101""; cupy-cuda102>=5.0.0b4; extra == ""cuda102""; cupy-cuda110>=5.0.0b4; extra == ""cuda110""; cupy-cuda111>=5.0.0b4; extra == ""cuda111""; cupy-cuda112>=5.0.0b4; extra == ""cuda112""; cupy-cuda113>=5.0.0b4; extra == ""cuda113""; cupy-cuda114>=5.0.0b4; extra == ""cuda114""; cupy-cuda115>=5.0.0b4; extra == ""cuda115""; cupy-cuda116>=5.0.0b4; extra == ""cuda116""; cupy-cuda117>=5.0.0b4; extra == ""cuda117""; cupy-cuda11x>=11.0.0; extra == ""cuda11x""; cupy-cuda12x>=11.5.0; extra == ""cuda12x""; cupy-cuda80>=5.0.0b4; extra == ""cuda80""; cupy-cuda90>=5.0.0b4; extra == ""cuda90""; cupy-cuda91>=5.0.0b4; extra == ""cuda91""; cupy-cuda92>=5.0.0b4; extra == ""cuda92""; ml-datasets<0.3.0,>=0.2.0; extra == ""datasets""; mxnet<1.6.0,>=1.5.1; extra == ""mxnet""; tensorflow<2.6.0,>=2.0.0; extra == ""tensorflow""; torch>=1.6.0; extra == ""torch""","8.3.3, 8.3.4, 8.3.5, 8.3.6, 9.0.0.dev0, 9.0.0.dev1, 9.0.0.dev2, 9.0.0.dev3, 9.0.0.dev4, 9.0.0.dev5, 9.0.0, 9.1.0, 9.1.1","blis<1.1.0,>=1.0.0; murmurhash<1.1.0,>=1.0.2; cymem<2.1.0,>=2.0.2; preshed<3.1.0,>=3.0.2; wasabi<1.2.0,>=0.8.1; srsly<3.0.0,>=2.4.0; catalogue<2.1.0,>=2.0.4; confection<1.0.0,>=0.0.1; setuptools; numpy<3.0.0,>=2.0.0; pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4; packaging>=20.0; cupy>=5.0.0b4; extra == ""cuda""; cupy-wheel>=11.0.0; extra == ""cuda-autodetect""; cupy-cuda100>=5.0.0b4; extra == ""cuda100""; cupy-cuda101>=5.0.0b4; extra == ""cuda101""; cupy-cuda102>=5.0.0b4; extra == ""cuda102""; cupy-cuda110>=5.0.0b4; extra == ""cuda110""; cupy-cuda111>=5.0.0b4; extra == ""cuda111""; cupy-cuda112>=5.0.0b4; extra == ""cuda112""; cupy-cuda113>=5.0.0b4; extra == ""cuda113""; cupy-cuda114>=5.0.0b4; extra == ""cuda114""; cupy-cuda115>=5.0.0b4; extra == ""cuda115""; cupy-cuda116>=5.0.0b4; extra == ""cuda116""; cupy-cuda117>=5.0.0b4; extra == ""cuda117""; cupy-cuda11x>=11.0.0; extra == ""cuda11x""; cupy-cuda12x>=11.5.0; extra == ""cuda12x""; cupy-cuda80>=5.0.0b4; extra == ""cuda80""; cupy-cuda90>=5.0.0b4; extra == ""cuda90""; cupy-cuda91>=5.0.0b4; extra == ""cuda91""; cupy-cuda92>=5.0.0b4; extra == ""cuda92""; ml-datasets<0.3.0,>=0.2.0; extra == ""datasets""; mxnet<1.6.0,>=1.5.1; extra == ""mxnet""; tensorflow<2.6.0,>=2.0.0; extra == ""tensorflow""; torch>=1.6.0; extra == ""torch""",9.1.1,No,,No,None,,, +threadpoolctl,Dependency Package,EY,3.5.0,,,3.6.0,,3.6.0,No,,No,None,,, +toml,Dependency Package,EY,0.10.2,,,,,0.10.2,No,,No,None,,, +tornado,Dependency Package,EY,6.5.0,,,6.5.1,,6.5.1,No,,No,None,,, +tqdm,Dependency Package,EY,4.67.1,,"colorama; platform_system == ""Windows""; pytest>=6; extra == ""dev""; pytest-cov; extra == ""dev""; pytest-timeout; extra == ""dev""; pytest-asyncio>=0.24; extra == ""dev""; nbval; extra == ""dev""; requests; extra == ""discord""; slack-sdk; extra == ""slack""; requests; extra == ""telegram""; ipywidgets>=6; extra == ""notebook""",,"colorama; platform_system == ""Windows""; pytest>=6; extra == ""dev""; pytest-cov; extra == ""dev""; pytest-timeout; extra == ""dev""; pytest-asyncio>=0.24; extra == ""dev""; nbval; extra == ""dev""; requests; extra == ""discord""; slack-sdk; extra == ""slack""; requests; extra == ""telegram""; ipywidgets>=6; extra == ""notebook""",4.67.1,No,,No,None,,, +traitlets,Dependency Package,EY,5.14.3,,"myst-parser; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx; extra == ""docs""; argcomplete>=3.0.3; extra == ""test""; mypy>=1.7.0; extra == ""test""; pre-commit; extra == ""test""; pytest-mock; extra == ""test""; pytest-mypy-testing; extra == ""test""; pytest<8.2,>=7.0; extra == ""test""",,"myst-parser; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx; extra == ""docs""; argcomplete>=3.0.3; extra == ""test""; mypy>=1.7.0; extra == ""test""; pre-commit; extra == ""test""; pytest-mock; extra == ""test""; pytest-mypy-testing; extra == ""test""; pytest<8.2,>=7.0; extra == ""test""",5.14.3,No,,No,None,,, +typer,Dependency Package,EY,0.12.5,,click>=8.0.0; typing-extensions>=3.7.4.3; shellingham>=1.3.0; rich>=10.11.0,"0.13.0, 0.13.1, 0.14.0, 0.15.0, 0.15.1, 0.15.2, 0.15.3, 0.15.4, 0.16.0",click>=8.0.0; typing-extensions>=3.7.4.3; shellingham>=1.3.0; rich>=10.11.0,0.16.0,No,,No,None,,, +types-python-dateutil,Dependency Package,EY,2.9.0.20241003,,,"2.9.0.20241206, 2.9.0.20250516",,2.9.0.20250516,No,,No,None,,, +typing-extensions,Dependency Package,EY,4.12.2,,,"4.13.0rc1, 4.13.0, 4.13.1, 4.13.2, 4.14.0rc1, 4.14.0",,4.14.0,No,,No,None,,, +typing-inspect,Dependency Package,EY,0.9.0,,"mypy-extensions (>=0.3.0); typing-extensions (>=3.7.4); typing (>=3.7.4) ; python_version < ""3.5""",,"mypy-extensions (>=0.3.0); typing-extensions (>=3.7.4); typing (>=3.7.4) ; python_version < ""3.5""",0.9.0,No,,No,None,,, +tzdata,Dependency Package,EY,2024.2,,,"2025.1, 2025.2",,2025.2,No,,No,None,,, +urllib3,Dependency Package,EY,2.5.0,,"brotli>=1.0.9; platform_python_implementation == ""CPython"" and extra == ""brotli""; brotlicffi>=0.8.0; platform_python_implementation != ""CPython"" and extra == ""brotli""; h2<5,>=4; extra == ""h2""; pysocks!=1.5.7,<2.0,>=1.5.6; extra == ""socks""; zstandard>=0.18.0; extra == ""zstd""",,"brotli>=1.0.9; platform_python_implementation == ""CPython"" and extra == ""brotli""; brotlicffi>=0.8.0; platform_python_implementation != ""CPython"" and extra == ""brotli""; h2<5,>=4; extra == ""h2""; pysocks!=1.5.7,<2.0,>=1.5.6; extra == ""socks""; zstandard>=0.18.0; extra == ""zstd""",2.5.0,No,,No,None,,, +uvicorn,Dependency Package,EY,0.31.0,,"click>=7.0; h11>=0.8; typing-extensions>=4.0; python_version < ""3.11""; colorama>=0.4; sys_platform == ""win32"" and extra == ""standard""; httptools>=0.6.3; extra == ""standard""; python-dotenv>=0.13; extra == ""standard""; pyyaml>=5.1; extra == ""standard""; uvloop>=0.15.1; (sys_platform != ""win32"" and (sys_platform != ""cygwin"" and platform_python_implementation != ""PyPy"")) and extra == ""standard""; watchfiles>=0.13; extra == ""standard""; websockets>=10.4; extra == ""standard""","0.31.1, 0.32.0, 0.32.1, 0.33.0, 0.34.0, 0.34.1, 0.34.2, 0.34.3","click>=7.0; h11>=0.8; typing-extensions>=4.0; python_version < ""3.11""; colorama>=0.4; sys_platform == ""win32"" and extra == ""standard""; httptools>=0.6.3; extra == ""standard""; python-dotenv>=0.13; extra == ""standard""; pyyaml>=5.1; extra == ""standard""; uvloop>=0.15.1; (sys_platform != ""win32"" and (sys_platform != ""cygwin"" and platform_python_implementation != ""PyPy"")) and extra == ""standard""; watchfiles>=0.13; extra == ""standard""; websockets>=10.4; extra == ""standard""",0.34.3,No,,No,None,,, +wasabi,Dependency Package,EY,1.1.3,,"typing-extensions<5.0.0,>=3.7.4.1; python_version < ""3.8""; colorama>=0.4.6; sys_platform == ""win32"" and python_version >= ""3.7""",,"typing-extensions<5.0.0,>=3.7.4.1; python_version < ""3.8""; colorama>=0.4.6; sys_platform == ""win32"" and python_version >= ""3.7""",1.1.3,No,,No,None,,, +watchdog,Dependency Package,EY,4.0.1,,"PyYAML>=3.10; extra == ""watchmedo""","4.0.2, 5.0.0, 5.0.1, 5.0.2, 5.0.3, 6.0.0","PyYAML>=3.10; extra == ""watchmedo""",6.0.0,No,,No,None,,, +watchfiles,Dependency Package,EY,0.24.0,,anyio>=3.0.0,"1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5, 1.1.0",anyio>=3.0.0,1.1.0,No,,No,None,,, +wcwidth,Dependency Package,EY,0.2.13,,"backports.functools-lru-cache >=1.2.1 ; python_version < ""3.2""",,"backports.functools-lru-cache >=1.2.1 ; python_version < ""3.2""",0.2.13,No,,No,None,,, +weasel,Dependency Package,EY,0.4.1,,"confection<0.2.0,>=0.0.4; packaging>=20.0; wasabi<1.2.0,>=0.9.1; srsly<3.0.0,>=2.4.3; typer<1.0.0,>=0.3.0; cloudpathlib<1.0.0,>=0.7.0; smart-open<8.0.0,>=5.2.1; requests<3.0.0,>=2.13.0; pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4",,"confection<0.2.0,>=0.0.4; packaging>=20.0; wasabi<1.2.0,>=0.9.1; srsly<3.0.0,>=2.4.3; typer<1.0.0,>=0.3.0; cloudpathlib<1.0.0,>=0.7.0; smart-open<8.0.0,>=5.2.1; requests<3.0.0,>=2.13.0; pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4",0.4.1,No,,No,None,,, +webencodings,Dependency Package,EY,0.5.1,,,,,0.5.1,No,,No,None,,, +websocket-client,Dependency Package,EY,1.8.0,,"Sphinx>=6.0; extra == ""docs""; sphinx-rtd-theme>=1.1.0; extra == ""docs""; myst-parser>=2.0.0; extra == ""docs""; python-socks; extra == ""optional""; wsaccel; extra == ""optional""; websockets; extra == ""test""",,"Sphinx>=6.0; extra == ""docs""; sphinx-rtd-theme>=1.1.0; extra == ""docs""; myst-parser>=2.0.0; extra == ""docs""; python-socks; extra == ""optional""; wsaccel; extra == ""optional""; websockets; extra == ""test""",1.8.0,No,,No,None,,, +wrapt,Dependency Package,EY,1.16.0,,,"1.17.0.dev3, 1.17.0.dev4, 1.17.0rc1, 1.17.0, 1.17.1, 1.17.2",,1.17.2,No,,No,None,,, +yarl,Dependency Package,EY,1.18.3,,idna>=2.0; multidict>=4.0; propcache>=0.2.1,"1.19.0, 1.20.0, 1.20.1",idna>=2.0; multidict>=4.0; propcache>=0.2.1,1.20.1,No,,No,None,,, +zipp,Dependency Package,EY,3.20.2,,"pytest!=8.1.*,>=6; extra == ""test""; jaraco.itertools; extra == ""test""; jaraco.functools; extra == ""test""; more_itertools; extra == ""test""; big-O; extra == ""test""; pytest-ignore-flaky; extra == ""test""; jaraco.test; extra == ""test""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; pytest-checkdocs>=2.4; extra == ""check""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""check""; pytest-cov; extra == ""cover""; pytest-enabler>=2.2; extra == ""enabler""; pytest-mypy; extra == ""type""","3.21.0, 3.22.0, 3.23.0","pytest!=8.1.*,>=6; extra == ""test""; jaraco.itertools; extra == ""test""; jaraco.functools; extra == ""test""; more_itertools; extra == ""test""; big-O; extra == ""test""; pytest-ignore-flaky; extra == ""test""; jaraco.test; extra == ""test""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; pytest-checkdocs>=2.4; extra == ""check""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""check""; pytest-cov; extra == ""cover""; pytest-enabler>=2.2; extra == ""enabler""; pytest-mypy; extra == ""type""",3.23.0,No,,No,None,,, +aniso8601,Base Package,I&S,9.0.1,"{'base_package': 'aniso8601==9.0.1', 'dependencies': []}","black; extra == ""dev""; coverage; extra == ""dev""; isort; extra == ""dev""; pre-commit; extra == ""dev""; pyenchant; extra == ""dev""; pylint; extra == ""dev""","10.0.0, 10.0.1","black; extra == ""dev""; coverage; extra == ""dev""; isort; extra == ""dev""; pre-commit; extra == ""dev""; pyenchant; extra == ""dev""; pylint; extra == ""dev""",10.0.1,No,,No,None,,, +appnope,Base Package,I&S,0.1.4,"{'base_package': 'appnope==0.1.4', 'dependencies': []}",,,,0.1.4,No,,No,None,,, +AST,Base Package,I&S,0.0.2,"{'base_package': 'AST==0.0.2', 'dependencies': []}",,,,0.0.2,No,,No,None,,, +asyncio,Base Package,I&S,3.4.3,"{'base_package': 'asyncio==3.4.3', 'dependencies': []}",,,,3.4.3,No,,No,None,,, +bandit,Base Package,I&S,1.7.9,"{'base_package': 'bandit==1.7.9', 'dependencies': ['PyYAML==5.3.1', 'stevedore==1.20.0', 'colorama==0.3.9', 'GitPython==3.1.30', 'sarif-om==1.0.4', 'jschema-to-python==1.2.3', 'coverage==4.5.4', 'fixtures==3.0.0', 'flake8==4.0.0', 'stestr==2.5.0', 'testscenarios==0.5.0', 'testtools==2.3.0', 'beautifulsoup4==4.8.0', 'pylint==1.9.4', 'tomli==1.1.0']}","PyYAML>=5.3.1; stevedore>=1.20.0; rich; colorama>=0.3.9; platform_system == ""Windows""; GitPython>=3.1.30; extra == ""baseline""; sarif-om>=1.0.4; extra == ""sarif""; jschema-to-python>=1.2.3; extra == ""sarif""; coverage>=4.5.4; extra == ""test""; fixtures>=3.0.0; extra == ""test""; flake8>=4.0.0; extra == ""test""; stestr>=2.5.0; extra == ""test""; testscenarios>=0.5.0; extra == ""test""; testtools>=2.3.0; extra == ""test""; beautifulsoup4>=4.8.0; extra == ""test""; pylint==1.9.4; extra == ""test""; tomli>=1.1.0; python_version < ""3.11"" and extra == ""toml""; PyYAML; extra == ""yaml""","1.7.10, 1.8.0, 1.8.1, 1.8.2, 1.8.3, 1.8.5","PyYAML>=5.3.1; stevedore>=1.20.0; rich; colorama>=0.3.9; platform_system == ""Windows""; GitPython>=3.1.30; extra == ""baseline""; sarif-om>=1.0.4; extra == ""sarif""; jschema-to-python>=1.2.3; extra == ""sarif""; coverage>=4.5.4; extra == ""test""; fixtures>=3.0.0; extra == ""test""; flake8>=4.0.0; extra == ""test""; stestr>=2.5.0; extra == ""test""; testscenarios>=0.5.0; extra == ""test""; testtools>=2.3.0; extra == ""test""; beautifulsoup4>=4.8.0; extra == ""test""; pylint==1.9.4; extra == ""test""; tomli>=1.1.0; python_version < ""3.11"" and extra == ""toml""; PyYAML; extra == ""yaml""",1.8.5,No,,No,None,,, +configparser,Base Package,I&S,7.0.0,"{'base_package': 'configparser==7.0.0', 'dependencies': ['pytest==6', 'sphinx==3.5', 'jaraco.packaging==9.3', 'rst.linker==1.9', 'jaraco.tidelift==1.4', 'pytest-checkdocs==2.4', 'pytest-ruff==0.2.1', 'pytest-enabler==2.2']}","pytest!=8.1.*,>=6; extra == ""test""; types-backports; extra == ""test""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; pytest-checkdocs>=2.4; extra == ""check""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""check""; pytest-cov; extra == ""cover""; pytest-enabler>=2.2; extra == ""enabler""; pytest-mypy; extra == ""type""","7.0.1, 7.1.0, 7.2.0","pytest!=8.1.*,>=6; extra == ""test""; types-backports; extra == ""test""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; pytest-checkdocs>=2.4; extra == ""check""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""check""; pytest-cov; extra == ""cover""; pytest-enabler>=2.2; extra == ""enabler""; pytest-mypy; extra == ""type""",7.2.0,No,,No,None,,, +dash-core-components,Base Package,I&S,2.0.0,"{'base_package': 'dash-core-components==2.0.0', 'dependencies': []}",,,,2.0.0,No,,No,None,,, +dash-html-components,Base Package,I&S,2.0.0,"{'base_package': 'dash-html-components==2.0.0', 'dependencies': []}",,,,2.0.0,No,,No,None,,, +dash-table,Base Package,I&S,5.0.0,"{'base_package': 'dash-table==5.0.0', 'dependencies': []}",,,,5.0.0,No,,No,None,,, +deepdiff,Base Package,I&S,8.0.1,"{'base_package': 'deepdiff==8.0.1', 'dependencies': ['orderly-set==5.4.1', 'click==8.1.0', 'pyyaml==6.0.0', 'coverage==7.6.0', 'bump2version==1.0.0', 'jsonpickle==4.0.0', 'ipdb==0.13.0', 'numpy==2.2.0', 'numpy==2.0', 'python-dateutil==2.9.0', 'orjson==3.10.0', 'tomli==2.2.0', 'tomli-w==1.2.0', 'pandas==2.2.0', 'polars==1.21.0', 'nox==2025.5.1', 'Sphinx==6.2.0', 'sphinx-sitemap==2.6.0', 'sphinxemoji==0.3.0', 'flake8==7.1.0', 'flake8-pyproject==1.2.3', 'pydantic==2.10.0', 'pytest==8.3.0', 'pytest-benchmark==5.1.0', 'pytest-cov==6.0.0', 'python-dotenv==1.0.0']}","orderly-set<6,>=5.4.1; click~=8.1.0; extra == ""cli""; pyyaml~=6.0.0; extra == ""cli""; coverage~=7.6.0; extra == ""coverage""; bump2version~=1.0.0; extra == ""dev""; jsonpickle~=4.0.0; extra == ""dev""; ipdb~=0.13.0; extra == ""dev""; numpy~=2.2.0; extra == ""dev"" and python_version >= ""3.10""; numpy~=2.0; extra == ""dev"" and python_version < ""3.10""; python-dateutil~=2.9.0; extra == ""dev""; orjson~=3.10.0; extra == ""dev""; tomli~=2.2.0; extra == ""dev""; tomli-w~=1.2.0; extra == ""dev""; pandas~=2.2.0; extra == ""dev""; polars~=1.21.0; extra == ""dev""; nox==2025.5.1; extra == ""dev""; Sphinx~=6.2.0; extra == ""docs""; sphinx-sitemap~=2.6.0; extra == ""docs""; sphinxemoji~=0.3.0; extra == ""docs""; orjson; extra == ""optimize""; flake8~=7.1.0; extra == ""static""; flake8-pyproject~=1.2.3; extra == ""static""; pydantic~=2.10.0; extra == ""static""; pytest~=8.3.0; extra == ""test""; pytest-benchmark~=5.1.0; extra == ""test""; pytest-cov~=6.0.0; extra == ""test""; python-dotenv~=1.0.0; extra == ""test""","8.1.0, 8.1.1, 8.2.0, 8.3.0, 8.4.0, 8.4.1, 8.4.2, 8.5.0","orderly-set<6,>=5.4.1; click~=8.1.0; extra == ""cli""; pyyaml~=6.0.0; extra == ""cli""; coverage~=7.6.0; extra == ""coverage""; bump2version~=1.0.0; extra == ""dev""; jsonpickle~=4.0.0; extra == ""dev""; ipdb~=0.13.0; extra == ""dev""; numpy~=2.2.0; extra == ""dev"" and python_version >= ""3.10""; numpy~=2.0; extra == ""dev"" and python_version < ""3.10""; python-dateutil~=2.9.0; extra == ""dev""; orjson~=3.10.0; extra == ""dev""; tomli~=2.2.0; extra == ""dev""; tomli-w~=1.2.0; extra == ""dev""; pandas~=2.2.0; extra == ""dev""; polars~=1.21.0; extra == ""dev""; nox==2025.5.1; extra == ""dev""; Sphinx~=6.2.0; extra == ""docs""; sphinx-sitemap~=2.6.0; extra == ""docs""; sphinxemoji~=0.3.0; extra == ""docs""; orjson; extra == ""optimize""; flake8~=7.1.0; extra == ""static""; flake8-pyproject~=1.2.3; extra == ""static""; pydantic~=2.10.0; extra == ""static""; pytest~=8.3.0; extra == ""test""; pytest-benchmark~=5.1.0; extra == ""test""; pytest-cov~=6.0.0; extra == ""test""; python-dotenv~=1.0.0; extra == ""test""",8.5.0,No,,No,None,,, +docx,Base Package,I&S,0.2.4,"{'base_package': 'docx==0.2.4', 'dependencies': []}",,,,0.2.4,No,,No,None,,, +entrypoints,Base Package,I&S,0.4,"{'base_package': 'entrypoints==0.4', 'dependencies': []}",,,,0.4,No,,No,None,,, +faiss,Base Package,I&S,1.5.3,"{'base_package': 'faiss==1.5.3', 'dependencies': []}",numpy,,numpy,1.5.3,No,,No,None,,, +faiss-cpu,Base Package,I&S,1.7.4,"{'base_package': 'faiss-cpu==1.7.4', 'dependencies': ['numpy==1.25.0']}","numpy<3.0,>=1.25.0; packaging","1.8.0, 1.8.0.post1, 1.9.0, 1.9.0.post1, 1.10.0, 1.11.0","numpy<3.0,>=1.25.0; packaging",1.11.0,No,,No,None,,, +faiss-gpu,Base Package,I&S,1.7.2,"{'base_package': 'faiss-gpu==1.7.2', 'dependencies': []}",,,,1.7.2,No,,No,None,,, +flake8,Base Package,I&S,7.0.0,"{'base_package': 'flake8==7.0.0', 'dependencies': ['mccabe==0.7.0', 'pycodestyle==2.14.0', 'pyflakes==3.4.0']}","mccabe<0.8.0,>=0.7.0; pycodestyle<2.15.0,>=2.14.0; pyflakes<3.5.0,>=3.4.0","7.1.0, 7.1.1, 7.1.2, 7.2.0, 7.3.0","mccabe<0.8.0,>=0.7.0; pycodestyle<2.15.0,>=2.14.0; pyflakes<3.5.0,>=3.4.0",7.3.0,No,,No,None,,, +fuzzywuzzy,Base Package,I&S,0.18.0,"{'base_package': 'fuzzywuzzy==0.18.0', 'dependencies': ['python-levenshtein==0.12']}",python-levenshtein (>=0.12) ; extra == 'speedup',,python-levenshtein (>=0.12) ; extra == 'speedup',0.18.0,No,,No,None,,, +gensim,Base Package,I&S,3.8.3,"{'base_package': 'gensim==3.8.3', 'dependencies': ['numpy==1.18.5', 'scipy==1.7.0', 'smart-open==1.8.1', 'Pyro4==4.27', 'Pyro4==4.27', 'visdom==0.1.8', 'sphinx==5.1.1', 'sphinx-gallery==0.11.1', 'sphinxcontrib.programoutput==0.17', 'sphinxcontrib-napoleon==0.7', 'visdom==0.1.8']}","numpy<2.0,>=1.18.5; scipy<1.14.0,>=1.7.0; smart-open>=1.8.1; Pyro4>=4.27; extra == ""distributed""; pytest; extra == ""docs""; pytest-cov; extra == ""docs""; testfixtures; extra == ""docs""; POT; extra == ""docs""; Pyro4>=4.27; extra == ""docs""; visdom!=0.1.8.7,>=0.1.8; extra == ""docs""; sphinx==5.1.1; extra == ""docs""; sphinx-gallery==0.11.1; extra == ""docs""; sphinxcontrib.programoutput==0.17; extra == ""docs""; sphinxcontrib-napoleon==0.7; extra == ""docs""; matplotlib; extra == ""docs""; memory-profiler; extra == ""docs""; annoy; extra == ""docs""; Pyro4; extra == ""docs""; scikit-learn; extra == ""docs""; nltk; extra == ""docs""; statsmodels; extra == ""docs""; pandas; extra == ""docs""; pytest; extra == ""test""; pytest-cov; extra == ""test""; testfixtures; extra == ""test""; POT; extra == ""test""; visdom!=0.1.8.7,>=0.1.8; extra == ""test""; pytest; extra == ""test-win""; pytest-cov; extra == ""test-win""; testfixtures; extra == ""test-win""; POT; extra == ""test-win""","4.0.0, 4.0.1, 4.1.0, 4.1.1, 4.1.2, 4.2.0, 4.3.0, 4.3.1, 4.3.2, 4.3.3","numpy<2.0,>=1.18.5; scipy<1.14.0,>=1.7.0; smart-open>=1.8.1; Pyro4>=4.27; extra == ""distributed""; pytest; extra == ""docs""; pytest-cov; extra == ""docs""; testfixtures; extra == ""docs""; POT; extra == ""docs""; Pyro4>=4.27; extra == ""docs""; visdom!=0.1.8.7,>=0.1.8; extra == ""docs""; sphinx==5.1.1; extra == ""docs""; sphinx-gallery==0.11.1; extra == ""docs""; sphinxcontrib.programoutput==0.17; extra == ""docs""; sphinxcontrib-napoleon==0.7; extra == ""docs""; matplotlib; extra == ""docs""; memory-profiler; extra == ""docs""; annoy; extra == ""docs""; Pyro4; extra == ""docs""; scikit-learn; extra == ""docs""; nltk; extra == ""docs""; statsmodels; extra == ""docs""; pandas; extra == ""docs""; pytest; extra == ""test""; pytest-cov; extra == ""test""; testfixtures; extra == ""test""; POT; extra == ""test""; visdom!=0.1.8.7,>=0.1.8; extra == ""test""; pytest; extra == ""test-win""; pytest-cov; extra == ""test-win""; testfixtures; extra == ""test-win""; POT; extra == ""test-win""",4.3.3,No,,No,None,,, +graphframes,Base Package,I&S,0.6,"{'base_package': 'graphframes==0.6', 'dependencies': []}",numpy; nose,,numpy; nose,0.6,No,,No,None,,, +invoke,Base Package,I&S,2.2.0,"{'base_package': 'invoke==2.2.0', 'dependencies': []}",,,,2.2.0,No,,No,None,,, +ipython-genutils,Base Package,I&S,0.2.0,"{'base_package': 'ipython-genutils==0.2.0', 'dependencies': []}",,,,0.2.0,No,,No,None,,, +jaraco.classes,Base Package,I&S,3.4.0,"{'base_package': 'jaraco.classes==3.4.0', 'dependencies': ['sphinx==3.5', 'jaraco.packaging==9.3', 'rst.linker==1.9', 'jaraco.tidelift==1.4', 'pytest==6', 'pytest-checkdocs==2.4', 'pytest-enabler==2.2', 'pytest-ruff==0.2.1']}","more-itertools; sphinx>=3.5; extra == ""docs""; jaraco.packaging>=9.3; extra == ""docs""; rst.linker>=1.9; extra == ""docs""; furo; extra == ""docs""; sphinx-lint; extra == ""docs""; jaraco.tidelift>=1.4; extra == ""docs""; pytest>=6; extra == ""testing""; pytest-checkdocs>=2.4; extra == ""testing""; pytest-cov; extra == ""testing""; pytest-mypy; extra == ""testing""; pytest-enabler>=2.2; extra == ""testing""; pytest-ruff>=0.2.1; extra == ""testing""",,"more-itertools; sphinx>=3.5; extra == ""docs""; jaraco.packaging>=9.3; extra == ""docs""; rst.linker>=1.9; extra == ""docs""; furo; extra == ""docs""; sphinx-lint; extra == ""docs""; jaraco.tidelift>=1.4; extra == ""docs""; pytest>=6; extra == ""testing""; pytest-checkdocs>=2.4; extra == ""testing""; pytest-cov; extra == ""testing""; pytest-mypy; extra == ""testing""; pytest-enabler>=2.2; extra == ""testing""; pytest-ruff>=0.2.1; extra == ""testing""",3.4.0,No,,No,None,,, +jaraco.context,Base Package,I&S,6.0.1,"{'base_package': 'jaraco.context==6.0.1', 'dependencies': ['sphinx==3.5', 'jaraco.packaging==9.3', 'rst.linker==1.9', 'jaraco.tidelift==1.4', 'pytest==6', 'pytest-checkdocs==2.4', 'pytest-enabler==2.2', 'pytest-ruff==0.2.1']}","backports.tarfile; python_version < ""3.12""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; pytest!=8.1.*,>=6; extra == ""test""; pytest-checkdocs>=2.4; extra == ""test""; pytest-cov; extra == ""test""; pytest-mypy; extra == ""test""; pytest-enabler>=2.2; extra == ""test""; portend; extra == ""test""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""test""",,"backports.tarfile; python_version < ""3.12""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; pytest!=8.1.*,>=6; extra == ""test""; pytest-checkdocs>=2.4; extra == ""test""; pytest-cov; extra == ""test""; pytest-mypy; extra == ""test""; pytest-enabler>=2.2; extra == ""test""; portend; extra == ""test""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""test""",6.0.1,No,,No,None,,, +jaraco.functools,Base Package,I&S,4.1.0,"{'base_package': 'jaraco.functools==4.1.0', 'dependencies': ['pytest==6', 'sphinx==3.5', 'jaraco.packaging==9.3', 'rst.linker==1.9', 'jaraco.tidelift==1.4', 'pytest-checkdocs==2.4', 'pytest-ruff==0.2.1', 'pytest-enabler==2.2']}","more_itertools; pytest!=8.1.*,>=6; extra == ""test""; jaraco.classes; extra == ""test""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; pytest-checkdocs>=2.4; extra == ""check""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""check""; pytest-cov; extra == ""cover""; pytest-enabler>=2.2; extra == ""enabler""; pytest-mypy; extra == ""type""","4.2.0, 4.2.1","more_itertools; pytest!=8.1.*,>=6; extra == ""test""; jaraco.classes; extra == ""test""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; pytest-checkdocs>=2.4; extra == ""check""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""check""; pytest-cov; extra == ""cover""; pytest-enabler>=2.2; extra == ""enabler""; pytest-mypy; extra == ""type""",4.2.1,No,,No,None,,, +jsonpath-ng,Base Package,I&S,1.6.1,"{'base_package': 'jsonpath-ng==1.6.1', 'dependencies': []}",,1.7.0,,1.7.0,No,,No,None,,, +jsonpath-python,Base Package,I&S,1.0.6,"{'base_package': 'jsonpath-python==1.0.6', 'dependencies': []}",,,,1.0.6,No,,No,None,,, +kaleido,Base Package,I&S,0.2.1,"{'base_package': 'kaleido==0.2.1', 'dependencies': ['choreographer==1.0.5', 'logistro==1.0.8', 'orjson==3.10.15']}",choreographer>=1.0.5; logistro>=1.0.8; orjson>=3.10.15; packaging,"0.2.1.post1, 0.4.0rc1, 0.4.0rc2, 0.4.0rc3, 0.4.0rc4, 0.4.0rc5, 0.4.0, 0.4.1, 0.4.2, 1.0.0rc0, 1.0.0rc11, 1.0.0rc13, 1.0.0rc15, 1.0.0",choreographer>=1.0.5; logistro>=1.0.8; orjson>=3.10.15; packaging,1.0.0,No,,No,None,,, +ldap3,Base Package,I&S,2.9.1,"{'base_package': 'ldap3==2.9.1', 'dependencies': ['pyasn1==0.4.6']}",pyasn1 (>=0.4.6),2.10.2rc2,pyasn1 (>=0.4.6),2.10.2rc2,No,,No,None,,, +lightfm,Base Package,I&S,1.17,"{'base_package': 'lightfm==1.17', 'dependencies': []}",,,,1.17,No,,No,None,,, +lightgbm,Base Package,I&S,4.3.0,"{'base_package': 'lightgbm==4.3.0', 'dependencies': ['numpy==1.17.0', 'cffi==1.15.1', 'pyarrow==6.0.1', 'dask==2.0.0', 'pandas==0.24.0', 'pandas==0.24.0', 'scikit-learn==0.24.2']}","numpy>=1.17.0; scipy; cffi>=1.15.1; extra == ""arrow""; pyarrow>=6.0.1; extra == ""arrow""; dask[array,dataframe,distributed]>=2.0.0; extra == ""dask""; pandas>=0.24.0; extra == ""dask""; pandas>=0.24.0; extra == ""pandas""; scikit-learn>=0.24.2; extra == ""scikit-learn""","4.4.0, 4.5.0, 4.6.0","numpy>=1.17.0; scipy; cffi>=1.15.1; extra == ""arrow""; pyarrow>=6.0.1; extra == ""arrow""; dask[array,dataframe,distributed]>=2.0.0; extra == ""dask""; pandas>=0.24.0; extra == ""dask""; pandas>=0.24.0; extra == ""pandas""; scikit-learn>=0.24.2; extra == ""scikit-learn""",4.6.0,Yes,"CVE-2024-43598, CVSS_V3, LightGBM Remote Code Execution Vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H/E:U/RL:O/RC:C, affects: >=1.0.0,<4.6.0 +CVE-2024-43598, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<4.6.0",Yes,"4.5.0: CVE-2024-43598, CVSS_V3, LightGBM Remote Code Execution Vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H/E:U/RL:O/RC:C, affects: >=1.0.0,<4.6.0 +CVE-2024-43598, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<4.6.0; 4.4.0: CVE-2024-43598, CVSS_V3, LightGBM Remote Code Execution Vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H/E:U/RL:O/RC:C, affects: >=1.0.0,<4.6.0 +CVE-2024-43598, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<4.6.0",4.6.0,"{'base_package': 'lightgbm==4.6.0', 'dependencies': ['numpy==1.26.4', 'scipy==1.16.0', 'cffi==1.17.1']}",Not Used +mongomock-motor,Base Package,I&S,0.0.29,"{'base_package': 'mongomock-motor==0.0.29', 'dependencies': ['mongomock==4.1.2', 'motor==2.5']}","mongomock<5.0.0,>=4.1.2; motor>=2.5","0.0.30, 0.0.31, 0.0.32, 0.0.33, 0.0.34, 0.0.35, 0.0.36","mongomock<5.0.0,>=4.1.2; motor>=2.5",0.0.36,No,,No,None,,, +monotonic,Base Package,I&S,1.6,"{'base_package': 'monotonic==1.6', 'dependencies': []}",,,,1.6,No,,No,None,,, +mypy,Base Package,I&S,1.10.0,"{'base_package': 'mypy==1.10.0', 'dependencies': ['typing_extensions==4.6.0', 'mypy_extensions==1.0.0', 'pathspec==0.9.0', 'tomli==1.1.0', 'psutil==4.0', 'setuptools==50']}","typing_extensions>=4.6.0; mypy_extensions>=1.0.0; pathspec>=0.9.0; tomli>=1.1.0; python_version < ""3.11""; psutil>=4.0; extra == ""dmypy""; setuptools>=50; extra == ""mypyc""; lxml; extra == ""reports""; pip; extra == ""install-types""; orjson; extra == ""faster-cache""","1.10.1, 1.11.0, 1.11.1, 1.11.2, 1.12.0, 1.12.1, 1.13.0, 1.14.0, 1.14.1, 1.15.0, 1.16.0, 1.16.1","typing_extensions>=4.6.0; mypy_extensions>=1.0.0; pathspec>=0.9.0; tomli>=1.1.0; python_version < ""3.11""; psutil>=4.0; extra == ""dmypy""; setuptools>=50; extra == ""mypyc""; lxml; extra == ""reports""; pip; extra == ""install-types""; orjson; extra == ""faster-cache""",1.16.1,No,,No,None,,, +neo4j,Base Package,I&S,5.24.0,"{'base_package': 'neo4j==5.24.0', 'dependencies': ['numpy==1.7.0', 'pandas==1.1.0', 'numpy==1.7.0', 'pyarrow==1.0.0']}","pytz; numpy<3.0.0,>=1.7.0; extra == ""numpy""; pandas<3.0.0,>=1.1.0; extra == ""pandas""; numpy<3.0.0,>=1.7.0; extra == ""pandas""; pyarrow>=1.0.0; extra == ""pyarrow""","5.25.0, 5.26.0, 5.27.0, 5.28.0, 5.28.1","pytz; numpy<3.0.0,>=1.7.0; extra == ""numpy""; pandas<3.0.0,>=1.1.0; extra == ""pandas""; numpy<3.0.0,>=1.7.0; extra == ""pandas""; pyarrow>=1.0.0; extra == ""pyarrow""",5.28.1,No,,No,None,,, +opencv-python,Base Package,I&S,4.2.0.34,"{'base_package': 'opencv-python==4.2.0.34', 'dependencies': ['numpy==1.13.3', 'numpy==1.21.0', 'numpy==1.21.2', 'numpy==1.21.4', 'numpy==1.23.5', 'numpy==1.26.0', 'numpy==1.19.3', 'numpy==1.17.0', 'numpy==1.17.3', 'numpy==1.19.3']}","numpy>=1.13.3; python_version < ""3.7""; numpy>=1.21.0; python_version <= ""3.9"" and platform_system == ""Darwin"" and platform_machine == ""arm64""; numpy>=1.21.2; python_version >= ""3.10""; numpy>=1.21.4; python_version >= ""3.10"" and platform_system == ""Darwin""; numpy>=1.23.5; python_version >= ""3.11""; numpy>=1.26.0; python_version >= ""3.12""; numpy>=1.19.3; python_version >= ""3.6"" and platform_system == ""Linux"" and platform_machine == ""aarch64""; numpy>=1.17.0; python_version >= ""3.7""; numpy>=1.17.3; python_version >= ""3.8""; numpy>=1.19.3; python_version >= ""3.9""","4.3.0.36, 4.3.0.38, 4.4.0.40, 4.4.0.42, 4.4.0.44, 4.4.0.46, 4.5.1.48, 4.5.2.52, 4.5.2.54, 4.5.3.56, 4.5.4.58, 4.5.4.60, 4.5.5.62, 4.5.5.64, 4.6.0.66, 4.7.0.68, 4.7.0.72, 4.8.0.74, 4.8.0.76, 4.8.1.78, 4.9.0.80, 4.10.0.82, 4.10.0.84, 4.11.0.86","numpy>=1.13.3; python_version < ""3.7""; numpy>=1.21.0; python_version <= ""3.9"" and platform_system == ""Darwin"" and platform_machine == ""arm64""; numpy>=1.21.2; python_version >= ""3.10""; numpy>=1.21.4; python_version >= ""3.10"" and platform_system == ""Darwin""; numpy>=1.23.5; python_version >= ""3.11""; numpy>=1.26.0; python_version >= ""3.12""; numpy>=1.19.3; python_version >= ""3.6"" and platform_system == ""Linux"" and platform_machine == ""aarch64""; numpy>=1.17.0; python_version >= ""3.7""; numpy>=1.17.3; python_version >= ""3.8""; numpy>=1.19.3; python_version >= ""3.9""",4.11.0.86,Yes,"GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78",Yes,"4.3.0.36: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.5.4.58: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.3.0.38: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.8.0.76: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.8.0.74: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.5.5.62: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.4.0.40: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.4.0.46: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.4.0.44: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.5.5.64: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.7.0.72: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.5.2.52: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.5.2.54: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.5.4.60: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.5.1.48: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.7.0.68: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.6.0.66: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.5.3.56: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.4.0.42: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 +PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78",4.11.0.86,"{'base_package': 'opencv-python==4.11.0.86', 'dependencies': ['numpy==1.26.4']}",Not Used +openpyxl,Base Package,I&S,3.1.2,"{'base_package': 'openpyxl==3.1.2', 'dependencies': []}",et-xmlfile,"3.1.3, 3.1.4, 3.1.5, 3.2.0b1",et-xmlfile,3.2.0b1,No,,No,None,,, +pdf2image,Base Package,I&S,1.13.1,"{'base_package': 'pdf2image==1.13.1', 'dependencies': []}",pillow,"1.14.0, 1.15.0, 1.15.1, 1.16.0, 1.16.2, 1.16.3, 1.17.0",pillow,1.17.0,No,,No,None,,, +pdfminer,Base Package,I&S,20191125,"{'base_package': 'pdfminer==20191125', 'dependencies': []}",,,,20191125,No,,No,None,,, +pdfrw,Base Package,I&S,0.4,"{'base_package': 'pdfrw==0.4', 'dependencies': []}",,,,0.4,No,,No,None,,, +pyaml,Base Package,I&S,23.12.0,"{'base_package': 'pyaml==23.12.0', 'dependencies': []}","PyYAML; unidecode; extra == ""anchors""","24.4.0, 24.7.0, 24.9.0, 24.12.0, 24.12.1, 25.1.0, 25.5.0","PyYAML; unidecode; extra == ""anchors""",25.5.0,No,,No,None,,, +pyarrow-hotfix,Base Package,I&S,0.6,"{'base_package': 'pyarrow-hotfix==0.6', 'dependencies': []}",,0.7,,0.7,No,,No,None,,, +pyctuator,Base Package,I&S,1.2.0,"{'base_package': 'pyctuator==1.2.0', 'dependencies': ['psutil==5.6', 'flask==2.3.0', 'fastapi==0.100.1', 'uvicorn==0.23.0', 'sqlalchemy==2.0.4', 'PyMySQL==1.0.2', 'cryptography==39.0.1', 'redis==4.3.4', 'aiohttp==3.6.2', 'tornado==6.0.4']}","psutil (>=5.6,<6.0); extra == ""psutil""; flask (>=2.3.0,<3.0.0); extra == ""flask""; fastapi (>=0.100.1,<0.101.0); extra == ""fastapi""; uvicorn (>=0.23.0,<0.24.0); extra == ""fastapi""; sqlalchemy (>=2.0.4,<3.0.0); extra == ""db""; PyMySQL (>=1.0.2,<2.0.0); extra == ""db""; cryptography (>=39.0.1,<40.0.0); extra == ""db""; redis (>=4.3.4,<5.0.0); extra == ""redis""; aiohttp (>=3.6.2,<4.0.0); extra == ""aiohttp""; tornado (>=6.0.4,<7.0.0); extra == ""tornado""",,"psutil (>=5.6,<6.0); extra == ""psutil""; flask (>=2.3.0,<3.0.0); extra == ""flask""; fastapi (>=0.100.1,<0.101.0); extra == ""fastapi""; uvicorn (>=0.23.0,<0.24.0); extra == ""fastapi""; sqlalchemy (>=2.0.4,<3.0.0); extra == ""db""; PyMySQL (>=1.0.2,<2.0.0); extra == ""db""; cryptography (>=39.0.1,<40.0.0); extra == ""db""; redis (>=4.3.4,<5.0.0); extra == ""redis""; aiohttp (>=3.6.2,<4.0.0); extra == ""aiohttp""; tornado (>=6.0.4,<7.0.0); extra == ""tornado""",1.2.0,No,,No,None,,, +PyHive,Base Package,I&S,0.6.2,"{'base_package': 'PyHive==0.6.2', 'dependencies': []}",,"0.6.3.dev0, 0.6.3, 0.6.4rc1, 0.6.4rc2, 0.6.4, 0.6.5, 0.7.0.dev0, 0.7.0, 0.7.1.dev0",,0.7.1.dev0,No,,No,None,,, +pylance,Base Package,I&S,0.15.0,"{'base_package': 'pylance==0.15.0', 'dependencies': ['pyarrow==14', 'numpy==1.22', 'ruff==0.4.1']}","pyarrow>=14; numpy>=1.22; boto3; extra == ""tests""; datasets; extra == ""tests""; duckdb; extra == ""tests""; ml-dtypes; extra == ""tests""; pillow; extra == ""tests""; pandas; extra == ""tests""; polars[pandas,pyarrow]; extra == ""tests""; pytest; extra == ""tests""; tensorflow; extra == ""tests""; tqdm; extra == ""tests""; datafusion; extra == ""tests""; ruff==0.4.1; extra == ""dev""; pyright; extra == ""dev""; pytest-benchmark; extra == ""benchmarks""; torch; extra == ""torch""; ray[data]<2.38; python_full_version < ""3.12"" and extra == ""ray""","0.16.0, 0.16.1, 0.17.0, 0.18.0, 0.18.2, 0.19.1, 0.19.2, 0.20.0, 0.21.0, 0.22.0, 0.23.0, 0.23.1, 0.23.2, 0.24.0, 0.24.1, 0.25.0, 0.25.1, 0.25.2, 0.26.0, 0.26.1, 0.27.0, 0.27.1, 0.27.2, 0.28.0, 0.29.0, 0.30.0","pyarrow>=14; numpy>=1.22; boto3; extra == ""tests""; datasets; extra == ""tests""; duckdb; extra == ""tests""; ml-dtypes; extra == ""tests""; pillow; extra == ""tests""; pandas; extra == ""tests""; polars[pandas,pyarrow]; extra == ""tests""; pytest; extra == ""tests""; tensorflow; extra == ""tests""; tqdm; extra == ""tests""; datafusion; extra == ""tests""; ruff==0.4.1; extra == ""dev""; pyright; extra == ""dev""; pytest-benchmark; extra == ""benchmarks""; torch; extra == ""torch""; ray[data]<2.38; python_full_version < ""3.12"" and extra == ""ray""",0.30.0,No,,No,None,,, +pylint,Base Package,I&S,3.2.6,"{'base_package': 'pylint==3.2.6', 'dependencies': ['astroid==3.3.8', 'colorama==0.4.5', 'dill==0.2', 'dill==0.3.6', 'dill==0.3.7', 'isort==4.2.5', 'mccabe==0.6', 'platformdirs==2.2', 'tomli==1.1', 'tomlkit==0.10.1', 'typing-extensions==3.10', 'pyenchant==3.2', 'gitpython==3']}","astroid<=3.4.0.dev0,>=3.3.8; colorama>=0.4.5; sys_platform == ""win32""; dill>=0.2; python_version < ""3.11""; dill>=0.3.6; python_version >= ""3.11""; dill>=0.3.7; python_version >= ""3.12""; isort!=5.13,<7,>=4.2.5; mccabe<0.8,>=0.6; platformdirs>=2.2; tomli>=1.1; python_version < ""3.11""; tomlkit>=0.10.1; typing-extensions>=3.10; python_version < ""3.10""; pyenchant~=3.2; extra == ""spelling""; gitpython>3; extra == ""testutils""","3.2.7, 3.3.0, 3.3.1, 3.3.2, 3.3.3, 3.3.4, 3.3.5a0, 3.3.5, 3.3.6, 3.3.7","astroid<=3.4.0.dev0,>=3.3.8; colorama>=0.4.5; sys_platform == ""win32""; dill>=0.2; python_version < ""3.11""; dill>=0.3.6; python_version >= ""3.11""; dill>=0.3.7; python_version >= ""3.12""; isort!=5.13,<7,>=4.2.5; mccabe<0.8,>=0.6; platformdirs>=2.2; tomli>=1.1; python_version < ""3.11""; tomlkit>=0.10.1; typing-extensions>=3.10; python_version < ""3.10""; pyenchant~=3.2; extra == ""spelling""; gitpython>3; extra == ""testutils""",3.3.7,No,,No,None,,, +PyMuPDF,Base Package,I&S,1.24.4,"{'base_package': 'PyMuPDF==1.24.4', 'dependencies': []}",,"1.24.5, 1.24.6, 1.24.7, 1.24.8, 1.24.9, 1.24.10, 1.24.11, 1.24.12, 1.24.13, 1.24.14, 1.25.0, 1.25.1, 1.25.2, 1.25.3, 1.25.4, 1.25.5, 1.26.0, 1.26.1",,1.26.1,No,,No,None,,, +PyMuPDFb,Base Package,I&S,1.24.3,"{'base_package': 'PyMuPDFb==1.24.3', 'dependencies': []}",,"1.24.6, 1.24.8, 1.24.9, 1.24.10",,1.24.10,No,,No,None,,, +pyodbc,Base Package,I&S,5.1.0,"{'base_package': 'pyodbc==5.1.0', 'dependencies': []}",,5.2.0,,5.2.0,No,,No,None,,, +pytesseract,Base Package,I&S,0.3.4,"{'base_package': 'pytesseract==0.3.4', 'dependencies': ['packaging==21.3', 'Pillow==8.0.0']}",packaging>=21.3; Pillow>=8.0.0,"0.3.5, 0.3.6, 0.3.7, 0.3.8, 0.3.9, 0.3.10, 0.3.13",packaging>=21.3; Pillow>=8.0.0,0.3.13,No,,No,None,,, +python-ldap,Base Package,I&S,3.4.3,"{'base_package': 'python-ldap==3.4.3', 'dependencies': ['pyasn1==0.3.7', 'pyasn1_modules==0.1.5']}",pyasn1>=0.3.7; pyasn1_modules>=0.1.5,3.4.4,pyasn1>=0.3.7; pyasn1_modules>=0.1.5,3.4.4,No,,No,None,,, +pywin32,Base Package,I&S,307,"{'base_package': 'pywin32==307', 'dependencies': []}",,"308, 309, 310",,310,No,,No,None,,, +pywin32-ctypes,Base Package,I&S,0.2.3,"{'base_package': 'pywin32-ctypes==0.2.3', 'dependencies': []}",,,,0.2.3,No,,No,None,,, +querystring-parser,Base Package,I&S,1.2.4,"{'base_package': 'querystring-parser==1.2.4', 'dependencies': []}",,,,1.2.4,No,,No,None,,, +ratelimiter,Base Package,I&S,1.2.0.post0,"{'base_package': 'ratelimiter==1.2.0.post0', 'dependencies': ['pytest==3.0']}","pytest (>=3.0); extra == 'test'; pytest-asyncio; python_version>=""3.5"" and extra == 'test'",,"pytest (>=3.0); extra == 'test'; pytest-asyncio; python_version>=""3.5"" and extra == 'test'",1.2.0.post0,No,,No,None,,, +schemdraw,Base Package,I&S,0.15,"{'base_package': 'schemdraw==0.15', 'dependencies': ['matplotlib==3.4', 'ziafont==0.10', 'ziamath==0.12']}","matplotlib>=3.4; extra == ""matplotlib""; ziafont>=0.10; extra == ""svgmath""; ziamath>=0.12; extra == ""svgmath""; latex2mathml; extra == ""svgmath""","0.16, 0.17, 0.18, 0.19, 0.20","matplotlib>=3.4; extra == ""matplotlib""; ziafont>=0.10; extra == ""svgmath""; ziamath>=0.12; extra == ""svgmath""; latex2mathml; extra == ""svgmath""",0.20,No,,No,None,,, +simplejson,Base Package,I&S,3.19.2,"{'base_package': 'simplejson==3.19.2', 'dependencies': []}",,"3.19.3, 3.20.1",,3.20.1,No,,No,None,,, +sparse-dot-topn,Base Package,I&S,1.1.1,"{'base_package': 'sparse-dot-topn==1.1.1', 'dependencies': ['numpy==1.18.0', 'scipy==1.4.1', 'pytest==4.0.2']}","numpy>=1.18.0; scipy>=1.4.1; psutil; pytest>=4.0.2; extra == ""test""","1.1.2, 1.1.3, 1.1.4, 1.1.5","numpy>=1.18.0; scipy>=1.4.1; psutil; pytest>=4.0.2; extra == ""test""",1.1.5,No,,No,None,,, +strsimpy,Base Package,I&S,0.2.1,"{'base_package': 'strsimpy==0.2.1', 'dependencies': []}",,,,0.2.1,No,,No,None,,, +tantivy,Base Package,I&S,0.22.0,"{'base_package': 'tantivy==0.22.0', 'dependencies': []}","nox; extra == ""dev""","0.22.2, 0.24.0","nox; extra == ""dev""",0.24.0,No,,No,None,,, +tensorflow-io-gcs-filesystem,Base Package,I&S,0.37.1,"{'base_package': 'tensorflow-io-gcs-filesystem==0.37.1', 'dependencies': ['tensorflow==2.16.0', 'tensorflow-aarch64==2.16.0', 'tensorflow-cpu==2.16.0', 'tensorflow-gpu==2.16.0', 'tensorflow-rocm==2.16.0']}","tensorflow<2.17.0,>=2.16.0; extra == ""tensorflow""; tensorflow-aarch64<2.17.0,>=2.16.0; extra == ""tensorflow-aarch64""; tensorflow-cpu<2.17.0,>=2.16.0; extra == ""tensorflow-cpu""; tensorflow-gpu<2.17.0,>=2.16.0; extra == ""tensorflow-gpu""; tensorflow-rocm<2.17.0,>=2.16.0; extra == ""tensorflow-rocm""",,"tensorflow<2.17.0,>=2.16.0; extra == ""tensorflow""; tensorflow-aarch64<2.17.0,>=2.16.0; extra == ""tensorflow-aarch64""; tensorflow-cpu<2.17.0,>=2.16.0; extra == ""tensorflow-cpu""; tensorflow-gpu<2.17.0,>=2.16.0; extra == ""tensorflow-gpu""; tensorflow-rocm<2.17.0,>=2.16.0; extra == ""tensorflow-rocm""",0.37.1,No,,No,None,,, +toolz,Base Package,I&S,1.0.0,"{'base_package': 'toolz==1.0.0', 'dependencies': []}",,,,1.0.0,No,,No,None,,, +unicorn,Base Package,I&S,2.0.1.post1,"{'base_package': 'unicorn==2.0.1.post1', 'dependencies': ['capstone==6.0.0a2', 'capstone==5.0.1']}","importlib_resources; python_version < ""3.9""; capstone==6.0.0a2; python_version > ""3.7"" and extra == ""test""; capstone==5.0.1; python_version <= ""3.7"" and extra == ""test""","2.1.0, 2.1.1, 2.1.2, 2.1.3","importlib_resources; python_version < ""3.9""; capstone==6.0.0a2; python_version > ""3.7"" and extra == ""test""; capstone==5.0.1; python_version <= ""3.7"" and extra == ""test""",2.1.3,No,,No,None,,, +wurlitzer,Base Package,I&S,3.1.1,"{'base_package': 'wurlitzer==3.1.1', 'dependencies': []}",,,,3.1.1,No,,No,None,,, +xgboost,Base Package,I&S,1.7.6,"{'base_package': 'xgboost==1.7.6', 'dependencies': ['pandas==1.2']}","numpy; nvidia-nccl-cu12; platform_system == ""Linux"" and platform_machine != ""aarch64""; scipy; dask; extra == ""dask""; distributed; extra == ""dask""; pandas; extra == ""dask""; pandas>=1.2; extra == ""pandas""; graphviz; extra == ""plotting""; matplotlib; extra == ""plotting""; cloudpickle; extra == ""pyspark""; pyspark; extra == ""pyspark""; scikit-learn; extra == ""pyspark""; scikit-learn; extra == ""scikit-learn""","2.0.0rc1, 2.0.0, 2.0.1, 2.0.2, 2.0.3, 2.1.0rc1, 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.1.4, 3.0.0rc1, 3.0.0, 3.0.1, 3.0.2","numpy; nvidia-nccl-cu12; platform_system == ""Linux"" and platform_machine != ""aarch64""; scipy; dask; extra == ""dask""; distributed; extra == ""dask""; pandas; extra == ""dask""; pandas>=1.2; extra == ""pandas""; graphviz; extra == ""plotting""; matplotlib; extra == ""plotting""; cloudpickle; extra == ""pyspark""; pyspark; extra == ""pyspark""; scikit-learn; extra == ""pyspark""; scikit-learn; extra == ""scikit-learn""",3.0.2,No,,No,None,,, +absl-py,Dependency Package,I&S,2.1.0,,,"2.2.0, 2.2.1, 2.2.2, 2.3.0",,2.3.0,No,,No,None,,, +alembic,Dependency Package,I&S,1.13.3,,"SQLAlchemy>=1.4.0; Mako; typing-extensions>=4.12; tomli; python_version < ""3.11""; tzdata; extra == ""tz""","1.14.0, 1.14.1, 1.15.0, 1.15.1, 1.15.2, 1.16.0, 1.16.1, 1.16.2","SQLAlchemy>=1.4.0; Mako; typing-extensions>=4.12; tomli; python_version < ""3.11""; tzdata; extra == ""tz""",1.16.2,No,,No,None,,, +altair,Dependency Package,I&S,5.4.1,,"jinja2; jsonschema>=3.0; narwhals>=1.14.2; packaging; typing-extensions>=4.10.0; python_version < ""3.14""; altair-tiles>=0.3.0; extra == ""all""; anywidget>=0.9.0; extra == ""all""; numpy; extra == ""all""; pandas>=1.1.3; extra == ""all""; pyarrow>=11; extra == ""all""; vega-datasets>=0.9.0; extra == ""all""; vegafusion[embed]>=1.6.6; extra == ""all""; vl-convert-python>=1.7.0; extra == ""all""; duckdb>=1.0; extra == ""dev""; geopandas; extra == ""dev""; hatch>=1.13.0; extra == ""dev""; ipython[kernel]; extra == ""dev""; mistune; extra == ""dev""; mypy; extra == ""dev""; pandas-stubs; extra == ""dev""; pandas>=1.1.3; extra == ""dev""; polars>=0.20.3; extra == ""dev""; pyarrow-stubs; extra == ""dev""; pytest; extra == ""dev""; pytest-cov; extra == ""dev""; pytest-xdist[psutil]~=3.5; extra == ""dev""; ruff>=0.6.0; extra == ""dev""; types-jsonschema; extra == ""dev""; types-setuptools; extra == ""dev""; docutils; extra == ""doc""; jinja2; extra == ""doc""; myst-parser; extra == ""doc""; numpydoc; extra == ""doc""; pillow<10,>=9; extra == ""doc""; pydata-sphinx-theme>=0.14.1; extra == ""doc""; scipy; extra == ""doc""; sphinx; extra == ""doc""; sphinx-copybutton; extra == ""doc""; sphinx-design; extra == ""doc""; sphinxext-altair; extra == ""doc""; vl-convert-python>=1.7.0; extra == ""save""",5.5.0,"jinja2; jsonschema>=3.0; narwhals>=1.14.2; packaging; typing-extensions>=4.10.0; python_version < ""3.14""; altair-tiles>=0.3.0; extra == ""all""; anywidget>=0.9.0; extra == ""all""; numpy; extra == ""all""; pandas>=1.1.3; extra == ""all""; pyarrow>=11; extra == ""all""; vega-datasets>=0.9.0; extra == ""all""; vegafusion[embed]>=1.6.6; extra == ""all""; vl-convert-python>=1.7.0; extra == ""all""; duckdb>=1.0; extra == ""dev""; geopandas; extra == ""dev""; hatch>=1.13.0; extra == ""dev""; ipython[kernel]; extra == ""dev""; mistune; extra == ""dev""; mypy; extra == ""dev""; pandas-stubs; extra == ""dev""; pandas>=1.1.3; extra == ""dev""; polars>=0.20.3; extra == ""dev""; pyarrow-stubs; extra == ""dev""; pytest; extra == ""dev""; pytest-cov; extra == ""dev""; pytest-xdist[psutil]~=3.5; extra == ""dev""; ruff>=0.6.0; extra == ""dev""; types-jsonschema; extra == ""dev""; types-setuptools; extra == ""dev""; docutils; extra == ""doc""; jinja2; extra == ""doc""; myst-parser; extra == ""doc""; numpydoc; extra == ""doc""; pillow<10,>=9; extra == ""doc""; pydata-sphinx-theme>=0.14.1; extra == ""doc""; scipy; extra == ""doc""; sphinx; extra == ""doc""; sphinx-copybutton; extra == ""doc""; sphinx-design; extra == ""doc""; sphinxext-altair; extra == ""doc""; vl-convert-python>=1.7.0; extra == ""save""",5.5.0,No,,No,None,,, +astroid,Dependency Package,I&S,3.2.4,,"typing-extensions>=4; python_version < ""3.11""","3.3.0, 3.3.1, 3.3.2, 3.3.3, 3.3.4, 3.3.5, 3.3.6, 3.3.7, 3.3.8, 3.3.9, 3.3.10, 4.0.0a0","typing-extensions>=4; python_version < ""3.11""",4.0.0a0,No,,No,None,,, +astunparse,Dependency Package,I&S,1.6.3,,"wheel (<1.0,>=0.23.0); six (<2.0,>=1.6.1)",,"wheel (<1.0,>=0.23.0); six (<2.0,>=1.6.1)",1.6.3,No,,No,None,,, +blinker,Dependency Package,I&S,1.8.2,,,1.9.0,,1.9.0,No,,No,None,,, +boilerpy3,Dependency Package,I&S,1.0.7,,,,,1.0.7,No,,No,None,,, +CacheControl,Dependency Package,I&S,0.14.0,,"requests>=2.16.0; msgpack<2.0.0,>=0.5.2; CacheControl[filecache,redis]; extra == ""dev""; build; extra == ""dev""; cherrypy; extra == ""dev""; codespell[tomli]; extra == ""dev""; furo; extra == ""dev""; mypy; extra == ""dev""; pytest; extra == ""dev""; pytest-cov; extra == ""dev""; ruff; extra == ""dev""; sphinx; extra == ""dev""; sphinx-copybutton; extra == ""dev""; tox; extra == ""dev""; types-redis; extra == ""dev""; types-requests; extra == ""dev""; filelock>=3.8.0; extra == ""filecache""; redis>=2.10.5; extra == ""redis""","0.14.1, 0.14.2, 0.14.3","requests>=2.16.0; msgpack<2.0.0,>=0.5.2; CacheControl[filecache,redis]; extra == ""dev""; build; extra == ""dev""; cherrypy; extra == ""dev""; codespell[tomli]; extra == ""dev""; furo; extra == ""dev""; mypy; extra == ""dev""; pytest; extra == ""dev""; pytest-cov; extra == ""dev""; ruff; extra == ""dev""; sphinx; extra == ""dev""; sphinx-copybutton; extra == ""dev""; tox; extra == ""dev""; types-redis; extra == ""dev""; types-requests; extra == ""dev""; filelock>=3.8.0; extra == ""filecache""; redis>=2.10.5; extra == ""redis""",0.14.3,No,,No,None,,, +category-encoders,Dependency Package,I&S,2.6.4,,numpy>=1.14.0; pandas>=1.0.5; patsy>=0.5.1; scikit-learn>=1.6.0; scipy>=1.0.0; statsmodels>=0.9.0,"2.7.0, 2.8.0, 2.8.1",numpy>=1.14.0; pandas>=1.0.5; patsy>=0.5.1; scikit-learn>=1.6.0; scipy>=1.0.0; statsmodels>=0.9.0,2.8.1,No,,No,None,,, +cattrs,Dependency Package,I&S,24.1.2,,"attrs>=24.3.0; exceptiongroup>=1.1.1; python_version < ""3.11""; typing-extensions>=4.12.2; pymongo>=4.4.0; extra == ""bson""; cbor2>=5.4.6; extra == ""cbor2""; msgpack>=1.0.5; extra == ""msgpack""; msgspec>=0.19.0; implementation_name == ""cpython"" and extra == ""msgspec""; orjson>=3.10.7; implementation_name == ""cpython"" and extra == ""orjson""; pyyaml>=6.0; extra == ""pyyaml""; tomlkit>=0.11.8; extra == ""tomlkit""; ujson>=5.10.0; extra == ""ujson""","24.1.3, 25.1.0, 25.1.1","attrs>=24.3.0; exceptiongroup>=1.1.1; python_version < ""3.11""; typing-extensions>=4.12.2; pymongo>=4.4.0; extra == ""bson""; cbor2>=5.4.6; extra == ""cbor2""; msgpack>=1.0.5; extra == ""msgpack""; msgspec>=0.19.0; implementation_name == ""cpython"" and extra == ""msgspec""; orjson>=3.10.7; implementation_name == ""cpython"" and extra == ""orjson""; pyyaml>=6.0; extra == ""pyyaml""; tomlkit>=0.11.8; extra == ""tomlkit""; ujson>=5.10.0; extra == ""ujson""",25.1.1,No,,No,None,,, +cfgv,Dependency Package,I&S,3.4.0,,,,,3.4.0,No,,No,None,,, +cleo,Dependency Package,I&S,2.1.0,,"crashtest (>=0.4.1,<0.5.0); rapidfuzz (>=3.0.0,<4.0.0)","2.2.0, 2.2.1","crashtest (>=0.4.1,<0.5.0); rapidfuzz (>=3.0.0,<4.0.0)",2.2.1,No,,No,None,,, +coloredlogs,Dependency Package,I&S,15.0.1,,humanfriendly (>=9.1); capturer (>=2.4) ; extra == 'cron',,humanfriendly (>=9.1); capturer (>=2.4) ; extra == 'cron',15.0.1,No,,No,None,,, +colorlog,Dependency Package,I&S,6.8.2,,"colorama; sys_platform == ""win32""; black; extra == ""development""; flake8; extra == ""development""; mypy; extra == ""development""; pytest; extra == ""development""; types-colorama; extra == ""development""",6.9.0,"colorama; sys_platform == ""win32""; black; extra == ""development""; flake8; extra == ""development""; mypy; extra == ""development""; pytest; extra == ""development""; types-colorama; extra == ""development""",6.9.0,No,,No,None,,, +crashtest,Dependency Package,I&S,0.4.1,,,,,0.4.1,No,,No,None,,, +Cython,Dependency Package,I&S,3.0.11,,,"3.0.12, 3.1.0a1, 3.1.0b1, 3.1.0rc1, 3.1.0rc2, 3.1.0, 3.1.1, 3.1.2",,3.1.2,No,,No,None,,, +dash,Dependency Package,I&S,2.18.1,,"Flask<3.1,>=1.0.4; Werkzeug<3.1; plotly>=5.0.0; importlib-metadata; typing-extensions>=4.1.1; requests; retrying; nest-asyncio; setuptools; redis>=3.5.3; extra == ""celery""; celery[redis]>=5.1.2; extra == ""celery""; black==22.3.0; extra == ""ci""; flake8==7.0.0; extra == ""ci""; flaky==3.8.1; extra == ""ci""; flask-talisman==1.0.0; extra == ""ci""; ipython<9.0.0; extra == ""ci""; mimesis<=11.1.0; extra == ""ci""; mock==4.0.3; extra == ""ci""; numpy<=1.26.3; extra == ""ci""; orjson==3.10.3; extra == ""ci""; openpyxl; extra == ""ci""; pandas>=1.4.0; extra == ""ci""; pyarrow; extra == ""ci""; pylint==3.0.3; extra == ""ci""; pytest-mock; extra == ""ci""; pytest-sugar==0.9.6; extra == ""ci""; pyzmq==25.1.2; extra == ""ci""; xlrd>=2.0.1; extra == ""ci""; pytest-rerunfailures; extra == ""ci""; jupyterlab<4.0.0; extra == ""ci""; mypy==1.15.0; python_version >= ""3.12"" and extra == ""ci""; pyright==1.1.398; python_version >= ""3.7"" and extra == ""ci""; flask-compress; extra == ""compress""; coloredlogs>=15.0.1; extra == ""dev""; fire>=0.4.0; extra == ""dev""; PyYAML>=5.4.1; extra == ""dev""; diskcache>=5.2.1; extra == ""diskcache""; multiprocess>=0.70.12; extra == ""diskcache""; psutil>=5.8.0; extra == ""diskcache""; beautifulsoup4>=4.8.2; extra == ""testing""; cryptography; extra == ""testing""; lxml>=4.6.2; extra == ""testing""; percy>=2.0.2; extra == ""testing""; pytest>=6.0.2; extra == ""testing""; requests[security]>=2.21.0; extra == ""testing""; selenium<=4.2.0,>=3.141.0; extra == ""testing""; waitress>=1.4.4; extra == ""testing""; multiprocess>=0.70.12; extra == ""testing""; psutil>=5.8.0; extra == ""testing""; dash-testing-stub>=0.0.2; extra == ""testing""","2.18.2, 3.0.0rc1, 3.0.0rc2, 3.0.0rc3, 3.0.0rc4, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4","Flask<3.1,>=1.0.4; Werkzeug<3.1; plotly>=5.0.0; importlib-metadata; typing-extensions>=4.1.1; requests; retrying; nest-asyncio; setuptools; redis>=3.5.3; extra == ""celery""; celery[redis]>=5.1.2; extra == ""celery""; black==22.3.0; extra == ""ci""; flake8==7.0.0; extra == ""ci""; flaky==3.8.1; extra == ""ci""; flask-talisman==1.0.0; extra == ""ci""; ipython<9.0.0; extra == ""ci""; mimesis<=11.1.0; extra == ""ci""; mock==4.0.3; extra == ""ci""; numpy<=1.26.3; extra == ""ci""; orjson==3.10.3; extra == ""ci""; openpyxl; extra == ""ci""; pandas>=1.4.0; extra == ""ci""; pyarrow; extra == ""ci""; pylint==3.0.3; extra == ""ci""; pytest-mock; extra == ""ci""; pytest-sugar==0.9.6; extra == ""ci""; pyzmq==25.1.2; extra == ""ci""; xlrd>=2.0.1; extra == ""ci""; pytest-rerunfailures; extra == ""ci""; jupyterlab<4.0.0; extra == ""ci""; mypy==1.15.0; python_version >= ""3.12"" and extra == ""ci""; pyright==1.1.398; python_version >= ""3.7"" and extra == ""ci""; flask-compress; extra == ""compress""; coloredlogs>=15.0.1; extra == ""dev""; fire>=0.4.0; extra == ""dev""; PyYAML>=5.4.1; extra == ""dev""; diskcache>=5.2.1; extra == ""diskcache""; multiprocess>=0.70.12; extra == ""diskcache""; psutil>=5.8.0; extra == ""diskcache""; beautifulsoup4>=4.8.2; extra == ""testing""; cryptography; extra == ""testing""; lxml>=4.6.2; extra == ""testing""; percy>=2.0.2; extra == ""testing""; pytest>=6.0.2; extra == ""testing""; requests[security]>=2.21.0; extra == ""testing""; selenium<=4.2.0,>=3.141.0; extra == ""testing""; waitress>=1.4.4; extra == ""testing""; multiprocess>=0.70.12; extra == ""testing""; psutil>=5.8.0; extra == ""testing""; dash-testing-stub>=0.0.2; extra == ""testing""",3.0.4,No,,No,None,,, +databricks-sdk,Dependency Package,I&S,0.33.0,,"requests<3,>=2.28.1; google-auth~=2.0; pytest; extra == ""dev""; pytest-cov; extra == ""dev""; pytest-xdist; extra == ""dev""; pytest-mock; extra == ""dev""; black; extra == ""dev""; pycodestyle; extra == ""dev""; autoflake; extra == ""dev""; isort; extra == ""dev""; wheel; extra == ""dev""; ipython; extra == ""dev""; ipywidgets; extra == ""dev""; requests-mock; extra == ""dev""; pyfakefs; extra == ""dev""; databricks-connect; extra == ""dev""; pytest-rerunfailures; extra == ""dev""; openai; extra == ""dev""; langchain-openai; python_version > ""3.7"" and extra == ""dev""; httpx; extra == ""dev""; build; extra == ""dev""; ipython<10,>=8; extra == ""notebook""; ipywidgets<9,>=8; extra == ""notebook""; openai; extra == ""openai""; langchain-openai; python_version > ""3.7"" and extra == ""openai""; httpx; extra == ""openai""","0.34.0, 0.35.0, 0.36.0, 0.37.0, 0.38.0, 0.39.0, 0.40.0, 0.41.0, 0.42.0, 0.43.0, 0.44.0, 0.44.1, 0.45.0, 0.46.0, 0.47.0, 0.48.0, 0.49.0, 0.50.0, 0.51.0, 0.52.0, 0.53.0, 0.54.0, 0.55.0, 0.56.0, 0.57.0","requests<3,>=2.28.1; google-auth~=2.0; pytest; extra == ""dev""; pytest-cov; extra == ""dev""; pytest-xdist; extra == ""dev""; pytest-mock; extra == ""dev""; black; extra == ""dev""; pycodestyle; extra == ""dev""; autoflake; extra == ""dev""; isort; extra == ""dev""; wheel; extra == ""dev""; ipython; extra == ""dev""; ipywidgets; extra == ""dev""; requests-mock; extra == ""dev""; pyfakefs; extra == ""dev""; databricks-connect; extra == ""dev""; pytest-rerunfailures; extra == ""dev""; openai; extra == ""dev""; langchain-openai; python_version > ""3.7"" and extra == ""dev""; httpx; extra == ""dev""; build; extra == ""dev""; ipython<10,>=8; extra == ""notebook""; ipywidgets<9,>=8; extra == ""notebook""; openai; extra == ""openai""; langchain-openai; python_version > ""3.7"" and extra == ""openai""; httpx; extra == ""openai""",0.57.0,No,,No,None,,, +dataclasses-json,Dependency Package,I&S,0.6.7,,"marshmallow<4.0.0,>=3.18.0; typing-inspect<1,>=0.4.0",,"marshmallow<4.0.0,>=3.18.0; typing-inspect<1,>=0.4.0",0.6.7,No,,No,None,,, +Deprecated,Dependency Package,I&S,1.2.14,,"wrapt<2,>=1.10; tox; extra == ""dev""; PyTest; extra == ""dev""; PyTest-Cov; extra == ""dev""; bump2version<1; extra == ""dev""; setuptools; python_version >= ""3.12"" and extra == ""dev""","1.2.15, 1.2.16, 1.2.17, 1.2.18","wrapt<2,>=1.10; tox; extra == ""dev""; PyTest; extra == ""dev""; PyTest-Cov; extra == ""dev""; bump2version<1; extra == ""dev""; setuptools; python_version >= ""3.12"" and extra == ""dev""",1.2.18,No,,No,None,,, +deprecation,Dependency Package,I&S,2.1.0,,packaging,,packaging,2.1.0,No,,No,None,,, +dill,Dependency Package,I&S,0.3.9,,"objgraph>=1.7.2; extra == ""graph""; gprof2dot>=2022.7.29; extra == ""profile""",0.4.0,"objgraph>=1.7.2; extra == ""graph""; gprof2dot>=2022.7.29; extra == ""profile""",0.4.0,No,,No,None,,, +dirtyjson,Dependency Package,I&S,1.0.8,,,,,1.0.8,No,,No,None,,, +distlib,Dependency Package,I&S,0.3.9,,,,,0.3.9,No,,No,None,,, +docutils,Dependency Package,I&S,0.21.2,,,"0.22rc1, 0.22rc2, 0.22rc3, 0.22rc4, 0.22rc5",,0.22rc5,No,,No,None,,, +dulwich,Dependency Package,I&S,0.21.7,,"urllib3>=1.25; fastimport; extra == ""fastimport""; urllib3>=1.24.1; extra == ""https""; gpg; extra == ""pgp""; paramiko; extra == ""paramiko""; ruff==0.11.13; extra == ""dev""; mypy==1.16.0; extra == ""dev""; dissolve>=0.1.1; extra == ""dev""; merge3; extra == ""merge""","0.22.0, 0.22.1, 0.22.3, 0.22.4, 0.22.5, 0.22.6, 0.22.7, 0.22.8, 0.23.0","urllib3>=1.25; fastimport; extra == ""fastimport""; urllib3>=1.24.1; extra == ""https""; gpg; extra == ""pgp""; paramiko; extra == ""paramiko""; ruff==0.11.13; extra == ""dev""; mypy==1.16.0; extra == ""dev""; dissolve>=0.1.1; extra == ""dev""; merge3; extra == ""merge""",0.23.0,No,,No,None,,, +elastic-transport,Dependency Package,I&S,8.15.0,,"urllib3<3,>=1.26.2; certifi; pytest; extra == ""develop""; pytest-cov; extra == ""develop""; pytest-mock; extra == ""develop""; pytest-asyncio; extra == ""develop""; pytest-httpserver; extra == ""develop""; trustme; extra == ""develop""; requests; extra == ""develop""; aiohttp; extra == ""develop""; httpx; extra == ""develop""; respx; extra == ""develop""; opentelemetry-api; extra == ""develop""; opentelemetry-sdk; extra == ""develop""; orjson; extra == ""develop""; sphinx>2; extra == ""develop""; furo; extra == ""develop""; sphinx-autodoc-typehints; extra == ""develop""","8.15.1, 8.17.0, 8.17.1","urllib3<3,>=1.26.2; certifi; pytest; extra == ""develop""; pytest-cov; extra == ""develop""; pytest-mock; extra == ""develop""; pytest-asyncio; extra == ""develop""; pytest-httpserver; extra == ""develop""; trustme; extra == ""develop""; requests; extra == ""develop""; aiohttp; extra == ""develop""; httpx; extra == ""develop""; respx; extra == ""develop""; opentelemetry-api; extra == ""develop""; opentelemetry-sdk; extra == ""develop""; orjson; extra == ""develop""; sphinx>2; extra == ""develop""; furo; extra == ""develop""; sphinx-autodoc-typehints; extra == ""develop""",8.17.1,No,,No,None,,, +emoji,Dependency Package,I&S,2.12.1,,"typing_extensions>=4.7.0; python_version < ""3.9""; pytest>=7.4.4; extra == ""dev""; coverage; extra == ""dev""","2.13.0, 2.13.2, 2.14.0, 2.14.1","typing_extensions>=4.7.0; python_version < ""3.9""; pytest>=7.4.4; extra == ""dev""; coverage; extra == ""dev""",2.14.1,No,,No,None,,, +et-xmlfile,Dependency Package,I&S,1.1.0,,,2.0.0,,2.0.0,No,,No,None,,, +Events,Dependency Package,I&S,0.5,,,,,0.5,No,,No,None,,, +filetype,Dependency Package,I&S,1.2.0,,,,,1.2.0,No,,No,None,,, +Flask,Dependency Package,I&S,3.0.3,,"blinker>=1.9.0; click>=8.1.3; importlib-metadata>=3.6.0; python_version < ""3.10""; itsdangerous>=2.2.0; jinja2>=3.1.2; markupsafe>=2.1.1; werkzeug>=3.1.0; asgiref>=3.2; extra == ""async""; python-dotenv; extra == ""dotenv""","3.1.0, 3.1.1","blinker>=1.9.0; click>=8.1.3; importlib-metadata>=3.6.0; python_version < ""3.10""; itsdangerous>=2.2.0; jinja2>=3.1.2; markupsafe>=2.1.1; werkzeug>=3.1.0; asgiref>=3.2; extra == ""async""; python-dotenv; extra == ""dotenv""",3.1.1,No,,Yes,"3.1.0: CVE-2025-47278, CVSS_V4, Flask uses fallback key instead of current signing key, CVSS:4.0/AV:L/AC:L/AT:P/PR:H/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N, affects: >=3.1.0,<3.1.1",,, +flatbuffers,Dependency Package,I&S,24.3.25,,,"24.12.23, 25.1.21, 25.1.24, 25.2.10",,25.2.10,No,,No,None,,, +future,Dependency Package,I&S,1.0.0,,,,,1.0.0,No,,No,None,,, +gast,Dependency Package,I&S,0.6.0,,,,,0.6.0,No,,No,None,,, +google-ai-generativelanguage,Dependency Package,I&S,0.3.3,,"google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0,>=1.34.1; google-auth!=2.24.0,!=2.25.0,<3.0.0,>=2.14.1; proto-plus<2.0.0,>=1.22.3; protobuf!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<7.0.0,>=3.20.2; proto-plus<2.0.0,>=1.25.0; python_version >= ""3.13""","0.3.4, 0.3.5rc0, 0.3.5, 0.4.0, 0.4.1, 0.5.0, 0.5.1, 0.5.2, 0.5.3, 0.5.4, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.6.6, 0.6.7, 0.6.8, 0.6.9, 0.6.10, 0.6.11, 0.6.12, 0.6.13, 0.6.14, 0.6.15, 0.6.16, 0.6.17, 0.6.18","google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0,>=1.34.1; google-auth!=2.24.0,!=2.25.0,<3.0.0,>=2.14.1; proto-plus<2.0.0,>=1.22.3; protobuf!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<7.0.0,>=3.20.2; proto-plus<2.0.0,>=1.25.0; python_version >= ""3.13""",0.6.18,No,,No,None,,, +google-pasta,Dependency Package,I&S,0.2.0,,six,,six,0.2.0,No,,No,None,,, +graphene,Dependency Package,I&S,3.3,,"graphql-core<3.3,>=3.1; graphql-relay<3.3,>=3.1; python-dateutil<3,>=2.7.0; typing-extensions<5,>=4.7.1; ruff==0.5.0; extra == ""dev""; types-python-dateutil<3,>=2.8.1; extra == ""dev""; mypy<2,>=1.10; extra == ""dev""; pytest<9,>=8; extra == ""dev""; pytest-benchmark<5,>=4; extra == ""dev""; pytest-cov<6,>=5; extra == ""dev""; pytest-mock<4,>=3; extra == ""dev""; pytest-asyncio<2,>=0.16; extra == ""dev""; coveralls<5,>=3.3; extra == ""dev""; pytest<9,>=8; extra == ""test""; pytest-benchmark<5,>=4; extra == ""test""; pytest-cov<6,>=5; extra == ""test""; pytest-mock<4,>=3; extra == ""test""; pytest-asyncio<2,>=0.16; extra == ""test""; coveralls<5,>=3.3; extra == ""test""","3.4, 3.4.1, 3.4.2, 3.4.3","graphql-core<3.3,>=3.1; graphql-relay<3.3,>=3.1; python-dateutil<3,>=2.7.0; typing-extensions<5,>=4.7.1; ruff==0.5.0; extra == ""dev""; types-python-dateutil<3,>=2.8.1; extra == ""dev""; mypy<2,>=1.10; extra == ""dev""; pytest<9,>=8; extra == ""dev""; pytest-benchmark<5,>=4; extra == ""dev""; pytest-cov<6,>=5; extra == ""dev""; pytest-mock<4,>=3; extra == ""dev""; pytest-asyncio<2,>=0.16; extra == ""dev""; coveralls<5,>=3.3; extra == ""dev""; pytest<9,>=8; extra == ""test""; pytest-benchmark<5,>=4; extra == ""test""; pytest-cov<6,>=5; extra == ""test""; pytest-mock<4,>=3; extra == ""test""; pytest-asyncio<2,>=0.16; extra == ""test""; coveralls<5,>=3.3; extra == ""test""",3.4.3,No,,No,None,,, +graphql-relay,Dependency Package,I&S,3.2.0,,"graphql-core (<3.3,>=3.2); typing-extensions (<5,>=4.1) ; python_version < ""3.8""",,"graphql-core (<3.3,>=3.2); typing-extensions (<5,>=4.1) ; python_version < ""3.8""",3.2.0,No,,No,None,,, +grpcio,Dependency Package,I&S,1.66.2,,"grpcio-tools>=1.73.0; extra == ""protobuf""","1.67.0rc1, 1.67.0, 1.67.1, 1.68.0rc1, 1.68.0, 1.68.1, 1.69.0rc1, 1.69.0, 1.70.0rc1, 1.70.0, 1.71.0rc2, 1.71.0, 1.72.0rc1, 1.72.0, 1.72.1, 1.73.0rc1, 1.73.0","grpcio-tools>=1.73.0; extra == ""protobuf""",1.73.0,No,,No,None,,, +gunicorn,Dependency Package,I&S,23.0.0,,"packaging; importlib-metadata; python_version < ""3.8""; eventlet!=0.36.0,>=0.24.1; extra == ""eventlet""; gevent>=1.4.0; extra == ""gevent""; setproctitle; extra == ""setproctitle""; gevent; extra == ""testing""; eventlet; extra == ""testing""; coverage; extra == ""testing""; pytest; extra == ""testing""; pytest-cov; extra == ""testing""; tornado>=0.2; extra == ""tornado""",,"packaging; importlib-metadata; python_version < ""3.8""; eventlet!=0.36.0,>=0.24.1; extra == ""eventlet""; gevent>=1.4.0; extra == ""gevent""; setproctitle; extra == ""setproctitle""; gevent; extra == ""testing""; eventlet; extra == ""testing""; coverage; extra == ""testing""; pytest; extra == ""testing""; pytest-cov; extra == ""testing""; tornado>=0.2; extra == ""tornado""",23.0.0,No,,No,None,,, +h5py,Dependency Package,I&S,3.12.1,,numpy>=1.19.3,"3.13.0, 3.14.0",numpy>=1.19.3,3.14.0,No,,No,None,,, +html2text,Dependency Package,I&S,2020.1.16,,,"2024.2.25, 2024.2.26, 2025.4.15",,2025.4.15,No,,No,None,,, +huggingface-hub,Dependency Package,I&S,0.26.1,,"filelock; fsspec>=2023.5.0; packaging>=20.9; pyyaml>=5.1; requests; tqdm>=4.42.1; typing-extensions>=3.7.4.3; hf-xet<2.0.0,>=1.1.2; platform_machine == ""x86_64"" or platform_machine == ""amd64"" or platform_machine == ""arm64"" or platform_machine == ""aarch64""; InquirerPy==0.3.4; extra == ""all""; aiohttp; extra == ""all""; authlib>=1.3.2; extra == ""all""; fastapi; extra == ""all""; httpx; extra == ""all""; itsdangerous; extra == ""all""; jedi; extra == ""all""; Jinja2; extra == ""all""; pytest<8.2.2,>=8.1.1; extra == ""all""; pytest-cov; extra == ""all""; pytest-env; extra == ""all""; pytest-xdist; extra == ""all""; pytest-vcr; extra == ""all""; pytest-asyncio; extra == ""all""; pytest-rerunfailures; extra == ""all""; pytest-mock; extra == ""all""; urllib3<2.0; extra == ""all""; soundfile; extra == ""all""; Pillow; extra == ""all""; gradio>=4.0.0; extra == ""all""; numpy; extra == ""all""; ruff>=0.9.0; extra == ""all""; libcst==1.4.0; extra == ""all""; typing-extensions>=4.8.0; extra == ""all""; types-PyYAML; extra == ""all""; types-requests; extra == ""all""; types-simplejson; extra == ""all""; types-toml; extra == ""all""; types-tqdm; extra == ""all""; types-urllib3; extra == ""all""; mypy<1.15.0,>=1.14.1; python_version == ""3.8"" and extra == ""all""; mypy==1.15.0; python_version >= ""3.9"" and extra == ""all""; InquirerPy==0.3.4; extra == ""cli""; InquirerPy==0.3.4; extra == ""dev""; aiohttp; extra == ""dev""; authlib>=1.3.2; extra == ""dev""; fastapi; extra == ""dev""; httpx; extra == ""dev""; itsdangerous; extra == ""dev""; jedi; extra == ""dev""; Jinja2; extra == ""dev""; pytest<8.2.2,>=8.1.1; extra == ""dev""; pytest-cov; extra == ""dev""; pytest-env; extra == ""dev""; pytest-xdist; extra == ""dev""; pytest-vcr; extra == ""dev""; pytest-asyncio; extra == ""dev""; pytest-rerunfailures; extra == ""dev""; pytest-mock; extra == ""dev""; urllib3<2.0; extra == ""dev""; soundfile; extra == ""dev""; Pillow; extra == ""dev""; gradio>=4.0.0; extra == ""dev""; numpy; extra == ""dev""; ruff>=0.9.0; extra == ""dev""; libcst==1.4.0; extra == ""dev""; typing-extensions>=4.8.0; extra == ""dev""; types-PyYAML; extra == ""dev""; types-requests; extra == ""dev""; types-simplejson; extra == ""dev""; types-toml; extra == ""dev""; types-tqdm; extra == ""dev""; types-urllib3; extra == ""dev""; mypy<1.15.0,>=1.14.1; python_version == ""3.8"" and extra == ""dev""; mypy==1.15.0; python_version >= ""3.9"" and extra == ""dev""; toml; extra == ""fastai""; fastai>=2.4; extra == ""fastai""; fastcore>=1.3.27; extra == ""fastai""; hf-transfer>=0.1.4; extra == ""hf-transfer""; hf-xet<2.0.0,>=1.1.2; extra == ""hf-xet""; aiohttp; extra == ""inference""; mcp>=1.8.0; extra == ""mcp""; typer; extra == ""mcp""; aiohttp; extra == ""mcp""; authlib>=1.3.2; extra == ""oauth""; fastapi; extra == ""oauth""; httpx; extra == ""oauth""; itsdangerous; extra == ""oauth""; ruff>=0.9.0; extra == ""quality""; libcst==1.4.0; extra == ""quality""; mypy<1.15.0,>=1.14.1; python_version == ""3.8"" and extra == ""quality""; mypy==1.15.0; python_version >= ""3.9"" and extra == ""quality""; tensorflow; extra == ""tensorflow""; pydot; extra == ""tensorflow""; graphviz; extra == ""tensorflow""; tensorflow; extra == ""tensorflow-testing""; keras<3.0; extra == ""tensorflow-testing""; InquirerPy==0.3.4; extra == ""testing""; aiohttp; extra == ""testing""; authlib>=1.3.2; extra == ""testing""; fastapi; extra == ""testing""; httpx; extra == ""testing""; itsdangerous; extra == ""testing""; jedi; extra == ""testing""; Jinja2; extra == ""testing""; pytest<8.2.2,>=8.1.1; extra == ""testing""; pytest-cov; extra == ""testing""; pytest-env; extra == ""testing""; pytest-xdist; extra == ""testing""; pytest-vcr; extra == ""testing""; pytest-asyncio; extra == ""testing""; pytest-rerunfailures; extra == ""testing""; pytest-mock; extra == ""testing""; urllib3<2.0; extra == ""testing""; soundfile; extra == ""testing""; Pillow; extra == ""testing""; gradio>=4.0.0; extra == ""testing""; numpy; extra == ""testing""; torch; extra == ""torch""; safetensors[torch]; extra == ""torch""; typing-extensions>=4.8.0; extra == ""typing""; types-PyYAML; extra == ""typing""; types-requests; extra == ""typing""; types-simplejson; extra == ""typing""; types-toml; extra == ""typing""; types-tqdm; extra == ""typing""; types-urllib3; extra == ""typing""","0.26.2, 0.26.3, 0.26.4, 0.26.5, 0.27.0rc0, 0.27.0rc1, 0.27.0, 0.27.1, 0.28.0rc0, 0.28.0rc1, 0.28.0rc2, 0.28.0rc3, 0.28.0rc4, 0.28.0rc5, 0.28.0, 0.28.1, 0.29.0rc0, 0.29.0rc1, 0.29.0rc2, 0.29.0rc3, 0.29.0rc4, 0.29.0rc5, 0.29.0rc6, 0.29.0rc7, 0.29.0, 0.29.1, 0.29.2, 0.29.3rc0, 0.29.3, 0.30.0rc0, 0.30.0rc1, 0.30.0rc2, 0.30.0rc3, 0.30.0, 0.30.1, 0.30.2, 0.31.0rc0, 0.31.0, 0.31.1, 0.31.2, 0.31.3, 0.31.4, 0.32.0rc0, 0.32.0rc1, 0.32.0, 0.32.1, 0.32.2, 0.32.3, 0.32.4, 0.32.5, 0.32.6, 0.33.0rc0, 0.33.0","filelock; fsspec>=2023.5.0; packaging>=20.9; pyyaml>=5.1; requests; tqdm>=4.42.1; typing-extensions>=3.7.4.3; hf-xet<2.0.0,>=1.1.2; platform_machine == ""x86_64"" or platform_machine == ""amd64"" or platform_machine == ""arm64"" or platform_machine == ""aarch64""; InquirerPy==0.3.4; extra == ""all""; aiohttp; extra == ""all""; authlib>=1.3.2; extra == ""all""; fastapi; extra == ""all""; httpx; extra == ""all""; itsdangerous; extra == ""all""; jedi; extra == ""all""; Jinja2; extra == ""all""; pytest<8.2.2,>=8.1.1; extra == ""all""; pytest-cov; extra == ""all""; pytest-env; extra == ""all""; pytest-xdist; extra == ""all""; pytest-vcr; extra == ""all""; pytest-asyncio; extra == ""all""; pytest-rerunfailures; extra == ""all""; pytest-mock; extra == ""all""; urllib3<2.0; extra == ""all""; soundfile; extra == ""all""; Pillow; extra == ""all""; gradio>=4.0.0; extra == ""all""; numpy; extra == ""all""; ruff>=0.9.0; extra == ""all""; libcst==1.4.0; extra == ""all""; typing-extensions>=4.8.0; extra == ""all""; types-PyYAML; extra == ""all""; types-requests; extra == ""all""; types-simplejson; extra == ""all""; types-toml; extra == ""all""; types-tqdm; extra == ""all""; types-urllib3; extra == ""all""; mypy<1.15.0,>=1.14.1; python_version == ""3.8"" and extra == ""all""; mypy==1.15.0; python_version >= ""3.9"" and extra == ""all""; InquirerPy==0.3.4; extra == ""cli""; InquirerPy==0.3.4; extra == ""dev""; aiohttp; extra == ""dev""; authlib>=1.3.2; extra == ""dev""; fastapi; extra == ""dev""; httpx; extra == ""dev""; itsdangerous; extra == ""dev""; jedi; extra == ""dev""; Jinja2; extra == ""dev""; pytest<8.2.2,>=8.1.1; extra == ""dev""; pytest-cov; extra == ""dev""; pytest-env; extra == ""dev""; pytest-xdist; extra == ""dev""; pytest-vcr; extra == ""dev""; pytest-asyncio; extra == ""dev""; pytest-rerunfailures; extra == ""dev""; pytest-mock; extra == ""dev""; urllib3<2.0; extra == ""dev""; soundfile; extra == ""dev""; Pillow; extra == ""dev""; gradio>=4.0.0; extra == ""dev""; numpy; extra == ""dev""; ruff>=0.9.0; extra == ""dev""; libcst==1.4.0; extra == ""dev""; typing-extensions>=4.8.0; extra == ""dev""; types-PyYAML; extra == ""dev""; types-requests; extra == ""dev""; types-simplejson; extra == ""dev""; types-toml; extra == ""dev""; types-tqdm; extra == ""dev""; types-urllib3; extra == ""dev""; mypy<1.15.0,>=1.14.1; python_version == ""3.8"" and extra == ""dev""; mypy==1.15.0; python_version >= ""3.9"" and extra == ""dev""; toml; extra == ""fastai""; fastai>=2.4; extra == ""fastai""; fastcore>=1.3.27; extra == ""fastai""; hf-transfer>=0.1.4; extra == ""hf-transfer""; hf-xet<2.0.0,>=1.1.2; extra == ""hf-xet""; aiohttp; extra == ""inference""; mcp>=1.8.0; extra == ""mcp""; typer; extra == ""mcp""; aiohttp; extra == ""mcp""; authlib>=1.3.2; extra == ""oauth""; fastapi; extra == ""oauth""; httpx; extra == ""oauth""; itsdangerous; extra == ""oauth""; ruff>=0.9.0; extra == ""quality""; libcst==1.4.0; extra == ""quality""; mypy<1.15.0,>=1.14.1; python_version == ""3.8"" and extra == ""quality""; mypy==1.15.0; python_version >= ""3.9"" and extra == ""quality""; tensorflow; extra == ""tensorflow""; pydot; extra == ""tensorflow""; graphviz; extra == ""tensorflow""; tensorflow; extra == ""tensorflow-testing""; keras<3.0; extra == ""tensorflow-testing""; InquirerPy==0.3.4; extra == ""testing""; aiohttp; extra == ""testing""; authlib>=1.3.2; extra == ""testing""; fastapi; extra == ""testing""; httpx; extra == ""testing""; itsdangerous; extra == ""testing""; jedi; extra == ""testing""; Jinja2; extra == ""testing""; pytest<8.2.2,>=8.1.1; extra == ""testing""; pytest-cov; extra == ""testing""; pytest-env; extra == ""testing""; pytest-xdist; extra == ""testing""; pytest-vcr; extra == ""testing""; pytest-asyncio; extra == ""testing""; pytest-rerunfailures; extra == ""testing""; pytest-mock; extra == ""testing""; urllib3<2.0; extra == ""testing""; soundfile; extra == ""testing""; Pillow; extra == ""testing""; gradio>=4.0.0; extra == ""testing""; numpy; extra == ""testing""; torch; extra == ""torch""; safetensors[torch]; extra == ""torch""; typing-extensions>=4.8.0; extra == ""typing""; types-PyYAML; extra == ""typing""; types-requests; extra == ""typing""; types-simplejson; extra == ""typing""; types-toml; extra == ""typing""; types-tqdm; extra == ""typing""; types-urllib3; extra == ""typing""",0.33.0,No,,No,None,,, +identify,Dependency Package,I&S,2.6.1,,"ukkonen; extra == ""license""","2.6.2, 2.6.3, 2.6.4, 2.6.5, 2.6.6, 2.6.7, 2.6.8, 2.6.9, 2.6.10, 2.6.11, 2.6.12","ukkonen; extra == ""license""",2.6.12,No,,No,None,,, +inflect,Dependency Package,I&S,7.4.0,,"more_itertools>=8.5.0; typeguard>=4.0.1; typing_extensions; python_version < ""3.9""; pytest!=8.1.*,>=6; extra == ""test""; pygments; extra == ""test""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; pytest-checkdocs>=2.4; extra == ""check""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""check""; pytest-cov; extra == ""cover""; pytest-enabler>=2.2; extra == ""enabler""; pytest-mypy; extra == ""type""",7.5.0,"more_itertools>=8.5.0; typeguard>=4.0.1; typing_extensions; python_version < ""3.9""; pytest!=8.1.*,>=6; extra == ""test""; pygments; extra == ""test""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; pytest-checkdocs>=2.4; extra == ""check""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""check""; pytest-cov; extra == ""cover""; pytest-enabler>=2.2; extra == ""enabler""; pytest-mypy; extra == ""type""",7.5.0,No,,No,None,,, +installer,Dependency Package,I&S,0.7.0,,,,,0.7.0,No,,No,None,,, +interpret-community,Dependency Package,I&S,0.31.0,,"numpy; pandas; scipy; ml-wrappers~=0.6.0; scikit-learn; packaging; interpret-core<=0.6.9,>=0.1.20; shap<=0.46.0,>=0.20.0; raiutils~=0.4.0; hdbscan; extra == ""sample""; tensorflow; extra == ""deep""; pyyaml; extra == ""deep""; keras; extra == ""deep""; lightgbm; extra == ""mimic""; lime>=0.2.0.0; extra == ""lime""",0.32.0,"numpy; pandas; scipy; ml-wrappers~=0.6.0; scikit-learn; packaging; interpret-core<=0.6.9,>=0.1.20; shap<=0.46.0,>=0.20.0; raiutils~=0.4.0; hdbscan; extra == ""sample""; tensorflow; extra == ""deep""; pyyaml; extra == ""deep""; keras; extra == ""deep""; lightgbm; extra == ""mimic""; lime>=0.2.0.0; extra == ""lime""",0.32.0,No,,No,None,,, +interpret-core,Dependency Package,I&S,0.5.0,,"numpy>=1.25; pandas>=0.19.2; scikit-learn>=0.18.1; joblib>=0.11; psutil>=5.6.2; extra == ""debug""; ipykernel>=4.10.0; extra == ""notebook""; ipython>=5.5.0; extra == ""notebook""; plotly>=3.8.1; extra == ""plotly""; Xlsxwriter>=3.0.1; extra == ""excel""; dotsi>=0.0.3; extra == ""excel""; seaborn>=0.13.2; extra == ""excel""; matplotlib>=3.9.1; extra == ""excel""; lime>=0.1.1.33; extra == ""lime""; SALib>=1.3.3; extra == ""sensitivity""; shap>=0.28.5; extra == ""shap""; dill>=0.2.5; extra == ""shap""; skope-rules>=1.0.1; extra == ""skoperules""; treeinterpreter>=0.2.2; extra == ""treeinterpreter""; aplr>=10.6.1; extra == ""aplr""; dash<3.0.0,>=2.0.0; extra == ""dash""; dash-cytoscape>=0.1.1; extra == ""dash""; gevent>=1.3.6; extra == ""dash""; requests>=2.19.0; extra == ""dash""; scipy>=0.18.1; extra == ""testing""; scikit-learn>=1.0.0; extra == ""testing""; pytest>=4.3.0; extra == ""testing""; pytest-runner>=4.4; extra == ""testing""; pytest-xdist>=1.29; extra == ""testing""; nbconvert>=5.4.1; extra == ""testing""; selenium>=3.141.0; extra == ""testing""; pytest-cov>=2.6.1; extra == ""testing""; ruff>=0.1.2; extra == ""testing""; jupyter>=1.0.0; extra == ""testing""; ipywidgets>=7.4.2; extra == ""testing""","0.5.1, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.6.6, 0.6.7, 0.6.8, 0.6.9, 0.6.10, 0.6.11, 0.6.12","numpy>=1.25; pandas>=0.19.2; scikit-learn>=0.18.1; joblib>=0.11; psutil>=5.6.2; extra == ""debug""; ipykernel>=4.10.0; extra == ""notebook""; ipython>=5.5.0; extra == ""notebook""; plotly>=3.8.1; extra == ""plotly""; Xlsxwriter>=3.0.1; extra == ""excel""; dotsi>=0.0.3; extra == ""excel""; seaborn>=0.13.2; extra == ""excel""; matplotlib>=3.9.1; extra == ""excel""; lime>=0.1.1.33; extra == ""lime""; SALib>=1.3.3; extra == ""sensitivity""; shap>=0.28.5; extra == ""shap""; dill>=0.2.5; extra == ""shap""; skope-rules>=1.0.1; extra == ""skoperules""; treeinterpreter>=0.2.2; extra == ""treeinterpreter""; aplr>=10.6.1; extra == ""aplr""; dash<3.0.0,>=2.0.0; extra == ""dash""; dash-cytoscape>=0.1.1; extra == ""dash""; gevent>=1.3.6; extra == ""dash""; requests>=2.19.0; extra == ""dash""; scipy>=0.18.1; extra == ""testing""; scikit-learn>=1.0.0; extra == ""testing""; pytest>=4.3.0; extra == ""testing""; pytest-runner>=4.4; extra == ""testing""; pytest-xdist>=1.29; extra == ""testing""; nbconvert>=5.4.1; extra == ""testing""; selenium>=3.141.0; extra == ""testing""; pytest-cov>=2.6.1; extra == ""testing""; ruff>=0.1.2; extra == ""testing""; jupyter>=1.0.0; extra == ""testing""; ipywidgets>=7.4.2; extra == ""testing""",0.6.12,No,,No,None,,, +ipywidgets,Dependency Package,I&S,8.1.5,,"comm>=0.1.3; ipython>=6.1.0; traitlets>=4.3.1; widgetsnbextension~=4.0.14; jupyterlab_widgets~=3.0.15; jsonschema; extra == ""test""; ipykernel; extra == ""test""; pytest>=3.6.0; extra == ""test""; pytest-cov; extra == ""test""; pytz; extra == ""test""","8.1.6, 8.1.7","comm>=0.1.3; ipython>=6.1.0; traitlets>=4.3.1; widgetsnbextension~=4.0.14; jupyterlab_widgets~=3.0.15; jsonschema; extra == ""test""; ipykernel; extra == ""test""; pytest>=3.6.0; extra == ""test""; pytest-cov; extra == ""test""; pytz; extra == ""test""",8.1.7,No,,No,None,,, +isort,Dependency Package,I&S,5.13.2,,"colorama; extra == ""colors""; setuptools; extra == ""plugins""","6.0.0a1, 6.0.0b1, 6.0.0b2, 6.0.0, 6.0.1","colorama; extra == ""colors""; setuptools; extra == ""plugins""",6.0.1,No,,No,None,,, +itsdangerous,Dependency Package,I&S,2.2.0,,,,,2.2.0,No,,No,None,,, +jellyfish,Dependency Package,I&S,1.1.0,,,"1.1.2, 1.1.3, 1.2.0",,1.2.0,No,,No,None,,, +jiter,Dependency Package,I&S,0.6.1,,,"0.7.0, 0.7.1, 0.8.0, 0.8.2, 0.9.0, 0.9.1, 0.10.0",,0.10.0,No,,No,None,,, +jsonpatch,Dependency Package,I&S,1.33,,jsonpointer (>=1.9),,jsonpointer (>=1.9),1.33,No,,No,None,,, +jupyterlab-widgets,Dependency Package,I&S,3.0.13,,,"3.0.14, 3.0.15",,3.0.15,No,,No,None,,, +keras,Dependency Package,I&S,3.5.0,,absl-py; numpy; rich; namex; h5py; optree; ml-dtypes; packaging,"3.6.0, 3.7.0, 3.8.0, 3.9.0, 3.9.1, 3.9.2, 3.10.0",absl-py; numpy; rich; namex; h5py; optree; ml-dtypes; packaging,3.10.0,Yes,"CVE-2025-1550, CVSS_V4, Arbitrary Code Execution via Crafted Keras Config for Model Loading, CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:A/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H, affects: >=3.0.0,<3.9.0 +CVE-2024-55459, CVSS_V4, keras Path Traversal vulnerability, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0",Yes,"3.8.0: CVE-2025-1550, CVSS_V4, Arbitrary Code Execution via Crafted Keras Config for Model Loading, CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:A/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H, affects: >=3.0.0,<3.9.0; 3.6.0: CVE-2025-1550, CVSS_V4, Arbitrary Code Execution via Crafted Keras Config for Model Loading, CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:A/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H, affects: >=3.0.0,<3.9.0 +CVE-2024-55459, CVSS_V4, keras Path Traversal vulnerability, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0; 3.7.0: CVE-2025-1550, CVSS_V4, Arbitrary Code Execution via Crafted Keras Config for Model Loading, CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:A/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H, affects: >=3.0.0,<3.9.0 +CVE-2024-55459, CVSS_V4, keras Path Traversal vulnerability, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0",3.10.0,"{'base_package': 'keras==3.10.0', 'dependencies': ['absl-py==2.3.0', 'numpy==2.3.1', 'rich==14.0.0', 'namex==0.1.0', 'optree==0.16.0', 'ml-dtypes==0.5.1', 'packaging==25.0']}",Not Used +keyring,Dependency Package,I&S,25.4.1,,"pywin32-ctypes>=0.2.0; sys_platform == ""win32""; SecretStorage>=3.2; sys_platform == ""linux""; jeepney>=0.4.2; sys_platform == ""linux""; importlib_metadata>=4.11.4; python_version < ""3.12""; jaraco.classes; importlib_resources; python_version < ""3.9""; jaraco.functools; jaraco.context; pytest!=8.1.*,>=6; extra == ""test""; pyfakefs; extra == ""test""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; pytest-checkdocs>=2.4; extra == ""check""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""check""; pytest-cov; extra == ""cover""; pytest-enabler>=2.2; extra == ""enabler""; pytest-mypy; extra == ""type""; pygobject-stubs; extra == ""type""; shtab; extra == ""type""; types-pywin32; extra == ""type""; shtab>=1.1.0; extra == ""completion""","25.5.0, 25.6.0","pywin32-ctypes>=0.2.0; sys_platform == ""win32""; SecretStorage>=3.2; sys_platform == ""linux""; jeepney>=0.4.2; sys_platform == ""linux""; importlib_metadata>=4.11.4; python_version < ""3.12""; jaraco.classes; importlib_resources; python_version < ""3.9""; jaraco.functools; jaraco.context; pytest!=8.1.*,>=6; extra == ""test""; pyfakefs; extra == ""test""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; pytest-checkdocs>=2.4; extra == ""check""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""check""; pytest-cov; extra == ""cover""; pytest-enabler>=2.2; extra == ""enabler""; pytest-mypy; extra == ""type""; pygobject-stubs; extra == ""type""; shtab; extra == ""type""; types-pywin32; extra == ""type""; shtab>=1.1.0; extra == ""completion""",25.6.0,No,,No,None,,, +langchain,Dependency Package,I&S,0.3.19,,"langchain-core<1.0.0,>=0.3.66; langchain-text-splitters<1.0.0,>=0.3.8; langsmith>=0.1.17; pydantic<3.0.0,>=2.7.4; SQLAlchemy<3,>=1.4; requests<3,>=2; PyYAML>=5.3; async-timeout<5.0.0,>=4.0.0; python_version < ""3.11""; langchain-community; extra == ""community""; langchain-anthropic; extra == ""anthropic""; langchain-openai; extra == ""openai""; langchain-azure-ai; extra == ""azure-ai""; langchain-cohere; extra == ""cohere""; langchain-google-vertexai; extra == ""google-vertexai""; langchain-google-genai; extra == ""google-genai""; langchain-fireworks; extra == ""fireworks""; langchain-ollama; extra == ""ollama""; langchain-together; extra == ""together""; langchain-mistralai; extra == ""mistralai""; langchain-huggingface; extra == ""huggingface""; langchain-groq; extra == ""groq""; langchain-aws; extra == ""aws""; langchain-deepseek; extra == ""deepseek""; langchain-xai; extra == ""xai""; langchain-perplexity; extra == ""perplexity""","0.3.20, 0.3.21, 0.3.22, 0.3.23, 0.3.24, 0.3.25, 0.3.26","langchain-core<1.0.0,>=0.3.66; langchain-text-splitters<1.0.0,>=0.3.8; langsmith>=0.1.17; pydantic<3.0.0,>=2.7.4; SQLAlchemy<3,>=1.4; requests<3,>=2; PyYAML>=5.3; async-timeout<5.0.0,>=4.0.0; python_version < ""3.11""; langchain-community; extra == ""community""; langchain-anthropic; extra == ""anthropic""; langchain-openai; extra == ""openai""; langchain-azure-ai; extra == ""azure-ai""; langchain-cohere; extra == ""cohere""; langchain-google-vertexai; extra == ""google-vertexai""; langchain-google-genai; extra == ""google-genai""; langchain-fireworks; extra == ""fireworks""; langchain-ollama; extra == ""ollama""; langchain-together; extra == ""together""; langchain-mistralai; extra == ""mistralai""; langchain-huggingface; extra == ""huggingface""; langchain-groq; extra == ""groq""; langchain-aws; extra == ""aws""; langchain-deepseek; extra == ""deepseek""; langchain-xai; extra == ""xai""; langchain-perplexity; extra == ""perplexity""",0.3.26,No,,No,None,,, +langchain-core,Dependency Package,I&S,0.3.40,,"langsmith>=0.3.45; tenacity!=8.4.0,<10.0.0,>=8.1.0; jsonpatch<2.0,>=1.33; PyYAML>=5.3; packaging<25,>=23.2; typing-extensions>=4.7; pydantic>=2.7.4","0.3.41, 0.3.42, 0.3.43, 0.3.44, 0.3.45rc1, 0.3.45, 0.3.46, 0.3.47, 0.3.48, 0.3.49, 0.3.50, 0.3.51, 0.3.52, 0.3.53, 0.3.54, 0.3.55, 0.3.56rc1, 0.3.56, 0.3.57, 0.3.58, 0.3.59, 0.3.60, 0.3.61, 0.3.62, 0.3.63, 0.3.64, 0.3.65, 0.3.66","langsmith>=0.3.45; tenacity!=8.4.0,<10.0.0,>=8.1.0; jsonpatch<2.0,>=1.33; PyYAML>=5.3; packaging<25,>=23.2; typing-extensions>=4.7; pydantic>=2.7.4",0.3.66,No,,No,None,,, +langchain-text-splitters,Dependency Package,I&S,0.3.6,,"langchain-core<1.0.0,>=0.3.51","0.3.7, 0.3.8","langchain-core<1.0.0,>=0.3.51",0.3.8,No,,No,None,,, +langdetect,Dependency Package,I&S,1.0.9,,six,,six,1.0.9,No,,No,None,,, +langsmith,Dependency Package,I&S,0.3.11,,"httpx<1,>=0.23.0; langsmith-pyo3<0.2.0,>=0.1.0rc2; extra == ""langsmith-pyo3""; openai-agents<0.1,>=0.0.3; extra == ""openai-agents""; opentelemetry-api<2.0.0,>=1.30.0; extra == ""otel""; opentelemetry-exporter-otlp-proto-http<2.0.0,>=1.30.0; extra == ""otel""; opentelemetry-sdk<2.0.0,>=1.30.0; extra == ""otel""; orjson<4.0.0,>=3.9.14; platform_python_implementation != ""PyPy""; packaging>=23.2; pydantic<3,>=1; python_full_version < ""3.12.4""; pydantic<3.0.0,>=2.7.4; python_full_version >= ""3.12.4""; pytest>=7.0.0; extra == ""pytest""; requests<3,>=2; requests-toolbelt<2.0.0,>=1.0.0; rich<14.0.0,>=13.9.4; extra == ""pytest""; zstandard<0.24.0,>=0.23.0","0.3.12, 0.3.13, 0.3.14rc0, 0.3.14rc1, 0.3.14, 0.3.15, 0.3.16, 0.3.17, 0.3.18rc1, 0.3.18, 0.3.19, 0.3.20, 0.3.21, 0.3.22, 0.3.23, 0.3.24, 0.3.25rc1, 0.3.25rc2, 0.3.25, 0.3.26, 0.3.27rc1, 0.3.27, 0.3.28rc1, 0.3.28rc2, 0.3.28, 0.3.29rc0, 0.3.29, 0.3.30, 0.3.31, 0.3.32, 0.3.33, 0.3.34, 0.3.35, 0.3.36, 0.3.37rc0, 0.3.37, 0.3.38, 0.3.39, 0.3.40, 0.3.41, 0.3.42, 0.3.43, 0.3.44, 0.3.45, 0.4.0, 0.4.1","httpx<1,>=0.23.0; langsmith-pyo3<0.2.0,>=0.1.0rc2; extra == ""langsmith-pyo3""; openai-agents<0.1,>=0.0.3; extra == ""openai-agents""; opentelemetry-api<2.0.0,>=1.30.0; extra == ""otel""; opentelemetry-exporter-otlp-proto-http<2.0.0,>=1.30.0; extra == ""otel""; opentelemetry-sdk<2.0.0,>=1.30.0; extra == ""otel""; orjson<4.0.0,>=3.9.14; platform_python_implementation != ""PyPy""; packaging>=23.2; pydantic<3,>=1; python_full_version < ""3.12.4""; pydantic<3.0.0,>=2.7.4; python_full_version >= ""3.12.4""; pytest>=7.0.0; extra == ""pytest""; requests<3,>=2; requests-toolbelt<2.0.0,>=1.0.0; rich<14.0.0,>=13.9.4; extra == ""pytest""; zstandard<0.24.0,>=0.23.0",0.4.1,No,,No,None,,, +lazy-imports,Dependency Package,I&S,0.3.1,,"black; extra == ""checking""; flake8; extra == ""checking""; isort; extra == ""checking""; mdformat; extra == ""checking""; pydocstyle; extra == ""checking""; mypy; extra == ""checking""; pylint; extra == ""checking""; pylintfileheader; extra == ""checking""; pytest; extra == ""testing""; packaging; extra == ""testing""; mdformat; extra == ""all""; isort; extra == ""all""; mypy; extra == ""all""; pydocstyle; extra == ""all""; pylintfileheader; extra == ""all""; pytest; extra == ""all""; pylint; extra == ""all""; flake8; extra == ""all""; packaging; extra == ""all""; black; extra == ""all""","0.4.0, 1.0.0","black; extra == ""checking""; flake8; extra == ""checking""; isort; extra == ""checking""; mdformat; extra == ""checking""; pydocstyle; extra == ""checking""; mypy; extra == ""checking""; pylint; extra == ""checking""; pylintfileheader; extra == ""checking""; pytest; extra == ""testing""; packaging; extra == ""testing""; mdformat; extra == ""all""; isort; extra == ""all""; mypy; extra == ""all""; pydocstyle; extra == ""all""; pylintfileheader; extra == ""all""; pytest; extra == ""all""; pylint; extra == ""all""; flake8; extra == ""all""; packaging; extra == ""all""; black; extra == ""all""",1.0.0,No,,No,None,,, +lazy-model,Dependency Package,I&S,0.2.0,,pydantic>=1.9.0,0.3.0,pydantic>=1.9.0,0.3.0,No,,No,None,,, +libclang,Dependency Package,I&S,18.1.1,,,,,18.1.1,No,,No,None,,, +llama-cloud,Dependency Package,I&S,0.1.0,,pydantic>=1.10; httpx>=0.20.0; certifi>=2024.7.4,"0.1.1, 0.1.2, 0.1.3, 0.1.4, 0.1.5, 0.1.6, 0.1.7a1, 0.1.7, 0.1.8, 0.1.9, 0.1.10, 0.1.11, 0.1.12, 0.1.13, 0.1.14, 0.1.15, 0.1.16, 0.1.17, 0.1.18, 0.1.19, 0.1.20, 0.1.21, 0.1.22, 0.1.23, 0.1.24, 0.1.25, 0.1.26, 0.1.27, 0.1.28",pydantic>=1.10; httpx>=0.20.0; certifi>=2024.7.4,0.1.28,No,,No,None,,, +llama-index,Dependency Package,I&S,0.11.14,,"llama-index-agent-openai<0.5,>=0.4.0; llama-index-cli<0.5,>=0.4.2; llama-index-core<0.13,>=0.12.43; llama-index-embeddings-openai<0.4,>=0.3.0; llama-index-indices-managed-llama-cloud>=0.4.0; llama-index-llms-openai<0.5,>=0.4.0; llama-index-multi-modal-llms-openai<0.6,>=0.5.0; llama-index-program-openai<0.4,>=0.3.0; llama-index-question-gen-openai<0.4,>=0.3.0; llama-index-readers-file<0.5,>=0.4.0; llama-index-readers-llama-parse>=0.4.0; nltk>3.8.1","0.11.15, 0.11.16, 0.11.17, 0.11.18, 0.11.19, 0.11.20, 0.11.21, 0.11.22, 0.11.23, 0.12.0, 0.12.1, 0.12.2, 0.12.3, 0.12.4, 0.12.5, 0.12.6, 0.12.7, 0.12.8, 0.12.9, 0.12.10, 0.12.11, 0.12.12, 0.12.13, 0.12.14, 0.12.15, 0.12.16, 0.12.17, 0.12.18, 0.12.19, 0.12.20, 0.12.21, 0.12.22, 0.12.23, 0.12.24, 0.12.25, 0.12.26, 0.12.27, 0.12.28, 0.12.29, 0.12.30, 0.12.31, 0.12.32, 0.12.33, 0.12.34, 0.12.35, 0.12.36, 0.12.37, 0.12.38, 0.12.39, 0.12.40, 0.12.41, 0.12.42, 0.12.43","llama-index-agent-openai<0.5,>=0.4.0; llama-index-cli<0.5,>=0.4.2; llama-index-core<0.13,>=0.12.43; llama-index-embeddings-openai<0.4,>=0.3.0; llama-index-indices-managed-llama-cloud>=0.4.0; llama-index-llms-openai<0.5,>=0.4.0; llama-index-multi-modal-llms-openai<0.6,>=0.5.0; llama-index-program-openai<0.4,>=0.3.0; llama-index-question-gen-openai<0.4,>=0.3.0; llama-index-readers-file<0.5,>=0.4.0; llama-index-readers-llama-parse>=0.4.0; nltk>3.8.1",0.12.43,Yes,"CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 +CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 +CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9",Yes,"0.12.10: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.8: CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.26: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.18: CVE-2025-1752, CVSS_V3, LlamaIndex Vulnerable to Denial of Service (DoS), CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.12.15,<0.12.21 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.19: CVE-2025-1752, CVSS_V3, LlamaIndex Vulnerable to Denial of Service (DoS), CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.12.15,<0.12.21 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.21: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.15: CVE-2025-1752, CVSS_V3, LlamaIndex Vulnerable to Denial of Service (DoS), CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.12.15,<0.12.21 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.6: CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.11.20: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 +CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 +CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.11.19: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 +CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 +CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.11.22: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 +CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 +CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.11.23: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 +CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 +CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.0: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 +CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 +CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.27: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.22: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.11.18: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 +CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 +CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.9: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.12: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.5: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 +CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.4: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 +CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.16: CVE-2025-1752, CVSS_V3, LlamaIndex Vulnerable to Denial of Service (DoS), CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.12.15,<0.12.21 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.25: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.17: CVE-2025-1752, CVSS_V3, LlamaIndex Vulnerable to Denial of Service (DoS), CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.12.15,<0.12.21 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.11.21: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 +CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 +CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.24: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.11.16: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 +CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 +CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.11.17: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 +CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 +CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.13: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.1: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 +CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 +CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.23: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.11: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.14: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.20: CVE-2025-1752, CVSS_V3, LlamaIndex Vulnerable to Denial of Service (DoS), CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.12.15,<0.12.21 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.7: CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.3: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 +CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.2: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 +CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 +CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.11.15: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 +CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 +CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 +CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 +CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9",0.12.43,"{'base_package': 'llama-index==0.12.43', 'dependencies': ['llama-index-agent-openai==0.4.11', 'llama-index-cli==0.4.3', 'llama-index-core==0.12.43', 'llama-index-embeddings-openai==0.3.1', 'llama-index-indices-managed-llama-cloud==0.7.7', 'llama-index-llms-openai==0.4.7', 'llama-index-multi-modal-llms-openai==0.5.1', 'llama-index-program-openai==0.3.2', 'llama-index-question-gen-openai==0.3.1', 'llama-index-readers-file==0.4.9', 'llama-index-readers-llama-parse==0.4.0', 'nltk==3.9.1']}",Not Used +llama-index-agent-openai,Dependency Package,I&S,0.3.4,,"llama-index-core<0.13,>=0.12.41; llama-index-llms-openai<0.5,>=0.4.0; openai>=1.14.0","0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.4.5, 0.4.6, 0.4.7, 0.4.8, 0.4.9, 0.4.10, 0.4.11","llama-index-core<0.13,>=0.12.41; llama-index-llms-openai<0.5,>=0.4.0; openai>=1.14.0",0.4.11,No,,No,None,,, +llama-index-cli,Dependency Package,I&S,0.3.1,,"llama-index-core<0.13,>=0.12.0; llama-index-embeddings-openai<0.4,>=0.3.1; llama-index-llms-openai<0.5,>=0.4.0","0.4.0, 0.4.1, 0.4.2, 0.4.3","llama-index-core<0.13,>=0.12.0; llama-index-embeddings-openai<0.4,>=0.3.1; llama-index-llms-openai<0.5,>=0.4.0",0.4.3,Yes,"CVE-2025-1753, CVSS_V3, LLama-Index CLI OS command injection vulnerability, CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.4.1",Yes,"0.4.0: CVE-2025-1753, CVSS_V3, LLama-Index CLI OS command injection vulnerability, CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.4.1",0.4.3,"{'base_package': 'llama-index-cli==0.4.3', 'dependencies': ['llama-index-core==0.12.43', 'llama-index-embeddings-openai==0.3.1', 'llama-index-llms-openai==0.4.7']}",Not Used +llama-index-core,Dependency Package,I&S,0.11.14,,"aiohttp<4,>=3.8.6; aiosqlite; banks<3,>=2.0.0; dataclasses-json; deprecated>=1.2.9.3; dirtyjson<2,>=1.0.8; eval-type-backport<0.3,>=0.2.0; python_version < ""3.10""; filetype<2,>=1.2.0; fsspec>=2023.5.0; httpx; llama-index-workflows>=0.2.1; nest-asyncio<2,>=1.5.8; networkx>=3.0; nltk>3.8.1; numpy; pillow>=9.0.0; pydantic>=2.8.0; pyyaml>=6.0.1; requests>=2.31.0; setuptools>=80.9.0; sqlalchemy[asyncio]>=1.4.49; tenacity!=8.4.0,<10.0.0,>=8.2.0; tiktoken>=0.7.0; tqdm<5,>=4.66.1; typing-extensions>=4.5.0; typing-inspect>=0.8.0; wrapt","0.11.15, 0.11.16, 0.11.17, 0.11.18, 0.11.19, 0.11.20, 0.11.21, 0.11.22, 0.11.23, 0.12.0, 0.12.1, 0.12.2, 0.12.3, 0.12.4, 0.12.5, 0.12.6, 0.12.7, 0.12.8, 0.12.9, 0.12.10, 0.12.10.post1, 0.12.11, 0.12.12, 0.12.13, 0.12.14, 0.12.15, 0.12.16, 0.12.16.post1, 0.12.17, 0.12.18, 0.12.19, 0.12.20, 0.12.21, 0.12.22, 0.12.23, 0.12.23.post1, 0.12.23.post2, 0.12.24, 0.12.24.post1, 0.12.25, 0.12.26, 0.12.27a1, 0.12.27a2, 0.12.27a3, 0.12.27, 0.12.28, 0.12.29, 0.12.30, 0.12.31, 0.12.32, 0.12.33, 0.12.33.post1, 0.12.34a1, 0.12.34a2, 0.12.34a3, 0.12.34a4, 0.12.34a5, 0.12.34, 0.12.34.post1, 0.12.35, 0.12.36, 0.12.37, 0.12.38, 0.12.39, 0.12.40, 0.12.41, 0.12.42, 0.12.43","aiohttp<4,>=3.8.6; aiosqlite; banks<3,>=2.0.0; dataclasses-json; deprecated>=1.2.9.3; dirtyjson<2,>=1.0.8; eval-type-backport<0.3,>=0.2.0; python_version < ""3.10""; filetype<2,>=1.2.0; fsspec>=2023.5.0; httpx; llama-index-workflows>=0.2.1; nest-asyncio<2,>=1.5.8; networkx>=3.0; nltk>3.8.1; numpy; pillow>=9.0.0; pydantic>=2.8.0; pyyaml>=6.0.1; requests>=2.31.0; setuptools>=80.9.0; sqlalchemy[asyncio]>=1.4.49; tenacity!=8.4.0,<10.0.0,>=8.2.0; tiktoken>=0.7.0; tqdm<5,>=4.66.1; typing-extensions>=4.5.0; typing-inspect>=0.8.0; wrapt",0.12.43,No,,No,None,,, +llama-index-embeddings-openai,Dependency Package,I&S,0.2.5,,"openai>=1.1.0; llama-index-core<0.13.0,>=0.12.0","0.3.0, 0.3.1","openai>=1.1.0; llama-index-core<0.13.0,>=0.12.0",0.3.1,No,,No,None,,, +llama-index-indices-managed-llama-cloud,Dependency Package,I&S,0.4.0,,"llama-cloud==0.1.26; llama-index-core<0.13,>=0.12.0","0.4.1, 0.4.2, 0.5.0, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.6.6, 0.6.7, 0.6.8, 0.6.9, 0.6.10, 0.6.11, 0.7.0a1, 0.7.0, 0.7.1, 0.7.2, 0.7.3, 0.7.4, 0.7.5, 0.7.6, 0.7.7","llama-cloud==0.1.26; llama-index-core<0.13,>=0.12.0",0.7.7,No,,No,None,,, +llama-index-llms-azure-openai,Dependency Package,I&S,0.1.10,,"azure-identity<2,>=1.15.0; httpx; llama-index-core<0.13,>=0.12.0; llama-index-llms-openai<0.5,>=0.4.0","0.2.0, 0.2.1, 0.2.2, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4","azure-identity<2,>=1.15.0; httpx; llama-index-core<0.13,>=0.12.0; llama-index-llms-openai<0.5,>=0.4.0",0.3.4,No,,No,None,,, +llama-index-llms-openai,Dependency Package,I&S,0.2.9,,"llama-index-core<0.13,>=0.12.41; openai<2,>=1.81.0","0.2.10, 0.2.11, 0.2.12, 0.2.13, 0.2.14, 0.2.15, 0.2.16, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.3.6, 0.3.7, 0.3.8, 0.3.9, 0.3.10, 0.3.11, 0.3.12, 0.3.13, 0.3.14, 0.3.15, 0.3.16, 0.3.17, 0.3.18, 0.3.19, 0.3.20, 0.3.21, 0.3.22, 0.3.23, 0.3.24, 0.3.25, 0.3.26, 0.3.27, 0.3.28, 0.3.29, 0.3.30, 0.3.31, 0.3.32, 0.3.33, 0.3.34, 0.3.35, 0.3.36, 0.3.37, 0.3.38, 0.3.39, 0.3.40, 0.3.41, 0.3.42, 0.3.43, 0.3.44, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.4.5, 0.4.6, 0.4.7","llama-index-core<0.13,>=0.12.41; openai<2,>=1.81.0",0.4.7,No,,No,None,,, +llama-index-multi-modal-llms-openai,Dependency Package,I&S,0.2.1,,"llama-index-core<0.13,>=0.12.3; llama-index-llms-openai<0.5,>=0.4.0","0.2.2, 0.2.3, 0.3.0, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.5.0, 0.5.1","llama-index-core<0.13,>=0.12.3; llama-index-llms-openai<0.5,>=0.4.0",0.5.1,No,,No,None,,, +llama-index-program-openai,Dependency Package,I&S,0.2.0,,"llama-index-agent-openai<0.5,>=0.4.0; llama-index-core<0.13,>=0.12.0; llama-index-llms-openai<0.5,>=0.4.0","0.3.0, 0.3.1, 0.3.2","llama-index-agent-openai<0.5,>=0.4.0; llama-index-core<0.13,>=0.12.0; llama-index-llms-openai<0.5,>=0.4.0",0.3.2,No,,No,None,,, +llama-index-question-gen-openai,Dependency Package,I&S,0.2.0,,"llama-index-core<0.13,>=0.12.0; llama-index-llms-openai<0.5,>=0.4.0; llama-index-program-openai<0.4,>=0.3.0","0.3.0, 0.3.1","llama-index-core<0.13,>=0.12.0; llama-index-llms-openai<0.5,>=0.4.0; llama-index-program-openai<0.4,>=0.3.0",0.3.1,No,,No,None,,, +llama-index-readers-file,Dependency Package,I&S,0.2.2,,"beautifulsoup4<5,>=4.12.3; llama-index-core<0.13,>=0.12.0; pandas<2.3.0; pypdf<6,>=5.1.0; striprtf<0.0.27,>=0.0.26; pymupdf<2,>=1.23.21; extra == ""pymupdf""","0.3.0, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.4.5, 0.4.6, 0.4.7, 0.4.8, 0.4.9","beautifulsoup4<5,>=4.12.3; llama-index-core<0.13,>=0.12.0; pandas<2.3.0; pypdf<6,>=5.1.0; striprtf<0.0.27,>=0.0.26; pymupdf<2,>=1.23.21; extra == ""pymupdf""",0.4.9,No,,No,None,,, +llama-index-readers-llama-parse,Dependency Package,I&S,0.3.0,,"llama-parse>=0.5.0; llama-index-core<0.13.0,>=0.12.0",0.4.0,"llama-parse>=0.5.0; llama-index-core<0.13.0,>=0.12.0",0.4.0,No,,No,None,,, +llama-parse,Dependency Package,I&S,0.5.6,,llama-cloud-services>=0.6.36,"0.5.7, 0.5.8, 0.5.9, 0.5.10, 0.5.11, 0.5.12, 0.5.13, 0.5.14, 0.5.15, 0.5.16, 0.5.17, 0.5.18, 0.5.19, 0.5.20, 0.6.0, 0.6.1, 0.6.2, 0.6.4, 0.6.4.post1, 0.6.9, 0.6.12, 0.6.16, 0.6.18, 0.6.20, 0.6.21, 0.6.22, 0.6.23, 0.6.24, 0.6.25, 0.6.26, 0.6.27, 0.6.28, 0.6.30, 0.6.31, 0.6.32, 0.6.33, 0.6.34, 0.6.35, 0.6.36",llama-cloud-services>=0.6.36,0.6.36,No,,No,None,,, +llvmlite,Dependency Package,I&S,0.43.0,,,"0.44.0rc1, 0.44.0rc2, 0.44.0",,0.44.0,No,,No,None,,, +lxml,Dependency Package,I&S,5.3.0,,"Cython<3.1.0,>=3.0.11; extra == ""source""; cssselect>=0.7; extra == ""cssselect""; html5lib; extra == ""html5""; BeautifulSoup4; extra == ""htmlsoup""; lxml_html_clean; extra == ""html-clean""","5.3.1, 5.3.2, 5.4.0","Cython<3.1.0,>=3.0.11; extra == ""source""; cssselect>=0.7; extra == ""cssselect""; html5lib; extra == ""html5""; BeautifulSoup4; extra == ""htmlsoup""; lxml_html_clean; extra == ""html-clean""",5.4.0,No,,No,None,,, +Mako,Dependency Package,I&S,1.3.5,,"MarkupSafe>=0.9.2; pytest; extra == ""testing""; Babel; extra == ""babel""; lingua; extra == ""lingua""","1.3.6, 1.3.7, 1.3.8, 1.3.9, 1.3.10","MarkupSafe>=0.9.2; pytest; extra == ""testing""; Babel; extra == ""babel""; lingua; extra == ""lingua""",1.3.10,No,,No,None,,, +Markdown,Dependency Package,I&S,3.7,,"importlib-metadata>=4.4; python_version < ""3.10""; coverage; extra == ""testing""; pyyaml; extra == ""testing""; mkdocs>=1.6; extra == ""docs""; mkdocs-nature>=0.6; extra == ""docs""; mdx_gh_links>=0.2; extra == ""docs""; mkdocstrings[python]; extra == ""docs""; mkdocs-gen-files; extra == ""docs""; mkdocs-section-index; extra == ""docs""; mkdocs-literate-nav; extra == ""docs""","3.8, 3.8.1, 3.8.2","importlib-metadata>=4.4; python_version < ""3.10""; coverage; extra == ""testing""; pyyaml; extra == ""testing""; mkdocs>=1.6; extra == ""docs""; mkdocs-nature>=0.6; extra == ""docs""; mdx_gh_links>=0.2; extra == ""docs""; mkdocstrings[python]; extra == ""docs""; mkdocs-gen-files; extra == ""docs""; mkdocs-section-index; extra == ""docs""; mkdocs-literate-nav; extra == ""docs""",3.8.2,No,,No,None,,, +mccabe,Dependency Package,I&S,0.7.0,,,,,0.7.0,No,,No,None,,, +ml-dtypes,Dependency Package,I&S,0.5.0,,"numpy>=1.21; numpy>=1.21.2; python_version >= ""3.10""; numpy>=1.23.3; python_version >= ""3.11""; numpy>=1.26.0; python_version >= ""3.12""; numpy>=2.1.0; python_version >= ""3.13""; absl-py; extra == ""dev""; pytest; extra == ""dev""; pytest-xdist; extra == ""dev""; pylint>=2.6.0; extra == ""dev""; pyink; extra == ""dev""",0.5.1,"numpy>=1.21; numpy>=1.21.2; python_version >= ""3.10""; numpy>=1.23.3; python_version >= ""3.11""; numpy>=1.26.0; python_version >= ""3.12""; numpy>=2.1.0; python_version >= ""3.13""; absl-py; extra == ""dev""; pytest; extra == ""dev""; pytest-xdist; extra == ""dev""; pylint>=2.6.0; extra == ""dev""; pyink; extra == ""dev""",0.5.1,No,,No,None,,, +ml-wrappers,Dependency Package,I&S,0.5.6,,numpy; packaging; pandas; scipy; scikit-learn,0.6.0,numpy; packaging; pandas; scipy; scikit-learn,0.6.0,No,,No,None,,, +mlflow-skinny,Dependency Package,I&S,2.15.1,,"cachetools<7,>=5.0.0; click<9,>=7.0; cloudpickle<4; databricks-sdk<1,>=0.20.0; fastapi<1; gitpython<4,>=3.1.9; importlib_metadata!=4.7.0,<9,>=3.7.0; opentelemetry-api<3,>=1.9.0; opentelemetry-sdk<3,>=1.9.0; packaging<26; protobuf<7,>=3.12.0; pydantic<3,>=1.10.8; pyyaml<7,>=5.1; requests<3,>=2.17.3; sqlparse<1,>=0.4.0; typing-extensions<5,>=4.0.0; uvicorn<1; pyarrow; extra == ""extras""; requests-auth-aws-sigv4; extra == ""extras""; boto3; extra == ""extras""; botocore; extra == ""extras""; google-cloud-storage>=1.30.0; extra == ""extras""; azureml-core>=1.2.0; extra == ""extras""; pysftp; extra == ""extras""; kubernetes; extra == ""extras""; virtualenv; extra == ""extras""; prometheus-flask-exporter; extra == ""extras""; azure-storage-file-datalake>12; extra == ""databricks""; google-cloud-storage>=1.30.0; extra == ""databricks""; boto3>1; extra == ""databricks""; botocore; extra == ""databricks""; databricks-agents<2.0,>=1.0.0; extra == ""databricks""; mlserver!=1.3.1,>=1.2.0; extra == ""mlserver""; mlserver-mlflow!=1.3.1,>=1.2.0; extra == ""mlserver""; fastapi<1; extra == ""gateway""; uvicorn[standard]<1; extra == ""gateway""; watchfiles<2; extra == ""gateway""; aiohttp<4; extra == ""gateway""; boto3<2,>=1.28.56; extra == ""gateway""; tiktoken<1; extra == ""gateway""; slowapi<1,>=0.1.9; extra == ""gateway""; fastapi<1; extra == ""genai""; uvicorn[standard]<1; extra == ""genai""; watchfiles<2; extra == ""genai""; aiohttp<4; extra == ""genai""; boto3<2,>=1.28.56; extra == ""genai""; tiktoken<1; extra == ""genai""; slowapi<1,>=0.1.9; extra == ""genai""; mlflow-dbstore; extra == ""sqlserver""; aliyunstoreplugin; extra == ""aliyun-oss""; mlflow-xethub; extra == ""xethub""; mlflow-jfrog-plugin; extra == ""jfrog""; langchain<=0.3.25,>=0.1.0; extra == ""langchain""; Flask-WTF<2; extra == ""auth""","2.16.0, 2.16.1, 2.16.2, 2.17.0rc0, 2.17.0, 2.17.1, 2.17.2, 2.18.0rc0, 2.18.0, 2.19.0rc0, 2.19.0, 2.20.0rc0, 2.20.0, 2.20.1, 2.20.2, 2.20.3, 2.20.4, 2.21.0rc0, 2.21.0, 2.21.1, 2.21.2, 2.21.3, 2.22.0rc0, 2.22.0, 2.22.1, 3.0.0rc0, 3.0.0rc1, 3.0.0rc2, 3.0.0rc3, 3.0.0, 3.0.1, 3.1.0rc0, 3.1.0, 3.1.1","cachetools<7,>=5.0.0; click<9,>=7.0; cloudpickle<4; databricks-sdk<1,>=0.20.0; fastapi<1; gitpython<4,>=3.1.9; importlib_metadata!=4.7.0,<9,>=3.7.0; opentelemetry-api<3,>=1.9.0; opentelemetry-sdk<3,>=1.9.0; packaging<26; protobuf<7,>=3.12.0; pydantic<3,>=1.10.8; pyyaml<7,>=5.1; requests<3,>=2.17.3; sqlparse<1,>=0.4.0; typing-extensions<5,>=4.0.0; uvicorn<1; pyarrow; extra == ""extras""; requests-auth-aws-sigv4; extra == ""extras""; boto3; extra == ""extras""; botocore; extra == ""extras""; google-cloud-storage>=1.30.0; extra == ""extras""; azureml-core>=1.2.0; extra == ""extras""; pysftp; extra == ""extras""; kubernetes; extra == ""extras""; virtualenv; extra == ""extras""; prometheus-flask-exporter; extra == ""extras""; azure-storage-file-datalake>12; extra == ""databricks""; google-cloud-storage>=1.30.0; extra == ""databricks""; boto3>1; extra == ""databricks""; botocore; extra == ""databricks""; databricks-agents<2.0,>=1.0.0; extra == ""databricks""; mlserver!=1.3.1,>=1.2.0; extra == ""mlserver""; mlserver-mlflow!=1.3.1,>=1.2.0; extra == ""mlserver""; fastapi<1; extra == ""gateway""; uvicorn[standard]<1; extra == ""gateway""; watchfiles<2; extra == ""gateway""; aiohttp<4; extra == ""gateway""; boto3<2,>=1.28.56; extra == ""gateway""; tiktoken<1; extra == ""gateway""; slowapi<1,>=0.1.9; extra == ""gateway""; fastapi<1; extra == ""genai""; uvicorn[standard]<1; extra == ""genai""; watchfiles<2; extra == ""genai""; aiohttp<4; extra == ""genai""; boto3<2,>=1.28.56; extra == ""genai""; tiktoken<1; extra == ""genai""; slowapi<1,>=0.1.9; extra == ""genai""; mlflow-dbstore; extra == ""sqlserver""; aliyunstoreplugin; extra == ""aliyun-oss""; mlflow-xethub; extra == ""xethub""; mlflow-jfrog-plugin; extra == ""jfrog""; langchain<=0.3.25,>=0.1.0; extra == ""langchain""; Flask-WTF<2; extra == ""auth""",3.1.1,No,,No,None,,, +mongomock,Dependency Package,I&S,4.1.2,,"packaging; pytz; sentinels; pyexecjs; extra == ""pyexecjs""; pymongo; extra == ""pymongo""","4.2.0.post1, 4.3.0","packaging; pytz; sentinels; pyexecjs; extra == ""pyexecjs""; pymongo; extra == ""pymongo""",4.3.0,No,,No,None,,, +motor,Dependency Package,I&S,3.6.0,,"pymongo<5.0,>=4.9; pymongo[aws]<5,>=4.5; extra == ""aws""; aiohttp; extra == ""docs""; furo==2024.8.6; extra == ""docs""; readthedocs-sphinx-search~=0.3; extra == ""docs""; sphinx-rtd-theme<3,>=2; extra == ""docs""; sphinx<8,>=5.3; extra == ""docs""; tornado; extra == ""docs""; pymongo[encryption]<5,>=4.5; extra == ""encryption""; pymongo[gssapi]<5,>=4.5; extra == ""gssapi""; pymongo[ocsp]<5,>=4.5; extra == ""ocsp""; pymongo[snappy]<5,>=4.5; extra == ""snappy""; aiohttp>=3.8.7; extra == ""test""; cffi>=1.17.0rc1; python_version == ""3.13"" and extra == ""test""; mockupdb; extra == ""test""; pymongo[encryption]<5,>=4.5; extra == ""test""; pytest-asyncio; extra == ""test""; pytest>=7; extra == ""test""; tornado>=5; extra == ""test""; pymongo[zstd]<5,>=4.5; extra == ""zstd""","3.6.1, 3.7.0, 3.7.1","pymongo<5.0,>=4.9; pymongo[aws]<5,>=4.5; extra == ""aws""; aiohttp; extra == ""docs""; furo==2024.8.6; extra == ""docs""; readthedocs-sphinx-search~=0.3; extra == ""docs""; sphinx-rtd-theme<3,>=2; extra == ""docs""; sphinx<8,>=5.3; extra == ""docs""; tornado; extra == ""docs""; pymongo[encryption]<5,>=4.5; extra == ""encryption""; pymongo[gssapi]<5,>=4.5; extra == ""gssapi""; pymongo[ocsp]<5,>=4.5; extra == ""ocsp""; pymongo[snappy]<5,>=4.5; extra == ""snappy""; aiohttp>=3.8.7; extra == ""test""; cffi>=1.17.0rc1; python_version == ""3.13"" and extra == ""test""; mockupdb; extra == ""test""; pymongo[encryption]<5,>=4.5; extra == ""test""; pytest-asyncio; extra == ""test""; pytest>=7; extra == ""test""; tornado>=5; extra == ""test""; pymongo[zstd]<5,>=4.5; extra == ""zstd""",3.7.1,No,,No,None,,, +mpmath,Dependency Package,I&S,1.3.0,,"pytest (>=4.6) ; extra == 'develop'; pycodestyle ; extra == 'develop'; pytest-cov ; extra == 'develop'; codecov ; extra == 'develop'; wheel ; extra == 'develop'; sphinx ; extra == 'docs'; gmpy2 (>=2.1.0a4) ; (platform_python_implementation != ""PyPy"") and extra == 'gmpy'; pytest (>=4.6) ; extra == 'tests'","1.4.0a0, 1.4.0a1, 1.4.0a2, 1.4.0a3, 1.4.0a4, 1.4.0a5","pytest (>=4.6) ; extra == 'develop'; pycodestyle ; extra == 'develop'; pytest-cov ; extra == 'develop'; codecov ; extra == 'develop'; wheel ; extra == 'develop'; sphinx ; extra == 'docs'; gmpy2 (>=2.1.0a4) ; (platform_python_implementation != ""PyPy"") and extra == 'gmpy'; pytest (>=4.6) ; extra == 'tests'",1.4.0a5,No,,No,None,,, +msgpack,Dependency Package,I&S,1.1.0,,,"1.1.1rc1, 1.1.1",,1.1.1,No,,No,None,,, +multiprocess,Dependency Package,I&S,0.70.16,,dill>=0.4.0,"0.70.17, 0.70.18",dill>=0.4.0,0.70.18,No,,No,None,,, +namex,Dependency Package,I&S,0.0.8,,,"0.0.9, 0.1.0",,0.1.0,No,,No,None,,, +narwhals,Dependency Package,I&S,1.9.0,,"cudf>=24.10.0; extra == ""cudf""; dask[dataframe]>=2024.8; extra == ""dask""; duckdb>=1.0; extra == ""duckdb""; ibis-framework>=6.0.0; extra == ""ibis""; packaging; extra == ""ibis""; pyarrow-hotfix; extra == ""ibis""; rich; extra == ""ibis""; modin; extra == ""modin""; pandas>=1.1.3; extra == ""pandas""; polars>=0.20.3; extra == ""polars""; pyarrow>=11.0.0; extra == ""pyarrow""; pyspark>=3.5.0; extra == ""pyspark""; pyspark[connect]>=3.5.0; extra == ""pyspark-connect""; sqlframe>=3.22.0; extra == ""sqlframe""","1.9.1, 1.9.2, 1.9.3, 1.9.4, 1.10.0, 1.11.0, 1.11.1, 1.12.0, 1.12.1, 1.13.1, 1.13.2, 1.13.3, 1.13.4, 1.13.5, 1.14.0, 1.14.1, 1.14.2, 1.14.3, 1.15.0, 1.15.1, 1.15.2, 1.16.0, 1.17.0, 1.18.0, 1.18.1, 1.18.2, 1.18.3, 1.18.4, 1.19.0, 1.19.1, 1.20.0, 1.20.1, 1.21.0, 1.21.1, 1.22.0, 1.23.0, 1.24.0, 1.24.1, 1.24.2, 1.25.0, 1.25.1, 1.25.2, 1.26.0, 1.27.0, 1.27.1, 1.28.0, 1.29.0, 1.29.1, 1.30.0, 1.31.0, 1.32.0, 1.33.0, 1.34.0, 1.34.1, 1.35.0, 1.36.0, 1.37.0, 1.37.1, 1.38.0, 1.38.1, 1.38.2, 1.39.0, 1.39.1, 1.40.0, 1.41.0, 1.41.1, 1.42.0, 1.42.1, 1.43.0, 1.43.1, 1.44.0","cudf>=24.10.0; extra == ""cudf""; dask[dataframe]>=2024.8; extra == ""dask""; duckdb>=1.0; extra == ""duckdb""; ibis-framework>=6.0.0; extra == ""ibis""; packaging; extra == ""ibis""; pyarrow-hotfix; extra == ""ibis""; rich; extra == ""ibis""; modin; extra == ""modin""; pandas>=1.1.3; extra == ""pandas""; polars>=0.20.3; extra == ""polars""; pyarrow>=11.0.0; extra == ""pyarrow""; pyspark>=3.5.0; extra == ""pyspark""; pyspark[connect]>=3.5.0; extra == ""pyspark-connect""; sqlframe>=3.22.0; extra == ""sqlframe""",1.44.0,No,,No,None,,, +nh3,Dependency Package,I&S,0.2.18,,,"0.2.19, 0.2.20, 0.2.21",,0.2.21,No,,No,None,,, +nodeenv,Dependency Package,I&S,1.9.1,,,,,1.9.1,No,,No,None,,, +nose,Dependency Package,I&S,1.3.7,,,,,1.3.7,No,,No,None,,, +num2words,Dependency Package,I&S,0.5.6,,docopt>=0.6.2,"0.5.7, 0.5.8, 0.5.9, 0.5.10, 0.5.11, 0.5.12, 0.5.13, 0.5.14",docopt>=0.6.2,0.5.14,No,,No,None,,, +numba,Dependency Package,I&S,0.60.0,,"llvmlite<0.45,>=0.44.0dev0; numpy<2.3,>=1.24","0.61.0rc1, 0.61.0rc2, 0.61.0, 0.61.1rc1, 0.61.2","llvmlite<0.45,>=0.44.0dev0; numpy<2.3,>=1.24",0.61.2,No,,No,None,,, +olefile,Dependency Package,I&S,0.47,,pytest ; extra == 'tests'; pytest-cov ; extra == 'tests',,pytest ; extra == 'tests'; pytest-cov ; extra == 'tests',0.47,No,,No,None,,, +onnx,Dependency Package,I&S,1.17.0,,"numpy>=1.22; protobuf>=4.25.1; typing_extensions>=4.7.1; google-re2; python_version < ""3.13"" and extra == ""reference""; Pillow; extra == ""reference""",1.18.0,"numpy>=1.22; protobuf>=4.25.1; typing_extensions>=4.7.1; google-re2; python_version < ""3.13"" and extra == ""reference""; Pillow; extra == ""reference""",1.18.0,No,,No,None,,, +openai,Dependency Package,I&S,1.51.2,,"anyio<5,>=3.5.0; distro<2,>=1.7.0; httpx<1,>=0.23.0; jiter<1,>=0.4.0; pydantic<3,>=1.9.0; sniffio; tqdm>4; typing-extensions<5,>=4.11; aiohttp; extra == ""aiohttp""; httpx-aiohttp>=0.1.6; extra == ""aiohttp""; numpy>=1; extra == ""datalib""; pandas-stubs>=1.1.0.11; extra == ""datalib""; pandas>=1.2.3; extra == ""datalib""; websockets<16,>=13; extra == ""realtime""; numpy>=2.0.2; extra == ""voice-helpers""; sounddevice>=0.5.1; extra == ""voice-helpers""","1.52.0, 1.52.1, 1.52.2, 1.53.0, 1.53.1, 1.54.0, 1.54.1, 1.54.2, 1.54.3, 1.54.4, 1.54.5, 1.55.0, 1.55.1, 1.55.2, 1.55.3, 1.56.0, 1.56.1, 1.56.2, 1.57.0, 1.57.1, 1.57.2, 1.57.3, 1.57.4, 1.58.0, 1.58.1, 1.59.2, 1.59.3, 1.59.4, 1.59.5, 1.59.6, 1.59.7, 1.59.8, 1.59.9, 1.60.0, 1.60.1, 1.60.2, 1.61.0, 1.61.1, 1.62.0, 1.63.0, 1.63.1, 1.63.2, 1.64.0, 1.65.0, 1.65.1, 1.65.2, 1.65.3, 1.65.4, 1.65.5, 1.66.0, 1.66.1, 1.66.2, 1.66.3, 1.66.5, 1.67.0, 1.68.0, 1.68.1, 1.68.2, 1.69.0, 1.70.0, 1.71.0, 1.72.0, 1.73.0, 1.74.0, 1.74.1, 1.75.0, 1.76.0, 1.76.1, 1.76.2, 1.77.0, 1.78.0, 1.78.1, 1.79.0, 1.80.0, 1.81.0, 1.82.0, 1.82.1, 1.83.0, 1.84.0, 1.85.0, 1.86.0, 1.87.0, 1.88.0, 1.89.0, 1.90.0, 1.91.0","anyio<5,>=3.5.0; distro<2,>=1.7.0; httpx<1,>=0.23.0; jiter<1,>=0.4.0; pydantic<3,>=1.9.0; sniffio; tqdm>4; typing-extensions<5,>=4.11; aiohttp; extra == ""aiohttp""; httpx-aiohttp>=0.1.6; extra == ""aiohttp""; numpy>=1; extra == ""datalib""; pandas-stubs>=1.1.0.11; extra == ""datalib""; pandas>=1.2.3; extra == ""datalib""; websockets<16,>=13; extra == ""realtime""; numpy>=2.0.2; extra == ""voice-helpers""; sounddevice>=0.5.1; extra == ""voice-helpers""",1.91.0,No,,No,None,,, +opentelemetry-api,Dependency Package,I&S,1.27.0,,"importlib-metadata<8.8.0,>=6.0; typing-extensions>=4.5.0","1.28.0, 1.28.1, 1.28.2, 1.29.0, 1.30.0, 1.31.0, 1.31.1, 1.32.0, 1.32.1, 1.33.0, 1.33.1, 1.34.0, 1.34.1","importlib-metadata<8.8.0,>=6.0; typing-extensions>=4.5.0",1.34.1,No,,No,None,,, +opentelemetry-sdk,Dependency Package,I&S,1.27.0,,opentelemetry-api==1.34.1; opentelemetry-semantic-conventions==0.55b1; typing-extensions>=4.5.0,"1.28.0, 1.28.1, 1.28.2, 1.29.0, 1.30.0, 1.31.0, 1.31.1, 1.32.0, 1.32.1, 1.33.0, 1.33.1, 1.34.0, 1.34.1",opentelemetry-api==1.34.1; opentelemetry-semantic-conventions==0.55b1; typing-extensions>=4.5.0,1.34.1,No,,No,None,,, +opentelemetry-semantic-conventions,Dependency Package,I&S,0.48b0,,opentelemetry-api==1.34.1; typing-extensions>=4.5.0,"0.49b0, 0.49b1, 0.49b2, 0.50b0, 0.51b0, 0.52b0, 0.52b1, 0.53b0, 0.53b1, 0.54b0, 0.54b1, 0.55b0, 0.55b1",opentelemetry-api==1.34.1; typing-extensions>=4.5.0,0.55b1,No,,No,None,,, +opt-einsum,Dependency Package,I&S,3.4.0,,,,,3.4.0,No,,No,None,,, +optree,Dependency Package,I&S,0.12.1,,"typing-extensions>=4.6.0; jax; extra == ""jax""; numpy; extra == ""numpy""; torch; extra == ""torch""; ruff; extra == ""lint""; pylint[spelling]; extra == ""lint""; mypy; extra == ""lint""; doc8; extra == ""lint""; pyenchant; extra == ""lint""; xdoctest; extra == ""lint""; cpplint; extra == ""lint""; pre-commit; extra == ""lint""; pytest; extra == ""test""; pytest-cov; extra == ""test""; covdefaults; extra == ""test""; rich; extra == ""test""; sphinx; extra == ""docs""; sphinx-autoapi; extra == ""docs""; sphinx-autobuild; extra == ""docs""; sphinx-copybutton; extra == ""docs""; sphinx-rtd-theme; extra == ""docs""; sphinxcontrib-bibtex; extra == ""docs""; sphinx-autodoc-typehints; extra == ""docs""; docutils; extra == ""docs""; jax[cpu]; extra == ""docs""; numpy; extra == ""docs""; torch; extra == ""docs""","0.13.0, 0.13.1, 0.14.0rc1, 0.14.0, 0.14.1, 0.15.0, 0.16.0","typing-extensions>=4.6.0; jax; extra == ""jax""; numpy; extra == ""numpy""; torch; extra == ""torch""; ruff; extra == ""lint""; pylint[spelling]; extra == ""lint""; mypy; extra == ""lint""; doc8; extra == ""lint""; pyenchant; extra == ""lint""; xdoctest; extra == ""lint""; cpplint; extra == ""lint""; pre-commit; extra == ""lint""; pytest; extra == ""test""; pytest-cov; extra == ""test""; covdefaults; extra == ""test""; rich; extra == ""test""; sphinx; extra == ""docs""; sphinx-autoapi; extra == ""docs""; sphinx-autobuild; extra == ""docs""; sphinx-copybutton; extra == ""docs""; sphinx-rtd-theme; extra == ""docs""; sphinxcontrib-bibtex; extra == ""docs""; sphinx-autodoc-typehints; extra == ""docs""; docutils; extra == ""docs""; jax[cpu]; extra == ""docs""; numpy; extra == ""docs""; torch; extra == ""docs""",0.16.0,No,,No,None,,, +orderly-set,Dependency Package,I&S,5.2.2,,,"5.2.3, 5.3.0, 5.3.1, 5.3.2, 5.4.0, 5.4.1",,5.4.1,No,,No,None,,, +outcome,Dependency Package,I&S,1.3.0.post0,,attrs >=19.2.0,,attrs >=19.2.0,1.3.0.post0,No,,No,None,,, +pbr,Dependency Package,I&S,6.1.0,,setuptools,"6.1.1.0b1, 6.1.1",setuptools,6.1.1,No,,No,None,,, +pip,Dependency Package,I&S,24,,,"24.1b1, 24.1b2, 24.1, 24.1.1, 24.1.2, 24.2, 24.3, 24.3.1, 25.0, 25.0.1, 25.1, 25.1.1",,25.1.1,No,,No,None,,, +ply,Dependency Package,I&S,3.11,,,,,3.11,No,,No,None,,, +pmdarima,Dependency Package,I&S,2.0.4,,"joblib >=0.11; Cython !=0.29.18,!=0.29.31,>=0.29; numpy >=1.21.2; pandas >=0.19; scikit-learn >=0.22; scipy >=1.3.2; statsmodels >=0.13.2; urllib3; setuptools !=50.0.0,>=38.6.0; packaging >=17.1",,"joblib >=0.11; Cython !=0.29.18,!=0.29.31,>=0.29; numpy >=1.21.2; pandas >=0.19; scikit-learn >=0.22; scipy >=1.3.2; statsmodels >=0.13.2; urllib3; setuptools !=50.0.0,>=38.6.0; packaging >=17.1",2.0.4,No,,No,None,,, +poetry,Dependency Package,I&S,1.8.3,,"build<2.0.0,>=1.2.1; cachecontrol[filecache]<0.15.0,>=0.14.0; cleo<3.0.0,>=2.1.0; dulwich<0.23.0,>=0.22.6; fastjsonschema<3.0.0,>=2.18.0; findpython<0.7.0,>=0.6.2; importlib-metadata<8.7,>=4.4; python_version < ""3.10""; installer<0.8.0,>=0.7.0; keyring<26.0.0,>=25.1.0; packaging>=24.0; pbs-installer[download,install]<2026.0.0,>=2025.1.6; pkginfo<2.0,>=1.12; platformdirs<5,>=3.0.0; poetry-core==2.1.3; pyproject-hooks<2.0.0,>=1.0.0; requests<3.0,>=2.26; requests-toolbelt<2.0.0,>=1.0.0; shellingham<2.0,>=1.5; tomli<3.0.0,>=2.0.1; python_version < ""3.11""; tomlkit<1.0.0,>=0.11.4; trove-classifiers>=2022.5.19; virtualenv<21.0.0,>=20.26.6; xattr<2.0.0,>=1.0.0; sys_platform == ""darwin""","1.8.4, 1.8.5, 2.0.0, 2.0.1, 2.1.0, 2.1.1, 2.1.2, 2.1.3","build<2.0.0,>=1.2.1; cachecontrol[filecache]<0.15.0,>=0.14.0; cleo<3.0.0,>=2.1.0; dulwich<0.23.0,>=0.22.6; fastjsonschema<3.0.0,>=2.18.0; findpython<0.7.0,>=0.6.2; importlib-metadata<8.7,>=4.4; python_version < ""3.10""; installer<0.8.0,>=0.7.0; keyring<26.0.0,>=25.1.0; packaging>=24.0; pbs-installer[download,install]<2026.0.0,>=2025.1.6; pkginfo<2.0,>=1.12; platformdirs<5,>=3.0.0; poetry-core==2.1.3; pyproject-hooks<2.0.0,>=1.0.0; requests<3.0,>=2.26; requests-toolbelt<2.0.0,>=1.0.0; shellingham<2.0,>=1.5; tomli<3.0.0,>=2.0.1; python_version < ""3.11""; tomlkit<1.0.0,>=0.11.4; trove-classifiers>=2022.5.19; virtualenv<21.0.0,>=20.26.6; xattr<2.0.0,>=1.0.0; sys_platform == ""darwin""",2.1.3,No,,No,None,,, +poetry-core,Dependency Package,I&S,1.9.0,,,"1.9.1, 2.0.0, 2.0.1, 2.1.0, 2.1.1, 2.1.2, 2.1.3",,2.1.3,No,,No,None,,, +posthog,Dependency Package,I&S,3.6.6,,"requests<3.0,>=2.7; six>=1.5; python-dateutil>=2.2; backoff>=1.10.0; distro>=1.5.0; langchain>=0.2.0; extra == ""langchain""; django-stubs; extra == ""dev""; lxml; extra == ""dev""; mypy; extra == ""dev""; mypy-baseline; extra == ""dev""; types-mock; extra == ""dev""; types-python-dateutil; extra == ""dev""; types-requests; extra == ""dev""; types-setuptools; extra == ""dev""; types-six; extra == ""dev""; pre-commit; extra == ""dev""; pydantic; extra == ""dev""; ruff; extra == ""dev""; setuptools; extra == ""dev""; packaging; extra == ""dev""; wheel; extra == ""dev""; twine; extra == ""dev""; tomli; extra == ""dev""; tomli_w; extra == ""dev""; mock>=2.0.0; extra == ""test""; freezegun==1.5.1; extra == ""test""; coverage; extra == ""test""; pytest; extra == ""test""; pytest-timeout; extra == ""test""; pytest-asyncio; extra == ""test""; django; extra == ""test""; openai; extra == ""test""; anthropic; extra == ""test""; langgraph>=0.4.8; extra == ""test""; langchain-core>=0.3.65; extra == ""test""; langchain-community>=0.3.25; extra == ""test""; langchain-openai>=0.3.22; extra == ""test""; langchain-anthropic>=0.3.15; extra == ""test""; google-genai; extra == ""test""; pydantic; extra == ""test""; parameterized>=0.8.1; extra == ""test""","3.7.0, 3.7.2, 3.7.3, 3.7.4, 3.7.5, 3.8.0, 3.8.1, 3.8.2, 3.8.3, 3.8.4, 3.9.0, 3.9.1, 3.9.2, 3.9.3, 3.10.0, 3.11.0, 3.12.0, 3.12.1, 3.13.0, 3.14.1, 3.14.2, 3.15.0, 3.15.1, 3.16.0, 3.17.0, 3.18.0, 3.18.1, 3.19.0, 3.19.1, 3.20.0, 3.21.0, 3.22.0, 3.23.0, 3.24.0, 3.24.1, 3.24.2, 3.24.3, 3.25.0, 4.0.0, 4.0.1, 4.1.0, 4.2.0, 4.3.2, 4.4.0, 4.4.1, 4.4.2, 4.5.0, 4.6.0, 4.6.1, 4.6.2, 4.7.0, 4.8.0, 4.9.0, 4.10.0, 5.0.0, 5.1.0, 5.2.0, 5.3.0, 5.4.0","requests<3.0,>=2.7; six>=1.5; python-dateutil>=2.2; backoff>=1.10.0; distro>=1.5.0; langchain>=0.2.0; extra == ""langchain""; django-stubs; extra == ""dev""; lxml; extra == ""dev""; mypy; extra == ""dev""; mypy-baseline; extra == ""dev""; types-mock; extra == ""dev""; types-python-dateutil; extra == ""dev""; types-requests; extra == ""dev""; types-setuptools; extra == ""dev""; types-six; extra == ""dev""; pre-commit; extra == ""dev""; pydantic; extra == ""dev""; ruff; extra == ""dev""; setuptools; extra == ""dev""; packaging; extra == ""dev""; wheel; extra == ""dev""; twine; extra == ""dev""; tomli; extra == ""dev""; tomli_w; extra == ""dev""; mock>=2.0.0; extra == ""test""; freezegun==1.5.1; extra == ""test""; coverage; extra == ""test""; pytest; extra == ""test""; pytest-timeout; extra == ""test""; pytest-asyncio; extra == ""test""; django; extra == ""test""; openai; extra == ""test""; anthropic; extra == ""test""; langgraph>=0.4.8; extra == ""test""; langchain-core>=0.3.65; extra == ""test""; langchain-community>=0.3.25; extra == ""test""; langchain-openai>=0.3.22; extra == ""test""; langchain-anthropic>=0.3.15; extra == ""test""; google-genai; extra == ""test""; pydantic; extra == ""test""; parameterized>=0.8.1; extra == ""test""",5.4.0,No,,No,None,,, +prompthub-py,Dependency Package,I&S,4.0.0,,"requests (>=2.28.2,<3.0.0); pyyaml (>=6.0,<7.0)",,"requests (>=2.28.2,<3.0.0); pyyaml (>=6.0,<7.0)",4.0.0,No,,No,None,,, +propcache,Dependency Package,I&S,0.3.0,,,"0.3.1, 0.3.2",,0.3.2,No,,No,None,,, +py,Dependency Package,I&S,1.11.0,,,,,1.11.0,Yes,"CVE-2022-42969, CVSS_V3, ReDoS in py library when used with subversion , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 +CVE-2022-42969, UNKNOWN, , , affects: >=0",No,None,,,Not Used +pycodestyle,Dependency Package,I&S,2.11.1,,,"2.12.0, 2.12.1, 2.13.0, 2.14.0",,2.14.0,No,,No,None,,, +pycryptodome,Dependency Package,I&S,3.20.0,,,"3.21.0, 3.22.0, 3.23.0",,3.23.0,No,,No,None,,, +pydantic-settings,Dependency Package,I&S,2.2.1,,"pydantic>=2.7.0; python-dotenv>=0.21.0; typing-inspection>=0.4.0; boto3-stubs[secretsmanager]; extra == ""aws-secrets-manager""; boto3>=1.35.0; extra == ""aws-secrets-manager""; azure-identity>=1.16.0; extra == ""azure-key-vault""; azure-keyvault-secrets>=4.8.0; extra == ""azure-key-vault""; google-cloud-secret-manager>=2.23.1; extra == ""gcp-secret-manager""; tomli>=2.0.1; extra == ""toml""; pyyaml>=6.0.1; extra == ""yaml""","2.3.0, 2.3.1, 2.3.2, 2.3.3, 2.3.4, 2.4.0, 2.5.0, 2.5.1, 2.5.2, 2.6.0, 2.6.1, 2.7.0, 2.7.1, 2.8.0, 2.8.1, 2.9.0, 2.9.1, 2.10.0, 2.10.1","pydantic>=2.7.0; python-dotenv>=0.21.0; typing-inspection>=0.4.0; boto3-stubs[secretsmanager]; extra == ""aws-secrets-manager""; boto3>=1.35.0; extra == ""aws-secrets-manager""; azure-identity>=1.16.0; extra == ""azure-key-vault""; azure-keyvault-secrets>=4.8.0; extra == ""azure-key-vault""; google-cloud-secret-manager>=2.23.1; extra == ""gcp-secret-manager""; tomli>=2.0.1; extra == ""toml""; pyyaml>=6.0.1; extra == ""yaml""",2.10.1,No,,No,None,,, +pydeck,Dependency Package,I&S,0.9.1,,"jinja2>=2.10.1; numpy>=1.16.4; pydeck-carto; extra == ""carto""; ipywidgets<8,>=7; extra == ""jupyter""; traitlets>=4.3.2; extra == ""jupyter""; ipython>=5.8.0; python_version < ""3.4"" and extra == ""jupyter""; ipykernel>=5.1.2; python_version >= ""3.4"" and extra == ""jupyter""",,"jinja2>=2.10.1; numpy>=1.16.4; pydeck-carto; extra == ""carto""; ipywidgets<8,>=7; extra == ""jupyter""; traitlets>=4.3.2; extra == ""jupyter""; ipython>=5.8.0; python_version < ""3.4"" and extra == ""jupyter""; ipykernel>=5.1.2; python_version >= ""3.4"" and extra == ""jupyter""",0.9.1,No,,No,None,,, +pyflakes,Dependency Package,I&S,3.2.0,,,"3.3.0, 3.3.1, 3.3.2, 3.4.0",,3.4.0,No,,No,None,,, +pymongo,Dependency Package,I&S,4.10.1,,"dnspython<3.0.0,>=1.16.0; pymongo-auth-aws<2.0.0,>=1.1.0; extra == ""aws""; furo==2024.8.6; extra == ""docs""; readthedocs-sphinx-search~=0.3; extra == ""docs""; sphinx-autobuild>=2020.9.1; extra == ""docs""; sphinx-rtd-theme<4,>=2; extra == ""docs""; sphinx<9,>=5.3; extra == ""docs""; sphinxcontrib-shellcheck<2,>=1; extra == ""docs""; certifi; (os_name == ""nt"" or sys_platform == ""darwin"") and extra == ""encryption""; pymongo-auth-aws<2.0.0,>=1.1.0; extra == ""encryption""; pymongocrypt<2.0.0,>=1.13.0; extra == ""encryption""; pykerberos; os_name != ""nt"" and extra == ""gssapi""; winkerberos>=0.5.0; os_name == ""nt"" and extra == ""gssapi""; certifi; (os_name == ""nt"" or sys_platform == ""darwin"") and extra == ""ocsp""; cryptography>=2.5; extra == ""ocsp""; pyopenssl>=17.2.0; extra == ""ocsp""; requests<3.0.0; extra == ""ocsp""; service-identity>=18.1.0; extra == ""ocsp""; python-snappy; extra == ""snappy""; pytest-asyncio>=0.24.0; extra == ""test""; pytest>=8.2; extra == ""test""; zstandard; extra == ""zstd""","4.11, 4.11.1, 4.11.2, 4.11.3, 4.12.0, 4.12.1, 4.13.0.dev0, 4.13.0, 4.13.1, 4.13.2","dnspython<3.0.0,>=1.16.0; pymongo-auth-aws<2.0.0,>=1.1.0; extra == ""aws""; furo==2024.8.6; extra == ""docs""; readthedocs-sphinx-search~=0.3; extra == ""docs""; sphinx-autobuild>=2020.9.1; extra == ""docs""; sphinx-rtd-theme<4,>=2; extra == ""docs""; sphinx<9,>=5.3; extra == ""docs""; sphinxcontrib-shellcheck<2,>=1; extra == ""docs""; certifi; (os_name == ""nt"" or sys_platform == ""darwin"") and extra == ""encryption""; pymongo-auth-aws<2.0.0,>=1.1.0; extra == ""encryption""; pymongocrypt<2.0.0,>=1.13.0; extra == ""encryption""; pykerberos; os_name != ""nt"" and extra == ""gssapi""; winkerberos>=0.5.0; os_name == ""nt"" and extra == ""gssapi""; certifi; (os_name == ""nt"" or sys_platform == ""darwin"") and extra == ""ocsp""; cryptography>=2.5; extra == ""ocsp""; pyopenssl>=17.2.0; extra == ""ocsp""; requests<3.0.0; extra == ""ocsp""; service-identity>=18.1.0; extra == ""ocsp""; python-snappy; extra == ""snappy""; pytest-asyncio>=0.24.0; extra == ""test""; pytest>=8.2; extra == ""test""; zstandard; extra == ""zstd""",4.13.2,No,,No,None,,, +PyNomaly,Dependency Package,I&S,0.3.4,,numpy; python-utils,,numpy; python-utils,0.3.4,No,,No,None,,, +pypdf,Dependency Package,I&S,5.0.1,,"typing_extensions>=4.0; python_version < ""3.11""; cryptography; extra == ""crypto""; PyCryptodome; extra == ""cryptodome""; black; extra == ""dev""; flit; extra == ""dev""; pip-tools; extra == ""dev""; pre-commit; extra == ""dev""; pytest-cov; extra == ""dev""; pytest-socket; extra == ""dev""; pytest-timeout; extra == ""dev""; pytest-xdist; extra == ""dev""; wheel; extra == ""dev""; myst_parser; extra == ""docs""; sphinx; extra == ""docs""; sphinx_rtd_theme; extra == ""docs""; cryptography; extra == ""full""; Pillow>=8.0.0; extra == ""full""; Pillow>=8.0.0; extra == ""image""","5.1.0, 5.2.0, 5.3.0, 5.3.1, 5.4.0, 5.5.0, 5.6.0, 5.6.1","typing_extensions>=4.0; python_version < ""3.11""; cryptography; extra == ""crypto""; PyCryptodome; extra == ""cryptodome""; black; extra == ""dev""; flit; extra == ""dev""; pip-tools; extra == ""dev""; pre-commit; extra == ""dev""; pytest-cov; extra == ""dev""; pytest-socket; extra == ""dev""; pytest-timeout; extra == ""dev""; pytest-xdist; extra == ""dev""; wheel; extra == ""dev""; myst_parser; extra == ""docs""; sphinx; extra == ""docs""; sphinx_rtd_theme; extra == ""docs""; cryptography; extra == ""full""; Pillow>=8.0.0; extra == ""full""; Pillow>=8.0.0; extra == ""image""",5.6.1,No,,No,None,,, +pyproject-api,Dependency Package,I&S,1.8.0,,"packaging>=25; tomli>=2.2.1; python_version < ""3.11""; furo>=2024.8.6; extra == ""docs""; sphinx-autodoc-typehints>=3.2; extra == ""docs""; covdefaults>=2.3; extra == ""testing""; pytest-cov>=6.1.1; extra == ""testing""; pytest-mock>=3.14; extra == ""testing""; pytest>=8.3.5; extra == ""testing""; setuptools>=80.3.1; extra == ""testing""","1.9.0, 1.9.1","packaging>=25; tomli>=2.2.1; python_version < ""3.11""; furo>=2024.8.6; extra == ""docs""; sphinx-autodoc-typehints>=3.2; extra == ""docs""; covdefaults>=2.3; extra == ""testing""; pytest-cov>=6.1.1; extra == ""testing""; pytest-mock>=3.14; extra == ""testing""; pytest>=8.3.5; extra == ""testing""; setuptools>=80.3.1; extra == ""testing""",1.9.1,No,,No,None,,, +python-iso639,Dependency Package,I&S,2024.4.27,,"black==25.1.0; extra == ""dev""; build==1.2.2; extra == ""dev""; flake8==7.1.1; extra == ""dev""; mypy==1.15.0; extra == ""dev""; pytest==8.3.4; extra == ""dev""; requests==2.32.3; extra == ""dev""; twine==6.1.0; extra == ""dev""","2024.10.22, 2025.1.27, 2025.1.28, 2025.2.8, 2025.2.18","black==25.1.0; extra == ""dev""; build==1.2.2; extra == ""dev""; flake8==7.1.1; extra == ""dev""; mypy==1.15.0; extra == ""dev""; pytest==8.3.4; extra == ""dev""; requests==2.32.3; extra == ""dev""; twine==6.1.0; extra == ""dev""",2025.2.18,No,,No,None,,, +python-magic,Dependency Package,I&S,0.4.27,,,,,0.4.27,No,,No,None,,, +python-oxmsg,Dependency Package,I&S,0.0.1,,click; olefile; typing_extensions>=4.9.0,0.0.2,click; olefile; typing_extensions>=4.9.0,0.0.2,No,,No,None,,, +python-utils,Dependency Package,I&S,3.9.0,,"typing_extensions>3.10.0.2; loguru; extra == ""loguru""; mock; extra == ""docs""; sphinx; extra == ""docs""; python-utils; extra == ""docs""; ruff; extra == ""tests""; pyright; extra == ""tests""; pytest; extra == ""tests""; pytest-cov; extra == ""tests""; pytest-mypy; extra == ""tests""; pytest-asyncio; extra == ""tests""; sphinx; extra == ""tests""; types-setuptools; extra == ""tests""; loguru; extra == ""tests""; loguru-mypy; extra == ""tests""; mypy-ipython; extra == ""tests""; blessings; extra == ""tests""",3.9.1,"typing_extensions>3.10.0.2; loguru; extra == ""loguru""; mock; extra == ""docs""; sphinx; extra == ""docs""; python-utils; extra == ""docs""; ruff; extra == ""tests""; pyright; extra == ""tests""; pytest; extra == ""tests""; pytest-cov; extra == ""tests""; pytest-mypy; extra == ""tests""; pytest-asyncio; extra == ""tests""; sphinx; extra == ""tests""; types-setuptools; extra == ""tests""; loguru; extra == ""tests""; loguru-mypy; extra == ""tests""; mypy-ipython; extra == ""tests""; blessings; extra == ""tests""",3.9.1,No,,No,None,,, +quantulum3,Dependency Package,I&S,0.9.2,,"inflect; num2words; numpy; extra == ""classifier""; scipy; extra == ""classifier""; scikit-learn; extra == ""classifier""; joblib; extra == ""classifier""; wikipedia; extra == ""classifier""; stemming; extra == ""classifier""",,"inflect; num2words; numpy; extra == ""classifier""; scipy; extra == ""classifier""; scikit-learn; extra == ""classifier""; joblib; extra == ""classifier""; wikipedia; extra == ""classifier""; stemming; extra == ""classifier""",0.9.2,No,,No,None,,, +raiutils,Dependency Package,I&S,0.4.2,,numpy; pandas; requests; scikit-learn; scipy,,numpy; pandas; requests; scikit-learn; scipy,0.4.2,No,,No,None,,, +rank-bm25,Dependency Package,I&S,0.2.2,,numpy; pytest ; extra == 'dev',,numpy; pytest ; extra == 'dev',0.2.2,No,,No,None,,, +RapidFuzz,Dependency Package,I&S,3.10.0,,"numpy; extra == ""all""","3.10.1, 3.11.0, 3.12.1, 3.12.2, 3.13.0","numpy; extra == ""all""",3.13.0,No,,No,None,,, +readme-renderer,Dependency Package,I&S,44,,"nh3>=0.2.14; docutils>=0.21.2; Pygments>=2.5.1; cmarkgfm>=0.8.0; extra == ""md""",,"nh3>=0.2.14; docutils>=0.21.2; Pygments>=2.5.1; cmarkgfm>=0.8.0; extra == ""md""",44.0,No,,No,None,,, +requests-cache,Dependency Package,I&S,0.9.8,,"attrs>=21.2; boto3>=1.15; extra == ""dynamodb"" or extra == ""all""; botocore>=1.18; extra == ""dynamodb"" or extra == ""all""; bson>=0.5; extra == ""bson""; cattrs>=22.2; furo<2024.0,>=2023.3; extra == ""docs""; itsdangerous>=2.0; extra == ""security"" or extra == ""all""; linkify-it-py<3.0,>=2.0; extra == ""docs""; myst-parser<2.0,>=1.0; extra == ""docs""; platformdirs>=2.5; pymongo>=3; extra == ""mongodb"" or extra == ""all""; pyyaml>=6.0.1; extra == ""yaml"" or extra == ""all""; redis>=3; extra == ""redis"" or extra == ""all""; requests>=2.22; sphinx<6.0.0,>=5.0.2; extra == ""docs""; sphinx-autodoc-typehints>=1.19; extra == ""docs""; sphinx-automodapi>=0.14; extra == ""docs""; sphinx-copybutton>=0.5; extra == ""docs""; sphinx-design>=0.2; extra == ""docs""; sphinx-notfound-page>=0.8; extra == ""docs""; sphinxcontrib-apidoc>=0.3; extra == ""docs""; sphinxext-opengraph>=0.9; extra == ""docs""; ujson>=5.4; extra == ""json"" or extra == ""all""; url-normalize>=1.4; urllib3>=1.25.5","1.0.0a0, 1.0.0a1, 1.0.0a2, 1.0.0b0, 1.0.0b1, 1.0.0, 1.0.1, 1.1.0, 1.1.1, 1.2.0, 1.2.1, 1.3.0a0","attrs>=21.2; boto3>=1.15; extra == ""dynamodb"" or extra == ""all""; botocore>=1.18; extra == ""dynamodb"" or extra == ""all""; bson>=0.5; extra == ""bson""; cattrs>=22.2; furo<2024.0,>=2023.3; extra == ""docs""; itsdangerous>=2.0; extra == ""security"" or extra == ""all""; linkify-it-py<3.0,>=2.0; extra == ""docs""; myst-parser<2.0,>=1.0; extra == ""docs""; platformdirs>=2.5; pymongo>=3; extra == ""mongodb"" or extra == ""all""; pyyaml>=6.0.1; extra == ""yaml"" or extra == ""all""; redis>=3; extra == ""redis"" or extra == ""all""; requests>=2.22; sphinx<6.0.0,>=5.0.2; extra == ""docs""; sphinx-autodoc-typehints>=1.19; extra == ""docs""; sphinx-automodapi>=0.14; extra == ""docs""; sphinx-copybutton>=0.5; extra == ""docs""; sphinx-design>=0.2; extra == ""docs""; sphinx-notfound-page>=0.8; extra == ""docs""; sphinxcontrib-apidoc>=0.3; extra == ""docs""; sphinxext-opengraph>=0.9; extra == ""docs""; ujson>=5.4; extra == ""json"" or extra == ""all""; url-normalize>=1.4; urllib3>=1.25.5",1.3.0a0,No,,No,None,,, +requests-toolbelt,Dependency Package,I&S,1.0.0,,"requests (<3.0.0,>=2.0.1)",,"requests (<3.0.0,>=2.0.1)",1.0.0,No,,No,None,,, +retrying,Dependency Package,I&S,1.3.4,,,"1.3.5, 1.3.6, 1.4.0",,1.4.0,No,,No,None,,, +rfc3986,Dependency Package,I&S,2.0.0,,idna ; extra == 'idna2008',,idna ; extra == 'idna2008',2.0.0,No,,No,None,,, +safetensors,Dependency Package,I&S,0.4.5,,"numpy>=1.21.6; extra == ""numpy""; safetensors[numpy]; extra == ""torch""; torch>=1.10; extra == ""torch""; safetensors[numpy]; extra == ""tensorflow""; tensorflow>=2.11.0; extra == ""tensorflow""; safetensors[numpy]; extra == ""pinned-tf""; tensorflow==2.18.0; extra == ""pinned-tf""; safetensors[numpy]; extra == ""jax""; flax>=0.6.3; extra == ""jax""; jax>=0.3.25; extra == ""jax""; jaxlib>=0.3.25; extra == ""jax""; mlx>=0.0.9; extra == ""mlx""; safetensors[numpy]; extra == ""paddlepaddle""; paddlepaddle>=2.4.1; extra == ""paddlepaddle""; black==22.3; extra == ""quality""; click==8.0.4; extra == ""quality""; isort>=5.5.4; extra == ""quality""; flake8>=3.8.3; extra == ""quality""; safetensors[numpy]; extra == ""testing""; h5py>=3.7.0; extra == ""testing""; huggingface-hub>=0.12.1; extra == ""testing""; setuptools-rust>=1.5.2; extra == ""testing""; pytest>=7.2.0; extra == ""testing""; pytest-benchmark>=4.0.0; extra == ""testing""; hypothesis>=6.70.2; extra == ""testing""; safetensors[torch]; extra == ""all""; safetensors[numpy]; extra == ""all""; safetensors[pinned-tf]; extra == ""all""; safetensors[jax]; extra == ""all""; safetensors[paddlepaddle]; extra == ""all""; safetensors[quality]; extra == ""all""; safetensors[testing]; extra == ""all""; safetensors[all]; extra == ""dev""","0.4.6.dev0, 0.5.0rc0, 0.5.0, 0.5.1, 0.5.2, 0.5.3, 0.6.0.dev0, 0.6.0rc0","numpy>=1.21.6; extra == ""numpy""; safetensors[numpy]; extra == ""torch""; torch>=1.10; extra == ""torch""; safetensors[numpy]; extra == ""tensorflow""; tensorflow>=2.11.0; extra == ""tensorflow""; safetensors[numpy]; extra == ""pinned-tf""; tensorflow==2.18.0; extra == ""pinned-tf""; safetensors[numpy]; extra == ""jax""; flax>=0.6.3; extra == ""jax""; jax>=0.3.25; extra == ""jax""; jaxlib>=0.3.25; extra == ""jax""; mlx>=0.0.9; extra == ""mlx""; safetensors[numpy]; extra == ""paddlepaddle""; paddlepaddle>=2.4.1; extra == ""paddlepaddle""; black==22.3; extra == ""quality""; click==8.0.4; extra == ""quality""; isort>=5.5.4; extra == ""quality""; flake8>=3.8.3; extra == ""quality""; safetensors[numpy]; extra == ""testing""; h5py>=3.7.0; extra == ""testing""; huggingface-hub>=0.12.1; extra == ""testing""; setuptools-rust>=1.5.2; extra == ""testing""; pytest>=7.2.0; extra == ""testing""; pytest-benchmark>=4.0.0; extra == ""testing""; hypothesis>=6.70.2; extra == ""testing""; safetensors[torch]; extra == ""all""; safetensors[numpy]; extra == ""all""; safetensors[pinned-tf]; extra == ""all""; safetensors[jax]; extra == ""all""; safetensors[paddlepaddle]; extra == ""all""; safetensors[quality]; extra == ""all""; safetensors[testing]; extra == ""all""; safetensors[all]; extra == ""dev""",0.6.0rc0,No,,No,None,,, +scikit-base,Dependency Package,I&S,0.10.1,,"numpy; extra == ""all-extras""; pandas; extra == ""all-extras""; scikit-learn>=0.24.0; extra == ""dev""; pre-commit; extra == ""dev""; pytest; extra == ""dev""; pytest-cov; extra == ""dev""; mypy; extra == ""linters""; isort; extra == ""linters""; flake8; extra == ""linters""; black; extra == ""linters""; pydocstyle; extra == ""linters""; nbqa; extra == ""linters""; flake8-bugbear; extra == ""linters""; flake8-builtins; extra == ""linters""; flake8-quotes; extra == ""linters""; flake8-comprehensions; extra == ""linters""; pandas-vet; extra == ""linters""; flake8-print; extra == ""linters""; pep8-naming; extra == ""linters""; doc8; extra == ""linters""; jupyter; extra == ""binder""; jupyter; extra == ""docs""; myst-parser; extra == ""docs""; nbsphinx>=0.8.6; extra == ""docs""; numpydoc; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx-issues<6.0.0; extra == ""docs""; sphinx-gallery<0.20.0; extra == ""docs""; sphinx-panels; extra == ""docs""; sphinx-design<0.7.0; extra == ""docs""; Sphinx!=7.2.0,<9.0.0; extra == ""docs""; tabulate; extra == ""docs""; pytest; extra == ""test""; coverage; extra == ""test""; pytest-cov; extra == ""test""; safety; extra == ""test""; numpy; extra == ""test""; scipy; extra == ""test""; pandas; extra == ""test""; scikit-learn>=0.24.0; extra == ""test""","0.11.0, 0.12.0, 0.12.2, 0.12.3","numpy; extra == ""all-extras""; pandas; extra == ""all-extras""; scikit-learn>=0.24.0; extra == ""dev""; pre-commit; extra == ""dev""; pytest; extra == ""dev""; pytest-cov; extra == ""dev""; mypy; extra == ""linters""; isort; extra == ""linters""; flake8; extra == ""linters""; black; extra == ""linters""; pydocstyle; extra == ""linters""; nbqa; extra == ""linters""; flake8-bugbear; extra == ""linters""; flake8-builtins; extra == ""linters""; flake8-quotes; extra == ""linters""; flake8-comprehensions; extra == ""linters""; pandas-vet; extra == ""linters""; flake8-print; extra == ""linters""; pep8-naming; extra == ""linters""; doc8; extra == ""linters""; jupyter; extra == ""binder""; jupyter; extra == ""docs""; myst-parser; extra == ""docs""; nbsphinx>=0.8.6; extra == ""docs""; numpydoc; extra == ""docs""; pydata-sphinx-theme; extra == ""docs""; sphinx-issues<6.0.0; extra == ""docs""; sphinx-gallery<0.20.0; extra == ""docs""; sphinx-panels; extra == ""docs""; sphinx-design<0.7.0; extra == ""docs""; Sphinx!=7.2.0,<9.0.0; extra == ""docs""; tabulate; extra == ""docs""; pytest; extra == ""test""; coverage; extra == ""test""; pytest-cov; extra == ""test""; safety; extra == ""test""; numpy; extra == ""test""; scipy; extra == ""test""; pandas; extra == ""test""; scikit-learn>=0.24.0; extra == ""test""",0.12.3,No,,No,None,,, +sentencepiece,Dependency Package,I&S,0.2.0,,,,,0.2.0,No,,No,None,,, +sentinels,Dependency Package,I&S,1.0.1,,,,,1.0.0,No,,No,None,,, +setuptools,Dependency Package,I&S,75.2.0,,"pytest!=8.1.*,>=6; extra == ""test""; virtualenv>=13.0.0; extra == ""test""; wheel>=0.44.0; extra == ""test""; pip>=19.1; extra == ""test""; packaging>=24.2; extra == ""test""; jaraco.envs>=2.2; extra == ""test""; pytest-xdist>=3; extra == ""test""; jaraco.path>=3.7.2; extra == ""test""; build[virtualenv]>=1.0.3; extra == ""test""; filelock>=3.4.0; extra == ""test""; ini2toml[lite]>=0.14; extra == ""test""; tomli-w>=1.0.0; extra == ""test""; pytest-timeout; extra == ""test""; pytest-perf; sys_platform != ""cygwin"" and extra == ""test""; jaraco.develop>=7.21; (python_version >= ""3.9"" and sys_platform != ""cygwin"") and extra == ""test""; pytest-home>=0.5; extra == ""test""; pytest-subprocess; extra == ""test""; pyproject-hooks!=1.1; extra == ""test""; jaraco.test>=5.5; extra == ""test""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; pygments-github-lexers==0.0.5; extra == ""doc""; sphinx-favicon; extra == ""doc""; sphinx-inline-tabs; extra == ""doc""; sphinx-reredirects; extra == ""doc""; sphinxcontrib-towncrier; extra == ""doc""; sphinx-notfound-page<2,>=1; extra == ""doc""; pyproject-hooks!=1.1; extra == ""doc""; towncrier<24.7; extra == ""doc""; packaging>=24.2; extra == ""core""; more_itertools>=8.8; extra == ""core""; jaraco.text>=3.7; extra == ""core""; importlib_metadata>=6; python_version < ""3.10"" and extra == ""core""; tomli>=2.0.1; python_version < ""3.11"" and extra == ""core""; wheel>=0.43.0; extra == ""core""; platformdirs>=4.2.2; extra == ""core""; jaraco.functools>=4; extra == ""core""; more_itertools; extra == ""core""; pytest-checkdocs>=2.4; extra == ""check""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""check""; ruff>=0.8.0; sys_platform != ""cygwin"" and extra == ""check""; pytest-cov; extra == ""cover""; pytest-enabler>=2.2; extra == ""enabler""; pytest-mypy; extra == ""type""; mypy==1.14.*; extra == ""type""; importlib_metadata>=7.0.2; python_version < ""3.10"" and extra == ""type""; jaraco.develop>=7.21; sys_platform != ""cygwin"" and extra == ""type""","75.3.0, 75.3.1, 75.3.2, 75.4.0, 75.5.0, 75.6.0, 75.7.0, 75.8.0, 75.8.1, 75.8.2, 75.9.0, 75.9.1, 76.0.0, 76.1.0, 77.0.1, 77.0.3, 78.0.1, 78.0.2, 78.1.0, 78.1.1, 79.0.0, 79.0.1, 80.0.0, 80.0.1, 80.1.0, 80.2.0, 80.3.0, 80.3.1, 80.4.0, 80.6.0, 80.7.0, 80.7.1, 80.8.0, 80.9.0","pytest!=8.1.*,>=6; extra == ""test""; virtualenv>=13.0.0; extra == ""test""; wheel>=0.44.0; extra == ""test""; pip>=19.1; extra == ""test""; packaging>=24.2; extra == ""test""; jaraco.envs>=2.2; extra == ""test""; pytest-xdist>=3; extra == ""test""; jaraco.path>=3.7.2; extra == ""test""; build[virtualenv]>=1.0.3; extra == ""test""; filelock>=3.4.0; extra == ""test""; ini2toml[lite]>=0.14; extra == ""test""; tomli-w>=1.0.0; extra == ""test""; pytest-timeout; extra == ""test""; pytest-perf; sys_platform != ""cygwin"" and extra == ""test""; jaraco.develop>=7.21; (python_version >= ""3.9"" and sys_platform != ""cygwin"") and extra == ""test""; pytest-home>=0.5; extra == ""test""; pytest-subprocess; extra == ""test""; pyproject-hooks!=1.1; extra == ""test""; jaraco.test>=5.5; extra == ""test""; sphinx>=3.5; extra == ""doc""; jaraco.packaging>=9.3; extra == ""doc""; rst.linker>=1.9; extra == ""doc""; furo; extra == ""doc""; sphinx-lint; extra == ""doc""; jaraco.tidelift>=1.4; extra == ""doc""; pygments-github-lexers==0.0.5; extra == ""doc""; sphinx-favicon; extra == ""doc""; sphinx-inline-tabs; extra == ""doc""; sphinx-reredirects; extra == ""doc""; sphinxcontrib-towncrier; extra == ""doc""; sphinx-notfound-page<2,>=1; extra == ""doc""; pyproject-hooks!=1.1; extra == ""doc""; towncrier<24.7; extra == ""doc""; packaging>=24.2; extra == ""core""; more_itertools>=8.8; extra == ""core""; jaraco.text>=3.7; extra == ""core""; importlib_metadata>=6; python_version < ""3.10"" and extra == ""core""; tomli>=2.0.1; python_version < ""3.11"" and extra == ""core""; wheel>=0.43.0; extra == ""core""; platformdirs>=4.2.2; extra == ""core""; jaraco.functools>=4; extra == ""core""; more_itertools; extra == ""core""; pytest-checkdocs>=2.4; extra == ""check""; pytest-ruff>=0.2.1; sys_platform != ""cygwin"" and extra == ""check""; ruff>=0.8.0; sys_platform != ""cygwin"" and extra == ""check""; pytest-cov; extra == ""cover""; pytest-enabler>=2.2; extra == ""enabler""; pytest-mypy; extra == ""type""; mypy==1.14.*; extra == ""type""; importlib_metadata>=7.0.2; python_version < ""3.10"" and extra == ""type""; jaraco.develop>=7.21; sys_platform != ""cygwin"" and extra == ""type""",80.9.0,Yes,"CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1",Yes,"78.1.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.8.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.6.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.7.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.9.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.8.1: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.3.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 76.1.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.3.1: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 78.0.1: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 77.0.3: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.5.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.9.1: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.3.2: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 77.0.1: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 78.0.2: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.8.2: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.4.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 76.0.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 +CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1",Up-to-date,,Not Used +shap,Dependency Package,I&S,0.46.0,,"numpy; scipy; scikit-learn; pandas; tqdm>=4.27.0; packaging>20.9; slicer==0.0.8; numba>=0.54; cloudpickle; typing-extensions; matplotlib; extra == ""plots""; ipython; extra == ""plots""; lime; extra == ""others""; matplotlib; extra == ""docs""; ipython; extra == ""docs""; numpydoc; extra == ""docs""; sphinx_rtd_theme; extra == ""docs""; sphinx; extra == ""docs""; nbsphinx; extra == ""docs""; sphinx_github_changelog; extra == ""docs""; myst-parser; extra == ""docs""; requests; extra == ""docs""; ipywidgets; extra == ""docs""; pytest; extra == ""test-core""; pytest-mpl; extra == ""test-core""; pytest-cov; extra == ""test-core""; mypy; extra == ""test-core""; pytest; extra == ""test""; pytest-mpl; extra == ""test""; pytest-cov; extra == ""test""; xgboost; extra == ""test""; lightgbm; extra == ""test""; catboost; python_version < ""3.13"" and extra == ""test""; gpboost; extra == ""test""; ngboost; extra == ""test""; pyspark; extra == ""test""; pyod; extra == ""test""; transformers; python_version < ""3.13"" and extra == ""test""; tf-keras; python_version < ""3.13"" and extra == ""test""; protobuf==3.20.3; extra == ""test""; torch; python_version < ""3.13"" and extra == ""test""; torchvision; python_version < ""3.13"" and extra == ""test""; tensorflow; python_version < ""3.13"" and extra == ""test""; sentencepiece; extra == ""test""; opencv-python; extra == ""test""; numpy<2.0; extra == ""test""; scikit-learn<=1.6.1; extra == ""test""; causalml; extra == ""test""; selenium; extra == ""test""; jupyter; extra == ""test-notebooks""; nbconvert; extra == ""test-notebooks""; nbformat; extra == ""test-notebooks""; nlp; extra == ""test-notebooks""; transformers; extra == ""test-notebooks""; datasets; extra == ""test-notebooks""; keras; extra == ""test-notebooks""","0.47.0, 0.47.1, 0.47.2, 0.48.0","numpy; scipy; scikit-learn; pandas; tqdm>=4.27.0; packaging>20.9; slicer==0.0.8; numba>=0.54; cloudpickle; typing-extensions; matplotlib; extra == ""plots""; ipython; extra == ""plots""; lime; extra == ""others""; matplotlib; extra == ""docs""; ipython; extra == ""docs""; numpydoc; extra == ""docs""; sphinx_rtd_theme; extra == ""docs""; sphinx; extra == ""docs""; nbsphinx; extra == ""docs""; sphinx_github_changelog; extra == ""docs""; myst-parser; extra == ""docs""; requests; extra == ""docs""; ipywidgets; extra == ""docs""; pytest; extra == ""test-core""; pytest-mpl; extra == ""test-core""; pytest-cov; extra == ""test-core""; mypy; extra == ""test-core""; pytest; extra == ""test""; pytest-mpl; extra == ""test""; pytest-cov; extra == ""test""; xgboost; extra == ""test""; lightgbm; extra == ""test""; catboost; python_version < ""3.13"" and extra == ""test""; gpboost; extra == ""test""; ngboost; extra == ""test""; pyspark; extra == ""test""; pyod; extra == ""test""; transformers; python_version < ""3.13"" and extra == ""test""; tf-keras; python_version < ""3.13"" and extra == ""test""; protobuf==3.20.3; extra == ""test""; torch; python_version < ""3.13"" and extra == ""test""; torchvision; python_version < ""3.13"" and extra == ""test""; tensorflow; python_version < ""3.13"" and extra == ""test""; sentencepiece; extra == ""test""; opencv-python; extra == ""test""; numpy<2.0; extra == ""test""; scikit-learn<=1.6.1; extra == ""test""; causalml; extra == ""test""; selenium; extra == ""test""; jupyter; extra == ""test-notebooks""; nbconvert; extra == ""test-notebooks""; nbformat; extra == ""test-notebooks""; nlp; extra == ""test-notebooks""; transformers; extra == ""test-notebooks""; datasets; extra == ""test-notebooks""; keras; extra == ""test-notebooks""",0.48.0,No,,No,None,,, +slicer,Dependency Package,I&S,0.0.8,,,,,0.0.8,No,,No,None,,, +sortedcontainers,Dependency Package,I&S,2.4.0,,,,,2.4.0,No,,No,None,,, +sqlparse,Dependency Package,I&S,0.5.1,,"build; extra == ""dev""; hatch; extra == ""dev""; sphinx; extra == ""doc""","0.5.2, 0.5.3","build; extra == ""dev""; hatch; extra == ""dev""; sphinx; extra == ""doc""",0.5.3,No,,No,None,,, +sseclient-py,Dependency Package,I&S,1.8.0,,,,,1.8.0,No,,No,None,,, +stevedore,Dependency Package,I&S,5.3.0,,pbr>=2.0.0,"5.4.0, 5.4.1",pbr>=2.0.0,5.4.1,No,,No,None,,, +striprtf,Dependency Package,I&S,0.0.26,,"build>=1.0.0; extra == ""dev""; pytest>=7.0.0; extra == ""dev""","0.0.27, 0.0.28, 0.0.29","build>=1.0.0; extra == ""dev""; pytest>=7.0.0; extra == ""dev""",0.0.29,No,,No,None,,, +sympy,Dependency Package,I&S,1.13.3,,"mpmath<1.4,>=1.1.0; pytest>=7.1.0; extra == ""dev""; hypothesis>=6.70.0; extra == ""dev""","1.14.0rc1, 1.14.0rc2, 1.14.0","mpmath<1.4,>=1.1.0; pytest>=7.1.0; extra == ""dev""; hypothesis>=6.70.0; extra == ""dev""",1.14.0,No,,No,None,,, +tensorboard,Dependency Package,I&S,2.16.2,,"absl-py>=0.4; grpcio>=1.48.2; markdown>=2.6.8; numpy>=1.12.0; packaging; protobuf!=4.24.0,>=3.19.6; setuptools>=41.0.0; six>1.9; tensorboard-data-server<0.8.0,>=0.7.0; werkzeug>=1.0.1","2.17.0, 2.17.1, 2.18.0, 2.19.0","absl-py>=0.4; grpcio>=1.48.2; markdown>=2.6.8; numpy>=1.12.0; packaging; protobuf!=4.24.0,>=3.19.6; setuptools>=41.0.0; six>1.9; tensorboard-data-server<0.8.0,>=0.7.0; werkzeug>=1.0.1",2.19.0,No,,No,None,,, +tensorboard-data-server,Dependency Package,I&S,0.7.2,,,,,0.7.2,No,,No,None,,, +termcolor,Dependency Package,I&S,2.4.0,,"pytest; extra == ""tests""; pytest-cov; extra == ""tests""","2.5.0, 3.0.0, 3.0.1, 3.1.0","pytest; extra == ""tests""; pytest-cov; extra == ""tests""",3.1.0,No,,No,None,,, +tiktoken,Dependency Package,I&S,0.7.0,,"regex>=2022.1.18; requests>=2.26.0; blobfile>=2; extra == ""blobfile""","0.8.0, 0.9.0","regex>=2022.1.18; requests>=2.26.0; blobfile>=2; extra == ""blobfile""",0.9.0,No,,No,None,,, +tokenizers,Dependency Package,I&S,0.20.1,,"huggingface-hub<1.0,>=0.16.4; pytest; extra == ""testing""; requests; extra == ""testing""; numpy; extra == ""testing""; datasets; extra == ""testing""; black==22.3; extra == ""testing""; ruff; extra == ""testing""; sphinx; extra == ""docs""; sphinx-rtd-theme; extra == ""docs""; setuptools-rust; extra == ""docs""; tokenizers[testing]; extra == ""dev""","0.20.2, 0.20.3rc0, 0.20.3, 0.20.4rc0, 0.20.4, 0.21.0rc0, 0.21.0, 0.21.1rc0, 0.21.1, 0.21.2rc0, 0.21.2","huggingface-hub<1.0,>=0.16.4; pytest; extra == ""testing""; requests; extra == ""testing""; numpy; extra == ""testing""; datasets; extra == ""testing""; black==22.3; extra == ""testing""; ruff; extra == ""testing""; sphinx; extra == ""docs""; sphinx-rtd-theme; extra == ""docs""; setuptools-rust; extra == ""docs""; tokenizers[testing]; extra == ""dev""",0.21.2,No,,No,None,,, +tomlkit,Dependency Package,I&S,0.13.2,,,0.13.3,,0.13.3,No,,No,None,,, +torch,Dependency Package,I&S,2.4.0,,"filelock; typing-extensions>=4.10.0; setuptools; python_version >= ""3.12""; sympy>=1.13.3; networkx; jinja2; fsspec; nvidia-cuda-nvrtc-cu12==12.6.77; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cuda-runtime-cu12==12.6.77; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cuda-cupti-cu12==12.6.80; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cudnn-cu12==9.5.1.17; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cublas-cu12==12.6.4.1; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cufft-cu12==11.3.0.4; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-curand-cu12==10.3.7.77; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cusolver-cu12==11.7.1.2; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cusparse-cu12==12.5.4.2; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cusparselt-cu12==0.6.3; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-nccl-cu12==2.26.2; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-nvtx-cu12==12.6.77; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-nvjitlink-cu12==12.6.85; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cufile-cu12==1.11.1.6; platform_system == ""Linux"" and platform_machine == ""x86_64""; triton==3.3.1; platform_system == ""Linux"" and platform_machine == ""x86_64""; optree>=0.13.0; extra == ""optree""; opt-einsum>=3.3; extra == ""opt-einsum""","2.4.1, 2.5.0, 2.5.1, 2.6.0, 2.7.0, 2.7.1","filelock; typing-extensions>=4.10.0; setuptools; python_version >= ""3.12""; sympy>=1.13.3; networkx; jinja2; fsspec; nvidia-cuda-nvrtc-cu12==12.6.77; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cuda-runtime-cu12==12.6.77; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cuda-cupti-cu12==12.6.80; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cudnn-cu12==9.5.1.17; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cublas-cu12==12.6.4.1; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cufft-cu12==11.3.0.4; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-curand-cu12==10.3.7.77; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cusolver-cu12==11.7.1.2; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cusparse-cu12==12.5.4.2; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cusparselt-cu12==0.6.3; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-nccl-cu12==2.26.2; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-nvtx-cu12==12.6.77; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-nvjitlink-cu12==12.6.85; platform_system == ""Linux"" and platform_machine == ""x86_64""; nvidia-cufile-cu12==1.11.1.6; platform_system == ""Linux"" and platform_machine == ""x86_64""; triton==3.3.1; platform_system == ""Linux"" and platform_machine == ""x86_64""; optree>=0.13.0; extra == ""optree""; opt-einsum>=3.3; extra == ""opt-einsum""",2.7.1,Yes,"CVE-2025-2953, CVSS_V3, PyTorch susceptible to local Denial of Service, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<2.7.1-rc1 +CVE-2025-32434, CVSS_V4, PyTorch: `torch.load` with `weights_only=True` leads to remote code execution, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N, affects: >=0; >=0,<2.6.0 +CVE-2025-3730, CVSS_V3, PyTorch Improper Resource Shutdown or Release vulnerability, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0 +CVE-2025-32434, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<2.6.0",Yes,"2.6.0: CVE-2025-2953, CVSS_V3, PyTorch susceptible to local Denial of Service, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<2.7.1-rc1 +CVE-2025-3730, CVSS_V3, PyTorch Improper Resource Shutdown or Release vulnerability, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0; 2.4.1: CVE-2025-2953, CVSS_V3, PyTorch susceptible to local Denial of Service, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<2.7.1-rc1 +CVE-2025-32434, CVSS_V4, PyTorch: `torch.load` with `weights_only=True` leads to remote code execution, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N, affects: >=0; >=0,<2.6.0 +CVE-2025-3730, CVSS_V3, PyTorch Improper Resource Shutdown or Release vulnerability, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0 +CVE-2025-32434, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<2.6.0; 2.5.1: CVE-2025-2953, CVSS_V3, PyTorch susceptible to local Denial of Service, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<2.7.1-rc1 +CVE-2025-32434, CVSS_V4, PyTorch: `torch.load` with `weights_only=True` leads to remote code execution, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N, affects: >=0; >=0,<2.6.0 +CVE-2025-3730, CVSS_V3, PyTorch Improper Resource Shutdown or Release vulnerability, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0 +CVE-2025-32434, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<2.6.0; 2.7.1: CVE-2025-3730, CVSS_V3, PyTorch Improper Resource Shutdown or Release vulnerability, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0; 2.5.0: CVE-2025-2953, CVSS_V3, PyTorch susceptible to local Denial of Service, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<2.7.1-rc1 +CVE-2025-32434, CVSS_V4, PyTorch: `torch.load` with `weights_only=True` leads to remote code execution, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N, affects: >=0; >=0,<2.6.0 +CVE-2025-3730, CVSS_V3, PyTorch Improper Resource Shutdown or Release vulnerability, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0 +CVE-2025-32434, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<2.6.0; 2.7.0: CVE-2025-2953, CVSS_V3, PyTorch susceptible to local Denial of Service, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<2.7.1-rc1 +CVE-2025-3730, CVSS_V3, PyTorch Improper Resource Shutdown or Release vulnerability, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0",Up-to-date,,Not Used +torchvision,Dependency Package,I&S,0.17.2,,"numpy; torch==2.7.1; pillow!=8.3.*,>=5.3.0; gdown>=4.7.3; extra == ""gdown""; scipy; extra == ""scipy""","0.18.0, 0.18.1, 0.19.0, 0.19.1, 0.20.0, 0.20.1, 0.21.0, 0.22.0, 0.22.1","numpy; torch==2.7.1; pillow!=8.3.*,>=5.3.0; gdown>=4.7.3; extra == ""gdown""; scipy; extra == ""scipy""",0.22.1,No,,No,None,,, +transformers,Dependency Package,I&S,4.46.0,,"beautifulsoup4; extra == ""dev""; filelock; huggingface-hub<1.0,>=0.30.0; numpy>=1.17; packaging>=20.0; pyyaml>=5.1; regex!=2019.12.17; requests; tokenizers<0.22,>=0.21; safetensors>=0.4.3; tqdm>=4.27; accelerate>=0.26.0; extra == ""accelerate""; tensorflow<2.16,>2.9; extra == ""all""; onnxconverter-common; extra == ""all""; tf2onnx; extra == ""all""; tensorflow-text<2.16; extra == ""all""; keras-nlp<0.14.0,>=0.3.1; extra == ""all""; torch<2.7,>=2.1; extra == ""all""; accelerate>=0.26.0; extra == ""all""; jax<=0.4.13,>=0.4.1; extra == ""all""; jaxlib<=0.4.13,>=0.4.1; extra == ""all""; flax<=0.7.0,>=0.4.1; extra == ""all""; optax<=0.1.4,>=0.0.8; extra == ""all""; scipy<1.13.0; extra == ""all""; sentencepiece!=0.1.92,>=0.1.91; extra == ""all""; protobuf; extra == ""all""; tokenizers<0.22,>=0.21; extra == ""all""; torchaudio; extra == ""all""; librosa; extra == ""all""; pyctcdecode>=0.4.0; extra == ""all""; phonemizer; extra == ""all""; kenlm; extra == ""all""; Pillow<=15.0,>=10.0.1; extra == ""all""; kernels<0.5,>=0.4.4; extra == ""all""; optuna; extra == ""all""; ray[tune]>=2.7.0; extra == ""all""; sigopt; extra == ""all""; timm<=1.0.11; extra == ""all""; torchvision; extra == ""all""; codecarbon>=2.8.1; extra == ""all""; av; extra == ""all""; num2words; extra == ""all""; librosa; extra == ""audio""; pyctcdecode>=0.4.0; extra == ""audio""; phonemizer; extra == ""audio""; kenlm; extra == ""audio""; optimum-benchmark>=0.3.0; extra == ""benchmark""; codecarbon>=2.8.1; extra == ""codecarbon""; deepspeed>=0.9.3; extra == ""deepspeed""; accelerate>=0.26.0; extra == ""deepspeed""; deepspeed>=0.9.3; extra == ""deepspeed-testing""; accelerate>=0.26.0; extra == ""deepspeed-testing""; pytest>=7.2.0; extra == ""deepspeed-testing""; pytest-asyncio; extra == ""deepspeed-testing""; pytest-rich; extra == ""deepspeed-testing""; pytest-xdist; extra == ""deepspeed-testing""; pytest-order; extra == ""deepspeed-testing""; pytest-rerunfailures; extra == ""deepspeed-testing""; timeout-decorator; extra == ""deepspeed-testing""; parameterized; extra == ""deepspeed-testing""; psutil; extra == ""deepspeed-testing""; datasets!=2.5.0; extra == ""deepspeed-testing""; dill<0.3.5; extra == ""deepspeed-testing""; evaluate>=0.2.0; extra == ""deepspeed-testing""; pytest-timeout; extra == ""deepspeed-testing""; ruff==0.11.2; extra == ""deepspeed-testing""; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == ""deepspeed-testing""; nltk<=3.8.1; extra == ""deepspeed-testing""; GitPython<3.1.19; extra == ""deepspeed-testing""; sacremoses; extra == ""deepspeed-testing""; rjieba; extra == ""deepspeed-testing""; beautifulsoup4; extra == ""deepspeed-testing""; tensorboard; extra == ""deepspeed-testing""; pydantic; extra == ""deepspeed-testing""; sentencepiece!=0.1.92,>=0.1.91; extra == ""deepspeed-testing""; sacrebleu<2.0.0,>=1.4.12; extra == ""deepspeed-testing""; faiss-cpu; extra == ""deepspeed-testing""; cookiecutter==1.7.3; extra == ""deepspeed-testing""; optuna; extra == ""deepspeed-testing""; protobuf; extra == ""deepspeed-testing""; tensorflow<2.16,>2.9; extra == ""dev""; onnxconverter-common; extra == ""dev""; tf2onnx; extra == ""dev""; tensorflow-text<2.16; extra == ""dev""; keras-nlp<0.14.0,>=0.3.1; extra == ""dev""; torch<2.7,>=2.1; extra == ""dev""; accelerate>=0.26.0; extra == ""dev""; jax<=0.4.13,>=0.4.1; extra == ""dev""; jaxlib<=0.4.13,>=0.4.1; extra == ""dev""; flax<=0.7.0,>=0.4.1; extra == ""dev""; optax<=0.1.4,>=0.0.8; extra == ""dev""; scipy<1.13.0; extra == ""dev""; sentencepiece!=0.1.92,>=0.1.91; extra == ""dev""; protobuf; extra == ""dev""; tokenizers<0.22,>=0.21; extra == ""dev""; torchaudio; extra == ""dev""; librosa; extra == ""dev""; pyctcdecode>=0.4.0; extra == ""dev""; phonemizer; extra == ""dev""; kenlm; extra == ""dev""; Pillow<=15.0,>=10.0.1; extra == ""dev""; kernels<0.5,>=0.4.4; extra == ""dev""; optuna; extra == ""dev""; ray[tune]>=2.7.0; extra == ""dev""; sigopt; extra == ""dev""; timm<=1.0.11; extra == ""dev""; torchvision; extra == ""dev""; codecarbon>=2.8.1; extra == ""dev""; av; extra == ""dev""; num2words; extra == ""dev""; pytest>=7.2.0; extra == ""dev""; pytest-asyncio; extra == ""dev""; pytest-rich; extra == ""dev""; pytest-xdist; extra == ""dev""; pytest-order; extra == ""dev""; pytest-rerunfailures; extra == ""dev""; timeout-decorator; extra == ""dev""; parameterized; extra == ""dev""; psutil; extra == ""dev""; datasets!=2.5.0; extra == ""dev""; dill<0.3.5; extra == ""dev""; evaluate>=0.2.0; extra == ""dev""; pytest-timeout; extra == ""dev""; ruff==0.11.2; extra == ""dev""; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == ""dev""; nltk<=3.8.1; extra == ""dev""; GitPython<3.1.19; extra == ""dev""; sacremoses; extra == ""dev""; rjieba; extra == ""dev""; tensorboard; extra == ""dev""; pydantic; extra == ""dev""; sacrebleu<2.0.0,>=1.4.12; extra == ""dev""; faiss-cpu; extra == ""dev""; cookiecutter==1.7.3; extra == ""dev""; isort>=5.5.4; extra == ""dev""; urllib3<2.0.0; extra == ""dev""; libcst; extra == ""dev""; rich; extra == ""dev""; fugashi>=1.0; extra == ""dev""; ipadic<2.0,>=1.0.0; extra == ""dev""; unidic-lite>=1.0.7; extra == ""dev""; unidic>=1.0.2; extra == ""dev""; sudachipy>=0.6.6; extra == ""dev""; sudachidict-core>=20220729; extra == ""dev""; rhoknp<1.3.1,>=1.1.0; extra == ""dev""; scikit-learn; extra == ""dev""; pytest>=7.2.0; extra == ""dev-tensorflow""; pytest-asyncio; extra == ""dev-tensorflow""; pytest-rich; extra == ""dev-tensorflow""; pytest-xdist; extra == ""dev-tensorflow""; pytest-order; extra == ""dev-tensorflow""; pytest-rerunfailures; extra == ""dev-tensorflow""; timeout-decorator; extra == ""dev-tensorflow""; parameterized; extra == ""dev-tensorflow""; psutil; extra == ""dev-tensorflow""; datasets!=2.5.0; extra == ""dev-tensorflow""; dill<0.3.5; extra == ""dev-tensorflow""; evaluate>=0.2.0; extra == ""dev-tensorflow""; pytest-timeout; extra == ""dev-tensorflow""; ruff==0.11.2; extra == ""dev-tensorflow""; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == ""dev-tensorflow""; nltk<=3.8.1; extra == ""dev-tensorflow""; GitPython<3.1.19; extra == ""dev-tensorflow""; sacremoses; extra == ""dev-tensorflow""; rjieba; extra == ""dev-tensorflow""; beautifulsoup4; extra == ""dev-tensorflow""; tensorboard; extra == ""dev-tensorflow""; pydantic; extra == ""dev-tensorflow""; sentencepiece!=0.1.92,>=0.1.91; extra == ""dev-tensorflow""; sacrebleu<2.0.0,>=1.4.12; extra == ""dev-tensorflow""; faiss-cpu; extra == ""dev-tensorflow""; cookiecutter==1.7.3; extra == ""dev-tensorflow""; tensorflow<2.16,>2.9; extra == ""dev-tensorflow""; onnxconverter-common; extra == ""dev-tensorflow""; tf2onnx; extra == ""dev-tensorflow""; tensorflow-text<2.16; extra == ""dev-tensorflow""; keras-nlp<0.14.0,>=0.3.1; extra == ""dev-tensorflow""; protobuf; extra == ""dev-tensorflow""; tokenizers<0.22,>=0.21; extra == ""dev-tensorflow""; Pillow<=15.0,>=10.0.1; extra == ""dev-tensorflow""; isort>=5.5.4; extra == ""dev-tensorflow""; urllib3<2.0.0; extra == ""dev-tensorflow""; libcst; extra == ""dev-tensorflow""; rich; extra == ""dev-tensorflow""; scikit-learn; extra == ""dev-tensorflow""; onnxruntime>=1.4.0; extra == ""dev-tensorflow""; onnxruntime-tools>=1.4.2; extra == ""dev-tensorflow""; librosa; extra == ""dev-tensorflow""; pyctcdecode>=0.4.0; extra == ""dev-tensorflow""; phonemizer; extra == ""dev-tensorflow""; kenlm; extra == ""dev-tensorflow""; pytest>=7.2.0; extra == ""dev-torch""; pytest-asyncio; extra == ""dev-torch""; pytest-rich; extra == ""dev-torch""; pytest-xdist; extra == ""dev-torch""; pytest-order; extra == ""dev-torch""; pytest-rerunfailures; extra == ""dev-torch""; timeout-decorator; extra == ""dev-torch""; parameterized; extra == ""dev-torch""; psutil; extra == ""dev-torch""; datasets!=2.5.0; extra == ""dev-torch""; dill<0.3.5; extra == ""dev-torch""; evaluate>=0.2.0; extra == ""dev-torch""; pytest-timeout; extra == ""dev-torch""; ruff==0.11.2; extra == ""dev-torch""; isort>=5.5.4; extra == ""quality""; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == ""dev-torch""; nltk<=3.8.1; extra == ""dev-torch""; GitPython<3.1.19; extra == ""dev-torch""; sacremoses; extra == ""dev-torch""; rjieba; extra == ""dev-torch""; beautifulsoup4; extra == ""dev-torch""; tensorboard; extra == ""dev-torch""; pydantic; extra == ""dev-torch""; sentencepiece!=0.1.92,>=0.1.91; extra == ""dev-torch""; sacrebleu<2.0.0,>=1.4.12; extra == ""dev-torch""; faiss-cpu; extra == ""dev-torch""; cookiecutter==1.7.3; extra == ""dev-torch""; torch<2.7,>=2.1; extra == ""dev-torch""; accelerate>=0.26.0; extra == ""dev-torch""; protobuf; extra == ""dev-torch""; tokenizers<0.22,>=0.21; extra == ""dev-torch""; torchaudio; extra == ""dev-torch""; librosa; extra == ""dev-torch""; pyctcdecode>=0.4.0; extra == ""dev-torch""; phonemizer; extra == ""dev-torch""; kenlm; extra == ""dev-torch""; Pillow<=15.0,>=10.0.1; extra == ""dev-torch""; kernels<0.5,>=0.4.4; extra == ""dev-torch""; optuna; extra == ""dev-torch""; ray[tune]>=2.7.0; extra == ""dev-torch""; sigopt; extra == ""dev-torch""; timm<=1.0.11; extra == ""dev-torch""; torchvision; extra == ""dev-torch""; codecarbon>=2.8.1; extra == ""dev-torch""; isort>=5.5.4; extra == ""dev-torch""; urllib3<2.0.0; extra == ""dev-torch""; libcst; extra == ""dev-torch""; rich; extra == ""dev-torch""; fugashi>=1.0; extra == ""dev-torch""; ipadic<2.0,>=1.0.0; extra == ""dev-torch""; unidic-lite>=1.0.7; extra == ""dev-torch""; unidic>=1.0.2; extra == ""dev-torch""; sudachipy>=0.6.6; extra == ""dev-torch""; sudachidict-core>=20220729; extra == ""dev-torch""; rhoknp<1.3.1,>=1.1.0; extra == ""dev-torch""; scikit-learn; extra == ""dev-torch""; onnxruntime>=1.4.0; extra == ""dev-torch""; onnxruntime-tools>=1.4.2; extra == ""dev-torch""; num2words; extra == ""dev-torch""; jax<=0.4.13,>=0.4.1; extra == ""flax""; jaxlib<=0.4.13,>=0.4.1; extra == ""flax""; flax<=0.7.0,>=0.4.1; extra == ""flax""; optax<=0.1.4,>=0.0.8; extra == ""flax""; scipy<1.13.0; extra == ""flax""; librosa; extra == ""flax-speech""; pyctcdecode>=0.4.0; extra == ""flax-speech""; phonemizer; extra == ""flax-speech""; kenlm; extra == ""flax-speech""; ftfy; extra == ""ftfy""; hf-xet; extra == ""hf-xet""; kernels<0.5,>=0.4.4; extra == ""hub-kernels""; kernels<0.5,>=0.4.4; extra == ""integrations""; optuna; extra == ""integrations""; ray[tune]>=2.7.0; extra == ""integrations""; sigopt; extra == ""integrations""; fugashi>=1.0; extra == ""ja""; ipadic<2.0,>=1.0.0; extra == ""ja""; unidic-lite>=1.0.7; extra == ""ja""; unidic>=1.0.2; extra == ""ja""; sudachipy>=0.6.6; extra == ""ja""; sudachidict-core>=20220729; extra == ""ja""; rhoknp<1.3.1,>=1.1.0; extra == ""ja""; cookiecutter==1.7.3; extra == ""modelcreation""; natten<0.15.0,>=0.14.6; extra == ""natten""; num2words; extra == ""num2words""; onnxconverter-common; extra == ""onnx""; tf2onnx; extra == ""onnx""; onnxruntime>=1.4.0; extra == ""onnx""; onnxruntime-tools>=1.4.2; extra == ""onnx""; onnxruntime>=1.4.0; extra == ""onnxruntime""; onnxruntime-tools>=1.4.2; extra == ""onnxruntime""; optuna; extra == ""optuna""; datasets!=2.5.0; extra == ""quality""; ruff==0.11.2; extra == ""quality""; GitPython<3.1.19; extra == ""quality""; urllib3<2.0.0; extra == ""quality""; libcst; extra == ""quality""; rich; extra == ""quality""; ray[tune]>=2.7.0; extra == ""ray""; faiss-cpu; extra == ""retrieval""; datasets!=2.5.0; extra == ""retrieval""; ruff==0.11.2; extra == ""ruff""; sagemaker>=2.31.0; extra == ""sagemaker""; sentencepiece!=0.1.92,>=0.1.91; extra == ""sentencepiece""; protobuf; extra == ""sentencepiece""; pydantic; extra == ""serving""; uvicorn; extra == ""serving""; fastapi; extra == ""serving""; starlette; extra == ""serving""; sigopt; extra == ""sigopt""; scikit-learn; extra == ""sklearn""; torchaudio; extra == ""speech""; librosa; extra == ""speech""; pyctcdecode>=0.4.0; extra == ""speech""; phonemizer; extra == ""speech""; kenlm; extra == ""speech""; pytest>=7.2.0; extra == ""testing""; pytest-asyncio; extra == ""testing""; pytest-rich; extra == ""testing""; pytest-xdist; extra == ""testing""; pytest-order; extra == ""testing""; pytest-rerunfailures; extra == ""testing""; timeout-decorator; extra == ""testing""; parameterized; extra == ""testing""; psutil; extra == ""testing""; datasets!=2.5.0; extra == ""testing""; dill<0.3.5; extra == ""testing""; evaluate>=0.2.0; extra == ""testing""; pytest-timeout; extra == ""testing""; ruff==0.11.2; extra == ""testing""; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == ""testing""; nltk<=3.8.1; extra == ""testing""; GitPython<3.1.19; extra == ""testing""; sacremoses; extra == ""testing""; rjieba; extra == ""testing""; beautifulsoup4; extra == ""testing""; tensorboard; extra == ""testing""; pydantic; extra == ""testing""; sentencepiece!=0.1.92,>=0.1.91; extra == ""testing""; sacrebleu<2.0.0,>=1.4.12; extra == ""testing""; faiss-cpu; extra == ""testing""; cookiecutter==1.7.3; extra == ""testing""; tensorflow<2.16,>2.9; extra == ""tf""; onnxconverter-common; extra == ""tf""; tf2onnx; extra == ""tf""; tensorflow-text<2.16; extra == ""tf""; keras-nlp<0.14.0,>=0.3.1; extra == ""tf""; keras<2.16,>2.9; extra == ""tf-cpu""; tensorflow-cpu<2.16,>2.9; extra == ""tf-cpu""; onnxconverter-common; extra == ""tf-cpu""; tf2onnx; extra == ""tf-cpu""; tensorflow-text<2.16; extra == ""tf-cpu""; keras-nlp<0.14.0,>=0.3.1; extra == ""tf-cpu""; tensorflow-probability<0.24; extra == ""tf-cpu""; librosa; extra == ""tf-speech""; pyctcdecode>=0.4.0; extra == ""tf-speech""; phonemizer; extra == ""tf-speech""; kenlm; extra == ""tf-speech""; tiktoken; extra == ""tiktoken""; blobfile; extra == ""tiktoken""; timm<=1.0.11; extra == ""timm""; tokenizers<0.22,>=0.21; extra == ""tokenizers""; torch<2.7,>=2.1; extra == ""torch""; accelerate>=0.26.0; extra == ""torch""; torchaudio; extra == ""torch-speech""; librosa; extra == ""torch-speech""; pyctcdecode>=0.4.0; extra == ""torch-speech""; phonemizer; extra == ""torch-speech""; kenlm; extra == ""torch-speech""; torchvision; extra == ""torch-vision""; Pillow<=15.0,>=10.0.1; extra == ""torch-vision""; filelock; extra == ""torchhub""; huggingface-hub<1.0,>=0.30.0; extra == ""torchhub""; importlib-metadata; extra == ""torchhub""; numpy>=1.17; extra == ""torchhub""; packaging>=20.0; extra == ""torchhub""; protobuf; extra == ""torchhub""; regex!=2019.12.17; extra == ""torchhub""; requests; extra == ""torchhub""; sentencepiece!=0.1.92,>=0.1.91; extra == ""torchhub""; torch<2.7,>=2.1; extra == ""torchhub""; tokenizers<0.22,>=0.21; extra == ""torchhub""; tqdm>=4.27; extra == ""torchhub""; av; extra == ""video""; Pillow<=15.0,>=10.0.1; extra == ""vision""","4.46.1, 4.46.2, 4.46.3, 4.47.0, 4.47.1, 4.48.0, 4.48.1, 4.48.2, 4.48.3, 4.49.0, 4.50.0, 4.50.1, 4.50.2, 4.50.3, 4.51.0, 4.51.1, 4.51.2, 4.51.3, 4.52.0, 4.52.1, 4.52.2, 4.52.3, 4.52.4","beautifulsoup4; extra == ""dev""; filelock; huggingface-hub<1.0,>=0.30.0; numpy>=1.17; packaging>=20.0; pyyaml>=5.1; regex!=2019.12.17; requests; tokenizers<0.22,>=0.21; safetensors>=0.4.3; tqdm>=4.27; accelerate>=0.26.0; extra == ""accelerate""; tensorflow<2.16,>2.9; extra == ""all""; onnxconverter-common; extra == ""all""; tf2onnx; extra == ""all""; tensorflow-text<2.16; extra == ""all""; keras-nlp<0.14.0,>=0.3.1; extra == ""all""; torch<2.7,>=2.1; extra == ""all""; accelerate>=0.26.0; extra == ""all""; jax<=0.4.13,>=0.4.1; extra == ""all""; jaxlib<=0.4.13,>=0.4.1; extra == ""all""; flax<=0.7.0,>=0.4.1; extra == ""all""; optax<=0.1.4,>=0.0.8; extra == ""all""; scipy<1.13.0; extra == ""all""; sentencepiece!=0.1.92,>=0.1.91; extra == ""all""; protobuf; extra == ""all""; tokenizers<0.22,>=0.21; extra == ""all""; torchaudio; extra == ""all""; librosa; extra == ""all""; pyctcdecode>=0.4.0; extra == ""all""; phonemizer; extra == ""all""; kenlm; extra == ""all""; Pillow<=15.0,>=10.0.1; extra == ""all""; kernels<0.5,>=0.4.4; extra == ""all""; optuna; extra == ""all""; ray[tune]>=2.7.0; extra == ""all""; sigopt; extra == ""all""; timm<=1.0.11; extra == ""all""; torchvision; extra == ""all""; codecarbon>=2.8.1; extra == ""all""; av; extra == ""all""; num2words; extra == ""all""; librosa; extra == ""audio""; pyctcdecode>=0.4.0; extra == ""audio""; phonemizer; extra == ""audio""; kenlm; extra == ""audio""; optimum-benchmark>=0.3.0; extra == ""benchmark""; codecarbon>=2.8.1; extra == ""codecarbon""; deepspeed>=0.9.3; extra == ""deepspeed""; accelerate>=0.26.0; extra == ""deepspeed""; deepspeed>=0.9.3; extra == ""deepspeed-testing""; accelerate>=0.26.0; extra == ""deepspeed-testing""; pytest>=7.2.0; extra == ""deepspeed-testing""; pytest-asyncio; extra == ""deepspeed-testing""; pytest-rich; extra == ""deepspeed-testing""; pytest-xdist; extra == ""deepspeed-testing""; pytest-order; extra == ""deepspeed-testing""; pytest-rerunfailures; extra == ""deepspeed-testing""; timeout-decorator; extra == ""deepspeed-testing""; parameterized; extra == ""deepspeed-testing""; psutil; extra == ""deepspeed-testing""; datasets!=2.5.0; extra == ""deepspeed-testing""; dill<0.3.5; extra == ""deepspeed-testing""; evaluate>=0.2.0; extra == ""deepspeed-testing""; pytest-timeout; extra == ""deepspeed-testing""; ruff==0.11.2; extra == ""deepspeed-testing""; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == ""deepspeed-testing""; nltk<=3.8.1; extra == ""deepspeed-testing""; GitPython<3.1.19; extra == ""deepspeed-testing""; sacremoses; extra == ""deepspeed-testing""; rjieba; extra == ""deepspeed-testing""; beautifulsoup4; extra == ""deepspeed-testing""; tensorboard; extra == ""deepspeed-testing""; pydantic; extra == ""deepspeed-testing""; sentencepiece!=0.1.92,>=0.1.91; extra == ""deepspeed-testing""; sacrebleu<2.0.0,>=1.4.12; extra == ""deepspeed-testing""; faiss-cpu; extra == ""deepspeed-testing""; cookiecutter==1.7.3; extra == ""deepspeed-testing""; optuna; extra == ""deepspeed-testing""; protobuf; extra == ""deepspeed-testing""; tensorflow<2.16,>2.9; extra == ""dev""; onnxconverter-common; extra == ""dev""; tf2onnx; extra == ""dev""; tensorflow-text<2.16; extra == ""dev""; keras-nlp<0.14.0,>=0.3.1; extra == ""dev""; torch<2.7,>=2.1; extra == ""dev""; accelerate>=0.26.0; extra == ""dev""; jax<=0.4.13,>=0.4.1; extra == ""dev""; jaxlib<=0.4.13,>=0.4.1; extra == ""dev""; flax<=0.7.0,>=0.4.1; extra == ""dev""; optax<=0.1.4,>=0.0.8; extra == ""dev""; scipy<1.13.0; extra == ""dev""; sentencepiece!=0.1.92,>=0.1.91; extra == ""dev""; protobuf; extra == ""dev""; tokenizers<0.22,>=0.21; extra == ""dev""; torchaudio; extra == ""dev""; librosa; extra == ""dev""; pyctcdecode>=0.4.0; extra == ""dev""; phonemizer; extra == ""dev""; kenlm; extra == ""dev""; Pillow<=15.0,>=10.0.1; extra == ""dev""; kernels<0.5,>=0.4.4; extra == ""dev""; optuna; extra == ""dev""; ray[tune]>=2.7.0; extra == ""dev""; sigopt; extra == ""dev""; timm<=1.0.11; extra == ""dev""; torchvision; extra == ""dev""; codecarbon>=2.8.1; extra == ""dev""; av; extra == ""dev""; num2words; extra == ""dev""; pytest>=7.2.0; extra == ""dev""; pytest-asyncio; extra == ""dev""; pytest-rich; extra == ""dev""; pytest-xdist; extra == ""dev""; pytest-order; extra == ""dev""; pytest-rerunfailures; extra == ""dev""; timeout-decorator; extra == ""dev""; parameterized; extra == ""dev""; psutil; extra == ""dev""; datasets!=2.5.0; extra == ""dev""; dill<0.3.5; extra == ""dev""; evaluate>=0.2.0; extra == ""dev""; pytest-timeout; extra == ""dev""; ruff==0.11.2; extra == ""dev""; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == ""dev""; nltk<=3.8.1; extra == ""dev""; GitPython<3.1.19; extra == ""dev""; sacremoses; extra == ""dev""; rjieba; extra == ""dev""; tensorboard; extra == ""dev""; pydantic; extra == ""dev""; sacrebleu<2.0.0,>=1.4.12; extra == ""dev""; faiss-cpu; extra == ""dev""; cookiecutter==1.7.3; extra == ""dev""; isort>=5.5.4; extra == ""dev""; urllib3<2.0.0; extra == ""dev""; libcst; extra == ""dev""; rich; extra == ""dev""; fugashi>=1.0; extra == ""dev""; ipadic<2.0,>=1.0.0; extra == ""dev""; unidic-lite>=1.0.7; extra == ""dev""; unidic>=1.0.2; extra == ""dev""; sudachipy>=0.6.6; extra == ""dev""; sudachidict-core>=20220729; extra == ""dev""; rhoknp<1.3.1,>=1.1.0; extra == ""dev""; scikit-learn; extra == ""dev""; pytest>=7.2.0; extra == ""dev-tensorflow""; pytest-asyncio; extra == ""dev-tensorflow""; pytest-rich; extra == ""dev-tensorflow""; pytest-xdist; extra == ""dev-tensorflow""; pytest-order; extra == ""dev-tensorflow""; pytest-rerunfailures; extra == ""dev-tensorflow""; timeout-decorator; extra == ""dev-tensorflow""; parameterized; extra == ""dev-tensorflow""; psutil; extra == ""dev-tensorflow""; datasets!=2.5.0; extra == ""dev-tensorflow""; dill<0.3.5; extra == ""dev-tensorflow""; evaluate>=0.2.0; extra == ""dev-tensorflow""; pytest-timeout; extra == ""dev-tensorflow""; ruff==0.11.2; extra == ""dev-tensorflow""; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == ""dev-tensorflow""; nltk<=3.8.1; extra == ""dev-tensorflow""; GitPython<3.1.19; extra == ""dev-tensorflow""; sacremoses; extra == ""dev-tensorflow""; rjieba; extra == ""dev-tensorflow""; beautifulsoup4; extra == ""dev-tensorflow""; tensorboard; extra == ""dev-tensorflow""; pydantic; extra == ""dev-tensorflow""; sentencepiece!=0.1.92,>=0.1.91; extra == ""dev-tensorflow""; sacrebleu<2.0.0,>=1.4.12; extra == ""dev-tensorflow""; faiss-cpu; extra == ""dev-tensorflow""; cookiecutter==1.7.3; extra == ""dev-tensorflow""; tensorflow<2.16,>2.9; extra == ""dev-tensorflow""; onnxconverter-common; extra == ""dev-tensorflow""; tf2onnx; extra == ""dev-tensorflow""; tensorflow-text<2.16; extra == ""dev-tensorflow""; keras-nlp<0.14.0,>=0.3.1; extra == ""dev-tensorflow""; protobuf; extra == ""dev-tensorflow""; tokenizers<0.22,>=0.21; extra == ""dev-tensorflow""; Pillow<=15.0,>=10.0.1; extra == ""dev-tensorflow""; isort>=5.5.4; extra == ""dev-tensorflow""; urllib3<2.0.0; extra == ""dev-tensorflow""; libcst; extra == ""dev-tensorflow""; rich; extra == ""dev-tensorflow""; scikit-learn; extra == ""dev-tensorflow""; onnxruntime>=1.4.0; extra == ""dev-tensorflow""; onnxruntime-tools>=1.4.2; extra == ""dev-tensorflow""; librosa; extra == ""dev-tensorflow""; pyctcdecode>=0.4.0; extra == ""dev-tensorflow""; phonemizer; extra == ""dev-tensorflow""; kenlm; extra == ""dev-tensorflow""; pytest>=7.2.0; extra == ""dev-torch""; pytest-asyncio; extra == ""dev-torch""; pytest-rich; extra == ""dev-torch""; pytest-xdist; extra == ""dev-torch""; pytest-order; extra == ""dev-torch""; pytest-rerunfailures; extra == ""dev-torch""; timeout-decorator; extra == ""dev-torch""; parameterized; extra == ""dev-torch""; psutil; extra == ""dev-torch""; datasets!=2.5.0; extra == ""dev-torch""; dill<0.3.5; extra == ""dev-torch""; evaluate>=0.2.0; extra == ""dev-torch""; pytest-timeout; extra == ""dev-torch""; ruff==0.11.2; extra == ""dev-torch""; isort>=5.5.4; extra == ""quality""; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == ""dev-torch""; nltk<=3.8.1; extra == ""dev-torch""; GitPython<3.1.19; extra == ""dev-torch""; sacremoses; extra == ""dev-torch""; rjieba; extra == ""dev-torch""; beautifulsoup4; extra == ""dev-torch""; tensorboard; extra == ""dev-torch""; pydantic; extra == ""dev-torch""; sentencepiece!=0.1.92,>=0.1.91; extra == ""dev-torch""; sacrebleu<2.0.0,>=1.4.12; extra == ""dev-torch""; faiss-cpu; extra == ""dev-torch""; cookiecutter==1.7.3; extra == ""dev-torch""; torch<2.7,>=2.1; extra == ""dev-torch""; accelerate>=0.26.0; extra == ""dev-torch""; protobuf; extra == ""dev-torch""; tokenizers<0.22,>=0.21; extra == ""dev-torch""; torchaudio; extra == ""dev-torch""; librosa; extra == ""dev-torch""; pyctcdecode>=0.4.0; extra == ""dev-torch""; phonemizer; extra == ""dev-torch""; kenlm; extra == ""dev-torch""; Pillow<=15.0,>=10.0.1; extra == ""dev-torch""; kernels<0.5,>=0.4.4; extra == ""dev-torch""; optuna; extra == ""dev-torch""; ray[tune]>=2.7.0; extra == ""dev-torch""; sigopt; extra == ""dev-torch""; timm<=1.0.11; extra == ""dev-torch""; torchvision; extra == ""dev-torch""; codecarbon>=2.8.1; extra == ""dev-torch""; isort>=5.5.4; extra == ""dev-torch""; urllib3<2.0.0; extra == ""dev-torch""; libcst; extra == ""dev-torch""; rich; extra == ""dev-torch""; fugashi>=1.0; extra == ""dev-torch""; ipadic<2.0,>=1.0.0; extra == ""dev-torch""; unidic-lite>=1.0.7; extra == ""dev-torch""; unidic>=1.0.2; extra == ""dev-torch""; sudachipy>=0.6.6; extra == ""dev-torch""; sudachidict-core>=20220729; extra == ""dev-torch""; rhoknp<1.3.1,>=1.1.0; extra == ""dev-torch""; scikit-learn; extra == ""dev-torch""; onnxruntime>=1.4.0; extra == ""dev-torch""; onnxruntime-tools>=1.4.2; extra == ""dev-torch""; num2words; extra == ""dev-torch""; jax<=0.4.13,>=0.4.1; extra == ""flax""; jaxlib<=0.4.13,>=0.4.1; extra == ""flax""; flax<=0.7.0,>=0.4.1; extra == ""flax""; optax<=0.1.4,>=0.0.8; extra == ""flax""; scipy<1.13.0; extra == ""flax""; librosa; extra == ""flax-speech""; pyctcdecode>=0.4.0; extra == ""flax-speech""; phonemizer; extra == ""flax-speech""; kenlm; extra == ""flax-speech""; ftfy; extra == ""ftfy""; hf-xet; extra == ""hf-xet""; kernels<0.5,>=0.4.4; extra == ""hub-kernels""; kernels<0.5,>=0.4.4; extra == ""integrations""; optuna; extra == ""integrations""; ray[tune]>=2.7.0; extra == ""integrations""; sigopt; extra == ""integrations""; fugashi>=1.0; extra == ""ja""; ipadic<2.0,>=1.0.0; extra == ""ja""; unidic-lite>=1.0.7; extra == ""ja""; unidic>=1.0.2; extra == ""ja""; sudachipy>=0.6.6; extra == ""ja""; sudachidict-core>=20220729; extra == ""ja""; rhoknp<1.3.1,>=1.1.0; extra == ""ja""; cookiecutter==1.7.3; extra == ""modelcreation""; natten<0.15.0,>=0.14.6; extra == ""natten""; num2words; extra == ""num2words""; onnxconverter-common; extra == ""onnx""; tf2onnx; extra == ""onnx""; onnxruntime>=1.4.0; extra == ""onnx""; onnxruntime-tools>=1.4.2; extra == ""onnx""; onnxruntime>=1.4.0; extra == ""onnxruntime""; onnxruntime-tools>=1.4.2; extra == ""onnxruntime""; optuna; extra == ""optuna""; datasets!=2.5.0; extra == ""quality""; ruff==0.11.2; extra == ""quality""; GitPython<3.1.19; extra == ""quality""; urllib3<2.0.0; extra == ""quality""; libcst; extra == ""quality""; rich; extra == ""quality""; ray[tune]>=2.7.0; extra == ""ray""; faiss-cpu; extra == ""retrieval""; datasets!=2.5.0; extra == ""retrieval""; ruff==0.11.2; extra == ""ruff""; sagemaker>=2.31.0; extra == ""sagemaker""; sentencepiece!=0.1.92,>=0.1.91; extra == ""sentencepiece""; protobuf; extra == ""sentencepiece""; pydantic; extra == ""serving""; uvicorn; extra == ""serving""; fastapi; extra == ""serving""; starlette; extra == ""serving""; sigopt; extra == ""sigopt""; scikit-learn; extra == ""sklearn""; torchaudio; extra == ""speech""; librosa; extra == ""speech""; pyctcdecode>=0.4.0; extra == ""speech""; phonemizer; extra == ""speech""; kenlm; extra == ""speech""; pytest>=7.2.0; extra == ""testing""; pytest-asyncio; extra == ""testing""; pytest-rich; extra == ""testing""; pytest-xdist; extra == ""testing""; pytest-order; extra == ""testing""; pytest-rerunfailures; extra == ""testing""; timeout-decorator; extra == ""testing""; parameterized; extra == ""testing""; psutil; extra == ""testing""; datasets!=2.5.0; extra == ""testing""; dill<0.3.5; extra == ""testing""; evaluate>=0.2.0; extra == ""testing""; pytest-timeout; extra == ""testing""; ruff==0.11.2; extra == ""testing""; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == ""testing""; nltk<=3.8.1; extra == ""testing""; GitPython<3.1.19; extra == ""testing""; sacremoses; extra == ""testing""; rjieba; extra == ""testing""; beautifulsoup4; extra == ""testing""; tensorboard; extra == ""testing""; pydantic; extra == ""testing""; sentencepiece!=0.1.92,>=0.1.91; extra == ""testing""; sacrebleu<2.0.0,>=1.4.12; extra == ""testing""; faiss-cpu; extra == ""testing""; cookiecutter==1.7.3; extra == ""testing""; tensorflow<2.16,>2.9; extra == ""tf""; onnxconverter-common; extra == ""tf""; tf2onnx; extra == ""tf""; tensorflow-text<2.16; extra == ""tf""; keras-nlp<0.14.0,>=0.3.1; extra == ""tf""; keras<2.16,>2.9; extra == ""tf-cpu""; tensorflow-cpu<2.16,>2.9; extra == ""tf-cpu""; onnxconverter-common; extra == ""tf-cpu""; tf2onnx; extra == ""tf-cpu""; tensorflow-text<2.16; extra == ""tf-cpu""; keras-nlp<0.14.0,>=0.3.1; extra == ""tf-cpu""; tensorflow-probability<0.24; extra == ""tf-cpu""; librosa; extra == ""tf-speech""; pyctcdecode>=0.4.0; extra == ""tf-speech""; phonemizer; extra == ""tf-speech""; kenlm; extra == ""tf-speech""; tiktoken; extra == ""tiktoken""; blobfile; extra == ""tiktoken""; timm<=1.0.11; extra == ""timm""; tokenizers<0.22,>=0.21; extra == ""tokenizers""; torch<2.7,>=2.1; extra == ""torch""; accelerate>=0.26.0; extra == ""torch""; torchaudio; extra == ""torch-speech""; librosa; extra == ""torch-speech""; pyctcdecode>=0.4.0; extra == ""torch-speech""; phonemizer; extra == ""torch-speech""; kenlm; extra == ""torch-speech""; torchvision; extra == ""torch-vision""; Pillow<=15.0,>=10.0.1; extra == ""torch-vision""; filelock; extra == ""torchhub""; huggingface-hub<1.0,>=0.30.0; extra == ""torchhub""; importlib-metadata; extra == ""torchhub""; numpy>=1.17; extra == ""torchhub""; packaging>=20.0; extra == ""torchhub""; protobuf; extra == ""torchhub""; regex!=2019.12.17; extra == ""torchhub""; requests; extra == ""torchhub""; sentencepiece!=0.1.92,>=0.1.91; extra == ""torchhub""; torch<2.7,>=2.1; extra == ""torchhub""; tokenizers<0.22,>=0.21; extra == ""torchhub""; tqdm>=4.27; extra == ""torchhub""; av; extra == ""video""; Pillow<=15.0,>=10.0.1; extra == ""vision""",4.52.4,Yes,"CVE-2024-12720, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.48.0 +CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2024-11394, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2024-11392, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11393, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11392, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11393, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11394, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0",Yes,"4.49.0: CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0; 4.48.2: CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0; 4.47.1: CVE-2024-12720, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.48.0 +CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2024-11394, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2024-11392, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11393, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11392, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11393, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11394, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0; 4.48.1: CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0; 4.46.1: CVE-2024-12720, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.48.0 +CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2024-11394, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2024-11392, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11393, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11392, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11393, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11394, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0; 4.48.3: CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0; 4.46.3: CVE-2024-12720, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.48.0 +CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2024-11394, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2024-11392, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11393, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11392, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11393, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11394, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0; 4.47.0: CVE-2024-12720, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.48.0 +CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2024-11394, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2024-11392, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11393, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11392, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11393, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11394, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0; 4.48.0: CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0; 4.46.2: CVE-2024-12720, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.48.0 +CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2024-11394, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 +CVE-2024-11392, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11393, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11392, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11393, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2024-11394, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 +CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0",4.52.4,"{'base_package': 'transformers==4.52.4', 'dependencies': ['beautifulsoup4==4.13.4', 'filelock==3.18.0', 'huggingface-hub==0.33.0', 'numpy==1.26.4', 'packaging==20.9', 'pyyaml==5.4.1', 'requests==2.32.4', 'tokenizers==0.21.2', 'safetensors==0.6.0rc0', 'tqdm==4.67.1', 'accelerate==0.34.2', 'tensorflow==2.19.0', 'onnxconverter-common==1.14.0', 'tf2onnx==1.16.1', 'tensorflow-text==2.19.0', 'keras-nlp==0.21.1', 'jax==0.34.2', 'jaxlib==0.6.2', 'flax==0.6.2', 'optax==0.10.6', 'scipy==0.2.5', 'sentencepiece==1.16.0', 'protobuf==0.2.0', 'torchaudio==6.31.1', 'librosa==0.21.2', 'pyctcdecode==2.7.1', 'phonemizer==0.11.0', 'kenlm==0.5.0', 'Pillow==3.3.0', 'kernels==0.3.0', 'optuna==10.4.0', 'ray==0.6.2', 'sigopt==4.4.0', 'timm==2.47.1', 'torchvision==8.8.3', 'codecarbon==1.0.15', 'av==0.22.1', 'num2words==2.8.4', 'optimum-benchmark==14.4.0', 'deepspeed==0.5.14', 'pytest==0.11.0', 'pytest-asyncio==0.5.0', 'pytest-rich==3.3.0', 'pytest-xdist==0.3.0', 'pytest-order==0.5.0', 'pytest-rerunfailures==2.8.4', 'timeout-decorator==0.17.1', 'parameterized==0.34.2', 'psutil==0.17.1', 'datasets==0.34.2', 'dill==7.4.4', 'evaluate==1.0.0', 'pytest-timeout==0.2.0', 'ruff==3.7.0', 'rouge-score==1.3.0', 'nltk==15.1', 'GitPython==0.5.0', 'sacremoses==0.9.0', 'rjieba==7.0.0', 'tensorboard==3.6.0', 'pydantic==0.4.0', 'sacrebleu==0.4.4', 'faiss-cpu==2.4.0', 'cookiecutter==0.12.0', 'isort==0.1.2', 'libcst==3.1.44', 'rich==0.1.1', 'fugashi==0.1.13', 'ipadic==4.13.4', 'unidic-lite==2.19.0', 'unidic==2.11.7', 'sudachipy==0.2.0', 'sudachidict-core==1.5.1', 'rhoknp==1.11.0', 'onnxruntime==4.4.0', 'onnxruntime-tools==6.31.1', 'ftfy==2.19.0', 'hf-xet==1.14.0', 'natten==1.16.1', 'sagemaker==2.19.0', 'uvicorn==0.21.1', 'starlette==0.34.2', 'keras==0.6.2', 'tensorflow-cpu==0.6.2', 'tensorflow-probability==0.10.6', 'tiktoken==0.2.5', 'blobfile==1.16.0', 'importlib-metadata==0.2.0']}",Not Used +trio,Dependency Package,I&S,0.26.2,,"attrs>=23.2.0; sortedcontainers; idna; outcome; sniffio>=1.3.0; cffi>=1.14; os_name == ""nt"" and implementation_name != ""pypy""; exceptiongroup; python_version < ""3.11""","0.27.0, 0.28.0, 0.29.0, 0.30.0","attrs>=23.2.0; sortedcontainers; idna; outcome; sniffio>=1.3.0; cffi>=1.14; os_name == ""nt"" and implementation_name != ""pypy""; exceptiongroup; python_version < ""3.11""",0.30.0,No,,No,None,,, +trio-websocket,Dependency Package,I&S,0.11.1,,"outcome>=1.2.0; trio>=0.11; wsproto>=0.14; exceptiongroup; python_version < ""3.11""","0.12.0, 0.12.1, 0.12.2","outcome>=1.2.0; trio>=0.11; wsproto>=0.14; exceptiongroup; python_version < ""3.11""",0.12.2,No,,No,None,,, +trove-classifiers,Dependency Package,I&S,2024.9.12,,,"2024.10.11, 2024.10.12, 2024.10.13, 2024.10.16, 2024.10.21.16, 2025.1.6.15, 2025.1.7.14, 2025.1.10.15, 2025.1.15.22, 2025.2.18.16, 2025.3.3.18, 2025.3.13.13, 2025.3.19.19, 2025.4.11.15, 2025.4.28.22, 2025.5.1.12, 2025.5.7.19, 2025.5.8.13, 2025.5.8.15, 2025.5.9.12",,2025.5.9.12,No,,No,None,,, +tsdownsample,Dependency Package,I&S,0.1.3,,numpy,"0.1.4, 0.1.4.1rc0, 0.1.4.1",numpy,0.1.4.1,No,,No,None,,, +typeguard,Dependency Package,I&S,4.3.0,,"importlib_metadata>=3.6; python_version < ""3.10""; typing_extensions>=4.14.0","4.4.0, 4.4.1, 4.4.2, 4.4.3, 4.4.4","importlib_metadata>=3.6; python_version < ""3.10""; typing_extensions>=4.14.0",4.4.4,No,,No,None,,, +tzlocal,Dependency Package,I&S,5.2,,"tzdata; platform_system == ""Windows""; pytest>=4.3; extra == ""devenv""; pytest-mock>=3.3; extra == ""devenv""; pytest-cov; extra == ""devenv""; check-manifest; extra == ""devenv""; zest.releaser; extra == ""devenv""","5.3, 5.3.1","tzdata; platform_system == ""Windows""; pytest>=4.3; extra == ""devenv""; pytest-mock>=3.3; extra == ""devenv""; pytest-cov; extra == ""devenv""; check-manifest; extra == ""devenv""; zest.releaser; extra == ""devenv""",5.3.1,No,,No,None,,, +ujson,Dependency Package,I&S,5.10.0,,,,,5.10.0,No,,No,None,,, +unstructured-client,Dependency Package,I&S,0.25.8,,aiofiles>=24.1.0; cryptography>=3.1; httpx>=0.27.0; nest-asyncio>=1.6.0; pydantic>=2.11.2; pypdf>=4.0; requests-toolbelt>=1.0.0,"0.25.9, 0.26.0b1, 0.26.0b2, 0.26.0b3, 0.26.0b4, 0.26.0, 0.26.1, 0.26.2, 0.27.0, 0.28.0, 0.28.1, 0.29.0, 0.30.0b0, 0.30.0, 0.30.1, 0.30.2, 0.30.3, 0.30.4, 0.30.5, 0.30.6, 0.31.0, 0.31.1, 0.31.2, 0.31.3, 0.31.4, 0.31.5, 0.31.6, 0.32.0, 0.32.1, 0.32.2, 0.32.3, 0.32.4, 0.33.0, 0.33.1, 0.34.0, 0.35.0, 0.36.0, 0.37.1, 0.37.2",aiofiles>=24.1.0; cryptography>=3.1; httpx>=0.27.0; nest-asyncio>=1.6.0; pydantic>=2.11.2; pypdf>=4.0; requests-toolbelt>=1.0.0,0.37.2,No,,No,None,,, +url-normalize,Dependency Package,I&S,1.4.3,,"idna>=3.3; mypy; extra == ""dev""; pre-commit; extra == ""dev""; pytest-cov; extra == ""dev""; pytest-socket; extra == ""dev""; pytest; extra == ""dev""; ruff; extra == ""dev""","2.0.0, 2.0.1, 2.1.0, 2.2.0, 2.2.1","idna>=3.3; mypy; extra == ""dev""; pre-commit; extra == ""dev""; pytest-cov; extra == ""dev""; pytest-socket; extra == ""dev""; pytest; extra == ""dev""; ruff; extra == ""dev""",2.2.1,No,,No,None,,, +virtualenv,Dependency Package,I&S,20.27.0,,"distlib<1,>=0.3.7; filelock<4,>=3.12.2; importlib-metadata>=6.6; python_version < ""3.8""; platformdirs<5,>=3.9.1; furo>=2023.7.26; extra == ""docs""; proselint>=0.13; extra == ""docs""; sphinx!=7.3,>=7.1.2; extra == ""docs""; sphinx-argparse>=0.4; extra == ""docs""; sphinxcontrib-towncrier>=0.2.1a0; extra == ""docs""; towncrier>=23.6; extra == ""docs""; covdefaults>=2.3; extra == ""test""; coverage-enable-subprocess>=1; extra == ""test""; coverage>=7.2.7; extra == ""test""; flaky>=3.7; extra == ""test""; packaging>=23.1; extra == ""test""; pytest-env>=0.8.2; extra == ""test""; pytest-freezer>=0.4.8; (platform_python_implementation == ""PyPy"" or platform_python_implementation == ""GraalVM"" or (platform_python_implementation == ""CPython"" and sys_platform == ""win32"" and python_version >= ""3.13"")) and extra == ""test""; pytest-mock>=3.11.1; extra == ""test""; pytest-randomly>=3.12; extra == ""test""; pytest-timeout>=2.1; extra == ""test""; pytest>=7.4; extra == ""test""; setuptools>=68; extra == ""test""; time-machine>=2.10; platform_python_implementation == ""CPython"" and extra == ""test""","20.27.1, 20.28.0, 20.28.1, 20.29.0, 20.29.1, 20.29.2, 20.29.3, 20.30.0, 20.31.0, 20.31.1, 20.31.2","distlib<1,>=0.3.7; filelock<4,>=3.12.2; importlib-metadata>=6.6; python_version < ""3.8""; platformdirs<5,>=3.9.1; furo>=2023.7.26; extra == ""docs""; proselint>=0.13; extra == ""docs""; sphinx!=7.3,>=7.1.2; extra == ""docs""; sphinx-argparse>=0.4; extra == ""docs""; sphinxcontrib-towncrier>=0.2.1a0; extra == ""docs""; towncrier>=23.6; extra == ""docs""; covdefaults>=2.3; extra == ""test""; coverage-enable-subprocess>=1; extra == ""test""; coverage>=7.2.7; extra == ""test""; flaky>=3.7; extra == ""test""; packaging>=23.1; extra == ""test""; pytest-env>=0.8.2; extra == ""test""; pytest-freezer>=0.4.8; (platform_python_implementation == ""PyPy"" or platform_python_implementation == ""GraalVM"" or (platform_python_implementation == ""CPython"" and sys_platform == ""win32"" and python_version >= ""3.13"")) and extra == ""test""; pytest-mock>=3.11.1; extra == ""test""; pytest-randomly>=3.12; extra == ""test""; pytest-timeout>=2.1; extra == ""test""; pytest>=7.4; extra == ""test""; setuptools>=68; extra == ""test""; time-machine>=2.10; platform_python_implementation == ""CPython"" and extra == ""test""",20.31.2,No,,No,None,,, +Werkzeug,Dependency Package,I&S,3.0.4,,"MarkupSafe>=2.1.1; watchdog>=2.3; extra == ""watchdog""","3.0.5, 3.0.6, 3.1.0, 3.1.1, 3.1.2, 3.1.3","MarkupSafe>=2.1.1; watchdog>=2.3; extra == ""watchdog""",3.1.3,Yes,"CVE-2024-49766, CVSS_V4, Werkzeug safe_join not safe on Windows, CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N, affects: >=0,<3.0.6 +CVE-2024-49767, CVSS_V3, Werkzeug possible resource exhaustion when parsing file data in forms, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<3.0.6; >=0,<0.20.0",Yes,"3.0.5: CVE-2024-49766, CVSS_V4, Werkzeug safe_join not safe on Windows, CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N, affects: >=0,<3.0.6 +CVE-2024-49767, CVSS_V3, Werkzeug possible resource exhaustion when parsing file data in forms, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<3.0.6; >=0,<0.20.0",3.1.3,"{'base_package': 'Werkzeug==3.1.3', 'dependencies': ['MarkupSafe==2.1.5', 'watchdog==2.3.1']}",Not Used +wheel,Dependency Package,I&S,0.44.0,,"pytest>=6.0.0; extra == ""test""; setuptools>=65; extra == ""test""","0.45.0, 0.45.1, 0.46.0, 0.46.1","pytest>=6.0.0; extra == ""test""; setuptools>=65; extra == ""test""",0.46.1,No,,No,None,,, +widgetsnbextension,Dependency Package,I&S,4.0.13,,,4.0.14,,4.0.14,No,,No,None,,, +wsproto,Dependency Package,I&S,1.2.0,,"h11 (<1,>=0.9.0)",,"h11 (<1,>=0.9.0)",1.2.0,No,,No,None,,, +xxhash,Dependency Package,I&S,3.5.0,,,,,3.5.0,No,,No,None,,, +zstandard,Dependency Package,I&S,0.23.0,,"cffi>=1.11; platform_python_implementation == ""PyPy""; cffi>=1.11; extra == ""cffi""",,"cffi>=1.11; platform_python_implementation == ""PyPy""; cffi>=1.11; extra == ""cffi""",0.23.0,No,,No,None,,, diff --git a/WeeklyReport/2025-06-23/WeeklyReport_20250625_161301.html b/WeeklyReport/2025-06-23/WeeklyReport_20250625_161301.html new file mode 100644 index 0000000..719c490 --- /dev/null +++ b/WeeklyReport/2025-06-23/WeeklyReport_20250625_161301.html @@ -0,0 +1,43339 @@ + + +
+ +Report generated at 2025-06-25 16:22:58 +08
+ + + + + + + +| Package Name | + +Package Type | + +Custodian | + +Current Version | + +Current Version With Dependency JSON | + +Dependencies for Current | + +Newer Versions | + +Dependencies for Latest | + +Latest Version | + +Current Version Vulnerable? | + +Current Version Vulnerability Details | + +Upgrade Version Vulnerable? | + +Upgrade Vulnerability Details | + +Suggested Upgrade | + +Upgrade Instruction | + +Remarks | + +
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Package Name | + +Package Type | + +Custodian | + +Current Version | + +Current Version With Dependency JSON | + +Dependencies for Current | + +Newer Versions | + +Dependencies for Latest | + +Latest Version | + +Current Version Vulnerable? | + +Current Version Vulnerability Details | + +Upgrade Version Vulnerable? | + +Upgrade Vulnerability Details | + +Suggested Upgrade | + +Upgrade Instruction | + +Remarks | + +
| adlfs | + + + +Base Package | + + + +EY | + + + +2024.4.1 | + + + +{'base_package': 'adlfs==2024.4.1', 'dependencies': ['azure-core==1.28.0', 'azure-datalake-store==0.0.53', 'azure-storage-blob==12.17.0', 'fsspec==2023.12.0', 'aiohttp==3.7.0']} | + + + +azure-core<2.0.0,>=1.28.0; azure-datalake-store<0.1,>=0.0.53; azure-identity; azure-storage-blob>=12.17.0; fsspec>=2023.12.0; aiohttp>=3.7.0; sphinx; extra == "docs"; myst-parser; extra == "docs"; furo; extra == "docs"; numpydoc; extra == "docs"; pytest; extra == "tests"; docker; extra == "tests"; pytest-mock; extra == "tests"; arrow; extra == "tests"; dask[dataframe]; extra == "tests" | + + + +2024.7.0, 2024.12.0 | + + + +azure-core<2.0.0,>=1.28.0; azure-datalake-store<0.1,>=0.0.53; azure-identity; azure-storage-blob>=12.17.0; fsspec>=2023.12.0; aiohttp>=3.7.0; sphinx; extra == "docs"; myst-parser; extra == "docs"; furo; extra == "docs"; numpydoc; extra == "docs"; pytest; extra == "tests"; docker; extra == "tests"; pytest-mock; extra == "tests"; arrow; extra == "tests"; dask[dataframe]; extra == "tests" | + + + +2024.12.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| allennlp | + + + +Base Package | + + + +EY | + + + +2.10.1 | + + + +{'base_package': 'allennlp==2.10.1', 'dependencies': ['torch==1.10.0', 'torchvision==0.8.1', 'cached-path==1.1.3', 'fairscale==0.4.6', 'nltk==3.6.5', 'spacy==2.1.0', 'numpy==1.21.4', 'tensorboardX==1.2', 'requests==2.28', 'tqdm==4.62', 'h5py==3.6.0', 'scikit-learn==1.0.1', 'scipy==1.7.3', 'pytest==6.2.5', 'transformers==4.1', 'sentencepiece==0.1.96', 'filelock==3.3', 'lmdb==1.2.1', 'more-itertools==8.12.0', 'termcolor==1.1.0', 'wandb==0.10.0', 'huggingface-hub==0.0.16', 'dill==0.3.4', 'base58==2.1.1', 'typer==0.4.1', 'protobuf==3.12.0', 'traitlets==5.1.1', 'jsonnet==0.10.0', 'checklist==0.0.11', 'checklist==0.0.11', 'flake8==4.0.1', 'mypy==0.961', 'black==22.6.0', 'pytest-cov==3.0.0', 'coverage==6.4', 'codecov==2.1.12', 'matplotlib==2.2.3', 'responses==0.21', 'flaky==3.7.0', 'pytest-benchmark==3.4.1', 'ruamel.yaml==0.17.17', 'docspec==1.0.1', 'docspec-python==1.0.1', 'mkdocs==1.3.0', 'mkdocs-material==5.5.0', 'markdown-include==0.6.0', 'pymdown-extensions==9.5', 'twine==1.11.0']} | + + + +torch (<1.13.0,>=1.10.0); torchvision (<0.14.0,>=0.8.1); cached-path (<1.2.0,>=1.1.3); fairscale (==0.4.6); nltk (>=3.6.5); spacy (<3.4,>=2.1.0); numpy (>=1.21.4); tensorboardX (>=1.2); requests (>=2.28); tqdm (>=4.62); h5py (>=3.6.0); scikit-learn (>=1.0.1); scipy (>=1.7.3); pytest (>=6.2.5); transformers (<4.21,>=4.1); sentencepiece (>=0.1.96); filelock (<3.8,>=3.3); lmdb (>=1.2.1); more-itertools (>=8.12.0); termcolor (==1.1.0); wandb (<0.13.0,>=0.10.0); huggingface-hub (>=0.0.16); dill (>=0.3.4); base58 (>=2.1.1); sacremoses; typer (>=0.4.1); protobuf (<4.0.0,>=3.12.0); traitlets (>5.1.1); dataclasses ; python_version < "3.7"; jsonnet (>=0.10.0) ; sys_platform != "win32"; checklist (==0.0.11) ; extra == 'all'; checklist (==0.0.11) ; extra == 'checklist'; flake8 (>=4.0.1) ; extra == 'dev'; mypy (==0.961) ; extra == 'dev'; black (==22.6.0) ; extra == 'dev'; pytest-cov (>=3.0.0) ; extra == 'dev'; coverage[toml] (>=6.4) ; extra == 'dev'; codecov (>=2.1.12) ; extra == 'dev'; matplotlib (>=2.2.3) ; extra == 'dev'; responses (>=0.21) ; extra == 'dev'; flaky (>=3.7.0) ; extra == 'dev'; pytest-benchmark (>=3.4.1) ; extra == 'dev'; ruamel.yaml (>=0.17.17) ; extra == 'dev'; pydoc-markdown (<4.4.0) ; extra == 'dev'; databind.core (<=1.5.3) ; extra == 'dev'; databind-json (<=1.5.3) ; extra == 'dev'; docspec (<1.2.0,>1.0.1) ; extra == 'dev'; docspec-python (<1.2.0,>1.0.1) ; extra == 'dev'; mkdocs (==1.3.0) ; extra == 'dev'; mkdocs-material (<8.4.0,>=5.5.0) ; extra == 'dev'; markdown-include (==0.6.0) ; extra == 'dev'; pymdown-extensions (>=9.5) ; extra == 'dev'; twine (<5.0.0,>=1.11.0) ; extra == 'dev'; setuptools ; extra == 'dev'; wheel ; extra == 'dev' | + + + ++ + + + | torch (<1.13.0,>=1.10.0); torchvision (<0.14.0,>=0.8.1); cached-path (<1.2.0,>=1.1.3); fairscale (==0.4.6); nltk (>=3.6.5); spacy (<3.4,>=2.1.0); numpy (>=1.21.4); tensorboardX (>=1.2); requests (>=2.28); tqdm (>=4.62); h5py (>=3.6.0); scikit-learn (>=1.0.1); scipy (>=1.7.3); pytest (>=6.2.5); transformers (<4.21,>=4.1); sentencepiece (>=0.1.96); filelock (<3.8,>=3.3); lmdb (>=1.2.1); more-itertools (>=8.12.0); termcolor (==1.1.0); wandb (<0.13.0,>=0.10.0); huggingface-hub (>=0.0.16); dill (>=0.3.4); base58 (>=2.1.1); sacremoses; typer (>=0.4.1); protobuf (<4.0.0,>=3.12.0); traitlets (>5.1.1); dataclasses ; python_version < "3.7"; jsonnet (>=0.10.0) ; sys_platform != "win32"; checklist (==0.0.11) ; extra == 'all'; checklist (==0.0.11) ; extra == 'checklist'; flake8 (>=4.0.1) ; extra == 'dev'; mypy (==0.961) ; extra == 'dev'; black (==22.6.0) ; extra == 'dev'; pytest-cov (>=3.0.0) ; extra == 'dev'; coverage[toml] (>=6.4) ; extra == 'dev'; codecov (>=2.1.12) ; extra == 'dev'; matplotlib (>=2.2.3) ; extra == 'dev'; responses (>=0.21) ; extra == 'dev'; flaky (>=3.7.0) ; extra == 'dev'; pytest-benchmark (>=3.4.1) ; extra == 'dev'; ruamel.yaml (>=0.17.17) ; extra == 'dev'; pydoc-markdown (<4.4.0) ; extra == 'dev'; databind.core (<=1.5.3) ; extra == 'dev'; databind-json (<=1.5.3) ; extra == 'dev'; docspec (<1.2.0,>1.0.1) ; extra == 'dev'; docspec-python (<1.2.0,>1.0.1) ; extra == 'dev'; mkdocs (==1.3.0) ; extra == 'dev'; mkdocs-material (<8.4.0,>=5.5.0) ; extra == 'dev'; markdown-include (==0.6.0) ; extra == 'dev'; pymdown-extensions (>=9.5) ; extra == 'dev'; twine (<5.0.0,>=1.11.0) ; extra == 'dev'; setuptools ; extra == 'dev'; wheel ; extra == 'dev' | + + + +2.10.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| artifacts-keyring | + + + +Base Package | + + + +EY | + + + +0.4.0 | + + + +{'base_package': 'artifacts-keyring==0.4.0', 'dependencies': ['keyring==16.0', 'requests==2.20.0']} | + + + +keyring>=16.0; requests>=2.20.0 | + + + ++ + + + | keyring>=16.0; requests>=2.20.0 | + + + +0.4.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| async-timeout | + + + +Base Package | + + + +EY | + + + +4.0.3 | + + + +{'base_package': 'async-timeout==4.0.3', 'dependencies': []} | + + + ++ + + + | 5.0.0, 5.0.1 | + + + ++ + + + | 5.0.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-keyvault-secrets | + + + +Base Package | + + + +EY | + + + +4.8.0 | + + + +{'base_package': 'azure-keyvault-secrets==4.8.0', 'dependencies': ['isodate==0.6.1', 'azure-core==1.31.0', 'typing-extensions==4.6.0']} | + + + +isodate>=0.6.1; azure-core>=1.31.0; typing-extensions>=4.6.0 | + + + +4.9.0, 4.10.0b1, 4.10.0 | + + + +isodate>=0.6.1; azure-core>=1.31.0; typing-extensions>=4.6.0 | + + + +4.10.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azureml-featurestore | + + + +Base Package | + + + +EY | + + + +1.1.0 | + + + +{'base_package': 'azureml-featurestore==1.1.0', 'dependencies': ['azure-ai-ml==1.14.0', 'mltable==1.5.0', 'jinja2==3.1.2', 'marshmallow==3.18.0', 'pandas==1.5.3', 'azure-mgmt-redis==14.1.0', 'pyarrow==9.0.0', 'redis==4.5.1', 'msgpack==1.0.5']} | + + + +azure-ai-ml<2.0.0,>=1.14.0; mltable<2.0.0,>=1.5.0; jinja2<4.0.0,>=3.1.2; marshmallow<4.0.0,>=3.18.0; pandas>=1.5.3; azure-identity; extra == "online"; azure-mgmt-redis<15.0.0,>=14.1.0; extra == "online"; pyarrow>=9.0.0; extra == "online"; redis>=4.5.1; extra == "online"; msgpack<2.0.0,>=1.0.5; extra == "online" | + + + +1.1.1, 1.1.2 | + + + +azure-ai-ml<2.0.0,>=1.14.0; mltable<2.0.0,>=1.5.0; jinja2<4.0.0,>=3.1.2; marshmallow<4.0.0,>=3.18.0; pandas>=1.5.3; azure-identity; extra == "online"; azure-mgmt-redis<15.0.0,>=14.1.0; extra == "online"; pyarrow>=9.0.0; extra == "online"; redis>=4.5.1; extra == "online"; msgpack<2.0.0,>=1.0.5; extra == "online" | + + + +1.1.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azureml-fsspec | + + + +Base Package | + + + +EY | + + + +1.3.1 | + + + +{'base_package': 'azureml-fsspec==1.3.1', 'dependencies': ['azureml-dataprep==5.1.0a', 'fsspec==2021.6.1']} | + + + +azureml-dataprep <5.2.0a,>=5.1.0a; fsspec <=2023.10.0,>=2021.6.1; pytz | + + + ++ + + + | azureml-dataprep <5.2.0a,>=5.1.0a; fsspec <=2023.10.0,>=2021.6.1; pytz | + + + +1.3.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azureml-interpret | + + + +Base Package | + + + +EY | + + + +1.58.0 | + + + +{'base_package': 'azureml-interpret==1.58.0', 'dependencies': ['azureml-core==1.60.0']} | + + + +interpret-community==0.31.*; numba<=0.56.4; python_version < "3.11"; numba<=0.58.1; python_version >= "3.11"; numpy<=1.21.6; python_version < "3.8"; numpy<=1.23.5; python_version >= "3.8"; azureml-core~=1.60.0; interpret-community[sample]; extra == "sample"; interpret-community[deep]; extra == "deep"; interpret-community[mimic]; extra == "mimic" | + + + +1.59.0, 1.60.0 | + + + +interpret-community==0.31.*; numba<=0.56.4; python_version < "3.11"; numba<=0.58.1; python_version >= "3.11"; numpy<=1.21.6; python_version < "3.8"; numpy<=1.23.5; python_version >= "3.8"; azureml-core~=1.60.0; interpret-community[sample]; extra == "sample"; interpret-community[deep]; extra == "deep"; interpret-community[mimic]; extra == "mimic" | + + + +1.60.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| backports.tempfile | + + + +Base Package | + + + +EY | + + + +1 | + + + +{'base_package': 'backports.tempfile==1', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| backports.weakref | + + + +Base Package | + + + +EY | + + + +1.0.post1 | + + + +{'base_package': 'backports.weakref==1.0.post1', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 1.0.post1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| beanie | + + + +Base Package | + + + +EY | + + + +1.26.0 | + + + +{'base_package': 'beanie==1.26.0', 'dependencies': ['pydantic==1.10.18', 'motor==2.5.0', 'click==7', 'tomli==2.2.1', 'lazy-model==0.2.0', 'typing-extensions==4.7', 'motor==2.5.0', 'tomli==2.2.1', 'tomli-w==1.0.0', 'Pygments==2.8.0', 'Markdown==3.3', 'pydoc-markdown==4.8', 'mkdocs==1.4', 'mkdocs-material==9.0', 'jinja2==3.0.3', 'motor==2.5.0', 'motor==2.5.0', 'motor==2.5.0', 'beanie-batteries-queue==0.2', 'motor==2.5.0', 'pre-commit==3.5.0', 'pytest==8.3.3', 'pytest-asyncio==0.24.0', 'pytest-cov==5.0.0', 'dnspython==2.1.0', 'pyright==0', 'asgi-lifespan==1.0.1', 'httpx==0.23.0', 'fastapi==0.100', 'pydantic-settings==2', 'pydantic-extra-types==2', 'motor==2.5.0']} | + + + +pydantic<3.0,>=1.10.18; motor<4.0.0,>=2.5.0; click>=7; tomli<3.0.0,>=2.2.1; python_version < "3.11"; lazy-model==0.2.0; typing-extensions>=4.7; motor[aws]<4.0.0,>=2.5.0; extra == "aws"; tomli<3.0.0,>=2.2.1; extra == "ci" and python_version < "3.11"; tomli-w<2.0.0,>=1.0.0; extra == "ci"; requests; extra == "ci"; types-requests; extra == "ci"; Pygments>=2.8.0; extra == "doc"; Markdown>=3.3; extra == "doc"; pydoc-markdown>=4.8; extra == "doc"; mkdocs>=1.4; extra == "doc"; mkdocs-material>=9.0; extra == "doc"; jinja2>=3.0.3; extra == "doc"; motor[encryption]<4.0.0,>=2.5.0; extra == "encryption"; motor[gssapi]<4.0.0,>=2.5.0; extra == "gssapi"; motor[ocsp]<4.0.0,>=2.5.0; extra == "ocsp"; beanie-batteries-queue>=0.2; extra == "queue"; motor[snappy]<4.0.0,>=2.5.0; extra == "snappy"; pre-commit>=3.5.0; extra == "test"; pytest>=8.3.3; extra == "test"; pytest-asyncio>=0.24.0; extra == "test"; pytest-cov>=5.0.0; extra == "test"; dnspython>=2.1.0; extra == "test"; pyright>=0; extra == "test"; asgi-lifespan>=1.0.1; extra == "test"; httpx>=0.23.0; extra == "test"; fastapi>=0.100; extra == "test"; pydantic-settings>=2; extra == "test"; pydantic-extra-types>=2; extra == "test"; pydantic[email]; extra == "test"; motor[zstd]<4.0.0,>=2.5.0; extra == "zstd" | + + + +1.27.0, 1.28.0, 1.29.0, 1.30.0 | + + + +pydantic<3.0,>=1.10.18; motor<4.0.0,>=2.5.0; click>=7; tomli<3.0.0,>=2.2.1; python_version < "3.11"; lazy-model==0.2.0; typing-extensions>=4.7; motor[aws]<4.0.0,>=2.5.0; extra == "aws"; tomli<3.0.0,>=2.2.1; extra == "ci" and python_version < "3.11"; tomli-w<2.0.0,>=1.0.0; extra == "ci"; requests; extra == "ci"; types-requests; extra == "ci"; Pygments>=2.8.0; extra == "doc"; Markdown>=3.3; extra == "doc"; pydoc-markdown>=4.8; extra == "doc"; mkdocs>=1.4; extra == "doc"; mkdocs-material>=9.0; extra == "doc"; jinja2>=3.0.3; extra == "doc"; motor[encryption]<4.0.0,>=2.5.0; extra == "encryption"; motor[gssapi]<4.0.0,>=2.5.0; extra == "gssapi"; motor[ocsp]<4.0.0,>=2.5.0; extra == "ocsp"; beanie-batteries-queue>=0.2; extra == "queue"; motor[snappy]<4.0.0,>=2.5.0; extra == "snappy"; pre-commit>=3.5.0; extra == "test"; pytest>=8.3.3; extra == "test"; pytest-asyncio>=0.24.0; extra == "test"; pytest-cov>=5.0.0; extra == "test"; dnspython>=2.1.0; extra == "test"; pyright>=0; extra == "test"; asgi-lifespan>=1.0.1; extra == "test"; httpx>=0.23.0; extra == "test"; fastapi>=0.100; extra == "test"; pydantic-settings>=2; extra == "test"; pydantic-extra-types>=2; extra == "test"; pydantic[email]; extra == "test"; motor[zstd]<4.0.0,>=2.5.0; extra == "zstd" | + + + +1.30.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| bert-score | + + + +Base Package | + + + +EY | + + + +0.3.13 | + + + +{'base_package': 'bert-score==0.3.13', 'dependencies': ['torch==1.0.0', 'pandas==1.0.1', 'transformers==3.0.0', 'tqdm==4.31.1', 'packaging==20.9']} | + + + +torch (>=1.0.0); pandas (>=1.0.1); transformers (>=3.0.0); numpy; requests; tqdm (>=4.31.1); matplotlib; packaging (>=20.9) | + + + ++ + + + | torch (>=1.0.0); pandas (>=1.0.1); transformers (>=3.0.0); numpy; requests; tqdm (>=4.31.1); matplotlib; packaging (>=20.9) | + + + +0.3.13 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| black | + + + +Base Package | + + + +EY | + + + +24.4.2 | + + + +{'base_package': 'black==24.4.2', 'dependencies': ['click==8.0.0', 'mypy-extensions==0.4.3', 'packaging==22.0', 'pathspec==0.9.0', 'platformdirs==2', 'tomli==1.1.0', 'typing-extensions==4.0.1', 'colorama==0.4.3', 'aiohttp==3.10', 'ipython==7.8.0', 'tokenize-rt==3.2.0', 'uvloop==0.15.2']} | + + + +click>=8.0.0; mypy-extensions>=0.4.3; packaging>=22.0; pathspec>=0.9.0; platformdirs>=2; tomli>=1.1.0; python_version < "3.11"; typing-extensions>=4.0.1; python_version < "3.11"; colorama>=0.4.3; extra == "colorama"; aiohttp>=3.10; extra == "d"; ipython>=7.8.0; extra == "jupyter"; tokenize-rt>=3.2.0; extra == "jupyter"; uvloop>=0.15.2; extra == "uvloop" | + + + +24.8.0, 24.10.0, 25.1.0 | + + + +click>=8.0.0; mypy-extensions>=0.4.3; packaging>=22.0; pathspec>=0.9.0; platformdirs>=2; tomli>=1.1.0; python_version < "3.11"; typing-extensions>=4.0.1; python_version < "3.11"; colorama>=0.4.3; extra == "colorama"; aiohttp>=3.10; extra == "d"; ipython>=7.8.0; extra == "jupyter"; tokenize-rt>=3.2.0; extra == "jupyter"; uvloop>=0.15.2; extra == "uvloop" | + + + +25.1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| bs4 | + + + +Base Package | + + + +EY | + + + +0.0.2 | + + + +{'base_package': 'bs4==0.0.2', 'dependencies': []} | + + + +beautifulsoup4 | + + + ++ + + + | beautifulsoup4 | + + + +0.0.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| datasets | + + + +Base Package | + + + +EY | + + + +2.19.1 | + + + +{'base_package': 'datasets==2.19.1', 'dependencies': ['numpy==1.17', 'pyarrow==15.0.0', 'dill==0.3.0', 'requests==2.32.2', 'tqdm==4.66.3', 'fsspec==2023.1.0', 'huggingface-hub==0.24.0', 'pyyaml==5.1', 'soundfile==0.12.1', 'soxr==0.4.0', 'Pillow==9.4.0', 'tensorflow==2.6.0', 'tensorflow==2.6.0', 'jax==0.3.14', 'jaxlib==0.3.14', 'elasticsearch==7.17.12', 'faiss-cpu==1.8.0.post1', 'jax==0.3.14', 'jaxlib==0.3.14', 'pyspark==3.4', 'rarfile==4.0', 's3fs==2021.11.1', 'tensorflow==2.6.0', 'tensorflow==2.16.0', 'torch==2.0.0', 'soundfile==0.12.1', 'transformers==4.42.0', 'polars==0.20.0', 'Pillow==9.4.0', 'soundfile==0.12.1', 'soxr==0.4.0', 'ruff==0.3.0', 'tensorflow==2.6.0', 'elasticsearch==7.17.12', 'faiss-cpu==1.8.0.post1', 'jax==0.3.14', 'jaxlib==0.3.14', 'pyspark==3.4', 'rarfile==4.0', 's3fs==2021.11.1', 'tensorflow==2.6.0', 'tensorflow==2.16.0', 'torch==2.0.0', 'soundfile==0.12.1', 'transformers==4.42.0', 'polars==0.20.0', 'Pillow==9.4.0', 'soundfile==0.12.1', 'soxr==0.4.0', 'elasticsearch==7.17.12', 'jax==0.3.14', 'jaxlib==0.3.14', 'pyspark==3.4', 'rarfile==4.0', 's3fs==2021.11.1', 'torch==2.0.0', 'soundfile==0.12.1', 'transformers==4.42.0', 'polars==0.20.0', 'Pillow==9.4.0', 'soundfile==0.12.1', 'soxr==0.4.0', 'ruff==0.3.0', 'tensorflow==2.12.0', 'torch==2.0.1', 'transformers==4.30.1', 'tensorflow==2.6.0', 'pdfplumber==0.11.4']} | + + + +filelock; numpy>=1.17; pyarrow>=15.0.0; dill<0.3.9,>=0.3.0; pandas; requests>=2.32.2; tqdm>=4.66.3; xxhash; multiprocess<0.70.17; fsspec[http]<=2025.3.0,>=2023.1.0; huggingface-hub>=0.24.0; packaging; pyyaml>=5.1; soundfile>=0.12.1; extra == "audio"; librosa; extra == "audio"; soxr>=0.4.0; extra == "audio"; Pillow>=9.4.0; extra == "vision"; tensorflow>=2.6.0; extra == "tensorflow"; tensorflow>=2.6.0; extra == "tensorflow-gpu"; torch; extra == "torch"; jax>=0.3.14; extra == "jax"; jaxlib>=0.3.14; extra == "jax"; s3fs; extra == "s3"; absl-py; extra == "dev"; decorator; extra == "dev"; joblib<1.3.0; extra == "dev"; joblibspark; extra == "dev"; pytest; extra == "dev"; pytest-datadir; extra == "dev"; pytest-xdist; extra == "dev"; aiohttp; extra == "dev"; elasticsearch<8.0.0,>=7.17.12; extra == "dev"; faiss-cpu>=1.8.0.post1; extra == "dev"; jax>=0.3.14; sys_platform != "win32" and extra == "dev"; jaxlib>=0.3.14; sys_platform != "win32" and extra == "dev"; lz4; extra == "dev"; moto[server]; extra == "dev"; pyspark>=3.4; extra == "dev"; py7zr; extra == "dev"; rarfile>=4.0; extra == "dev"; sqlalchemy; extra == "dev"; s3fs>=2021.11.1; extra == "dev"; protobuf<4.0.0; extra == "dev"; tensorflow>=2.6.0; python_version < "3.10" and extra == "dev"; tensorflow>=2.16.0; python_version >= "3.10" and extra == "dev"; tiktoken; extra == "dev"; torch>=2.0.0; extra == "dev"; torchdata; extra == "dev"; soundfile>=0.12.1; extra == "dev"; transformers>=4.42.0; extra == "dev"; zstandard; extra == "dev"; polars[timezone]>=0.20.0; extra == "dev"; torchvision; extra == "dev"; pyav; extra == "dev"; Pillow>=9.4.0; extra == "dev"; soundfile>=0.12.1; extra == "dev"; librosa; extra == "dev"; soxr>=0.4.0; extra == "dev"; ruff>=0.3.0; extra == "dev"; s3fs; extra == "dev"; transformers; extra == "dev"; torch; extra == "dev"; tensorflow>=2.6.0; extra == "dev"; absl-py; extra == "tests"; decorator; extra == "tests"; joblib<1.3.0; extra == "tests"; joblibspark; extra == "tests"; pytest; extra == "tests"; pytest-datadir; extra == "tests"; pytest-xdist; extra == "tests"; aiohttp; extra == "tests"; elasticsearch<8.0.0,>=7.17.12; extra == "tests"; faiss-cpu>=1.8.0.post1; extra == "tests"; jax>=0.3.14; sys_platform != "win32" and extra == "tests"; jaxlib>=0.3.14; sys_platform != "win32" and extra == "tests"; lz4; extra == "tests"; moto[server]; extra == "tests"; pyspark>=3.4; extra == "tests"; py7zr; extra == "tests"; rarfile>=4.0; extra == "tests"; sqlalchemy; extra == "tests"; s3fs>=2021.11.1; extra == "tests"; protobuf<4.0.0; extra == "tests"; tensorflow>=2.6.0; python_version < "3.10" and extra == "tests"; tensorflow>=2.16.0; python_version >= "3.10" and extra == "tests"; tiktoken; extra == "tests"; torch>=2.0.0; extra == "tests"; torchdata; extra == "tests"; soundfile>=0.12.1; extra == "tests"; transformers>=4.42.0; extra == "tests"; zstandard; extra == "tests"; polars[timezone]>=0.20.0; extra == "tests"; torchvision; extra == "tests"; pyav; extra == "tests"; Pillow>=9.4.0; extra == "tests"; soundfile>=0.12.1; extra == "tests"; librosa; extra == "tests"; soxr>=0.4.0; extra == "tests"; absl-py; extra == "tests-numpy2"; decorator; extra == "tests-numpy2"; joblib<1.3.0; extra == "tests-numpy2"; joblibspark; extra == "tests-numpy2"; pytest; extra == "tests-numpy2"; pytest-datadir; extra == "tests-numpy2"; pytest-xdist; extra == "tests-numpy2"; aiohttp; extra == "tests-numpy2"; elasticsearch<8.0.0,>=7.17.12; extra == "tests-numpy2"; jax>=0.3.14; sys_platform != "win32" and extra == "tests-numpy2"; jaxlib>=0.3.14; sys_platform != "win32" and extra == "tests-numpy2"; lz4; extra == "tests-numpy2"; moto[server]; extra == "tests-numpy2"; pyspark>=3.4; extra == "tests-numpy2"; py7zr; extra == "tests-numpy2"; rarfile>=4.0; extra == "tests-numpy2"; sqlalchemy; extra == "tests-numpy2"; s3fs>=2021.11.1; extra == "tests-numpy2"; protobuf<4.0.0; extra == "tests-numpy2"; tiktoken; extra == "tests-numpy2"; torch>=2.0.0; extra == "tests-numpy2"; torchdata; extra == "tests-numpy2"; soundfile>=0.12.1; extra == "tests-numpy2"; transformers>=4.42.0; extra == "tests-numpy2"; zstandard; extra == "tests-numpy2"; polars[timezone]>=0.20.0; extra == "tests-numpy2"; torchvision; extra == "tests-numpy2"; pyav; extra == "tests-numpy2"; Pillow>=9.4.0; extra == "tests-numpy2"; soundfile>=0.12.1; extra == "tests-numpy2"; soxr>=0.4.0; extra == "tests-numpy2"; ruff>=0.3.0; extra == "quality"; tensorflow==2.12.0; extra == "benchmarks"; torch==2.0.1; extra == "benchmarks"; transformers==4.30.1; extra == "benchmarks"; s3fs; extra == "docs"; transformers; extra == "docs"; torch; extra == "docs"; tensorflow>=2.6.0; extra == "docs"; pdfplumber>=0.11.4; extra == "pdfs" | + + + +2.19.2, 2.20.0, 2.21.0, 3.0.0, 3.0.1, 3.0.2, 3.1.0, 3.2.0, 3.3.0, 3.3.1, 3.3.2, 3.4.0, 3.4.1, 3.5.0, 3.5.1, 3.6.0 | + + + +filelock; numpy>=1.17; pyarrow>=15.0.0; dill<0.3.9,>=0.3.0; pandas; requests>=2.32.2; tqdm>=4.66.3; xxhash; multiprocess<0.70.17; fsspec[http]<=2025.3.0,>=2023.1.0; huggingface-hub>=0.24.0; packaging; pyyaml>=5.1; soundfile>=0.12.1; extra == "audio"; librosa; extra == "audio"; soxr>=0.4.0; extra == "audio"; Pillow>=9.4.0; extra == "vision"; tensorflow>=2.6.0; extra == "tensorflow"; tensorflow>=2.6.0; extra == "tensorflow-gpu"; torch; extra == "torch"; jax>=0.3.14; extra == "jax"; jaxlib>=0.3.14; extra == "jax"; s3fs; extra == "s3"; absl-py; extra == "dev"; decorator; extra == "dev"; joblib<1.3.0; extra == "dev"; joblibspark; extra == "dev"; pytest; extra == "dev"; pytest-datadir; extra == "dev"; pytest-xdist; extra == "dev"; aiohttp; extra == "dev"; elasticsearch<8.0.0,>=7.17.12; extra == "dev"; faiss-cpu>=1.8.0.post1; extra == "dev"; jax>=0.3.14; sys_platform != "win32" and extra == "dev"; jaxlib>=0.3.14; sys_platform != "win32" and extra == "dev"; lz4; extra == "dev"; moto[server]; extra == "dev"; pyspark>=3.4; extra == "dev"; py7zr; extra == "dev"; rarfile>=4.0; extra == "dev"; sqlalchemy; extra == "dev"; s3fs>=2021.11.1; extra == "dev"; protobuf<4.0.0; extra == "dev"; tensorflow>=2.6.0; python_version < "3.10" and extra == "dev"; tensorflow>=2.16.0; python_version >= "3.10" and extra == "dev"; tiktoken; extra == "dev"; torch>=2.0.0; extra == "dev"; torchdata; extra == "dev"; soundfile>=0.12.1; extra == "dev"; transformers>=4.42.0; extra == "dev"; zstandard; extra == "dev"; polars[timezone]>=0.20.0; extra == "dev"; torchvision; extra == "dev"; pyav; extra == "dev"; Pillow>=9.4.0; extra == "dev"; soundfile>=0.12.1; extra == "dev"; librosa; extra == "dev"; soxr>=0.4.0; extra == "dev"; ruff>=0.3.0; extra == "dev"; s3fs; extra == "dev"; transformers; extra == "dev"; torch; extra == "dev"; tensorflow>=2.6.0; extra == "dev"; absl-py; extra == "tests"; decorator; extra == "tests"; joblib<1.3.0; extra == "tests"; joblibspark; extra == "tests"; pytest; extra == "tests"; pytest-datadir; extra == "tests"; pytest-xdist; extra == "tests"; aiohttp; extra == "tests"; elasticsearch<8.0.0,>=7.17.12; extra == "tests"; faiss-cpu>=1.8.0.post1; extra == "tests"; jax>=0.3.14; sys_platform != "win32" and extra == "tests"; jaxlib>=0.3.14; sys_platform != "win32" and extra == "tests"; lz4; extra == "tests"; moto[server]; extra == "tests"; pyspark>=3.4; extra == "tests"; py7zr; extra == "tests"; rarfile>=4.0; extra == "tests"; sqlalchemy; extra == "tests"; s3fs>=2021.11.1; extra == "tests"; protobuf<4.0.0; extra == "tests"; tensorflow>=2.6.0; python_version < "3.10" and extra == "tests"; tensorflow>=2.16.0; python_version >= "3.10" and extra == "tests"; tiktoken; extra == "tests"; torch>=2.0.0; extra == "tests"; torchdata; extra == "tests"; soundfile>=0.12.1; extra == "tests"; transformers>=4.42.0; extra == "tests"; zstandard; extra == "tests"; polars[timezone]>=0.20.0; extra == "tests"; torchvision; extra == "tests"; pyav; extra == "tests"; Pillow>=9.4.0; extra == "tests"; soundfile>=0.12.1; extra == "tests"; librosa; extra == "tests"; soxr>=0.4.0; extra == "tests"; absl-py; extra == "tests-numpy2"; decorator; extra == "tests-numpy2"; joblib<1.3.0; extra == "tests-numpy2"; joblibspark; extra == "tests-numpy2"; pytest; extra == "tests-numpy2"; pytest-datadir; extra == "tests-numpy2"; pytest-xdist; extra == "tests-numpy2"; aiohttp; extra == "tests-numpy2"; elasticsearch<8.0.0,>=7.17.12; extra == "tests-numpy2"; jax>=0.3.14; sys_platform != "win32" and extra == "tests-numpy2"; jaxlib>=0.3.14; sys_platform != "win32" and extra == "tests-numpy2"; lz4; extra == "tests-numpy2"; moto[server]; extra == "tests-numpy2"; pyspark>=3.4; extra == "tests-numpy2"; py7zr; extra == "tests-numpy2"; rarfile>=4.0; extra == "tests-numpy2"; sqlalchemy; extra == "tests-numpy2"; s3fs>=2021.11.1; extra == "tests-numpy2"; protobuf<4.0.0; extra == "tests-numpy2"; tiktoken; extra == "tests-numpy2"; torch>=2.0.0; extra == "tests-numpy2"; torchdata; extra == "tests-numpy2"; soundfile>=0.12.1; extra == "tests-numpy2"; transformers>=4.42.0; extra == "tests-numpy2"; zstandard; extra == "tests-numpy2"; polars[timezone]>=0.20.0; extra == "tests-numpy2"; torchvision; extra == "tests-numpy2"; pyav; extra == "tests-numpy2"; Pillow>=9.4.0; extra == "tests-numpy2"; soundfile>=0.12.1; extra == "tests-numpy2"; soxr>=0.4.0; extra == "tests-numpy2"; ruff>=0.3.0; extra == "quality"; tensorflow==2.12.0; extra == "benchmarks"; torch==2.0.1; extra == "benchmarks"; transformers==4.30.1; extra == "benchmarks"; s3fs; extra == "docs"; transformers; extra == "docs"; torch; extra == "docs"; tensorflow>=2.6.0; extra == "docs"; pdfplumber>=0.11.4; extra == "pdfs" | + + + +3.6.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| deepchecks | + + + +Base Package | + + + +EY | + + + +0.18.1 | + + + +{'base_package': 'deepchecks==0.18.1', 'dependencies': ['pandas==1.1.5', 'scikit-learn==0.23.2', 'jsonpickle==2', 'PyNomaly==0.3.3', 'typing-extensions==4.0.0', 'tqdm==4.62.3', 'category-encoders==2.3.0', 'scipy==1.4.1', 'plotly==5.13.1', 'matplotlib==3.3.4', 'beautifulsoup4==4.11.1', 'requests==2.22.0', 'statsmodels==0.11.0', 'dataclasses==0.6', 'numpy==1.19', 'ipython==5.5.0', 'ipykernel==4.10.1', 'ipywidgets==7.5.0', 'importlib-metadata==1.4', 'importlib-resources==1.3', 'statsmodels==0.13.5', 'numpy==1.22.2', 'ipython==7.15.0', 'ipykernel==5.3.0', 'ipywidgets==7.6.5', 'jupyter-server==2.7.2', 'seqeval==1.0.0', 'textblob==0.17.1', 'transformers==4.0.0', 'sentence-transformers==3.0.0', 'fasttext==0.8.0', 'nltk==3.8.1', 'pytorch-ignite==0.4.8', 'opencv-python==4.5.5.62', 'albumentations==1.1.0', 'imgaug==0.4.0', 'seaborn==0.1.0', 'imagehash==4.0.0', 'lxml==4.0.0']} | + + + +pandas>=1.1.5; scikit-learn>=0.23.2; jsonpickle>=2; PyNomaly>=0.3.3; typing-extensions>=4.0.0; tqdm>=4.62.3; category-encoders>=2.3.0; scipy>=1.4.1; plotly>=5.13.1; matplotlib>=3.3.4; beautifulsoup4>=4.11.1; requests>=2.22.0; statsmodels>=0.11.0; python_version < "3.7"; dataclasses>=0.6; python_version < "3.7"; numpy>=1.19; python_version < "3.8"; ipython>=5.5.0; python_version < "3.8"; ipykernel>=4.10.1; python_version < "3.8"; ipywidgets<8,>=7.5.0; python_version < "3.8"; importlib-metadata>=1.4; python_version < "3.8"; importlib-resources>=1.3; python_version < "3.9"; statsmodels>=0.13.5; python_version >= "3.7"; numpy>=1.22.2; python_version >= "3.8"; ipython>=7.15.0; python_version >= "3.8"; ipykernel>=5.3.0; python_version >= "3.8"; ipywidgets>=7.6.5; python_version >= "3.8"; jupyter-server>=2.7.2; python_version >= "3.8"; seqeval>=1.0.0; extra == "nlp"; textblob>=0.17.1; extra == "nlp"; umap-learn; extra == "nlp"; transformers>=4.0.0; extra == "nlp"; huggingface-hub; extra == "nlp"; sentence-transformers>=3.0.0; extra == "nlp"; fasttext<0.9.3,>=0.8.0; extra == "nlp-properties"; nltk<=3.6.7; python_version < "3.7" and extra == "nlp"; nltk>=3.8.1; python_version >= "3.7" and extra == "nlp"; tiktoken; python_version >= "3.8" and extra == "nlp"; pytorch-ignite>=0.4.8; extra == "vision"; opencv-python>=4.5.5.62; extra == "vision"; albumentations<1.4.0,>=1.1.0; extra == "vision"; imgaug>=0.4.0; extra == "vision"; seaborn>=0.1.0; extra == "vision"; imagehash>=4.0.0; extra == "vision"; lxml>=4.0.0; extra == "vision" | + + + +0.19.0, 0.19.1 | + + + +pandas>=1.1.5; scikit-learn>=0.23.2; jsonpickle>=2; PyNomaly>=0.3.3; typing-extensions>=4.0.0; tqdm>=4.62.3; category-encoders>=2.3.0; scipy>=1.4.1; plotly>=5.13.1; matplotlib>=3.3.4; beautifulsoup4>=4.11.1; requests>=2.22.0; statsmodels>=0.11.0; python_version < "3.7"; dataclasses>=0.6; python_version < "3.7"; numpy>=1.19; python_version < "3.8"; ipython>=5.5.0; python_version < "3.8"; ipykernel>=4.10.1; python_version < "3.8"; ipywidgets<8,>=7.5.0; python_version < "3.8"; importlib-metadata>=1.4; python_version < "3.8"; importlib-resources>=1.3; python_version < "3.9"; statsmodels>=0.13.5; python_version >= "3.7"; numpy>=1.22.2; python_version >= "3.8"; ipython>=7.15.0; python_version >= "3.8"; ipykernel>=5.3.0; python_version >= "3.8"; ipywidgets>=7.6.5; python_version >= "3.8"; jupyter-server>=2.7.2; python_version >= "3.8"; seqeval>=1.0.0; extra == "nlp"; textblob>=0.17.1; extra == "nlp"; umap-learn; extra == "nlp"; transformers>=4.0.0; extra == "nlp"; huggingface-hub; extra == "nlp"; sentence-transformers>=3.0.0; extra == "nlp"; fasttext<0.9.3,>=0.8.0; extra == "nlp-properties"; nltk<=3.6.7; python_version < "3.7" and extra == "nlp"; nltk>=3.8.1; python_version >= "3.7" and extra == "nlp"; tiktoken; python_version >= "3.8" and extra == "nlp"; pytorch-ignite>=0.4.8; extra == "vision"; opencv-python>=4.5.5.62; extra == "vision"; albumentations<1.4.0,>=1.1.0; extra == "vision"; imgaug>=0.4.0; extra == "vision"; seaborn>=0.1.0; extra == "vision"; imagehash>=4.0.0; extra == "vision"; lxml>=4.0.0; extra == "vision" | + + + +0.19.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| elasticsearch | + + + +Base Package | + + + +EY | + + + +8.13.1 | + + + +{'base_package': 'elasticsearch==8.13.1', 'dependencies': ['elastic-transport==8.15.1', 'aiohttp==3', 'pyyaml==5.4', 'requests==2', 'sphinx-rtd-theme==2.0', 'orjson==3', 'pyarrow==1', 'requests==2.4.0', 'numpy==1', 'simsimd==3']} | + + + +elastic-transport<9,>=8.15.1; python-dateutil; typing-extensions; aiohttp<4,>=3; extra == "async"; aiohttp; extra == "dev"; black; extra == "dev"; build; extra == "dev"; coverage; extra == "dev"; isort; extra == "dev"; jinja2; extra == "dev"; mapbox-vector-tile; extra == "dev"; mypy; extra == "dev"; nltk; extra == "dev"; nox; extra == "dev"; numpy; extra == "dev"; orjson; extra == "dev"; pandas; extra == "dev"; pyarrow; extra == "dev"; pyright; extra == "dev"; pytest; extra == "dev"; pytest-asyncio; extra == "dev"; pytest-cov; extra == "dev"; pytest-mock; extra == "dev"; python-dateutil; extra == "dev"; pyyaml>=5.4; extra == "dev"; requests<3,>=2; extra == "dev"; sentence-transformers; extra == "dev"; simsimd; extra == "dev"; tqdm; extra == "dev"; twine; extra == "dev"; types-python-dateutil; extra == "dev"; types-tqdm; extra == "dev"; unasync; extra == "dev"; sphinx; extra == "docs"; sphinx-autodoc-typehints; extra == "docs"; sphinx-rtd-theme>=2.0; extra == "docs"; orjson>=3; extra == "orjson"; pyarrow>=1; extra == "pyarrow"; requests!=2.32.2,<3.0.0,>=2.4.0; extra == "requests"; numpy>=1; extra == "vectorstore-mmr"; simsimd>=3; extra == "vectorstore-mmr" | + + + +8.13.2, 8.14.0, 8.15.0, 8.15.1, 8.16.0, 8.17.0, 8.17.1, 8.17.2, 8.18.0, 8.18.1, 9.0.0, 9.0.1, 9.0.2 | + + + +elastic-transport<9,>=8.15.1; python-dateutil; typing-extensions; aiohttp<4,>=3; extra == "async"; aiohttp; extra == "dev"; black; extra == "dev"; build; extra == "dev"; coverage; extra == "dev"; isort; extra == "dev"; jinja2; extra == "dev"; mapbox-vector-tile; extra == "dev"; mypy; extra == "dev"; nltk; extra == "dev"; nox; extra == "dev"; numpy; extra == "dev"; orjson; extra == "dev"; pandas; extra == "dev"; pyarrow; extra == "dev"; pyright; extra == "dev"; pytest; extra == "dev"; pytest-asyncio; extra == "dev"; pytest-cov; extra == "dev"; pytest-mock; extra == "dev"; python-dateutil; extra == "dev"; pyyaml>=5.4; extra == "dev"; requests<3,>=2; extra == "dev"; sentence-transformers; extra == "dev"; simsimd; extra == "dev"; tqdm; extra == "dev"; twine; extra == "dev"; types-python-dateutil; extra == "dev"; types-tqdm; extra == "dev"; unasync; extra == "dev"; sphinx; extra == "docs"; sphinx-autodoc-typehints; extra == "docs"; sphinx-rtd-theme>=2.0; extra == "docs"; orjson>=3; extra == "orjson"; pyarrow>=1; extra == "pyarrow"; requests!=2.32.2,<3.0.0,>=2.4.0; extra == "requests"; numpy>=1; extra == "vectorstore-mmr"; simsimd>=3; extra == "vectorstore-mmr" | + + + +9.0.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| email-validator | + + + +Base Package | + + + +EY | + + + +2.2.0 | + + + +{'base_package': 'email-validator==2.2.0', 'dependencies': ['dnspython==2.0.0', 'idna==2.0.0']} | + + + +dnspython>=2.0.0; idna>=2.0.0 | + + + ++ + + + | dnspython>=2.0.0; idna>=2.0.0 | + + + +2.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| evidently | + + + +Base Package | + + + +EY | + + + +0.4.16 | + + + +{'base_package': 'evidently==0.4.16', 'dependencies': ['plotly==5.10.0', 'statsmodels==0.12.2', 'scikit-learn==1.0.1', 'pandas==1.3.5', 'numpy==1.22.0', 'nltk==3.6.7', 'scipy==1.10.0', 'requests==2.32.0', 'PyYAML==5.4', 'pydantic==1.10.16', 'litestar==2.8.3', 'typing-inspect==0.9.0', 'uvicorn==0.22.0', 'watchdog==3.0.0', 'typer==0.3', 'rich==13', 'iterative-telemetry==0.0.5', 'dynaconf==3.2.4', 'certifi==2024.7.4', 'urllib3==1.26.19', 'fsspec==2024.6.1', 'ujson==5.4.0', 'deprecation==2.1.0', 'uuid6==2024.7.10', 'cryptography==43.0.1', 'pip-audit==2.7.2', 'wheel==0.38.1', 'jupyter==1.0.0', 'mypy==1.1.1', 'pandas-stubs==1.3.5', 'pytest==7.4.4', 'types-PyYAML==6.0.1', 'types-requests==2.26.0', 'types-dataclasses==0.6', 'types-python-dateutil==2.8.19', 'types-ujson==5.4.0', 'pillow==10.3.0', 'httpx==0.27.0', 'ruff==0.3.7', 'pre-commit==3.5.0', 'pytest-asyncio==0.23.7', 'pytest-mock==3.14.0', 'setuptools==65.5.1', 'setuptools==68.2.2', 's3fs==2024.9.0', 'gcsfs==2024.9.0', 'openai==1.16.2', 'evaluate==0.4.1', 'transformers==4.39.3', 'sentence-transformers==2.7.0', 'sqlvalidator==0.0.20', 'litellm==1.60.4', 'pyspark==3.4.0']} | + + + +plotly<6,>=5.10.0; statsmodels>=0.12.2; scikit-learn>=1.0.1; pandas[parquet]>=1.3.5; numpy>=1.22.0; nltk>=3.6.7; scipy>=1.10.0; requests>=2.32.0; PyYAML>=5.4; pydantic>=1.10.16; litestar>=2.8.3; typing-inspect>=0.9.0; uvicorn[standard]>=0.22.0; watchdog>=3.0.0; typer>=0.3; rich>=13; iterative-telemetry>=0.0.5; dynaconf>=3.2.4; certifi>=2024.7.4; urllib3>=1.26.19; fsspec>=2024.6.1; ujson>=5.4.0; deprecation>=2.1.0; uuid6>=2024.7.10; cryptography>=43.0.1; pip-audit>=2.7.2; extra == "dev"; wheel==0.38.1; extra == "dev"; jupyter==1.0.0; extra == "dev"; mypy==1.1.1; extra == "dev"; pandas-stubs>=1.3.5; extra == "dev"; pytest==7.4.4; extra == "dev"; types-PyYAML==6.0.1; extra == "dev"; types-requests==2.26.0; extra == "dev"; types-dataclasses==0.6; extra == "dev"; types-python-dateutil==2.8.19; extra == "dev"; types-ujson>=5.4.0; extra == "dev"; pillow>=10.3.0; extra == "dev"; httpx==0.27.0; extra == "dev"; ruff==0.3.7; extra == "dev"; pre-commit==3.5.0; extra == "dev"; pytest-asyncio==0.23.7; extra == "dev"; pytest-mock==3.14.0; extra == "dev"; setuptools==65.5.1; python_version < "3.12" and extra == "dev"; setuptools==68.2.2; python_version >= "3.12" and extra == "dev"; s3fs>=2024.9.0; extra == "fsspec"; gcsfs>=2024.9.0; extra == "fsspec"; openai>=1.16.2; extra == "llm"; evaluate>=0.4.1; extra == "llm"; transformers[torch]>=4.39.3; extra == "llm"; sentence-transformers>=2.7.0; extra == "llm"; sqlvalidator>=0.0.20; extra == "llm"; litellm>=1.60.4; extra == "llm"; pyspark<4,>=3.4.0; extra == "spark" | + + + +0.4.17, 0.4.18, 0.4.19, 0.4.20, 0.4.21, 0.4.22, 0.4.23, 0.4.24, 0.4.25, 0.4.26, 0.4.27, 0.4.28, 0.4.29, 0.4.30, 0.4.31, 0.4.32, 0.4.33, 0.4.34, 0.4.35, 0.4.36, 0.4.37, 0.4.38, 0.4.39, 0.4.40, 0.5.0, 0.5.1, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.6.6, 0.6.7, 0.7.0, 0.7.1, 0.7.2, 0.7.3, 0.7.4, 0.7.5, 0.7.6, 0.7.7, 0.7.8 | + + + +plotly<6,>=5.10.0; statsmodels>=0.12.2; scikit-learn>=1.0.1; pandas[parquet]>=1.3.5; numpy>=1.22.0; nltk>=3.6.7; scipy>=1.10.0; requests>=2.32.0; PyYAML>=5.4; pydantic>=1.10.16; litestar>=2.8.3; typing-inspect>=0.9.0; uvicorn[standard]>=0.22.0; watchdog>=3.0.0; typer>=0.3; rich>=13; iterative-telemetry>=0.0.5; dynaconf>=3.2.4; certifi>=2024.7.4; urllib3>=1.26.19; fsspec>=2024.6.1; ujson>=5.4.0; deprecation>=2.1.0; uuid6>=2024.7.10; cryptography>=43.0.1; pip-audit>=2.7.2; extra == "dev"; wheel==0.38.1; extra == "dev"; jupyter==1.0.0; extra == "dev"; mypy==1.1.1; extra == "dev"; pandas-stubs>=1.3.5; extra == "dev"; pytest==7.4.4; extra == "dev"; types-PyYAML==6.0.1; extra == "dev"; types-requests==2.26.0; extra == "dev"; types-dataclasses==0.6; extra == "dev"; types-python-dateutil==2.8.19; extra == "dev"; types-ujson>=5.4.0; extra == "dev"; pillow>=10.3.0; extra == "dev"; httpx==0.27.0; extra == "dev"; ruff==0.3.7; extra == "dev"; pre-commit==3.5.0; extra == "dev"; pytest-asyncio==0.23.7; extra == "dev"; pytest-mock==3.14.0; extra == "dev"; setuptools==65.5.1; python_version < "3.12" and extra == "dev"; setuptools==68.2.2; python_version >= "3.12" and extra == "dev"; s3fs>=2024.9.0; extra == "fsspec"; gcsfs>=2024.9.0; extra == "fsspec"; openai>=1.16.2; extra == "llm"; evaluate>=0.4.1; extra == "llm"; transformers[torch]>=4.39.3; extra == "llm"; sentence-transformers>=2.7.0; extra == "llm"; sqlvalidator>=0.0.20; extra == "llm"; litellm>=1.60.4; extra == "llm"; pyspark<4,>=3.4.0; extra == "spark" | + + + +0.7.8 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| exceptiongroup | + + + +Base Package | + + + +EY | + + + +1.2.2 | + + + +{'base_package': 'exceptiongroup==1.2.2', 'dependencies': ['typing-extensions==4.6.0', 'pytest==6']} | + + + +typing-extensions>=4.6.0; python_version < "3.13"; pytest>=6; extra == "test" | + + + +1.3.0 | + + + +typing-extensions>=4.6.0; python_version < "3.13"; pytest>=6; extra == "test" | + + + +1.3.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| farm-haystack | + + + +Base Package | + + + +EY | + + + +1.25.5 | + + + +{'base_package': 'farm-haystack==1.25.5', 'dependencies': ['lazy-imports==0.3.1', 'prompthub-py==4.0.0', 'scikit-learn==1.3.0', 'tiktoken==0.5.1', 'transformers==4.46', 'azure-ai-formrecognizer==3.2.0b2', 'boto3==1.28.57', 'elasticsearch==7.17', 'faiss-cpu==1.6.3', 'huggingface-hub==0.5.0', 'nltk==3.9.1', 'openai-whisper==20231106', 'opensearch-py==2', 'pdf2image==1.14', 'pinecone-client==2.0.11', 'pymongo==4.6', 'pytesseract==0.3.7', 'rapidfuzz==2.0.15', 'scipy==1.3.2', 'selenium==4.11.0', 'sentence-transformers==2.3.1', 'sqlalchemy==1.4.2', 'transformers==4.46', 'weaviate-client==2', 'azure-ai-formrecognizer==3.2.0b2', 'boto3==1.28.57', 'elasticsearch==7.17', 'faiss-gpu==1.6.3', 'huggingface-hub==0.5.0', 'nltk==3.9.1', 'openai-whisper==20231106', 'opensearch-py==2', 'pdf2image==1.14', 'pinecone-client==2.0.11', 'pymongo==4.6', 'pytesseract==0.3.7', 'rapidfuzz==2.0.15', 'scipy==1.3.2', 'selenium==4.11.0', 'sentence-transformers==2.3.1', 'sqlalchemy==1.4.2', 'transformers==4.46', 'weaviate-client==2', 'openai-whisper==20231106', 'boto3==1.28.57', 'selenium==4.11.0', 'black==23.0', 'dulwich==0.21.0', 'mypy==1.10.0', 'elasticsearch==7.17', 'faiss-cpu==1.6.3', 'opensearch-py==2', 'pinecone-client==2.0.11', 'pymongo==4.6', 'sqlalchemy==1.4.2', 'weaviate-client==2', 'elasticsearch==7.17', 'faiss-gpu==1.6.3', 'opensearch-py==2', 'pinecone-client==2.0.11', 'pymongo==4.6', 'sqlalchemy==1.4.2', 'weaviate-client==2', 'elasticsearch==7.17', 'elasticsearch==7.17', 'elastic-transport==8', 'elasticsearch==8', 'faiss-cpu==1.6.3', 'sqlalchemy==1.4.2', 'faiss-gpu==1.6.3', 'sqlalchemy==1.4.2', 'azure-ai-formrecognizer==3.2.0b2', 'black==23.0', 'huggingface-hub==0.5.0', 'sentence-transformers==2.3.1', 'transformers==4.46', 'rapidfuzz==2.0.15', 'scipy==1.3.2', 'pymongo==4.6', 'pdf2image==1.14', 'pytesseract==0.3.7', 'faiss-cpu==1.6.3', 'faiss-gpu==1.6.3', 'pinecone-client==2.0.11', 'opensearch-py==2', 'pinecone-client==2.0.11', 'sqlalchemy==1.4.2', 'nltk==3.9.1', 'aiorwlock==1.3.0', 'ray==1.9.1', 'ray==1.9.1', 'sqlalchemy==1.4.2', 'weaviate-client==2']} | + + + +boilerpy3; events; httpx; jsonschema; lazy-imports==0.3.1; more-itertools; networkx; pandas; pillow; platformdirs; posthog; prompthub-py==4.0.0; pydantic<2; quantulum3; rank-bm25; requests; requests-cache<1.0.0; scikit-learn>=1.3.0; sseclient-py; tenacity; tiktoken>=0.5.1; tqdm; transformers<5.0,>=4.46; azure-ai-formrecognizer>=3.2.0b2; extra == "all"; beautifulsoup4; extra == "all"; boto3>=1.28.57; extra == "all"; elastic-transport<8; extra == "all"; elasticsearch<8,>=7.17; extra == "all"; faiss-cpu<=1.7.2,>=1.6.3; extra == "all"; huggingface-hub>=0.5.0; extra == "all"; langdetect; extra == "all"; markdown; extra == "all"; mlflow; extra == "all"; nltk>=3.9.1; extra == "all"; openai-whisper>=20231106; extra == "all"; opensearch-py>=2; extra == "all"; pdf2image>1.14; extra == "all"; pinecone-client<3,>=2.0.11; extra == "all"; psycopg2-binary; platform_system != "Windows" and extra == "all"; pymongo>=4.6; extra == "all"; pytesseract>0.3.7; extra == "all"; python-docx; extra == "all"; python-frontmatter; extra == "all"; python-magic-bin; platform_system == "Windows" and extra == "all"; python-magic; platform_system != "Windows" and extra == "all"; python-pptx<=1.0; extra == "all"; rapidfuzz<2.8.0,>=2.0.15; extra == "all"; scipy>=1.3.2; extra == "all"; selenium>=4.11.0; extra == "all"; sentence-transformers<=3.0.0,>=2.3.1; extra == "all"; seqeval; extra == "all"; sqlalchemy-utils; extra == "all"; sqlalchemy<2,>=1.4.2; extra == "all"; tika; extra == "all"; transformers[sentencepiece,torch]<5.0,>=4.46; extra == "all"; weaviate-client>2; extra == "all"; azure-ai-formrecognizer>=3.2.0b2; extra == "all-gpu"; beautifulsoup4; extra == "all-gpu"; boto3>=1.28.57; extra == "all-gpu"; elastic-transport<8; extra == "all-gpu"; elasticsearch<8,>=7.17; extra == "all-gpu"; faiss-gpu<2,>=1.6.3; extra == "all-gpu"; huggingface-hub>=0.5.0; extra == "all-gpu"; langdetect; extra == "all-gpu"; markdown; extra == "all-gpu"; mlflow; extra == "all-gpu"; nltk>=3.9.1; extra == "all-gpu"; openai-whisper>=20231106; extra == "all-gpu"; opensearch-py>=2; extra == "all-gpu"; pdf2image>1.14; extra == "all-gpu"; pinecone-client<3,>=2.0.11; extra == "all-gpu"; psycopg2-binary; platform_system != "Windows" and extra == "all-gpu"; pymongo>=4.6; extra == "all-gpu"; pytesseract>0.3.7; extra == "all-gpu"; python-docx; extra == "all-gpu"; python-frontmatter; extra == "all-gpu"; python-magic-bin; platform_system == "Windows" and extra == "all-gpu"; python-magic; platform_system != "Windows" and extra == "all-gpu"; python-pptx<=1.0; extra == "all-gpu"; rapidfuzz<2.8.0,>=2.0.15; extra == "all-gpu"; scipy>=1.3.2; extra == "all-gpu"; selenium>=4.11.0; extra == "all-gpu"; sentence-transformers<=3.0.0,>=2.3.1; extra == "all-gpu"; seqeval; extra == "all-gpu"; sqlalchemy-utils; extra == "all-gpu"; sqlalchemy<2,>=1.4.2; extra == "all-gpu"; tika; extra == "all-gpu"; transformers[sentencepiece,torch]<5.0,>=4.46; extra == "all-gpu"; weaviate-client>2; extra == "all-gpu"; openai-whisper>=20231106; extra == "audio"; boto3>=1.28.57; extra == "aws"; pillow<=9.0.0; extra == "colab"; selenium>=4.11.0; extra == "crawler"; black[jupyter]~=23.0; extra == "dev"; coverage; extra == "dev"; dulwich<1.0.0,>=0.21.0; extra == "dev"; mypy==1.10.0; extra == "dev"; pre-commit; extra == "dev"; psutil; extra == "dev"; pylint; extra == "dev"; pytest; extra == "dev"; pytest-asyncio; extra == "dev"; pytest-cov; extra == "dev"; pytest-custom-exit-code; extra == "dev"; python-multipart; extra == "dev"; reno; extra == "dev"; responses; extra == "dev"; toml; extra == "dev"; tox; extra == "dev"; elastic-transport<8; extra == "docstores"; elasticsearch<8,>=7.17; extra == "docstores"; faiss-cpu<=1.7.2,>=1.6.3; extra == "docstores"; opensearch-py>=2; extra == "docstores"; pinecone-client<3,>=2.0.11; extra == "docstores"; psycopg2-binary; platform_system != "Windows" and extra == "docstores"; pymongo>=4.6; extra == "docstores"; sqlalchemy-utils; extra == "docstores"; sqlalchemy<2,>=1.4.2; extra == "docstores"; weaviate-client>2; extra == "docstores"; elastic-transport<8; extra == "docstores-gpu"; elasticsearch<8,>=7.17; extra == "docstores-gpu"; faiss-gpu<2,>=1.6.3; extra == "docstores-gpu"; opensearch-py>=2; extra == "docstores-gpu"; pinecone-client<3,>=2.0.11; extra == "docstores-gpu"; psycopg2-binary; platform_system != "Windows" and extra == "docstores-gpu"; pymongo>=4.6; extra == "docstores-gpu"; sqlalchemy-utils; extra == "docstores-gpu"; sqlalchemy<2,>=1.4.2; extra == "docstores-gpu"; weaviate-client>2; extra == "docstores-gpu"; elastic-transport<8; extra == "elasticsearch"; elasticsearch<8,>=7.17; extra == "elasticsearch"; elastic-transport<8; extra == "elasticsearch7"; elasticsearch<8,>=7.17; extra == "elasticsearch7"; elastic-transport<9,>=8; extra == "elasticsearch8"; elasticsearch<9,>=8; extra == "elasticsearch8"; faiss-cpu<=1.7.2,>=1.6.3; extra == "faiss"; psycopg2-binary; platform_system != "Windows" and extra == "faiss"; sqlalchemy-utils; extra == "faiss"; sqlalchemy<2,>=1.4.2; extra == "faiss"; faiss-gpu<2,>=1.6.3; extra == "faiss-gpu"; psycopg2-binary; platform_system != "Windows" and extra == "faiss-gpu"; sqlalchemy-utils; extra == "faiss-gpu"; sqlalchemy<2,>=1.4.2; extra == "faiss-gpu"; azure-ai-formrecognizer>=3.2.0b2; extra == "file-conversion"; beautifulsoup4; extra == "file-conversion"; markdown; extra == "file-conversion"; python-docx; extra == "file-conversion"; python-frontmatter; extra == "file-conversion"; python-magic-bin; platform_system == "Windows" and extra == "file-conversion"; python-magic; platform_system != "Windows" and extra == "file-conversion"; python-pptx<=1.0; extra == "file-conversion"; tika; extra == "file-conversion"; black[jupyter]~=23.0; extra == "formatting"; huggingface-hub>=0.5.0; extra == "inference"; sentence-transformers<=3.0.0,>=2.3.1; extra == "inference"; transformers[sentencepiece,torch]<5.0,>=4.46; extra == "inference"; mlflow; extra == "metrics"; rapidfuzz<2.8.0,>=2.0.15; extra == "metrics"; scipy>=1.3.2; extra == "metrics"; seqeval; extra == "metrics"; pymongo>=4.6; extra == "mongodb"; pdf2image>1.14; extra == "ocr"; pytesseract>0.3.7; extra == "ocr"; faiss-cpu<=1.7.2,>=1.6.3; extra == "only-faiss"; faiss-gpu<2,>=1.6.3; extra == "only-faiss-gpu"; pinecone-client<3,>=2.0.11; extra == "only-pinecone"; onnxruntime; extra == "onnx"; onnxruntime-tools; extra == "onnx"; onnxruntime-gpu; extra == "onnx-gpu"; onnxruntime-tools; extra == "onnx-gpu"; opensearch-py>=2; extra == "opensearch"; pinecone-client<3,>=2.0.11; extra == "pinecone"; psycopg2-binary; platform_system != "Windows" and extra == "pinecone"; sqlalchemy-utils; extra == "pinecone"; sqlalchemy<2,>=1.4.2; extra == "pinecone"; langdetect; extra == "preprocessing"; nltk>=3.9.1; extra == "preprocessing"; aiorwlock<2,>=1.3.0; extra == "ray"; ray[serve]!=1.12.0,<2,>=1.9.1; platform_system == "Windows" and extra == "ray"; ray[serve]<2,>=1.9.1; platform_system != "Windows" and extra == "ray"; psycopg2-binary; platform_system != "Windows" and extra == "sql"; sqlalchemy-utils; extra == "sql"; sqlalchemy<2,>=1.4.2; extra == "sql"; weaviate-client>2; extra == "weaviate" | + + + +1.26.0rc1, 1.26.0, 1.26.1, 1.26.2, 1.26.3rc1, 1.26.3, 1.26.4, 1.26.4.post0 | + + + +boilerpy3; events; httpx; jsonschema; lazy-imports==0.3.1; more-itertools; networkx; pandas; pillow; platformdirs; posthog; prompthub-py==4.0.0; pydantic<2; quantulum3; rank-bm25; requests; requests-cache<1.0.0; scikit-learn>=1.3.0; sseclient-py; tenacity; tiktoken>=0.5.1; tqdm; transformers<5.0,>=4.46; azure-ai-formrecognizer>=3.2.0b2; extra == "all"; beautifulsoup4; extra == "all"; boto3>=1.28.57; extra == "all"; elastic-transport<8; extra == "all"; elasticsearch<8,>=7.17; extra == "all"; faiss-cpu<=1.7.2,>=1.6.3; extra == "all"; huggingface-hub>=0.5.0; extra == "all"; langdetect; extra == "all"; markdown; extra == "all"; mlflow; extra == "all"; nltk>=3.9.1; extra == "all"; openai-whisper>=20231106; extra == "all"; opensearch-py>=2; extra == "all"; pdf2image>1.14; extra == "all"; pinecone-client<3,>=2.0.11; extra == "all"; psycopg2-binary; platform_system != "Windows" and extra == "all"; pymongo>=4.6; extra == "all"; pytesseract>0.3.7; extra == "all"; python-docx; extra == "all"; python-frontmatter; extra == "all"; python-magic-bin; platform_system == "Windows" and extra == "all"; python-magic; platform_system != "Windows" and extra == "all"; python-pptx<=1.0; extra == "all"; rapidfuzz<2.8.0,>=2.0.15; extra == "all"; scipy>=1.3.2; extra == "all"; selenium>=4.11.0; extra == "all"; sentence-transformers<=3.0.0,>=2.3.1; extra == "all"; seqeval; extra == "all"; sqlalchemy-utils; extra == "all"; sqlalchemy<2,>=1.4.2; extra == "all"; tika; extra == "all"; transformers[sentencepiece,torch]<5.0,>=4.46; extra == "all"; weaviate-client>2; extra == "all"; azure-ai-formrecognizer>=3.2.0b2; extra == "all-gpu"; beautifulsoup4; extra == "all-gpu"; boto3>=1.28.57; extra == "all-gpu"; elastic-transport<8; extra == "all-gpu"; elasticsearch<8,>=7.17; extra == "all-gpu"; faiss-gpu<2,>=1.6.3; extra == "all-gpu"; huggingface-hub>=0.5.0; extra == "all-gpu"; langdetect; extra == "all-gpu"; markdown; extra == "all-gpu"; mlflow; extra == "all-gpu"; nltk>=3.9.1; extra == "all-gpu"; openai-whisper>=20231106; extra == "all-gpu"; opensearch-py>=2; extra == "all-gpu"; pdf2image>1.14; extra == "all-gpu"; pinecone-client<3,>=2.0.11; extra == "all-gpu"; psycopg2-binary; platform_system != "Windows" and extra == "all-gpu"; pymongo>=4.6; extra == "all-gpu"; pytesseract>0.3.7; extra == "all-gpu"; python-docx; extra == "all-gpu"; python-frontmatter; extra == "all-gpu"; python-magic-bin; platform_system == "Windows" and extra == "all-gpu"; python-magic; platform_system != "Windows" and extra == "all-gpu"; python-pptx<=1.0; extra == "all-gpu"; rapidfuzz<2.8.0,>=2.0.15; extra == "all-gpu"; scipy>=1.3.2; extra == "all-gpu"; selenium>=4.11.0; extra == "all-gpu"; sentence-transformers<=3.0.0,>=2.3.1; extra == "all-gpu"; seqeval; extra == "all-gpu"; sqlalchemy-utils; extra == "all-gpu"; sqlalchemy<2,>=1.4.2; extra == "all-gpu"; tika; extra == "all-gpu"; transformers[sentencepiece,torch]<5.0,>=4.46; extra == "all-gpu"; weaviate-client>2; extra == "all-gpu"; openai-whisper>=20231106; extra == "audio"; boto3>=1.28.57; extra == "aws"; pillow<=9.0.0; extra == "colab"; selenium>=4.11.0; extra == "crawler"; black[jupyter]~=23.0; extra == "dev"; coverage; extra == "dev"; dulwich<1.0.0,>=0.21.0; extra == "dev"; mypy==1.10.0; extra == "dev"; pre-commit; extra == "dev"; psutil; extra == "dev"; pylint; extra == "dev"; pytest; extra == "dev"; pytest-asyncio; extra == "dev"; pytest-cov; extra == "dev"; pytest-custom-exit-code; extra == "dev"; python-multipart; extra == "dev"; reno; extra == "dev"; responses; extra == "dev"; toml; extra == "dev"; tox; extra == "dev"; elastic-transport<8; extra == "docstores"; elasticsearch<8,>=7.17; extra == "docstores"; faiss-cpu<=1.7.2,>=1.6.3; extra == "docstores"; opensearch-py>=2; extra == "docstores"; pinecone-client<3,>=2.0.11; extra == "docstores"; psycopg2-binary; platform_system != "Windows" and extra == "docstores"; pymongo>=4.6; extra == "docstores"; sqlalchemy-utils; extra == "docstores"; sqlalchemy<2,>=1.4.2; extra == "docstores"; weaviate-client>2; extra == "docstores"; elastic-transport<8; extra == "docstores-gpu"; elasticsearch<8,>=7.17; extra == "docstores-gpu"; faiss-gpu<2,>=1.6.3; extra == "docstores-gpu"; opensearch-py>=2; extra == "docstores-gpu"; pinecone-client<3,>=2.0.11; extra == "docstores-gpu"; psycopg2-binary; platform_system != "Windows" and extra == "docstores-gpu"; pymongo>=4.6; extra == "docstores-gpu"; sqlalchemy-utils; extra == "docstores-gpu"; sqlalchemy<2,>=1.4.2; extra == "docstores-gpu"; weaviate-client>2; extra == "docstores-gpu"; elastic-transport<8; extra == "elasticsearch"; elasticsearch<8,>=7.17; extra == "elasticsearch"; elastic-transport<8; extra == "elasticsearch7"; elasticsearch<8,>=7.17; extra == "elasticsearch7"; elastic-transport<9,>=8; extra == "elasticsearch8"; elasticsearch<9,>=8; extra == "elasticsearch8"; faiss-cpu<=1.7.2,>=1.6.3; extra == "faiss"; psycopg2-binary; platform_system != "Windows" and extra == "faiss"; sqlalchemy-utils; extra == "faiss"; sqlalchemy<2,>=1.4.2; extra == "faiss"; faiss-gpu<2,>=1.6.3; extra == "faiss-gpu"; psycopg2-binary; platform_system != "Windows" and extra == "faiss-gpu"; sqlalchemy-utils; extra == "faiss-gpu"; sqlalchemy<2,>=1.4.2; extra == "faiss-gpu"; azure-ai-formrecognizer>=3.2.0b2; extra == "file-conversion"; beautifulsoup4; extra == "file-conversion"; markdown; extra == "file-conversion"; python-docx; extra == "file-conversion"; python-frontmatter; extra == "file-conversion"; python-magic-bin; platform_system == "Windows" and extra == "file-conversion"; python-magic; platform_system != "Windows" and extra == "file-conversion"; python-pptx<=1.0; extra == "file-conversion"; tika; extra == "file-conversion"; black[jupyter]~=23.0; extra == "formatting"; huggingface-hub>=0.5.0; extra == "inference"; sentence-transformers<=3.0.0,>=2.3.1; extra == "inference"; transformers[sentencepiece,torch]<5.0,>=4.46; extra == "inference"; mlflow; extra == "metrics"; rapidfuzz<2.8.0,>=2.0.15; extra == "metrics"; scipy>=1.3.2; extra == "metrics"; seqeval; extra == "metrics"; pymongo>=4.6; extra == "mongodb"; pdf2image>1.14; extra == "ocr"; pytesseract>0.3.7; extra == "ocr"; faiss-cpu<=1.7.2,>=1.6.3; extra == "only-faiss"; faiss-gpu<2,>=1.6.3; extra == "only-faiss-gpu"; pinecone-client<3,>=2.0.11; extra == "only-pinecone"; onnxruntime; extra == "onnx"; onnxruntime-tools; extra == "onnx"; onnxruntime-gpu; extra == "onnx-gpu"; onnxruntime-tools; extra == "onnx-gpu"; opensearch-py>=2; extra == "opensearch"; pinecone-client<3,>=2.0.11; extra == "pinecone"; psycopg2-binary; platform_system != "Windows" and extra == "pinecone"; sqlalchemy-utils; extra == "pinecone"; sqlalchemy<2,>=1.4.2; extra == "pinecone"; langdetect; extra == "preprocessing"; nltk>=3.9.1; extra == "preprocessing"; aiorwlock<2,>=1.3.0; extra == "ray"; ray[serve]!=1.12.0,<2,>=1.9.1; platform_system == "Windows" and extra == "ray"; ray[serve]<2,>=1.9.1; platform_system != "Windows" and extra == "ray"; psycopg2-binary; platform_system != "Windows" and extra == "sql"; sqlalchemy-utils; extra == "sql"; sqlalchemy<2,>=1.4.2; extra == "sql"; weaviate-client>2; extra == "weaviate" | + + + +1.26.4.post0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| fastapi-cli | + + + +Base Package | + + + +EY | + + + +0.0.5 | + + + +{'base_package': 'fastapi-cli==0.0.5', 'dependencies': ['typer==0.12.3', 'uvicorn==0.15.0', 'rich-toolkit==0.11.1', 'uvicorn==0.15.0']} | + + + +typer>=0.12.3; uvicorn[standard]>=0.15.0; rich-toolkit>=0.11.1; uvicorn[standard]>=0.15.0; extra == "standard" | + + + +0.0.6, 0.0.7 | + + + +typer>=0.12.3; uvicorn[standard]>=0.15.0; rich-toolkit>=0.11.1; uvicorn[standard]>=0.15.0; extra == "standard" | + + + +0.0.7 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| Flask-HTTPAuth | + + + +Base Package | + + + +EY | + + + +3.3.0 | + + + +{'base_package': 'Flask-HTTPAuth==3.3.0', 'dependencies': []} | + + + +flask | + + + +4.0.0, 4.1.0, 4.2.0, 4.3.0, 4.4.0, 4.5.0, 4.6.0, 4.7.0, 4.8.0 | + + + +flask | + + + +4.8.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| Flask-SQLAlchemy | + + + +Base Package | + + + +EY | + + + +2.4.1 | + + + +{'base_package': 'Flask-SQLAlchemy==2.4.1', 'dependencies': ['flask==2.2.5', 'sqlalchemy==2.0.16']} | + + + +flask>=2.2.5; sqlalchemy>=2.0.16 | + + + +2.4.2, 2.4.3, 2.4.4, 2.5.0, 2.5.1, 3.0.0a1, 3.0.0a2, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4, 3.0.5, 3.1.0, 3.1.1 | + + + +flask>=2.2.5; sqlalchemy>=2.0.16 | + + + +3.1.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| flask-swagger-ui | + + + +Base Package | + + + +EY | + + + +4.11.1 | + + + +{'base_package': 'flask-swagger-ui==4.11.1', 'dependencies': []} | + + + +flask | + + + +5.21.0 | + + + +flask | + + + +5.21.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| fqdn | + + + +Base Package | + + + +EY | + + + +1.5.1 | + + + +{'base_package': 'fqdn==1.5.1', 'dependencies': ['cached-property==1.3.0']} | + + + +cached-property (>=1.3.0) ; python_version < "3.8" | + + + ++ + + + | cached-property (>=1.3.0) ; python_version < "3.8" | + + + +1.5.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| google-generativeai | + + + +Base Package | + + + +EY | + + + +0.2.1 | + + + +{'base_package': 'google-generativeai==0.2.1', 'dependencies': ['google-ai-generativelanguage==0.6.15', 'google-auth==2.15.0']} | + + + +google-ai-generativelanguage==0.6.15; google-api-core; google-api-python-client; google-auth>=2.15.0; protobuf; pydantic; tqdm; typing-extensions; absl-py; extra == "dev"; black; extra == "dev"; nose2; extra == "dev"; pandas; extra == "dev"; pytype; extra == "dev"; pyyaml; extra == "dev"; Pillow; extra == "dev"; ipython; extra == "dev" | + + + +0.2.2, 0.3.0, 0.3.1, 0.3.2, 0.4.0, 0.4.1, 0.5.0, 0.5.1, 0.5.2, 0.5.3, 0.5.4, 0.6.0, 0.7.0, 0.7.1, 0.7.2, 0.8.0, 0.8.1, 0.8.2, 0.8.3, 0.8.4, 0.8.5 | + + + +google-ai-generativelanguage==0.6.15; google-api-core; google-api-python-client; google-auth>=2.15.0; protobuf; pydantic; tqdm; typing-extensions; absl-py; extra == "dev"; black; extra == "dev"; nose2; extra == "dev"; pandas; extra == "dev"; pytype; extra == "dev"; pyyaml; extra == "dev"; Pillow; extra == "dev"; ipython; extra == "dev" | + + + +0.8.5 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| great-expectations | + + + +Base Package | + + + +EY | + + + +1.1.3 | + + + +{'base_package': 'great-expectations==1.1.3', 'dependencies': ['altair==4.2.1', 'cryptography==3.2', 'jinja2==3', 'jsonschema==2.5.1', 'marshmallow==3.7.1', 'mistune==0.8.4', 'posthog==3', 'pydantic==1.10.7', 'pyparsing==2.4', 'python-dateutil==2.8.1', 'requests==2.20', 'ruamel.yaml==0.16', 'scipy==1.6.0', 'tqdm==4.59.0', 'typing-extensions==4.1.0', 'tzlocal==1.2', 'numpy==1.21.6', 'pandas==1.1.3', 'numpy==1.22.4', 'pandas==1.3.0', 'numpy==1.26.0', 'feather-format==0.4.1', 'pyathena==2.0.0', 'sqlalchemy==1.4.0', 'boto3==1.17.106', 'azure-identity==1.10.0', 'azure-keyvault-secrets==4.0.0', 'azure-storage-blob==12.5.0', 'azure-identity==1.10.0', 'azure-keyvault-secrets==4.0.0', 'azure-storage-blob==12.5.0', 'gcsfs==0.5.1', 'google-cloud-bigquery==3.3.6', 'google-cloud-bigquery-storage==2.20.0', 'google-cloud-secret-manager==1.0.0', 'pandas-gbq==0.26.1', 'sqlalchemy-bigquery==1.3.0', 'sqlalchemy==1.4.0', 'google-cloud-storage==1.28.0', 'google-cloud-storage==2.10.0', 'clickhouse-sqlalchemy==0.2.2', 'clickhouse-sqlalchemy==0.3.0', 'orjson==3.9.7', 'databricks-sqlalchemy==1.0.0', 'sqlalchemy==1.4.0', 'pyodbc==4.0.30', 'sqlalchemy-dremio==1.2.1', 'sqlalchemy==1.4.0', 'openpyxl==3.0.7', 'xlrd==1.1.0', 'gcsfs==0.5.1', 'google-cloud-bigquery==3.3.6', 'google-cloud-bigquery-storage==2.20.0', 'google-cloud-secret-manager==1.0.0', 'pandas-gbq==0.26.1', 'sqlalchemy-bigquery==1.3.0', 'sqlalchemy==1.4.0', 'google-cloud-storage==1.28.0', 'google-cloud-storage==2.10.0', 'psycopg2-binary==2.7.6', 'sqlalchemy==1.4.0', 'PyHive==0.6.5', 'thrift==0.16.0', 'thrift-sasl==0.4.3', 'sqlalchemy==1.4.0', 'pyodbc==4.0.30', 'sqlalchemy==1.4.0', 'PyMySQL==1.1.1', 'sqlalchemy==1.4.0', 'pypd==1.1.0', 'psycopg2-binary==2.7.6', 'sqlalchemy==1.4.0', 'psycopg2-binary==2.7.6', 'sqlalchemy-redshift==0.8.8', 'boto3==1.17.106', 'snowflake-sqlalchemy==1.2.3', 'sqlalchemy==1.4.0', 'snowflake-connector-python==2.5.0', 'snowflake-connector-python==2.9.0', 'pyspark==2.3.2', 'googleapis-common-protos==1.56.4', 'grpcio==1.48.1', 'grpcio-status==1.48.1', 'teradatasqlalchemy==17.0.0.5', 'boto3==1.17.106', 'coverage==7.5.1', 'flaky==3.7.0', 'flask==1.0.0', 'freezegun==0.3.15', 'moto==4.2.13', 'pact-python==2.0.1', 'pyfakefs==4.5.1', 'pytest==8.2.1', 'pytest-benchmark==3.4.1', 'pytest-cov==5.0.0', 'pytest-icdiff==0.9.0', 'pytest-mock==3.14.0', 'pytest-order==1.2.1', 'pytest-random-order==1.1.1', 'pytest-timeout==2.3.1', 'pytest-xdist==3.6.1', 'requirements-parser==0.9.0', 'responses==0.23.1', 'setuptools==70.0.0', 'sqlalchemy==1.4.0', 'adr-tools-python==1.0.3', 'invoke==2.0.0', 'mypy==1.15.0', 'pre-commit==2.21.0', 'ruff==0.11.12', 'tomli==2.0.1', 'docstring-parser==0.16', 'feather-format==0.4.1', 'trino==0.310.0', 'sqlalchemy==1.4.0', 'sqlalchemy-vertica-python==0.5.10', 'sqlalchemy==1.4.0']} | + + + +altair<5.0.0,>=4.2.1; cryptography>=3.2; jinja2>=3; jsonschema>=2.5.1; marshmallow<4.0.0,>=3.7.1; mistune>=0.8.4; packaging; posthog<4,>3; pydantic>=1.10.7; pyparsing>=2.4; python-dateutil>=2.8.1; requests>=2.20; ruamel.yaml>=0.16; scipy>=1.6.0; tqdm>=4.59.0; typing-extensions>=4.1.0; tzlocal>=1.2; numpy>=1.21.6; python_version == "3.9"; pandas<2.2,>=1.1.3; python_version == "3.9"; numpy>=1.22.4; python_version >= "3.10"; pandas<2.2,>=1.3.0; python_version >= "3.10"; numpy>=1.26.0; python_version >= "3.12"; pandas<2.2; python_version >= "3.12"; feather-format>=0.4.1; extra == "arrow"; pyarrow; extra == "arrow"; pyathena[sqlalchemy]<3,>=2.0.0; extra == "athena"; sqlalchemy>=1.4.0; extra == "athena"; boto3>=1.17.106; extra == "aws-secrets"; azure-identity>=1.10.0; extra == "azure"; azure-keyvault-secrets>=4.0.0; extra == "azure"; azure-storage-blob>=12.5.0; extra == "azure"; azure-identity>=1.10.0; extra == "azure-secrets"; azure-keyvault-secrets>=4.0.0; extra == "azure-secrets"; azure-storage-blob>=12.5.0; extra == "azure-secrets"; gcsfs>=0.5.1; extra == "bigquery"; google-cloud-bigquery>=3.3.6; extra == "bigquery"; google-cloud-bigquery-storage>=2.20.0; extra == "bigquery"; google-cloud-secret-manager>=1.0.0; extra == "bigquery"; pandas-gbq>=0.26.1; extra == "bigquery"; sqlalchemy-bigquery>=1.3.0; extra == "bigquery"; sqlalchemy>=1.4.0; extra == "bigquery"; google-cloud-storage>=1.28.0; python_version < "3.11" and extra == "bigquery"; google-cloud-storage>=2.10.0; python_version >= "3.11" and extra == "bigquery"; sqlalchemy<2.0.0; extra == "clickhouse"; clickhouse-sqlalchemy>=0.2.2; python_version < "3.12" and extra == "clickhouse"; clickhouse-sqlalchemy>=0.3.0; python_version >= "3.12" and extra == "clickhouse"; orjson>=3.9.7; extra == "cloud"; databricks-sqlalchemy>=1.0.0; extra == "databricks"; sqlalchemy>=1.4.0; extra == "databricks"; pyodbc>=4.0.30; extra == "dremio"; sqlalchemy-dremio==1.2.1; extra == "dremio"; sqlalchemy>=1.4.0; extra == "dremio"; openpyxl>=3.0.7; extra == "excel"; xlrd<2.0.0,>=1.1.0; extra == "excel"; gcsfs>=0.5.1; extra == "gcp"; google-cloud-bigquery>=3.3.6; extra == "gcp"; google-cloud-bigquery-storage>=2.20.0; extra == "gcp"; google-cloud-secret-manager>=1.0.0; extra == "gcp"; pandas-gbq>=0.26.1; extra == "gcp"; sqlalchemy-bigquery>=1.3.0; extra == "gcp"; sqlalchemy>=1.4.0; extra == "gcp"; google-cloud-storage>=1.28.0; python_version < "3.11" and extra == "gcp"; google-cloud-storage>=2.10.0; python_version >= "3.11" and extra == "gcp"; gx-sqlalchemy-redshift; extra == "gx-redshift"; psycopg2-binary>=2.7.6; extra == "gx-redshift"; sqlalchemy>=1.4.0; extra == "gx-redshift"; PyHive>=0.6.5; extra == "hive"; thrift>=0.16.0; extra == "hive"; thrift-sasl>=0.4.3; extra == "hive"; sqlalchemy>=1.4.0; extra == "hive"; pyodbc>=4.0.30; extra == "mssql"; sqlalchemy>=1.4.0; extra == "mssql"; PyMySQL>=1.1.1; extra == "mysql"; sqlalchemy>=1.4.0; extra == "mysql"; pypd==1.1.0; extra == "pagerduty"; psycopg2-binary>=2.7.6; extra == "postgresql"; sqlalchemy>=1.4.0; extra == "postgresql"; psycopg2-binary>=2.7.6; extra == "redshift"; sqlalchemy-redshift>=0.8.8; extra == "redshift"; sqlalchemy<2.0.0; extra == "redshift"; boto3>=1.17.106; extra == "s3"; snowflake-sqlalchemy!=1.7.0,>=1.2.3; extra == "snowflake"; sqlalchemy>=1.4.0; extra == "snowflake"; snowflake-connector-python>=2.5.0; python_version < "3.11" and extra == "snowflake"; snowflake-connector-python>2.9.0; python_version >= "3.11" and extra == "snowflake"; pandas<2.2.0; python_version >= "3.9" and extra == "snowflake"; pyspark<4.0,>=2.3.2; extra == "spark"; googleapis-common-protos>=1.56.4; extra == "spark-connect"; grpcio>=1.48.1; extra == "spark-connect"; grpcio-status>=1.48.1; extra == "spark-connect"; teradatasqlalchemy==17.0.0.5; extra == "teradata"; sqlalchemy<2.0.0; extra == "teradata"; boto3>=1.17.106; extra == "test"; coverage[toml]>=7.5.1; extra == "test"; flaky>=3.7.0; extra == "test"; flask>=1.0.0; extra == "test"; freezegun>=0.3.15; extra == "test"; moto[s3,sns]<5.0,>=4.2.13; extra == "test"; pact-python>=2.0.1; extra == "test"; pyfakefs>=4.5.1; extra == "test"; pytest>=8.2.1; extra == "test"; pytest-benchmark>=3.4.1; extra == "test"; pytest-cov>=5.0.0; extra == "test"; pytest-icdiff>=0.9.0; extra == "test"; pytest-mock>=3.14.0; extra == "test"; pytest-order>=1.2.1; extra == "test"; pytest-random-order>=1.1.1; extra == "test"; pytest-timeout>=2.3.1; extra == "test"; pytest-xdist>=3.6.1; extra == "test"; requirements-parser>=0.9.0; extra == "test"; responses!=0.25.5,>=0.23.1; extra == "test"; setuptools>=70.0.0; extra == "test"; sqlalchemy>=1.4.0; extra == "test"; adr-tools-python==1.0.3; extra == "test"; invoke>=2.0.0; extra == "test"; mypy==1.15.0; extra == "test"; pre-commit>=2.21.0; extra == "test"; ruff==0.11.12; extra == "test"; tomli>=2.0.1; extra == "test"; docstring-parser==0.16; extra == "test"; feather-format>=0.4.1; extra == "test"; pyarrow; extra == "test"; trino!=0.316.0,>=0.310.0; extra == "trino"; sqlalchemy>=1.4.0; extra == "trino"; sqlalchemy-vertica-python>=0.5.10; extra == "vertica"; sqlalchemy>=1.4.0; extra == "vertica" | + + + +1.2.0, 1.2.1, 1.2.2, 1.2.3, 1.2.4, 1.2.5, 1.2.6, 1.3.0, 1.3.1, 1.3.2, 1.3.3, 1.3.4, 1.3.5, 1.3.6, 1.3.7, 1.3.8, 1.3.9, 1.3.10, 1.3.11, 1.3.12, 1.3.13, 1.3.14, 1.4.0, 1.4.1, 1.4.2, 1.4.3, 1.4.4, 1.4.5, 1.4.6, 1.4.7, 1.5.0, 1.5.1, 1.5.2 | + + + +altair<5.0.0,>=4.2.1; cryptography>=3.2; jinja2>=3; jsonschema>=2.5.1; marshmallow<4.0.0,>=3.7.1; mistune>=0.8.4; packaging; posthog<4,>3; pydantic>=1.10.7; pyparsing>=2.4; python-dateutil>=2.8.1; requests>=2.20; ruamel.yaml>=0.16; scipy>=1.6.0; tqdm>=4.59.0; typing-extensions>=4.1.0; tzlocal>=1.2; numpy>=1.21.6; python_version == "3.9"; pandas<2.2,>=1.1.3; python_version == "3.9"; numpy>=1.22.4; python_version >= "3.10"; pandas<2.2,>=1.3.0; python_version >= "3.10"; numpy>=1.26.0; python_version >= "3.12"; pandas<2.2; python_version >= "3.12"; feather-format>=0.4.1; extra == "arrow"; pyarrow; extra == "arrow"; pyathena[sqlalchemy]<3,>=2.0.0; extra == "athena"; sqlalchemy>=1.4.0; extra == "athena"; boto3>=1.17.106; extra == "aws-secrets"; azure-identity>=1.10.0; extra == "azure"; azure-keyvault-secrets>=4.0.0; extra == "azure"; azure-storage-blob>=12.5.0; extra == "azure"; azure-identity>=1.10.0; extra == "azure-secrets"; azure-keyvault-secrets>=4.0.0; extra == "azure-secrets"; azure-storage-blob>=12.5.0; extra == "azure-secrets"; gcsfs>=0.5.1; extra == "bigquery"; google-cloud-bigquery>=3.3.6; extra == "bigquery"; google-cloud-bigquery-storage>=2.20.0; extra == "bigquery"; google-cloud-secret-manager>=1.0.0; extra == "bigquery"; pandas-gbq>=0.26.1; extra == "bigquery"; sqlalchemy-bigquery>=1.3.0; extra == "bigquery"; sqlalchemy>=1.4.0; extra == "bigquery"; google-cloud-storage>=1.28.0; python_version < "3.11" and extra == "bigquery"; google-cloud-storage>=2.10.0; python_version >= "3.11" and extra == "bigquery"; sqlalchemy<2.0.0; extra == "clickhouse"; clickhouse-sqlalchemy>=0.2.2; python_version < "3.12" and extra == "clickhouse"; clickhouse-sqlalchemy>=0.3.0; python_version >= "3.12" and extra == "clickhouse"; orjson>=3.9.7; extra == "cloud"; databricks-sqlalchemy>=1.0.0; extra == "databricks"; sqlalchemy>=1.4.0; extra == "databricks"; pyodbc>=4.0.30; extra == "dremio"; sqlalchemy-dremio==1.2.1; extra == "dremio"; sqlalchemy>=1.4.0; extra == "dremio"; openpyxl>=3.0.7; extra == "excel"; xlrd<2.0.0,>=1.1.0; extra == "excel"; gcsfs>=0.5.1; extra == "gcp"; google-cloud-bigquery>=3.3.6; extra == "gcp"; google-cloud-bigquery-storage>=2.20.0; extra == "gcp"; google-cloud-secret-manager>=1.0.0; extra == "gcp"; pandas-gbq>=0.26.1; extra == "gcp"; sqlalchemy-bigquery>=1.3.0; extra == "gcp"; sqlalchemy>=1.4.0; extra == "gcp"; google-cloud-storage>=1.28.0; python_version < "3.11" and extra == "gcp"; google-cloud-storage>=2.10.0; python_version >= "3.11" and extra == "gcp"; gx-sqlalchemy-redshift; extra == "gx-redshift"; psycopg2-binary>=2.7.6; extra == "gx-redshift"; sqlalchemy>=1.4.0; extra == "gx-redshift"; PyHive>=0.6.5; extra == "hive"; thrift>=0.16.0; extra == "hive"; thrift-sasl>=0.4.3; extra == "hive"; sqlalchemy>=1.4.0; extra == "hive"; pyodbc>=4.0.30; extra == "mssql"; sqlalchemy>=1.4.0; extra == "mssql"; PyMySQL>=1.1.1; extra == "mysql"; sqlalchemy>=1.4.0; extra == "mysql"; pypd==1.1.0; extra == "pagerduty"; psycopg2-binary>=2.7.6; extra == "postgresql"; sqlalchemy>=1.4.0; extra == "postgresql"; psycopg2-binary>=2.7.6; extra == "redshift"; sqlalchemy-redshift>=0.8.8; extra == "redshift"; sqlalchemy<2.0.0; extra == "redshift"; boto3>=1.17.106; extra == "s3"; snowflake-sqlalchemy!=1.7.0,>=1.2.3; extra == "snowflake"; sqlalchemy>=1.4.0; extra == "snowflake"; snowflake-connector-python>=2.5.0; python_version < "3.11" and extra == "snowflake"; snowflake-connector-python>2.9.0; python_version >= "3.11" and extra == "snowflake"; pandas<2.2.0; python_version >= "3.9" and extra == "snowflake"; pyspark<4.0,>=2.3.2; extra == "spark"; googleapis-common-protos>=1.56.4; extra == "spark-connect"; grpcio>=1.48.1; extra == "spark-connect"; grpcio-status>=1.48.1; extra == "spark-connect"; teradatasqlalchemy==17.0.0.5; extra == "teradata"; sqlalchemy<2.0.0; extra == "teradata"; boto3>=1.17.106; extra == "test"; coverage[toml]>=7.5.1; extra == "test"; flaky>=3.7.0; extra == "test"; flask>=1.0.0; extra == "test"; freezegun>=0.3.15; extra == "test"; moto[s3,sns]<5.0,>=4.2.13; extra == "test"; pact-python>=2.0.1; extra == "test"; pyfakefs>=4.5.1; extra == "test"; pytest>=8.2.1; extra == "test"; pytest-benchmark>=3.4.1; extra == "test"; pytest-cov>=5.0.0; extra == "test"; pytest-icdiff>=0.9.0; extra == "test"; pytest-mock>=3.14.0; extra == "test"; pytest-order>=1.2.1; extra == "test"; pytest-random-order>=1.1.1; extra == "test"; pytest-timeout>=2.3.1; extra == "test"; pytest-xdist>=3.6.1; extra == "test"; requirements-parser>=0.9.0; extra == "test"; responses!=0.25.5,>=0.23.1; extra == "test"; setuptools>=70.0.0; extra == "test"; sqlalchemy>=1.4.0; extra == "test"; adr-tools-python==1.0.3; extra == "test"; invoke>=2.0.0; extra == "test"; mypy==1.15.0; extra == "test"; pre-commit>=2.21.0; extra == "test"; ruff==0.11.12; extra == "test"; tomli>=2.0.1; extra == "test"; docstring-parser==0.16; extra == "test"; feather-format>=0.4.1; extra == "test"; pyarrow; extra == "test"; trino!=0.316.0,>=0.310.0; extra == "trino"; sqlalchemy>=1.4.0; extra == "trino"; sqlalchemy-vertica-python>=0.5.10; extra == "vertica"; sqlalchemy>=1.4.0; extra == "vertica" | + + + +1.5.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| grpcio-status | + + + +Base Package | + + + +EY | + + + +1.62.3 | + + + +{'base_package': 'grpcio-status==1.62.3', 'dependencies': ['protobuf==6.30.0', 'grpcio==1.73.0', 'googleapis-common-protos==1.5.5']} | + + + +protobuf<7.0.0,>=6.30.0; grpcio>=1.73.0; googleapis-common-protos>=1.5.5 | + + + +1.63.0rc1, 1.63.0rc2, 1.63.0, 1.63.2, 1.64.0rc1, 1.64.0, 1.64.1, 1.64.3, 1.65.0rc1, 1.65.0rc2, 1.65.0, 1.65.1, 1.65.2, 1.65.4, 1.65.5, 1.66.0rc1, 1.66.0rc2, 1.66.0rc3, 1.66.0rc5, 1.66.0, 1.66.1, 1.66.2, 1.67.0rc1, 1.67.0, 1.67.1, 1.68.0rc1, 1.68.0, 1.68.1, 1.69.0rc1, 1.69.0, 1.70.0rc1, 1.70.0, 1.71.0rc2, 1.71.0, 1.72.0rc1, 1.72.0, 1.72.1, 1.73.0rc1, 1.73.0 | + + + +protobuf<7.0.0,>=6.30.0; grpcio>=1.73.0; googleapis-common-protos>=1.5.5 | + + + +1.73.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| httptools | + + + +Base Package | + + + +EY | + + + +0.6.1 | + + + +{'base_package': 'httptools==0.6.1', 'dependencies': ['Cython==0.29.24']} | + + + +Cython>=0.29.24; extra == "test" | + + + +0.6.2, 0.6.3, 0.6.4 | + + + +Cython>=0.29.24; extra == "test" | + + + +0.6.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| imbalanced-learn | + + + +Base Package | + + + +EY | + + + +0.12.3 | + + + +{'base_package': 'imbalanced-learn==0.12.3', 'dependencies': ['numpy==1.24.3', 'scipy==1.10.1', 'scikit-learn==1.3.2', 'sklearn-compat==0.1', 'joblib==1.1.1', 'threadpoolctl==2.0.0', 'pandas==1.5.3', 'tensorflow==2.13.1', 'matplotlib==3.7.3', 'seaborn==0.12.2', 'memory_profiler==0.61.0', 'numpydoc==1.5.0', 'sphinx==8.0.2', 'sphinx-gallery==0.13.0', 'sphinxcontrib-bibtex==2.6.3', 'sphinx-copybutton==0.5.2', 'pydata-sphinx-theme==0.15.4', 'sphinx-design==0.6.1', 'black==23.3.0', 'ruff==0.4.8', 'pandas==1.5.3', 'tensorflow==2.13.1', 'keras==3.0.5', 'packaging==23.2', 'pytest==7.2.2', 'pytest-cov==4.1.0', 'pytest-xdist==3.5.0']} | + + + +numpy<3,>=1.24.3; scipy<2,>=1.10.1; scikit-learn<2,>=1.3.2; sklearn-compat<1,>=0.1; joblib<2,>=1.1.1; threadpoolctl<4,>=2.0.0; ipykernel; extra == "dev"; ipython; extra == "dev"; jupyterlab; extra == "dev"; pandas<3,>=1.5.3; extra == "docs"; tensorflow<3,>=2.13.1; extra == "docs"; matplotlib<4,>=3.7.3; extra == "docs"; seaborn<1,>=0.12.2; extra == "docs"; memory_profiler<1,>=0.61.0; extra == "docs"; numpydoc<2,>=1.5.0; extra == "docs"; sphinx<9,>=8.0.2; extra == "docs"; sphinx-gallery<1,>=0.13.0; extra == "docs"; sphinxcontrib-bibtex<3,>=2.6.3; extra == "docs"; sphinx-copybutton<1,>=0.5.2; extra == "docs"; pydata-sphinx-theme<1,>=0.15.4; extra == "docs"; sphinx-design<1,>=0.6.1; extra == "docs"; black==23.3.0; extra == "linters"; ruff==0.4.8; extra == "linters"; pre-commit; extra == "linters"; pandas<3,>=1.5.3; extra == "optional"; tensorflow<3,>=2.13.1; extra == "tensorflow"; keras<4,>=3.0.5; extra == "keras"; packaging<25,>=23.2; extra == "tests"; pytest<9,>=7.2.2; extra == "tests"; pytest-cov<6,>=4.1.0; extra == "tests"; pytest-xdist<4,>=3.5.0; extra == "tests" | + + + +0.12.4, 0.13.0 | + + + +numpy<3,>=1.24.3; scipy<2,>=1.10.1; scikit-learn<2,>=1.3.2; sklearn-compat<1,>=0.1; joblib<2,>=1.1.1; threadpoolctl<4,>=2.0.0; ipykernel; extra == "dev"; ipython; extra == "dev"; jupyterlab; extra == "dev"; pandas<3,>=1.5.3; extra == "docs"; tensorflow<3,>=2.13.1; extra == "docs"; matplotlib<4,>=3.7.3; extra == "docs"; seaborn<1,>=0.12.2; extra == "docs"; memory_profiler<1,>=0.61.0; extra == "docs"; numpydoc<2,>=1.5.0; extra == "docs"; sphinx<9,>=8.0.2; extra == "docs"; sphinx-gallery<1,>=0.13.0; extra == "docs"; sphinxcontrib-bibtex<3,>=2.6.3; extra == "docs"; sphinx-copybutton<1,>=0.5.2; extra == "docs"; pydata-sphinx-theme<1,>=0.15.4; extra == "docs"; sphinx-design<1,>=0.6.1; extra == "docs"; black==23.3.0; extra == "linters"; ruff==0.4.8; extra == "linters"; pre-commit; extra == "linters"; pandas<3,>=1.5.3; extra == "optional"; tensorflow<3,>=2.13.1; extra == "tensorflow"; keras<4,>=3.0.5; extra == "keras"; packaging<25,>=23.2; extra == "tests"; pytest<9,>=7.2.2; extra == "tests"; pytest-cov<6,>=4.1.0; extra == "tests"; pytest-xdist<4,>=3.5.0; extra == "tests" | + + + +0.13.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| isoduration | + + + +Base Package | + + + +EY | + + + +20.11.0 | + + + +{'base_package': 'isoduration==20.11.0', 'dependencies': ['arrow==0.15.0']} | + + + +arrow (>=0.15.0) | + + + ++ + + + | arrow (>=0.15.0) | + + + +20.11.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| kedro-azureml | + + + +Base Package | + + + +EY | + + + +0.8.0.1 | + + + +{'base_package': 'kedro-azureml==0.8.0.1', 'dependencies': ['adlfs==2022.2.0', 'azure-ai-ml==1.2.0', 'azureml-fsspec==1.3.1', 'azureml-mlflow==1.42.0', 'backoff==2.2.1', 'cloudpickle==2.1.0', 'kedro==0.19.0', 'kedro-datasets==1.0.0', 'mlflow==2.0.0', 'pyarrow==11.0.0', 'pydantic==2.6.4']} | + + + +adlfs>=2022.2.0; azure-ai-ml>=1.2.0; azureml-fsspec<1.4.0,>=1.3.1; azureml-mlflow>=1.42.0; extra == "mlflow"; backoff<3.0.0,>=2.2.1; cloudpickle<3.0.0,>=2.1.0; kedro<=0.20.0,>=0.19.0; kedro-datasets>=1.0.0; mlflow<3.0.0,>2.0.0; extra == "mlflow"; pyarrow>=11.0.0; pydantic<2.7.0,>=2.6.4 | + + + +0.9.0 | + + + +adlfs>=2022.2.0; azure-ai-ml>=1.2.0; azureml-fsspec<1.4.0,>=1.3.1; azureml-mlflow>=1.42.0; extra == "mlflow"; backoff<3.0.0,>=2.2.1; cloudpickle<3.0.0,>=2.1.0; kedro<=0.20.0,>=0.19.0; kedro-datasets>=1.0.0; mlflow<3.0.0,>2.0.0; extra == "mlflow"; pyarrow>=11.0.0; pydantic<2.7.0,>=2.6.4 | + + + +0.9.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| kedro-boot | + + + +Base Package | + + + +EY | + + + +0.2.2 | + + + +{'base_package': 'kedro-boot==0.2.2', 'dependencies': ['kedro==0.19.1', 'pre-commit==2.0.0', 'jupyter==1.0.0', 'sphinx==4.5.0', 'sphinx-rtd-theme==1.0', 'sphinx-markdown-tables==0.0.15', 'sphinx-click==3.1', 'sphinx-copybutton==0.5.0', 'myst-parser==0.17.2', 'fastapi==0.100.0', 'gunicorn==21.2.0', 'pyctuator==0.18.1', 'uvicorn==0.12.0', 'pytest==5.4.0', 'pytest-cov==2.8.0', 'pytest-lazy-fixture==0.6.0', 'pytest-mock==3.1.0', 'ruff==0.1.3', 'scikit-learn==1.0', 'kedro-datasets==1.0']} | + + + +kedro<0.20,>=0.19.1; pre-commit<4.0.0,>=2.0.0; extra == "dev"; jupyter<2.0.0,>=1.0.0; extra == "dev"; sphinx<8.0.0,>=4.5.0; extra == "doc"; sphinx-rtd-theme<1.4,>=1.0; extra == "doc"; sphinx-markdown-tables~=0.0.15; extra == "doc"; sphinx-click<5.1,>=3.1; extra == "doc"; sphinx-copybutton~=0.5.0; extra == "doc"; myst-parser<2.1.0,>=0.17.2; extra == "doc"; fastapi>=0.100.0; extra == "fastapi"; gunicorn==21.2.0; extra == "fastapi"; pyctuator==0.18.1; extra == "fastapi"; uvicorn[standard]>=0.12.0; extra == "fastapi"; pytest<8.0.0,>=5.4.0; extra == "test"; pytest-cov<5.0.0,>=2.8.0; extra == "test"; pytest-lazy-fixture<1.0.0,>=0.6.0; extra == "test"; pytest-mock<4.0.0,>=3.1.0; extra == "test"; ruff==0.1.3; extra == "test"; scikit-learn~=1.0; extra == "test"; kedro-datasets[pandas.csvdataset,pandas.exceldataset,pandas.parquetdataset]>=1.0; extra == "test" | + + + +0.2.3, 0.2.4 | + + + +kedro<0.20,>=0.19.1; pre-commit<4.0.0,>=2.0.0; extra == "dev"; jupyter<2.0.0,>=1.0.0; extra == "dev"; sphinx<8.0.0,>=4.5.0; extra == "doc"; sphinx-rtd-theme<1.4,>=1.0; extra == "doc"; sphinx-markdown-tables~=0.0.15; extra == "doc"; sphinx-click<5.1,>=3.1; extra == "doc"; sphinx-copybutton~=0.5.0; extra == "doc"; myst-parser<2.1.0,>=0.17.2; extra == "doc"; fastapi>=0.100.0; extra == "fastapi"; gunicorn==21.2.0; extra == "fastapi"; pyctuator==0.18.1; extra == "fastapi"; uvicorn[standard]>=0.12.0; extra == "fastapi"; pytest<8.0.0,>=5.4.0; extra == "test"; pytest-cov<5.0.0,>=2.8.0; extra == "test"; pytest-lazy-fixture<1.0.0,>=0.6.0; extra == "test"; pytest-mock<4.0.0,>=3.1.0; extra == "test"; ruff==0.1.3; extra == "test"; scikit-learn~=1.0; extra == "test"; kedro-datasets[pandas.csvdataset,pandas.exceldataset,pandas.parquetdataset]>=1.0; extra == "test" | + + + +0.2.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| kedro-datasets | + + + +Base Package | + + + +EY | + + + +4.0.0 | + + + +{'base_package': 'kedro-datasets==4.0.0', 'dependencies': ['kedro==0.19.7', 'pandas==1.3', 'pyspark==2.2', 'hdfs==2.5.8', 's3fs==2021.4', 'polars==0.18.0', 'plotly==4.8.0', 'delta-spark==1.0', 'networkx==3.4', 'requests==2.20', 'biopython==1.73', 'dask==2021.10', 'dask==2021.10', 'triad==0.6.7', 'geopandas==0.8.0', 'fiona==1.8', 'holoviews==1.13.0', 'matplotlib==3.0.3', 'matplotlib==3.0.3', 'deltalake==0.10.0', 'openpyxl==3.0.6', 'pandas-gbq==0.12.0', 'pandas-gbq==0.12.0', 'tables==3.6', 'pyarrow==6.0', 'SQLAlchemy==1.4', 'SQLAlchemy==1.4', 'pyodbc==4.0', 'lxml==4.6', 'compress-pickle==2.1.0', 'Pillow==9.0', 'pyarrow==4.0', 'xlsx2csv==0.8.0', 'deltalake==0.6.2', 'pyarrow==4.0', 'deltalake==0.6.2', 'redis==4.1', 'snowflake-snowpark-python==1.23', 'scikit-learn==1.0.2', 'scipy==1.7.3', 'tensorflow==2.0', 'pyodbc==5.0', 'tensorflow-macos==2.0', 'PyYAML==4.2', 'langchain-openai==0.1.7', 'langchain-openai==0.1.7', 'langchain-anthropic==0.1.13', 'langchain-community==0.2.0', 'langchain-cohere==0.1.5', 'langchain-community==0.2.0', 'h5netcdf==1.2.0', 'netcdf4==1.6.4', 'xarray==2023.1.0', 'prophet==1.1.5', 'rioxarray==0.15.0', 'opencv-python==4.5.5.64', 'kedro-sphinx-theme==2024.10.2', 'ipykernel==5.3', 'adlfs==2023.1', 'behave==1.2.6', 'biopython==1.73', 'cloudpickle==2.2.1', 'compress-pickle==2.1.0', 'coverage==7.2.0', 'dask==2021.10', 'delta-spark==1.0', 'deltalake==0.10.0', 'dill==0.3.1', 'filelock==3.4.0', 'fiona==1.8', 'gcsfs==2023.1', 'geopandas==0.8.0', 'hdfs==2.5.8', 'holoviews==1.13.0', 'ipython==7.31.1', 'joblib==0.14', 'jupyterlab==3.0', 'jupyter==1.0', 'lxml==4.6', 'matplotlib==3.5', 'memory_profiler==0.50.0', 'moto==5.0.0', 'networkx==3.4', 'openpyxl==3.0.3', 'pandas-gbq==0.12.0', 'pandas==2.0', 'Pillow==10.0', 'plotly==4.8.0', 'polars==1.0', 'pyarrow==1.0', 'pyarrow==7.0', 'pyspark==3.0', 'pyspark==3.4', 'pytest-cov==3.0', 'pytest-mock==1.7.1', 'pytest-xdist==2.2.1', 'pytest==7.2', 'redis==4.1', 'requests-mock==1.6', 'requests==2.20', 's3fs==2021.04', 'snowflake-snowpark-python==1.23', 'scikit-learn==1.0.2', 'scipy==1.7.3', 'pyOpenSSL==22.1.0', 'SQLAlchemy==1.2', 'tables==3.6', 'tensorflow-macos==2.0', 'tensorflow==2.0', 'triad==0.6.7', 'xarray==2023.1.0', 'xlsxwriter==1.0', 'bandit==1.6.2', 'blacken-docs==1.9.2', 'black==22.0', 'detect-secrets==1.5.0', 'import-linter==1.2.6', 'mypy==1.0', 'pre-commit==2.9.2', 'ruff==0.0.290', 'h5netcdf==1.2.0', 'netcdf4==1.6.4', 'xarray==2023.1.0', 'opencv-python==4.5.5.64', 'prophet==1.1.5']} | + + + +kedro>=0.19.7; lazy_loader; pandas<3.0,>=1.3; extra == "pandas-base"; pyspark<4.0,>=2.2; extra == "spark-base"; hdfs<3.0,>=2.5.8; extra == "hdfs-base"; s3fs>=2021.4; extra == "s3fs-base"; polars>=0.18.0; extra == "polars-base"; plotly<6.0,>=4.8.0; extra == "plotly-base"; delta-spark<4.0,>=1.0; extra == "delta-base"; networkx~=3.4; extra == "networkx-base"; requests~=2.20; extra == "api-apidataset"; kedro-datasets[api-apidataset]; extra == "api"; biopython~=1.73; extra == "biosequence-biosequencedataset"; kedro-datasets[biosequence-biosequencedataset]; extra == "biosequence"; dask[dataframe]>=2021.10; extra == "dask-csvdataset"; dask[complete]>=2021.10; extra == "dask-parquetdataset"; triad<1.0,>=0.6.7; extra == "dask-parquetdataset"; kedro-datasets[dask-csvdataset,dask-parquetdataset]; extra == "dask"; kedro-datasets[hdfs-base,s3fs-base]; extra == "databricks-managedtabledataset"; kedro-datasets[databricks-managedtabledataset]; extra == "databricks"; geopandas<2.0,>=0.8.0; extra == "geopandas-genericdataset"; fiona<2.0,>=1.8; extra == "geopandas-genericdataset"; kedro-datasets[geopandas-genericdataset]; extra == "geopandas"; holoviews>=1.13.0; extra == "holoviews-holoviewswriter"; kedro-datasets[holoviews-holoviewswriter]; extra == "holoviews"; datasets; extra == "huggingface-hfdataset"; huggingface_hub; extra == "huggingface-hfdataset"; transformers; extra == "huggingface-hftransformerpipelinedataset"; kedro-datasets[huggingface-hfdataset,huggingface-hftransformerpipelinedataset]; extra == "huggingface"; ibis-framework[athena]; extra == "ibis-athena"; ibis-framework[bigquery]; extra == "ibis-bigquery"; ibis-framework[clickhouse]; extra == "ibis-clickhouse"; ibis-framework[dask]<10.0; extra == "ibis-dask"; ibis-framework[databricks]; extra == "ibis-databricks"; ibis-framework[datafusion]; extra == "ibis-datafusion"; ibis-framework[druid]; extra == "ibis-druid"; ibis-framework[duckdb]; extra == "ibis-duckdb"; ibis-framework[exasol]; extra == "ibis-exasol"; ibis-framework; extra == "ibis-flink"; apache-flink; extra == "ibis-flink"; ibis-framework[impala]; extra == "ibis-impala"; ibis-framework[mssql]; extra == "ibis-mssql"; ibis-framework[mysql]; extra == "ibis-mysql"; ibis-framework[oracle]; extra == "ibis-oracle"; ibis-framework[pandas]<10.0; extra == "ibis-pandas"; ibis-framework[polars]; extra == "ibis-polars"; ibis-framework[postgres]; extra == "ibis-postgres"; ibis-framework[pyspark]; extra == "ibis-pyspark"; ibis-framework[risingwave]; extra == "ibis-risingwave"; ibis-framework[snowflake]; extra == "ibis-snowflake"; ibis-framework[sqlite]; extra == "ibis-sqlite"; ibis-framework[trino]; extra == "ibis-trino"; ibis-framework; extra == "ibis"; kedro-datasets[json-jsondataset]; extra == "json"; scipy; extra == "matlab-matlabdataset"; kedro-datasets[matlab-matlabdataset]; extra == "matlab"; matplotlib<4.0,>=3.0.3; extra == "matplotlib-matplotlibwriter"; matplotlib<4.0,>=3.0.3; extra == "matplotlib-matplotlibdataset"; kedro-datasets[matplotlib-matplotlibdataset,matplotlib-matplotlibwriter]; extra == "matplotlib"; kedro-datasets[networkx-base]; extra == "networkx-gmldataset"; kedro-datasets[networkx-base]; extra == "networkx-graphmldataset"; kedro-datasets[networkx-base]; extra == "networkx-jsondataset"; kedro-datasets[networkx-base]; extra == "networkx"; optuna; extra == "optuna-studydataset"; kedro-datasets[optuna-studydataset]; extra == "optuna"; kedro-datasets[pandas-base]; extra == "pandas-csvdataset"; kedro-datasets[pandas-base]; extra == "pandas-deltatabledataset"; deltalake>=0.10.0; extra == "pandas-deltatabledataset"; kedro-datasets[pandas-base]; extra == "pandas-exceldataset"; openpyxl<4.0,>=3.0.6; extra == "pandas-exceldataset"; kedro-datasets[pandas-base]; extra == "pandas-featherdataset"; kedro-datasets[pandas-base]; extra == "pandas-gbqtabledataset"; pandas-gbq>=0.12.0; extra == "pandas-gbqtabledataset"; kedro-datasets[pandas-base]; extra == "pandas-gbqquerydataset"; pandas-gbq>=0.12.0; extra == "pandas-gbqquerydataset"; kedro-datasets[pandas-base]; extra == "pandas-genericdataset"; kedro-datasets[pandas-base]; extra == "pandas-hdfdataset"; tables>=3.6; extra == "pandas-hdfdataset"; kedro-datasets[pandas-base]; extra == "pandas-jsondataset"; kedro-datasets[pandas-base]; extra == "pandas-parquetdataset"; pyarrow>=6.0; extra == "pandas-parquetdataset"; kedro-datasets[pandas-base]; extra == "pandas-sqltabledataset"; SQLAlchemy<3.0,>=1.4; extra == "pandas-sqltabledataset"; kedro-datasets[pandas-base]; extra == "pandas-sqlquerydataset"; SQLAlchemy<3.0,>=1.4; extra == "pandas-sqlquerydataset"; pyodbc>=4.0; extra == "pandas-sqlquerydataset"; kedro-datasets[pandas-base]; extra == "pandas-xmldataset"; lxml~=4.6; extra == "pandas-xmldataset"; kedro-datasets[pandas-csvdataset,pandas-deltatabledataset,pandas-exceldataset,pandas-featherdataset,pandas-gbqquerydataset,pandas-gbqtabledataset,pandas-genericdataset,pandas-hdfdataset,pandas-jsondataset,pandas-parquetdataset,pandas-sqlquerydataset,pandas-sqltabledataset,pandas-xmldataset]; extra == "pandas"; compress-pickle[lz4]~=2.1.0; extra == "pickle-pickledataset"; kedro-datasets[pickle-pickledataset]; extra == "pickle"; Pillow>=9.0; extra == "pillow-imagedataset"; kedro-datasets[pillow-imagedataset]; extra == "pillow"; kedro-datasets[plotly-base]; extra == "plotly-htmldataset"; kedro-datasets[plotly-base]; extra == "plotly-jsondataset"; kedro-datasets[pandas-base,plotly-base]; extra == "plotly-plotlydataset"; kedro-datasets[plotly-htmldataset,plotly-jsondataset,plotly-plotlydataset]; extra == "plotly"; kedro-datasets[polars-base]; extra == "polars-csvdataset"; kedro-datasets[polars-base]; extra == "polars-eagerpolarsdataset"; pyarrow>=4.0; extra == "polars-eagerpolarsdataset"; xlsx2csv>=0.8.0; extra == "polars-eagerpolarsdataset"; deltalake>=0.6.2; extra == "polars-eagerpolarsdataset"; kedro-datasets[polars-base]; extra == "polars-lazypolarsdataset"; pyarrow>=4.0; extra == "polars-lazypolarsdataset"; deltalake>=0.6.2; extra == "polars-lazypolarsdataset"; kedro-datasets[polars-csvdataset,polars-eagerpolarsdataset,polars-lazypolarsdataset]; extra == "polars"; redis~=4.1; extra == "redis-pickledataset"; kedro-datasets[redis-pickledataset]; extra == "redis"; snowflake-snowpark-python>=1.23; extra == "snowflake-snowparktabledataset"; kedro-datasets[snowflake-snowparktabledataset]; extra == "snowflake"; kedro-datasets[delta-base,hdfs-base,s3fs-base,spark-base]; extra == "spark-deltatabledataset"; kedro-datasets[hdfs-base,s3fs-base,spark-base]; extra == "spark-sparkdataset"; kedro-datasets[hdfs-base,s3fs-base,spark-base]; extra == "spark-sparkhivedataset"; kedro-datasets[spark-base]; extra == "spark-sparkjdbcdataset"; kedro-datasets[hdfs-base,s3fs-base,spark-base]; extra == "spark-sparkstreamingdataset"; kedro-datasets[spark-deltatabledataset,spark-sparkdataset,spark-sparkhivedataset,spark-sparkjdbcdataset,spark-sparkstreamingdataset]; extra == "spark"; scikit-learn>=1.0.2; extra == "svmlight-svmlightdataset"; scipy>=1.7.3; extra == "svmlight-svmlightdataset"; kedro-datasets[svmlight-svmlightdataset]; extra == "svmlight"; tensorflow~=2.0; (platform_system != "Darwin" or platform_machine != "arm64") and extra == "tensorflow-tensorflowmodeldataset"; pyodbc~=5.0; extra == "test"; tensorflow-macos~=2.0; (platform_system == "Darwin" and platform_machine == "arm64") and extra == "tensorflow-tensorflowmodeldataset"; kedro-datasets[tensorflow-tensorflowmodeldataset]; extra == "tensorflow"; kedro-datasets[text-textdataset]; extra == "text"; kedro-datasets[pandas-base]; extra == "yaml-yamldataset"; PyYAML<7.0,>=4.2; extra == "yaml-yamldataset"; kedro-datasets[yaml-yamldataset]; extra == "yaml"; u8darts-all; extra == "darts-torch-model-dataset"; kedro-datasets[darts-torch-model-dataset]; extra == "darts"; kedro-datasets[hdfs-base,s3fs-base]; extra == "databricks-externaltabledataset"; langchain-openai~=0.1.7; extra == "langchain-chatopenaidataset"; langchain-openai~=0.1.7; extra == "langchain-openaiembeddingsdataset"; langchain-anthropic~=0.1.13; extra == "langchain-chatanthropicdataset"; langchain-community~=0.2.0; extra == "langchain-chatanthropicdataset"; langchain-cohere~=0.1.5; extra == "langchain-chatcoheredataset"; langchain-community~=0.2.0; extra == "langchain-chatcoheredataset"; kedro-datasets[langchain-chatanthropicdataset,langchain-chatcoheredataset,langchain-chatopenaidataset,langchain-openaiembeddingsdataset]; extra == "langchain"; h5netcdf>=1.2.0; extra == "netcdf-netcdfdataset"; netcdf4>=1.6.4; extra == "netcdf-netcdfdataset"; xarray>=2023.1.0; extra == "netcdf-netcdfdataset"; kedro-datasets[netcdf-netcdfdataset]; extra == "netcdf"; prophet>=1.1.5; extra == "prophet-dataset"; kedro-datasets[prophet]; extra == "prophet"; torch; extra == "pytorch-dataset"; kedro-datasets[pytorch-dataset]; extra == "pytorch"; rioxarray>=0.15.0; extra == "rioxarray-geotiffdataset"; kedro-datasets[rioxarray-geotiffdataset]; extra == "rioxarray"; safetensors; extra == "safetensors-safetensorsdataset"; numpy; extra == "safetensors-safetensorsdataset"; kedro-datasets[safetensors-safetensorsdataset]; extra == "safetensors"; opencv-python~=4.5.5.64; extra == "video-videodataset"; kedro-datasets[video-videodataset]; extra == "video"; kedro-sphinx-theme==2024.10.2; extra == "docs"; ipykernel<7.0,>=5.3; extra == "docs"; Jinja2<3.2.0; extra == "docs"; accelerate<0.32; extra == "test"; adlfs~=2023.1; extra == "test"; behave==1.2.6; extra == "test"; biopython~=1.73; extra == "test"; cloudpickle~=2.2.1; extra == "test"; compress-pickle[lz4]~=2.1.0; extra == "test"; coverage>=7.2.0; extra == "test"; dask[complete]>=2021.10; extra == "test"; delta-spark<3.0,>=1.0; extra == "test"; deltalake>=0.10.0; extra == "test"; dill~=0.3.1; extra == "test"; filelock<4.0,>=3.4.0; extra == "test"; fiona<2.0,>=1.8; extra == "test"; gcsfs<2023.3,>=2023.1; extra == "test"; geopandas<2.0,>=0.8.0; extra == "test"; hdfs<3.0,>=2.5.8; extra == "test"; holoviews>=1.13.0; extra == "test"; ibis-framework[duckdb,examples]; extra == "test"; ipython<8.0,>=7.31.1; extra == "test"; Jinja2<3.2.0; extra == "test"; joblib>=0.14; extra == "test"; jupyterlab>=3.0; extra == "test"; jupyter~=1.0; extra == "test"; lxml~=4.6; extra == "test"; matplotlib<4.0,>=3.5; extra == "test"; memory_profiler<1.0,>=0.50.0; extra == "test"; moto==5.0.0; extra == "test"; networkx~=3.4; extra == "test"; openpyxl<4.0,>=3.0.3; extra == "test"; pandas-gbq>=0.12.0; extra == "test"; pandas>=2.0; extra == "test"; Pillow~=10.0; extra == "test"; plotly<6.0,>=4.8.0; extra == "test"; polars[deltalake,xlsx2csv]<1.25.2,>=1.0; extra == "test"; pyarrow>=1.0; python_version < "3.11" and extra == "test"; pyarrow>=7.0; python_version >= "3.11" and extra == "test"; pyspark>=3.0; python_version < "3.11" and extra == "test"; pyspark>=3.4; python_version >= "3.11" and extra == "test"; pytest-cov~=3.0; extra == "test"; pytest-mock<2.0,>=1.7.1; extra == "test"; pytest-xdist[psutil]~=2.2.1; extra == "test"; pytest~=7.2; extra == "test"; redis~=4.1; extra == "test"; requests-mock~=1.6; extra == "test"; requests~=2.20; extra == "test"; s3fs>=2021.04; extra == "test"; snowflake-snowpark-python>=1.23; python_version < "3.12" and extra == "test"; scikit-learn<2,>=1.0.2; extra == "test"; scipy>=1.7.3; extra == "test"; packaging; extra == "test"; pyOpenSSL>=22.1.0; extra == "test"; SQLAlchemy>=1.2; extra == "test"; tables>=3.6; extra == "test"; tensorflow-macos~=2.0; (platform_system == "Darwin" and platform_machine == "arm64") and extra == "test"; tensorflow~=2.0; (platform_system != "Darwin" or platform_machine != "arm64") and extra == "test"; triad<1.0,>=0.6.7; extra == "test"; xarray>=2023.1.0; extra == "test"; xlsxwriter~=1.0; extra == "test"; datasets; extra == "test"; huggingface_hub; extra == "test"; transformers[torch]; extra == "test"; bandit<2.0,>=1.6.2; extra == "lint"; blacken-docs==1.9.2; extra == "lint"; black~=22.0; extra == "lint"; detect-secrets~=1.5.0; extra == "lint"; import-linter[toml]==1.2.6; extra == "lint"; mypy~=1.0; extra == "lint"; pre-commit>=2.9.2; extra == "lint"; ruff~=0.0.290; extra == "lint"; types-cachetools; extra == "lint"; types-PyYAML; extra == "lint"; types-redis; extra == "lint"; types-requests; extra == "lint"; types-decorator; extra == "lint"; types-six; extra == "lint"; types-tabulate; extra == "lint"; langchain-openai; extra == "experimental"; langchain-cohere; extra == "experimental"; langchain-anthropic; extra == "experimental"; langchain-community; extra == "experimental"; h5netcdf>=1.2.0; extra == "experimental"; netcdf4>=1.6.4; extra == "experimental"; xarray>=2023.1.0; extra == "experimental"; rioxarray; extra == "experimental"; torch; extra == "experimental"; opencv-python~=4.5.5.64; extra == "experimental"; prophet>=1.1.5; extra == "experimental"; optuna; extra == "experimental"; u8darts[all]; extra == "experimental"; kedro-datasets[docs,lint,test]; extra == "all" | + + + +4.1.0, 5.0.0, 5.1.0, 6.0.0, 7.0.0 | + + + +kedro>=0.19.7; lazy_loader; pandas<3.0,>=1.3; extra == "pandas-base"; pyspark<4.0,>=2.2; extra == "spark-base"; hdfs<3.0,>=2.5.8; extra == "hdfs-base"; s3fs>=2021.4; extra == "s3fs-base"; polars>=0.18.0; extra == "polars-base"; plotly<6.0,>=4.8.0; extra == "plotly-base"; delta-spark<4.0,>=1.0; extra == "delta-base"; networkx~=3.4; extra == "networkx-base"; requests~=2.20; extra == "api-apidataset"; kedro-datasets[api-apidataset]; extra == "api"; biopython~=1.73; extra == "biosequence-biosequencedataset"; kedro-datasets[biosequence-biosequencedataset]; extra == "biosequence"; dask[dataframe]>=2021.10; extra == "dask-csvdataset"; dask[complete]>=2021.10; extra == "dask-parquetdataset"; triad<1.0,>=0.6.7; extra == "dask-parquetdataset"; kedro-datasets[dask-csvdataset,dask-parquetdataset]; extra == "dask"; kedro-datasets[hdfs-base,s3fs-base]; extra == "databricks-managedtabledataset"; kedro-datasets[databricks-managedtabledataset]; extra == "databricks"; geopandas<2.0,>=0.8.0; extra == "geopandas-genericdataset"; fiona<2.0,>=1.8; extra == "geopandas-genericdataset"; kedro-datasets[geopandas-genericdataset]; extra == "geopandas"; holoviews>=1.13.0; extra == "holoviews-holoviewswriter"; kedro-datasets[holoviews-holoviewswriter]; extra == "holoviews"; datasets; extra == "huggingface-hfdataset"; huggingface_hub; extra == "huggingface-hfdataset"; transformers; extra == "huggingface-hftransformerpipelinedataset"; kedro-datasets[huggingface-hfdataset,huggingface-hftransformerpipelinedataset]; extra == "huggingface"; ibis-framework[athena]; extra == "ibis-athena"; ibis-framework[bigquery]; extra == "ibis-bigquery"; ibis-framework[clickhouse]; extra == "ibis-clickhouse"; ibis-framework[dask]<10.0; extra == "ibis-dask"; ibis-framework[databricks]; extra == "ibis-databricks"; ibis-framework[datafusion]; extra == "ibis-datafusion"; ibis-framework[druid]; extra == "ibis-druid"; ibis-framework[duckdb]; extra == "ibis-duckdb"; ibis-framework[exasol]; extra == "ibis-exasol"; ibis-framework; extra == "ibis-flink"; apache-flink; extra == "ibis-flink"; ibis-framework[impala]; extra == "ibis-impala"; ibis-framework[mssql]; extra == "ibis-mssql"; ibis-framework[mysql]; extra == "ibis-mysql"; ibis-framework[oracle]; extra == "ibis-oracle"; ibis-framework[pandas]<10.0; extra == "ibis-pandas"; ibis-framework[polars]; extra == "ibis-polars"; ibis-framework[postgres]; extra == "ibis-postgres"; ibis-framework[pyspark]; extra == "ibis-pyspark"; ibis-framework[risingwave]; extra == "ibis-risingwave"; ibis-framework[snowflake]; extra == "ibis-snowflake"; ibis-framework[sqlite]; extra == "ibis-sqlite"; ibis-framework[trino]; extra == "ibis-trino"; ibis-framework; extra == "ibis"; kedro-datasets[json-jsondataset]; extra == "json"; scipy; extra == "matlab-matlabdataset"; kedro-datasets[matlab-matlabdataset]; extra == "matlab"; matplotlib<4.0,>=3.0.3; extra == "matplotlib-matplotlibwriter"; matplotlib<4.0,>=3.0.3; extra == "matplotlib-matplotlibdataset"; kedro-datasets[matplotlib-matplotlibdataset,matplotlib-matplotlibwriter]; extra == "matplotlib"; kedro-datasets[networkx-base]; extra == "networkx-gmldataset"; kedro-datasets[networkx-base]; extra == "networkx-graphmldataset"; kedro-datasets[networkx-base]; extra == "networkx-jsondataset"; kedro-datasets[networkx-base]; extra == "networkx"; optuna; extra == "optuna-studydataset"; kedro-datasets[optuna-studydataset]; extra == "optuna"; kedro-datasets[pandas-base]; extra == "pandas-csvdataset"; kedro-datasets[pandas-base]; extra == "pandas-deltatabledataset"; deltalake>=0.10.0; extra == "pandas-deltatabledataset"; kedro-datasets[pandas-base]; extra == "pandas-exceldataset"; openpyxl<4.0,>=3.0.6; extra == "pandas-exceldataset"; kedro-datasets[pandas-base]; extra == "pandas-featherdataset"; kedro-datasets[pandas-base]; extra == "pandas-gbqtabledataset"; pandas-gbq>=0.12.0; extra == "pandas-gbqtabledataset"; kedro-datasets[pandas-base]; extra == "pandas-gbqquerydataset"; pandas-gbq>=0.12.0; extra == "pandas-gbqquerydataset"; kedro-datasets[pandas-base]; extra == "pandas-genericdataset"; kedro-datasets[pandas-base]; extra == "pandas-hdfdataset"; tables>=3.6; extra == "pandas-hdfdataset"; kedro-datasets[pandas-base]; extra == "pandas-jsondataset"; kedro-datasets[pandas-base]; extra == "pandas-parquetdataset"; pyarrow>=6.0; extra == "pandas-parquetdataset"; kedro-datasets[pandas-base]; extra == "pandas-sqltabledataset"; SQLAlchemy<3.0,>=1.4; extra == "pandas-sqltabledataset"; kedro-datasets[pandas-base]; extra == "pandas-sqlquerydataset"; SQLAlchemy<3.0,>=1.4; extra == "pandas-sqlquerydataset"; pyodbc>=4.0; extra == "pandas-sqlquerydataset"; kedro-datasets[pandas-base]; extra == "pandas-xmldataset"; lxml~=4.6; extra == "pandas-xmldataset"; kedro-datasets[pandas-csvdataset,pandas-deltatabledataset,pandas-exceldataset,pandas-featherdataset,pandas-gbqquerydataset,pandas-gbqtabledataset,pandas-genericdataset,pandas-hdfdataset,pandas-jsondataset,pandas-parquetdataset,pandas-sqlquerydataset,pandas-sqltabledataset,pandas-xmldataset]; extra == "pandas"; compress-pickle[lz4]~=2.1.0; extra == "pickle-pickledataset"; kedro-datasets[pickle-pickledataset]; extra == "pickle"; Pillow>=9.0; extra == "pillow-imagedataset"; kedro-datasets[pillow-imagedataset]; extra == "pillow"; kedro-datasets[plotly-base]; extra == "plotly-htmldataset"; kedro-datasets[plotly-base]; extra == "plotly-jsondataset"; kedro-datasets[pandas-base,plotly-base]; extra == "plotly-plotlydataset"; kedro-datasets[plotly-htmldataset,plotly-jsondataset,plotly-plotlydataset]; extra == "plotly"; kedro-datasets[polars-base]; extra == "polars-csvdataset"; kedro-datasets[polars-base]; extra == "polars-eagerpolarsdataset"; pyarrow>=4.0; extra == "polars-eagerpolarsdataset"; xlsx2csv>=0.8.0; extra == "polars-eagerpolarsdataset"; deltalake>=0.6.2; extra == "polars-eagerpolarsdataset"; kedro-datasets[polars-base]; extra == "polars-lazypolarsdataset"; pyarrow>=4.0; extra == "polars-lazypolarsdataset"; deltalake>=0.6.2; extra == "polars-lazypolarsdataset"; kedro-datasets[polars-csvdataset,polars-eagerpolarsdataset,polars-lazypolarsdataset]; extra == "polars"; redis~=4.1; extra == "redis-pickledataset"; kedro-datasets[redis-pickledataset]; extra == "redis"; snowflake-snowpark-python>=1.23; extra == "snowflake-snowparktabledataset"; kedro-datasets[snowflake-snowparktabledataset]; extra == "snowflake"; kedro-datasets[delta-base,hdfs-base,s3fs-base,spark-base]; extra == "spark-deltatabledataset"; kedro-datasets[hdfs-base,s3fs-base,spark-base]; extra == "spark-sparkdataset"; kedro-datasets[hdfs-base,s3fs-base,spark-base]; extra == "spark-sparkhivedataset"; kedro-datasets[spark-base]; extra == "spark-sparkjdbcdataset"; kedro-datasets[hdfs-base,s3fs-base,spark-base]; extra == "spark-sparkstreamingdataset"; kedro-datasets[spark-deltatabledataset,spark-sparkdataset,spark-sparkhivedataset,spark-sparkjdbcdataset,spark-sparkstreamingdataset]; extra == "spark"; scikit-learn>=1.0.2; extra == "svmlight-svmlightdataset"; scipy>=1.7.3; extra == "svmlight-svmlightdataset"; kedro-datasets[svmlight-svmlightdataset]; extra == "svmlight"; tensorflow~=2.0; (platform_system != "Darwin" or platform_machine != "arm64") and extra == "tensorflow-tensorflowmodeldataset"; pyodbc~=5.0; extra == "test"; tensorflow-macos~=2.0; (platform_system == "Darwin" and platform_machine == "arm64") and extra == "tensorflow-tensorflowmodeldataset"; kedro-datasets[tensorflow-tensorflowmodeldataset]; extra == "tensorflow"; kedro-datasets[text-textdataset]; extra == "text"; kedro-datasets[pandas-base]; extra == "yaml-yamldataset"; PyYAML<7.0,>=4.2; extra == "yaml-yamldataset"; kedro-datasets[yaml-yamldataset]; extra == "yaml"; u8darts-all; extra == "darts-torch-model-dataset"; kedro-datasets[darts-torch-model-dataset]; extra == "darts"; kedro-datasets[hdfs-base,s3fs-base]; extra == "databricks-externaltabledataset"; langchain-openai~=0.1.7; extra == "langchain-chatopenaidataset"; langchain-openai~=0.1.7; extra == "langchain-openaiembeddingsdataset"; langchain-anthropic~=0.1.13; extra == "langchain-chatanthropicdataset"; langchain-community~=0.2.0; extra == "langchain-chatanthropicdataset"; langchain-cohere~=0.1.5; extra == "langchain-chatcoheredataset"; langchain-community~=0.2.0; extra == "langchain-chatcoheredataset"; kedro-datasets[langchain-chatanthropicdataset,langchain-chatcoheredataset,langchain-chatopenaidataset,langchain-openaiembeddingsdataset]; extra == "langchain"; h5netcdf>=1.2.0; extra == "netcdf-netcdfdataset"; netcdf4>=1.6.4; extra == "netcdf-netcdfdataset"; xarray>=2023.1.0; extra == "netcdf-netcdfdataset"; kedro-datasets[netcdf-netcdfdataset]; extra == "netcdf"; prophet>=1.1.5; extra == "prophet-dataset"; kedro-datasets[prophet]; extra == "prophet"; torch; extra == "pytorch-dataset"; kedro-datasets[pytorch-dataset]; extra == "pytorch"; rioxarray>=0.15.0; extra == "rioxarray-geotiffdataset"; kedro-datasets[rioxarray-geotiffdataset]; extra == "rioxarray"; safetensors; extra == "safetensors-safetensorsdataset"; numpy; extra == "safetensors-safetensorsdataset"; kedro-datasets[safetensors-safetensorsdataset]; extra == "safetensors"; opencv-python~=4.5.5.64; extra == "video-videodataset"; kedro-datasets[video-videodataset]; extra == "video"; kedro-sphinx-theme==2024.10.2; extra == "docs"; ipykernel<7.0,>=5.3; extra == "docs"; Jinja2<3.2.0; extra == "docs"; accelerate<0.32; extra == "test"; adlfs~=2023.1; extra == "test"; behave==1.2.6; extra == "test"; biopython~=1.73; extra == "test"; cloudpickle~=2.2.1; extra == "test"; compress-pickle[lz4]~=2.1.0; extra == "test"; coverage>=7.2.0; extra == "test"; dask[complete]>=2021.10; extra == "test"; delta-spark<3.0,>=1.0; extra == "test"; deltalake>=0.10.0; extra == "test"; dill~=0.3.1; extra == "test"; filelock<4.0,>=3.4.0; extra == "test"; fiona<2.0,>=1.8; extra == "test"; gcsfs<2023.3,>=2023.1; extra == "test"; geopandas<2.0,>=0.8.0; extra == "test"; hdfs<3.0,>=2.5.8; extra == "test"; holoviews>=1.13.0; extra == "test"; ibis-framework[duckdb,examples]; extra == "test"; ipython<8.0,>=7.31.1; extra == "test"; Jinja2<3.2.0; extra == "test"; joblib>=0.14; extra == "test"; jupyterlab>=3.0; extra == "test"; jupyter~=1.0; extra == "test"; lxml~=4.6; extra == "test"; matplotlib<4.0,>=3.5; extra == "test"; memory_profiler<1.0,>=0.50.0; extra == "test"; moto==5.0.0; extra == "test"; networkx~=3.4; extra == "test"; openpyxl<4.0,>=3.0.3; extra == "test"; pandas-gbq>=0.12.0; extra == "test"; pandas>=2.0; extra == "test"; Pillow~=10.0; extra == "test"; plotly<6.0,>=4.8.0; extra == "test"; polars[deltalake,xlsx2csv]<1.25.2,>=1.0; extra == "test"; pyarrow>=1.0; python_version < "3.11" and extra == "test"; pyarrow>=7.0; python_version >= "3.11" and extra == "test"; pyspark>=3.0; python_version < "3.11" and extra == "test"; pyspark>=3.4; python_version >= "3.11" and extra == "test"; pytest-cov~=3.0; extra == "test"; pytest-mock<2.0,>=1.7.1; extra == "test"; pytest-xdist[psutil]~=2.2.1; extra == "test"; pytest~=7.2; extra == "test"; redis~=4.1; extra == "test"; requests-mock~=1.6; extra == "test"; requests~=2.20; extra == "test"; s3fs>=2021.04; extra == "test"; snowflake-snowpark-python>=1.23; python_version < "3.12" and extra == "test"; scikit-learn<2,>=1.0.2; extra == "test"; scipy>=1.7.3; extra == "test"; packaging; extra == "test"; pyOpenSSL>=22.1.0; extra == "test"; SQLAlchemy>=1.2; extra == "test"; tables>=3.6; extra == "test"; tensorflow-macos~=2.0; (platform_system == "Darwin" and platform_machine == "arm64") and extra == "test"; tensorflow~=2.0; (platform_system != "Darwin" or platform_machine != "arm64") and extra == "test"; triad<1.0,>=0.6.7; extra == "test"; xarray>=2023.1.0; extra == "test"; xlsxwriter~=1.0; extra == "test"; datasets; extra == "test"; huggingface_hub; extra == "test"; transformers[torch]; extra == "test"; bandit<2.0,>=1.6.2; extra == "lint"; blacken-docs==1.9.2; extra == "lint"; black~=22.0; extra == "lint"; detect-secrets~=1.5.0; extra == "lint"; import-linter[toml]==1.2.6; extra == "lint"; mypy~=1.0; extra == "lint"; pre-commit>=2.9.2; extra == "lint"; ruff~=0.0.290; extra == "lint"; types-cachetools; extra == "lint"; types-PyYAML; extra == "lint"; types-redis; extra == "lint"; types-requests; extra == "lint"; types-decorator; extra == "lint"; types-six; extra == "lint"; types-tabulate; extra == "lint"; langchain-openai; extra == "experimental"; langchain-cohere; extra == "experimental"; langchain-anthropic; extra == "experimental"; langchain-community; extra == "experimental"; h5netcdf>=1.2.0; extra == "experimental"; netcdf4>=1.6.4; extra == "experimental"; xarray>=2023.1.0; extra == "experimental"; rioxarray; extra == "experimental"; torch; extra == "experimental"; opencv-python~=4.5.5.64; extra == "experimental"; prophet>=1.1.5; extra == "experimental"; optuna; extra == "experimental"; u8darts[all]; extra == "experimental"; kedro-datasets[docs,lint,test]; extra == "all" | + + + +7.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| kedro-docker | + + + +Base Package | + + + +EY | + + + +0.6.0 | + + + +{'base_package': 'kedro-docker==0.6.0', 'dependencies': ['anyconfig==0.10.0', 'kedro==0.16.0', 'semver==2.10', 'coverage==7.2.0', 'pytest-xdist==2.2.1', 'PyYAML==5.1', 'wheel==0.32.2', 'black==22.0', 'mypy==1.0', 'pre-commit==2.9.2', 'trufflehog==2.1.0', 'ruff==0.0.290']} | + + + +anyconfig~=0.10.0; kedro>=0.16.0; semver~=2.10; behave; extra == "test"; coverage>=7.2.0; extra == "test"; docker; extra == "test"; psutil; extra == "test"; pytest; extra == "test"; pytest-cov; extra == "test"; pytest-mock; extra == "test"; pytest-xdist[psutil]~=2.2.1; extra == "test"; PyYAML<7.0,>=5.1; extra == "test"; wheel==0.32.2; extra == "test"; bandit; extra == "lint"; black~=22.0; extra == "lint"; mypy~=1.0; extra == "lint"; pre-commit>=2.9.2; extra == "lint"; trufflehog<3.0,>=2.1.0; extra == "lint"; ruff~=0.0.290; extra == "lint" | + + + +0.6.1, 0.6.2 | + + + +anyconfig~=0.10.0; kedro>=0.16.0; semver~=2.10; behave; extra == "test"; coverage>=7.2.0; extra == "test"; docker; extra == "test"; psutil; extra == "test"; pytest; extra == "test"; pytest-cov; extra == "test"; pytest-mock; extra == "test"; pytest-xdist[psutil]~=2.2.1; extra == "test"; PyYAML<7.0,>=5.1; extra == "test"; wheel==0.32.2; extra == "test"; bandit; extra == "lint"; black~=22.0; extra == "lint"; mypy~=1.0; extra == "lint"; pre-commit>=2.9.2; extra == "lint"; trufflehog<3.0,>=2.1.0; extra == "lint"; ruff~=0.0.290; extra == "lint" | + + + +0.6.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| kedro-fast-api | + + + +Base Package | + + + +EY | + + + +0.6.1 | + + + +{'base_package': 'kedro-fast-api==0.6.1', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 0.6.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| kedro-viz | + + + +Base Package | + + + +EY | + + + +9.1.0 | + + + +{'base_package': 'kedro-viz==9.1.0', 'dependencies': ['aiofiles==22.1.0', 'fastapi==0.100.0', 'fsspec==2021.4', 'ipython==7.0.0', 'kedro-telemetry==0.6.0', 'kedro==0.18.0', 'networkx==2.5', 'orjson==3.9', 'packaging==23.0', 'pandas==1.3', 'pathspec==0.12.1', 'plotly==4.0', 'pydantic==2.0.0', 'secure==0.3.0', 'sqlalchemy==1.4', 'strawberry-graphql==0.192.0', 'uvicorn==0.30.0', 'watchfiles==0.24.0', 's3fs==2021.4', 'adlfs==2021.4', 'kedro-sphinx-theme==2024.10.3', 'gcsfs==2021.4']} | + + + +aiofiles>=22.1.0; click-default-group; fastapi<0.200.0,>=0.100.0; fsspec>=2021.4; ipython<9.0,>=7.0.0; kedro-telemetry>=0.6.0; kedro>=0.18.0; networkx>=2.5; orjson<4.0,>=3.9; packaging>=23.0; pandas>=1.3; pathspec>=0.12.1; plotly>=4.0; pydantic>=2.0.0; secure>=0.3.0; sqlalchemy<3,>=1.4; strawberry-graphql<1.0,>=0.192.0; uvicorn[standard]<1.0,>=0.30.0; watchfiles>=0.24.0; s3fs>=2021.4; extra == "aws"; adlfs>=2021.4; extra == "azure"; kedro-sphinx-theme==2024.10.3; extra == "docs"; gcsfs>=2021.4; extra == "gcp" | + + + +9.2.0, 10.0.0, 10.1.0, 10.2.0, 11.0.0, 11.0.1, 11.0.2 | + + + +aiofiles>=22.1.0; click-default-group; fastapi<0.200.0,>=0.100.0; fsspec>=2021.4; ipython<9.0,>=7.0.0; kedro-telemetry>=0.6.0; kedro>=0.18.0; networkx>=2.5; orjson<4.0,>=3.9; packaging>=23.0; pandas>=1.3; pathspec>=0.12.1; plotly>=4.0; pydantic>=2.0.0; secure>=0.3.0; sqlalchemy<3,>=1.4; strawberry-graphql<1.0,>=0.192.0; uvicorn[standard]<1.0,>=0.30.0; watchfiles>=0.24.0; s3fs>=2021.4; extra == "aws"; adlfs>=2021.4; extra == "azure"; kedro-sphinx-theme==2024.10.3; extra == "docs"; gcsfs>=2021.4; extra == "gcp" | + + + +11.0.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| lancedb | + + + +Base Package | + + + +EY | + + + +0.11.0 | + + + +{'base_package': 'lancedb==0.11.0', 'dependencies': ['overrides==0.7', 'pyarrow==16', 'pydantic==1.10', 'tqdm==4.27.0', 'pylance==0.25', 'pandas==1.4', 'polars==0.19', 'pylance==0.25', 'typing-extensions==4.0.0', 'requests==2.31.0', 'openai==1.6.1', 'colpali-engine==0.3.10', 'boto3==1.28.57', 'awscli==1.29.57', 'botocore==1.31.57', 'ibm-watsonx-ai==1.1.2', 'adlfs==2024.2.0']} | + + + +deprecation; numpy; overrides>=0.7; packaging; pyarrow>=16; pydantic>=1.10; tqdm>=4.27.0; pylance>=0.25; extra == "pylance"; aiohttp; extra == "tests"; boto3; extra == "tests"; pandas>=1.4; extra == "tests"; pytest; extra == "tests"; pytest-mock; extra == "tests"; pytest-asyncio; extra == "tests"; duckdb; extra == "tests"; pytz; extra == "tests"; polars<=1.3.0,>=0.19; extra == "tests"; tantivy; extra == "tests"; pyarrow-stubs; extra == "tests"; pylance>=0.25; extra == "tests"; requests; extra == "tests"; datafusion; extra == "tests"; ruff; extra == "dev"; pre-commit; extra == "dev"; pyright; extra == "dev"; typing-extensions>=4.0.0; python_full_version < "3.11" and extra == "dev"; mkdocs; extra == "docs"; mkdocs-jupyter; extra == "docs"; mkdocs-material; extra == "docs"; mkdocstrings[python]; extra == "docs"; torch; extra == "clip"; pillow; extra == "clip"; open-clip-torch; extra == "clip"; requests>=2.31.0; extra == "embeddings"; openai>=1.6.1; extra == "embeddings"; sentence-transformers; extra == "embeddings"; torch; extra == "embeddings"; pillow; extra == "embeddings"; open-clip-torch; extra == "embeddings"; cohere; extra == "embeddings"; colpali-engine>=0.3.10; extra == "embeddings"; huggingface-hub; extra == "embeddings"; instructorembedding; extra == "embeddings"; google-generativeai; extra == "embeddings"; boto3>=1.28.57; extra == "embeddings"; awscli>=1.29.57; extra == "embeddings"; botocore>=1.31.57; extra == "embeddings"; ollama; extra == "embeddings"; ibm-watsonx-ai>=1.1.2; extra == "embeddings"; adlfs>=2024.2.0; extra == "azure" | + + + +0.12.0, 0.13.0b0, 0.13.0b1, 0.13.0, 0.14.0b0, 0.14.0, 0.14.1b0, 0.14.1b1, 0.15.0, 0.16.0b0, 0.16.0b1, 0.16.0, 0.16.1b0, 0.17.0b0, 0.17.0b3, 0.17.0, 0.17.1b0, 0.17.1b1, 0.17.1b2, 0.17.1b3, 0.17.1b4, 0.17.1, 0.18.0, 0.19.0, 0.20.0, 0.21.0, 0.21.1, 0.21.2, 0.22.0, 0.22.1, 0.23.0, 0.24.0 | + + + +deprecation; numpy; overrides>=0.7; packaging; pyarrow>=16; pydantic>=1.10; tqdm>=4.27.0; pylance>=0.25; extra == "pylance"; aiohttp; extra == "tests"; boto3; extra == "tests"; pandas>=1.4; extra == "tests"; pytest; extra == "tests"; pytest-mock; extra == "tests"; pytest-asyncio; extra == "tests"; duckdb; extra == "tests"; pytz; extra == "tests"; polars<=1.3.0,>=0.19; extra == "tests"; tantivy; extra == "tests"; pyarrow-stubs; extra == "tests"; pylance>=0.25; extra == "tests"; requests; extra == "tests"; datafusion; extra == "tests"; ruff; extra == "dev"; pre-commit; extra == "dev"; pyright; extra == "dev"; typing-extensions>=4.0.0; python_full_version < "3.11" and extra == "dev"; mkdocs; extra == "docs"; mkdocs-jupyter; extra == "docs"; mkdocs-material; extra == "docs"; mkdocstrings[python]; extra == "docs"; torch; extra == "clip"; pillow; extra == "clip"; open-clip-torch; extra == "clip"; requests>=2.31.0; extra == "embeddings"; openai>=1.6.1; extra == "embeddings"; sentence-transformers; extra == "embeddings"; torch; extra == "embeddings"; pillow; extra == "embeddings"; open-clip-torch; extra == "embeddings"; cohere; extra == "embeddings"; colpali-engine>=0.3.10; extra == "embeddings"; huggingface-hub; extra == "embeddings"; instructorembedding; extra == "embeddings"; google-generativeai; extra == "embeddings"; boto3>=1.28.57; extra == "embeddings"; awscli>=1.29.57; extra == "embeddings"; botocore>=1.31.57; extra == "embeddings"; ollama; extra == "embeddings"; ibm-watsonx-ai>=1.1.2; extra == "embeddings"; adlfs>=2024.2.0; extra == "azure" | + + + +0.24.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| langchain-community | + + + +Base Package | + + + +EY | + + + +0.2.12 | + + + +{'base_package': 'langchain-community==0.2.12', 'dependencies': ['langchain-core==0.3.66', 'langchain==0.3.26', 'SQLAlchemy==1.4', 'requests==2', 'PyYAML==5.3', 'aiohttp==3.8.3', 'tenacity==8.1.0', 'dataclasses-json==0.5.7', 'pydantic-settings==2.4.0', 'langsmith==0.1.125', 'httpx-sse==0.4.0', 'numpy==1.26.2', 'numpy==2.1.0']} | + + + +langchain-core<1.0.0,>=0.3.66; langchain<1.0.0,>=0.3.26; SQLAlchemy<3,>=1.4; requests<3,>=2; PyYAML>=5.3; aiohttp<4.0.0,>=3.8.3; tenacity!=8.4.0,<10,>=8.1.0; dataclasses-json<0.7,>=0.5.7; pydantic-settings<3.0.0,>=2.4.0; langsmith>=0.1.125; httpx-sse<1.0.0,>=0.4.0; numpy>=1.26.2; python_version < "3.13"; numpy>=2.1.0; python_version >= "3.13" | + + + +0.2.13, 0.2.14, 0.2.15, 0.2.16, 0.2.17, 0.2.18, 0.2.19, 0.3.0.dev1, 0.3.0.dev2, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.3.6, 0.3.7, 0.3.8, 0.3.9, 0.3.10, 0.3.11, 0.3.12, 0.3.13, 0.3.14, 0.3.15, 0.3.16, 0.3.17rc1, 0.3.17, 0.3.18, 0.3.19, 0.3.20, 0.3.21, 0.3.22, 0.3.23, 0.3.24, 0.3.25, 0.3.26 | + + + +langchain-core<1.0.0,>=0.3.66; langchain<1.0.0,>=0.3.26; SQLAlchemy<3,>=1.4; requests<3,>=2; PyYAML>=5.3; aiohttp<4.0.0,>=3.8.3; tenacity!=8.4.0,<10,>=8.1.0; dataclasses-json<0.7,>=0.5.7; pydantic-settings<3.0.0,>=2.4.0; langsmith>=0.1.125; httpx-sse<1.0.0,>=0.4.0; numpy>=1.26.2; python_version < "3.13"; numpy>=2.1.0; python_version >= "3.13" | + + + +0.3.26 | + + + +Yes | + + + +CVE-2024-8309, CVSS_V3, Langchain SQL Injection vulnerability, CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L, affects: >=0,<0.2.0; >=0.2.0,<0.2.19 CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0 |
+
+
+
+ Yes | + + + +0.2.14: CVE-2024-8309, CVSS_V3, Langchain SQL Injection vulnerability, CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L, affects: >=0,<0.2.0; >=0.2.0,<0.2.19 CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0; 0.2.15: CVE-2024-8309, CVSS_V3, Langchain SQL Injection vulnerability, CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L, affects: >=0,<0.2.0; >=0.2.0,<0.2.19 CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0; 0.3.0.dev2: CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0; 0.3.0.dev1: CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0; 0.2.18: CVE-2024-8309, CVSS_V3, Langchain SQL Injection vulnerability, CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L, affects: >=0,<0.2.0; >=0.2.0,<0.2.19 CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0; 0.2.19: CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0; 0.2.13: CVE-2024-8309, CVSS_V3, Langchain SQL Injection vulnerability, CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L, affects: >=0,<0.2.0; >=0.2.0,<0.2.19 CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0; 0.2.16: CVE-2024-8309, CVSS_V3, Langchain SQL Injection vulnerability, CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L, affects: >=0,<0.2.0; >=0.2.0,<0.2.19 CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0; 0.2.17: CVE-2024-8309, CVSS_V3, Langchain SQL Injection vulnerability, CVSS:3.0/AV:L/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:L, affects: >=0,<0.2.0; >=0.2.0,<0.2.19 CVE-2024-8309, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.2.0; >=0.2.0,<0.3.0 |
+
+
+
+ 0.3.26 | + + + +{'base_package': 'langchain-community==0.3.26', 'dependencies': ['langchain-core==0.3.66', 'langchain==0.3.26', 'SQLAlchemy==1.4.54', 'requests==2.32.4', 'PyYAML==5.4.1', 'aiohttp==3.12.13', 'tenacity==8.5.0', 'dataclasses-json==0.6.7', 'pydantic-settings==2.10.1', 'langsmith==0.4.1', 'httpx-sse==0.4.1', 'numpy==1.26.4']} | + + + +Not Used | + + +
| langchain-openai | + + + +Base Package | + + + +EY | + + + +0.1.22 | + + + +{'base_package': 'langchain-openai==0.1.22', 'dependencies': ['langchain-core==0.3.66', 'openai==1.86.0', 'tiktoken==0.7']} | + + + +langchain-core<1.0.0,>=0.3.66; openai<2.0.0,>=1.86.0; tiktoken<1,>=0.7 | + + + +0.1.23, 0.1.24, 0.1.25, 0.2.0.dev0, 0.2.0.dev1, 0.2.0.dev2, 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.2.5, 0.2.6, 0.2.7, 0.2.8, 0.2.9, 0.2.10, 0.2.11, 0.2.12, 0.2.13, 0.2.14, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4rc1, 0.3.4, 0.3.5, 0.3.6, 0.3.7, 0.3.8, 0.3.9rc1, 0.3.9, 0.3.10, 0.3.11, 0.3.12, 0.3.13, 0.3.14, 0.3.15, 0.3.16, 0.3.17, 0.3.18, 0.3.19, 0.3.20, 0.3.21, 0.3.22, 0.3.23, 0.3.24, 0.3.25 | + + + +langchain-core<1.0.0,>=0.3.66; openai<2.0.0,>=1.86.0; tiktoken<1,>=0.7 | + + + +0.3.25 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| lime | + + + +Base Package | + + + +EY | + + + +0.2.0.1 | + + + +{'base_package': 'lime==0.2.0.1', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 0.2.0.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-hub | + + + +Base Package | + + + +EY | + + + +0.0.79.post1 | + + + +{'base_package': 'llama-hub==0.0.79.post1', 'dependencies': ['llama-index==0.9.41', 'pyaml==23.9.7']} | + + + +llama-index (>=0.9.41); html2text; psutil; retrying; pyaml (>=23.9.7,<24.0.0) | + + + ++ + + + | llama-index (>=0.9.41); html2text; psutil; retrying; pyaml (>=23.9.7,<24.0.0) | + + + +0.0.79.post1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-index-embeddings-azure-openai | + + + +Base Package | + + + +EY | + + + +0.1.6 | + + + +{'base_package': 'llama-index-embeddings-azure-openai==0.1.6', 'dependencies': ['llama-index-core==0.12.0', 'llama-index-embeddings-openai==0.3.0', 'llama-index-llms-azure-openai==0.3.0']} | + + + +llama-index-core<0.13,>=0.12.0; llama-index-embeddings-openai<0.4,>=0.3.0; llama-index-llms-azure-openai<0.4,>=0.3.0 | + + + +0.1.7, 0.1.8, 0.1.9, 0.1.10, 0.1.11, 0.2.0, 0.2.1, 0.2.2, 0.2.3, 0.2.4, 0.2.5, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.3.6, 0.3.7, 0.3.8 | + + + +llama-index-core<0.13,>=0.12.0; llama-index-embeddings-openai<0.4,>=0.3.0; llama-index-llms-azure-openai<0.4,>=0.3.0 | + + + +0.3.8 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-index-legacy | + + + +Base Package | + + + +EY | + + + +0.9.48.post3 | + + + +{'base_package': 'llama-index-legacy==0.9.48.post3', 'dependencies': ['SQLAlchemy==1.4.49', 'beautifulsoup4==4.12.2', 'deprecated==1.2.9.3', 'fsspec==2023.5.0', 'langchain==0.0.303', 'nest-asyncio==1.5.8', 'nltk==3.8.1', 'openai==1.1.0', 'tenacity==8.2.0', 'tiktoken==0.3.3', 'typing-extensions==4.5.0', 'typing-inspect==0.8.0', 'requests==2.31.0', 'gradientai==1.4.0', 'asyncpg==0.28.0', 'pgvector==0.1.0', 'optimum==1.13.2', 'sentencepiece==0.1.99', 'transformers==4.33.1', 'guidance==0.0.64', 'lm-format-enforcer==0.4.3', 'jsonpath-ng==1.6.0', 'rank-bm25==0.2.2', 'spacy==3.7.1', 'aiohttp==3.8.6', 'networkx==3.0', 'psycopg2-binary==2.9.9', 'dirtyjson==1.0.8']} | + + + +SQLAlchemy[asyncio]>=1.4.49; beautifulsoup4<5.0.0,>=4.12.2; extra == "html"; dataclasses-json; deprecated>=1.2.9.3; fsspec>=2023.5.0; httpx; langchain>=0.0.303; extra == "langchain"; nest-asyncio<2.0.0,>=1.5.8; nltk>=3.8.1; numpy; openai>=1.1.0; pandas; tenacity<9.0.0,>=8.2.0; tiktoken>=0.3.3; typing-extensions>=4.5.0; typing-inspect>=0.8.0; requests>=2.31.0; gradientai>=1.4.0; extra == "gradientai"; asyncpg<0.29.0,>=0.28.0; extra == "postgres"; pgvector<0.2.0,>=0.1.0; extra == "postgres"; optimum[onnxruntime]<2.0.0,>=1.13.2; extra == "local-models"; sentencepiece<0.2.0,>=0.1.99; extra == "local-models"; transformers[torch]<5.0.0,>=4.33.1; extra == "local-models"; guidance<0.0.65,>=0.0.64; extra == "query-tools"; lm-format-enforcer<0.5.0,>=0.4.3; extra == "query-tools"; jsonpath-ng<2.0.0,>=1.6.0; extra == "query-tools"; rank-bm25<0.3.0,>=0.2.2; extra == "query-tools"; scikit-learn; extra == "query-tools"; spacy<4.0.0,>=3.7.1; extra == "query-tools"; aiohttp<4.0.0,>=3.8.6; networkx>=3.0; psycopg2-binary<3.0.0,>=2.9.9; extra == "postgres"; dirtyjson<2.0.0,>=1.0.8 | + + + +0.9.48.post4 | + + + +SQLAlchemy[asyncio]>=1.4.49; beautifulsoup4<5.0.0,>=4.12.2; extra == "html"; dataclasses-json; deprecated>=1.2.9.3; fsspec>=2023.5.0; httpx; langchain>=0.0.303; extra == "langchain"; nest-asyncio<2.0.0,>=1.5.8; nltk>=3.8.1; numpy; openai>=1.1.0; pandas; tenacity<9.0.0,>=8.2.0; tiktoken>=0.3.3; typing-extensions>=4.5.0; typing-inspect>=0.8.0; requests>=2.31.0; gradientai>=1.4.0; extra == "gradientai"; asyncpg<0.29.0,>=0.28.0; extra == "postgres"; pgvector<0.2.0,>=0.1.0; extra == "postgres"; optimum[onnxruntime]<2.0.0,>=1.13.2; extra == "local-models"; sentencepiece<0.2.0,>=0.1.99; extra == "local-models"; transformers[torch]<5.0.0,>=4.33.1; extra == "local-models"; guidance<0.0.65,>=0.0.64; extra == "query-tools"; lm-format-enforcer<0.5.0,>=0.4.3; extra == "query-tools"; jsonpath-ng<2.0.0,>=1.6.0; extra == "query-tools"; rank-bm25<0.3.0,>=0.2.2; extra == "query-tools"; scikit-learn; extra == "query-tools"; spacy<4.0.0,>=3.7.1; extra == "query-tools"; aiohttp<4.0.0,>=3.8.6; networkx>=3.0; psycopg2-binary<3.0.0,>=2.9.9; extra == "postgres"; dirtyjson<2.0.0,>=1.0.8 | + + + +0.9.48.post4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-index-readers-json | + + + +Base Package | + + + +EY | + + + +0.1.5 | + + + +{'base_package': 'llama-index-readers-json==0.1.5', 'dependencies': ['llama-index-core==0.12.0']} | + + + +llama-index-core<0.13.0,>=0.12.0 | + + + +0.2.0, 0.3.0 | + + + +llama-index-core<0.13.0,>=0.12.0 | + + + +0.3.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-index-vector-stores-azurecosmosmongo | + + + +Base Package | + + + +EY | + + + +0.1.3 | + + + +{'base_package': 'llama-index-vector-stores-azurecosmosmongo==0.1.3', 'dependencies': ['llama-index-core==0.12.0', 'pymongo==4.6.1']} | + + + +llama-index-core<0.13,>=0.12.0; pymongo<5,>=4.6.1 | + + + +0.2.0, 0.3.0, 0.4.0, 0.5.0, 0.6.0 | + + + +llama-index-core<0.13,>=0.12.0; pymongo<5,>=4.6.1 | + + + +0.6.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llamaindex-py-client | + + + +Base Package | + + + +EY | + + + +0.1.19 | + + + +{'base_package': 'llamaindex-py-client==0.1.19', 'dependencies': ['pydantic==1.10', 'httpx==0.20.0']} | + + + +pydantic>=1.10; httpx>=0.20.0 | + + + ++ + + + | pydantic>=1.10; httpx>=0.20.0 | + + + +0.1.19 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| mlflow | + + + +Base Package | + + + +EY | + + + +2.15.1 | + + + +{'base_package': 'mlflow==2.15.1', 'dependencies': ['mlflow-skinny==3.1.0', 'docker==4.0.0', 'pyarrow==4.0.0', 'sqlalchemy==1.4.0', 'google-cloud-storage==1.30.0', 'azureml-core==1.2.0', 'azure-storage-file-datalake==12', 'google-cloud-storage==1.30.0', 'boto3==1', 'databricks-agents==1.0.0rc3', 'mlserver==1.2.0', 'mlserver-mlflow==1.2.0', 'boto3==1.28.56', 'slowapi==0.1.9', 'boto3==1.28.56', 'slowapi==0.1.9', 'langchain==0.1.0']} | + + + +mlflow-skinny==3.1.0; Flask<4; alembic!=1.10.0,<2; docker<8,>=4.0.0; graphene<4; gunicorn<24; platform_system != "Windows"; matplotlib<4; numpy<3; pandas<3; pyarrow<21,>=4.0.0; scikit-learn<2; scipy<2; sqlalchemy<3,>=1.4.0; waitress<4; platform_system == "Windows"; pyarrow; extra == "extras"; requests-auth-aws-sigv4; extra == "extras"; boto3; extra == "extras"; botocore; extra == "extras"; google-cloud-storage>=1.30.0; extra == "extras"; azureml-core>=1.2.0; extra == "extras"; pysftp; extra == "extras"; kubernetes; extra == "extras"; virtualenv; extra == "extras"; prometheus-flask-exporter; extra == "extras"; azure-storage-file-datalake>12; extra == "databricks"; google-cloud-storage>=1.30.0; extra == "databricks"; boto3>1; extra == "databricks"; botocore; extra == "databricks"; databricks-agents<2.0,>=1.0.0rc3; extra == "databricks"; mlserver!=1.3.1,>=1.2.0; extra == "mlserver"; mlserver-mlflow!=1.3.1,>=1.2.0; extra == "mlserver"; fastapi<1; extra == "gateway"; uvicorn[standard]<1; extra == "gateway"; watchfiles<2; extra == "gateway"; aiohttp<4; extra == "gateway"; boto3<2,>=1.28.56; extra == "gateway"; tiktoken<1; extra == "gateway"; slowapi<1,>=0.1.9; extra == "gateway"; fastapi<1; extra == "genai"; uvicorn[standard]<1; extra == "genai"; watchfiles<2; extra == "genai"; aiohttp<4; extra == "genai"; boto3<2,>=1.28.56; extra == "genai"; tiktoken<1; extra == "genai"; slowapi<1,>=0.1.9; extra == "genai"; mlflow-dbstore; extra == "sqlserver"; aliyunstoreplugin; extra == "aliyun-oss"; mlflow-xethub; extra == "xethub"; mlflow-jfrog-plugin; extra == "jfrog"; langchain<=0.3.25,>=0.1.0; extra == "langchain"; Flask-WTF<2; extra == "auth" | + + + +2.16.0, 2.16.1, 2.16.2, 2.17.0rc0, 2.17.0, 2.17.1, 2.17.2, 2.18.0rc0, 2.18.0, 2.19.0rc0, 2.19.0, 2.20.0rc0, 2.20.0, 2.20.1, 2.20.2, 2.20.3, 2.20.4, 2.21.0rc0, 2.21.0, 2.21.1, 2.21.2, 2.21.3, 2.22.0rc0, 2.22.0, 2.22.1, 3.0.0rc0, 3.0.0rc1, 3.0.0rc2, 3.0.0rc3, 3.0.0, 3.0.1, 3.1.0rc0, 3.1.0 | + + + +mlflow-skinny==3.1.0; Flask<4; alembic!=1.10.0,<2; docker<8,>=4.0.0; graphene<4; gunicorn<24; platform_system != "Windows"; matplotlib<4; numpy<3; pandas<3; pyarrow<21,>=4.0.0; scikit-learn<2; scipy<2; sqlalchemy<3,>=1.4.0; waitress<4; platform_system == "Windows"; pyarrow; extra == "extras"; requests-auth-aws-sigv4; extra == "extras"; boto3; extra == "extras"; botocore; extra == "extras"; google-cloud-storage>=1.30.0; extra == "extras"; azureml-core>=1.2.0; extra == "extras"; pysftp; extra == "extras"; kubernetes; extra == "extras"; virtualenv; extra == "extras"; prometheus-flask-exporter; extra == "extras"; azure-storage-file-datalake>12; extra == "databricks"; google-cloud-storage>=1.30.0; extra == "databricks"; boto3>1; extra == "databricks"; botocore; extra == "databricks"; databricks-agents<2.0,>=1.0.0rc3; extra == "databricks"; mlserver!=1.3.1,>=1.2.0; extra == "mlserver"; mlserver-mlflow!=1.3.1,>=1.2.0; extra == "mlserver"; fastapi<1; extra == "gateway"; uvicorn[standard]<1; extra == "gateway"; watchfiles<2; extra == "gateway"; aiohttp<4; extra == "gateway"; boto3<2,>=1.28.56; extra == "gateway"; tiktoken<1; extra == "gateway"; slowapi<1,>=0.1.9; extra == "gateway"; fastapi<1; extra == "genai"; uvicorn[standard]<1; extra == "genai"; watchfiles<2; extra == "genai"; aiohttp<4; extra == "genai"; boto3<2,>=1.28.56; extra == "genai"; tiktoken<1; extra == "genai"; slowapi<1,>=0.1.9; extra == "genai"; mlflow-dbstore; extra == "sqlserver"; aliyunstoreplugin; extra == "aliyun-oss"; mlflow-xethub; extra == "xethub"; mlflow-jfrog-plugin; extra == "jfrog"; langchain<=0.3.25,>=0.1.0; extra == "langchain"; Flask-WTF<2; extra == "auth" | + + + +3.1.0 | + + + +Yes | + + + +CVE-2025-0453, CVSS_V3, MLflow Uncontrolled Resource Consumption vulnerability, CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 CVE-2024-8859, CVSS_V3, MLflow has a Local File Read/Path Traversal in dbfs, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N, affects: >=0,<2.17.0rc0 CVE-2024-27134, CVSS_V3, MLflow's excessive directory permissions allow local privilege escalation, CVSS:3.1/AV:L/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<2.16.0 CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 CVE-2024-27134, CVSS_V3, , CVSS:3.1/AV:L/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<2.16.0 CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0 |
+
+
+
+ Yes | + + + +3.0.0rc0: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.21.3: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.16.1: CVE-2025-0453, CVSS_V3, MLflow Uncontrolled Resource Consumption vulnerability, CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 CVE-2024-8859, CVSS_V3, MLflow has a Local File Read/Path Traversal in dbfs, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N, affects: >=0,<2.17.0rc0 CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 3.0.0rc3: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 3.0.0rc2: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.22.1: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.21.1: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.17.2: CVE-2025-0453, CVSS_V3, MLflow Uncontrolled Resource Consumption vulnerability, CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 2.22.0rc0: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.21.0rc0: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.18.0: CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 2.16.2: CVE-2025-0453, CVSS_V3, MLflow Uncontrolled Resource Consumption vulnerability, CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 CVE-2024-8859, CVSS_V3, MLflow has a Local File Read/Path Traversal in dbfs, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N, affects: >=0,<2.17.0rc0 CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 2.20.0: CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.20.3: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.21.2: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.20.4: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 3.0.0: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.22.0: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.17.0: CVE-2025-0453, CVSS_V3, MLflow Uncontrolled Resource Consumption vulnerability, CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 2.17.0rc0: CVE-2025-0453, CVSS_V3, MLflow Uncontrolled Resource Consumption vulnerability, CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 2.18.0rc0: CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 3.0.1: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.19.0rc0: CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 2.17.1: CVE-2025-0453, CVSS_V3, MLflow Uncontrolled Resource Consumption vulnerability, CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 3.0.0rc1: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.20.1: CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 3.1.0rc0: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.16.0: CVE-2025-0453, CVSS_V3, MLflow Uncontrolled Resource Consumption vulnerability, CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 CVE-2025-1474, CVSS_V3, MLflow has Weak Password Requirements, CVSS:3.0/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:L/A:N, affects: >=0,<2.19.0 CVE-2024-8859, CVSS_V3, MLflow has a Local File Read/Path Traversal in dbfs, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N, affects: >=0,<2.17.0rc0 CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 CVE-2025-1474, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:L/I:H/A:N, affects: >=0,<2.19.0; 2.19.0: CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.21.0: CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.20.0rc0: CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0; 2.20.2: CVE-2025-1473, CVSS_V3, MLflow Cross-Site Request Forgery (CSRF) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N, affects: >=2.17.0,<2.20.3 CVE-2025-52967, CVSS_V3, MLFlow SSRF via gateway_proxy_handler, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N, affects: >=0,<3.1.0 |
+
+
+
+ Up-to-date | + + + +None | + + + +Not Used | + + +
| motor-types | + + + +Base Package | + + + +EY | + + + +1.0.0b4 | + + + +{'base_package': 'motor-types==1.0.0b4', 'dependencies': ['pymongo==4.3.0', 'motor==3.0.0', 'typing-extensions==4.0.0', 'dnspython==2.3.0']} | + + + +pymongo (>=4.3.0); motor (>=3.0.0) ; extra == "motor"; typing-extensions (>=4.0.0); dnspython (>=2.3.0) ; extra == "motor" | + + + ++ + + + | pymongo (>=4.3.0); motor (>=3.0.0) ; extra == "motor"; typing-extensions (>=4.0.0); dnspython (>=2.3.0) ; extra == "motor" | + + + +1.0.0b4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| notebook | + + + +Base Package | + + + +EY | + + + +7.2.2 | + + + +{'base_package': 'notebook==7.2.2', 'dependencies': ['jupyter-server==2.4.0', 'jupyterlab-server==2.27.1', 'jupyterlab==4.4.3', 'notebook-shim==0.2', 'tornado==6.2.0', 'sphinx==1.3.6', 'importlib-resources==5.0', 'jupyter-server==2.4.0', 'jupyterlab-server==2.27.1', 'pytest==7.0']} | + + + +jupyter-server<3,>=2.4.0; jupyterlab-server<3,>=2.27.1; jupyterlab<4.5,>=4.4.3; notebook-shim<0.3,>=0.2; tornado>=6.2.0; hatch; extra == "dev"; pre-commit; extra == "dev"; myst-parser; extra == "docs"; nbsphinx; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx>=1.3.6; extra == "docs"; sphinxcontrib-github-alt; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; importlib-resources>=5.0; python_version < "3.10" and extra == "test"; ipykernel; extra == "test"; jupyter-server[test]<3,>=2.4.0; extra == "test"; jupyterlab-server[test]<3,>=2.27.1; extra == "test"; nbval; extra == "test"; pytest-console-scripts; extra == "test"; pytest-timeout; extra == "test"; pytest-tornasync; extra == "test"; pytest>=7.0; extra == "test"; requests; extra == "test" | + + + +7.2.3, 7.3.0a0, 7.3.0a1, 7.3.0b0, 7.3.0b1, 7.3.0b2, 7.3.0rc0, 7.3.0, 7.3.1, 7.3.2, 7.3.3, 7.4.0a0, 7.4.0a1, 7.4.0a2, 7.4.0a3, 7.4.0b0, 7.4.0b1, 7.4.0b2, 7.4.0b3, 7.4.0rc0, 7.4.0, 7.4.1, 7.4.2, 7.4.3, 7.5.0a0 | + + + +jupyter-server<3,>=2.4.0; jupyterlab-server<3,>=2.27.1; jupyterlab<4.5,>=4.4.3; notebook-shim<0.3,>=0.2; tornado>=6.2.0; hatch; extra == "dev"; pre-commit; extra == "dev"; myst-parser; extra == "docs"; nbsphinx; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx>=1.3.6; extra == "docs"; sphinxcontrib-github-alt; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; importlib-resources>=5.0; python_version < "3.10" and extra == "test"; ipykernel; extra == "test"; jupyter-server[test]<3,>=2.4.0; extra == "test"; jupyterlab-server[test]<3,>=2.27.1; extra == "test"; nbval; extra == "test"; pytest-console-scripts; extra == "test"; pytest-timeout; extra == "test"; pytest-tornasync; extra == "test"; pytest>=7.0; extra == "test"; requests; extra == "test" | + + + +7.5.0a0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| onnxruntime | + + + +Base Package | + + + +EY | + + + +1.18.0 | + + + +{'base_package': 'onnxruntime==1.18.0', 'dependencies': ['numpy==1.21.6']} | + + + +coloredlogs; flatbuffers; numpy>=1.21.6; packaging; protobuf; sympy | + + + +1.18.1, 1.19.0, 1.19.2, 1.20.0, 1.20.1, 1.21.0, 1.21.1, 1.22.0 | + + + +coloredlogs; flatbuffers; numpy>=1.21.6; packaging; protobuf; sympy | + + + +1.22.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| opencensus-ext-azure | + + + +Base Package | + + + +EY | + + + +1.1.13 | + + + +{'base_package': 'opencensus-ext-azure==1.1.13', 'dependencies': ['azure-core==1.12.0', 'azure-identity==1.5.0', 'opencensus==0.11.4', 'psutil==5.6.3', 'requests==2.19.0']} | + + + +azure-core<2.0.0,>=1.12.0; azure-identity<2.0.0,>=1.5.0; opencensus<1.0.0,>=0.11.4; psutil>=5.6.3; requests>=2.19.0 | + + + +1.1.14, 1.1.15 | + + + +azure-core<2.0.0,>=1.12.0; azure-identity<2.0.0,>=1.5.0; opencensus<1.0.0,>=0.11.4; psutil>=5.6.3; requests>=2.19.0 | + + + +1.1.15 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| opencensus-ext-logging | + + + +Base Package | + + + +EY | + + + +0.1.1 | + + + +{'base_package': 'opencensus-ext-logging==0.1.1', 'dependencies': ['opencensus==0.8.0']} | + + + +opencensus (<1.0.0,>=0.8.0) | + + + ++ + + + | opencensus (<1.0.0,>=0.8.0) | + + + +0.1.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| opensearch-py | + + + +Base Package | + + + +EY | + + + +2.5.0 | + + + +{'base_package': 'opensearch-py==2.5.0', 'dependencies': ['urllib3==1.26.19', 'urllib3==1.26.19', 'requests==2.32.0', 'certifi==2024.07.04', 'requests==2.0.0', 'pytest==3.0.0', 'black==24.3.0', 'aiohttp==3.9.4', 'aiohttp==3.9.4']} | + + + +urllib3<1.27,>=1.26.19; python_version < "3.10"; urllib3!=2.2.0,!=2.2.1,<3,>=1.26.19; python_version >= "3.10"; requests<3.0.0,>=2.32.0; python-dateutil; certifi>=2024.07.04; Events; requests<3.0.0,>=2.0.0; extra == "develop"; coverage<8.0.0; extra == "develop"; pyyaml; extra == "develop"; pytest>=3.0.0; extra == "develop"; pytest-cov; extra == "develop"; pytz; extra == "develop"; botocore; extra == "develop"; pytest-mock<4.0.0; extra == "develop"; sphinx; extra == "develop"; sphinx_rtd_theme; extra == "develop"; myst_parser; extra == "develop"; sphinx_copybutton; extra == "develop"; black>=24.3.0; extra == "develop"; jinja2; extra == "develop"; sphinx; extra == "docs"; sphinx_rtd_theme; extra == "docs"; myst_parser; extra == "docs"; sphinx_copybutton; extra == "docs"; aiohttp<4,>=3.9.4; extra == "docs"; aiohttp<4,>=3.9.4; extra == "async"; requests_kerberos; extra == "kerberos" | + + + +2.6.0, 2.7.0, 2.7.1, 2.8.0, 3.0.0 | + + + +urllib3<1.27,>=1.26.19; python_version < "3.10"; urllib3!=2.2.0,!=2.2.1,<3,>=1.26.19; python_version >= "3.10"; requests<3.0.0,>=2.32.0; python-dateutil; certifi>=2024.07.04; Events; requests<3.0.0,>=2.0.0; extra == "develop"; coverage<8.0.0; extra == "develop"; pyyaml; extra == "develop"; pytest>=3.0.0; extra == "develop"; pytest-cov; extra == "develop"; pytz; extra == "develop"; botocore; extra == "develop"; pytest-mock<4.0.0; extra == "develop"; sphinx; extra == "develop"; sphinx_rtd_theme; extra == "develop"; myst_parser; extra == "develop"; sphinx_copybutton; extra == "develop"; black>=24.3.0; extra == "develop"; jinja2; extra == "develop"; sphinx; extra == "docs"; sphinx_rtd_theme; extra == "docs"; myst_parser; extra == "docs"; sphinx_copybutton; extra == "docs"; aiohttp<4,>=3.9.4; extra == "docs"; aiohttp<4,>=3.9.4; extra == "async"; requests_kerberos; extra == "kerberos" | + + + +3.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| optuna | + + + +Base Package | + + + +EY | + + + +3.6.1 | + + + +{'base_package': 'optuna==3.6.1', 'dependencies': ['alembic==1.5.0', 'packaging==20.0', 'sqlalchemy==1.4.2', 'asv==0.5.0', 'typing_extensions==3.10.0.0', 'cmaes==0.10.0', 'plotly==4.9.0', 'sphinx_rtd_theme==1.2.0', 'cmaes==0.10.0', 'plotly==4.9.0', 'scikit-learn==0.24.2', 'protobuf==5.28.1', 'scipy==1.9.2', 'protobuf==5.28.1']} | + + + +alembic>=1.5.0; colorlog; numpy; packaging>=20.0; sqlalchemy>=1.4.2; tqdm; PyYAML; asv>=0.5.0; extra == "benchmark"; cma; extra == "benchmark"; virtualenv; extra == "benchmark"; black; extra == "checking"; blackdoc; extra == "checking"; flake8; extra == "checking"; isort; extra == "checking"; mypy; extra == "checking"; mypy_boto3_s3; extra == "checking"; types-PyYAML; extra == "checking"; types-redis; extra == "checking"; types-setuptools; extra == "checking"; types-tqdm; extra == "checking"; typing_extensions>=3.10.0.0; extra == "checking"; ase; extra == "document"; cmaes>=0.10.0; extra == "document"; fvcore; extra == "document"; kaleido<0.4; extra == "document"; lightgbm; extra == "document"; matplotlib!=3.6.0; extra == "document"; pandas; extra == "document"; pillow; extra == "document"; plotly>=4.9.0; extra == "document"; scikit-learn; extra == "document"; sphinx; extra == "document"; sphinx-copybutton; extra == "document"; sphinx-gallery; extra == "document"; sphinx-notfound-page; extra == "document"; sphinx_rtd_theme>=1.2.0; extra == "document"; torch; extra == "document"; torchvision; extra == "document"; boto3; extra == "optional"; cmaes>=0.10.0; extra == "optional"; google-cloud-storage; extra == "optional"; matplotlib!=3.6.0; extra == "optional"; pandas; extra == "optional"; plotly>=4.9.0; extra == "optional"; redis; extra == "optional"; scikit-learn>=0.24.2; extra == "optional"; scipy; extra == "optional"; torch; python_version <= "3.12" and extra == "optional"; grpcio; extra == "optional"; protobuf>=5.28.1; extra == "optional"; coverage; extra == "test"; fakeredis[lua]; extra == "test"; kaleido<0.4; extra == "test"; moto; extra == "test"; pytest; extra == "test"; scipy>=1.9.2; extra == "test"; torch; python_version <= "3.12" and extra == "test"; grpcio; extra == "test"; protobuf>=5.28.1; extra == "test" | + + + +3.6.2, 4.0.0b0, 4.0.0, 4.1.0, 4.2.0, 4.2.1, 4.3.0, 4.4.0 | + + + +alembic>=1.5.0; colorlog; numpy; packaging>=20.0; sqlalchemy>=1.4.2; tqdm; PyYAML; asv>=0.5.0; extra == "benchmark"; cma; extra == "benchmark"; virtualenv; extra == "benchmark"; black; extra == "checking"; blackdoc; extra == "checking"; flake8; extra == "checking"; isort; extra == "checking"; mypy; extra == "checking"; mypy_boto3_s3; extra == "checking"; types-PyYAML; extra == "checking"; types-redis; extra == "checking"; types-setuptools; extra == "checking"; types-tqdm; extra == "checking"; typing_extensions>=3.10.0.0; extra == "checking"; ase; extra == "document"; cmaes>=0.10.0; extra == "document"; fvcore; extra == "document"; kaleido<0.4; extra == "document"; lightgbm; extra == "document"; matplotlib!=3.6.0; extra == "document"; pandas; extra == "document"; pillow; extra == "document"; plotly>=4.9.0; extra == "document"; scikit-learn; extra == "document"; sphinx; extra == "document"; sphinx-copybutton; extra == "document"; sphinx-gallery; extra == "document"; sphinx-notfound-page; extra == "document"; sphinx_rtd_theme>=1.2.0; extra == "document"; torch; extra == "document"; torchvision; extra == "document"; boto3; extra == "optional"; cmaes>=0.10.0; extra == "optional"; google-cloud-storage; extra == "optional"; matplotlib!=3.6.0; extra == "optional"; pandas; extra == "optional"; plotly>=4.9.0; extra == "optional"; redis; extra == "optional"; scikit-learn>=0.24.2; extra == "optional"; scipy; extra == "optional"; torch; python_version <= "3.12" and extra == "optional"; grpcio; extra == "optional"; protobuf>=5.28.1; extra == "optional"; coverage; extra == "test"; fakeredis[lua]; extra == "test"; kaleido<0.4; extra == "test"; moto; extra == "test"; pytest; extra == "test"; scipy>=1.9.2; extra == "test"; torch; python_version <= "3.12" and extra == "test"; grpcio; extra == "test"; protobuf>=5.28.1; extra == "test" | + + + +4.4.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| plotly-resampler | + + + +Base Package | + + + +EY | + + + +0.10.0 | + + + +{'base_package': 'plotly-resampler==0.10.0', 'dependencies': ['jupyter-dash==0.4.2', 'plotly==5.5.0', 'dash==2.9.0', 'pandas==1', 'numpy==1.14', 'numpy==1.24', 'orjson==3.8.0', 'Flask-Cors==3.0.10', 'kaleido==0.2.1', 'tsdownsample==0.1.3']} | + + + +jupyter-dash>=0.4.2; extra == "inline-persistent"; plotly<6.0.0,>=5.5.0; dash>=2.9.0; pandas>=1; numpy>=1.14; python_version < "3.11"; numpy>=1.24; python_version >= "3.11"; orjson<4.0.0,>=3.8.0; Flask-Cors<4.0.0,>=3.0.10; extra == "inline-persistent"; kaleido==0.2.1; extra == "inline-persistent"; tsdownsample>=0.1.3 | + + + +0.11.0rc0, 0.11.0rc1 | + + + +jupyter-dash>=0.4.2; extra == "inline-persistent"; plotly<6.0.0,>=5.5.0; dash>=2.9.0; pandas>=1; numpy>=1.14; python_version < "3.11"; numpy>=1.24; python_version >= "3.11"; orjson<4.0.0,>=3.8.0; Flask-Cors<4.0.0,>=3.0.10; extra == "inline-persistent"; kaleido==0.2.1; extra == "inline-persistent"; tsdownsample>=0.1.3 | + + + +0.11.0rc1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| poetry-plugin-export | + + + +Base Package | + + + +EY | + + + +1.8.0 | + + + +{'base_package': 'poetry-plugin-export==1.8.0', 'dependencies': ['poetry==2.0.0', 'poetry-core==1.7.0']} | + + + +poetry<3.0.0,>=2.0.0; poetry-core<3.0.0,>=1.7.0 | + + + +1.9.0 | + + + +poetry<3.0.0,>=2.0.0; poetry-core<3.0.0,>=1.7.0 | + + + +1.9.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| portalocker | + + + +Base Package | + + + +EY | + + + +2.10.1 | + + + +{'base_package': 'portalocker==2.10.1', 'dependencies': ['pywin32==226', 'coverage-conditional-plugin==0.9.0', 'pytest-cov==2.8.1', 'pytest-mypy==0.8.0', 'pytest-rerunfailures==15.0', 'pytest-timeout==2.1.0', 'pytest==5.4.1', 'sphinx==6.0.0', 'types-pywin32==310.0.0.20250429']} | + + + +pywin32>=226; platform_system == "Windows"; portalocker[tests]; extra == "docs"; coverage-conditional-plugin>=0.9.0; extra == "tests"; portalocker[redis]; extra == "tests"; pytest-cov>=2.8.1; extra == "tests"; pytest-mypy>=0.8.0; extra == "tests"; pytest-rerunfailures>=15.0; extra == "tests"; pytest-timeout>=2.1.0; extra == "tests"; pytest>=5.4.1; extra == "tests"; sphinx>=6.0.0; extra == "tests"; types-pywin32>=310.0.0.20250429; extra == "tests"; types-redis; extra == "tests"; redis; extra == "redis" | + + + +3.0.0, 3.1.0, 3.1.1, 3.2.0 | + + + +pywin32>=226; platform_system == "Windows"; portalocker[tests]; extra == "docs"; coverage-conditional-plugin>=0.9.0; extra == "tests"; portalocker[redis]; extra == "tests"; pytest-cov>=2.8.1; extra == "tests"; pytest-mypy>=0.8.0; extra == "tests"; pytest-rerunfailures>=15.0; extra == "tests"; pytest-timeout>=2.1.0; extra == "tests"; pytest>=5.4.1; extra == "tests"; sphinx>=6.0.0; extra == "tests"; types-pywin32>=310.0.0.20250429; extra == "tests"; types-redis; extra == "tests"; redis; extra == "redis" | + + + +3.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pre-commit | + + + +Base Package | + + + +EY | + + + +3.8.0 | + + + +{'base_package': 'pre-commit==3.8.0', 'dependencies': ['cfgv==2.0.0', 'identify==1.0.0', 'nodeenv==0.11.1', 'pyyaml==5.1', 'virtualenv==20.10.0']} | + + + +cfgv>=2.0.0; identify>=1.0.0; nodeenv>=0.11.1; pyyaml>=5.1; virtualenv>=20.10.0 | + + + +4.0.0, 4.0.1, 4.1.0, 4.2.0 | + + + +cfgv>=2.0.0; identify>=1.0.0; nodeenv>=0.11.1; pyyaml>=5.1; virtualenv>=20.10.0 | + + + +4.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pyltr | + + + +Base Package | + + + +EY | + + + +0.2.6 | + + + +{'base_package': 'pyltr==0.2.6', 'dependencies': []} | + + + +numpy; pandas; scipy; scikit-learn; six | + + + ++ + + + | numpy; pandas; scipy; scikit-learn; six | + + + +0.2.6 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| PySocks | + + + +Base Package | + + + +EY | + + + +1.7.1 | + + + +{'base_package': 'PySocks==1.7.1', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 1.7.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pytest-asyncio | + + + +Base Package | + + + +EY | + + + +0.23.6 | + + + +{'base_package': 'pytest-asyncio==0.23.6', 'dependencies': ['pytest==8.2', 'typing-extensions==4.12', 'sphinx==5.3', 'sphinx-rtd-theme==1', 'coverage==6.2', 'hypothesis==5.7.1']} | + + + +pytest<9,>=8.2; typing-extensions>=4.12; python_version < "3.10"; sphinx>=5.3; extra == "docs"; sphinx-rtd-theme>=1; extra == "docs"; coverage>=6.2; extra == "testing"; hypothesis>=5.7.1; extra == "testing" | + + + +0.23.7, 0.23.8, 0.24.0a0, 0.24.0a1, 0.24.0, 0.25.0, 0.25.1, 0.25.2, 0.25.3, 0.26.0, 1.0.0a1, 1.0.0 | + + + +pytest<9,>=8.2; typing-extensions>=4.12; python_version < "3.10"; sphinx>=5.3; extra == "docs"; sphinx-rtd-theme>=1; extra == "docs"; coverage>=6.2; extra == "testing"; hypothesis>=5.7.1; extra == "testing" | + + + +1.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pytest-cov | + + + +Base Package | + + + +EY | + + + +5.0.0 | + + + +{'base_package': 'pytest-cov==5.0.0', 'dependencies': ['pytest==6.2.5', 'coverage==7.5', 'pluggy==1.2']} | + + + +pytest>=6.2.5; coverage[toml]>=7.5; pluggy>=1.2; fields; extra == "testing"; hunter; extra == "testing"; process-tests; extra == "testing"; pytest-xdist; extra == "testing"; virtualenv; extra == "testing" | + + + +6.0.0, 6.1.0, 6.1.1, 6.2.0, 6.2.1 | + + + +pytest>=6.2.5; coverage[toml]>=7.5; pluggy>=1.2; fields; extra == "testing"; hunter; extra == "testing"; process-tests; extra == "testing"; pytest-xdist; extra == "testing"; virtualenv; extra == "testing" | + + + +6.2.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pytest-httpx | + + + +Base Package | + + + +EY | + + + +0.28.0 | + + + +{'base_package': 'pytest-httpx==0.28.0', 'dependencies': []} | + + + +httpx==0.28.*; pytest==8.*; pytest-cov==6.*; extra == "testing"; pytest-asyncio==0.24.*; extra == "testing" | + + + +0.29.0, 0.30.0, 0.31.0, 0.31.1, 0.31.2, 0.32.0, 0.33.0, 0.34.0, 0.35.0 | + + + +httpx==0.28.*; pytest==8.*; pytest-cov==6.*; extra == "testing"; pytest-asyncio==0.24.*; extra == "testing" | + + + +0.35.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pytest-mock | + + + +Base Package | + + + +EY | + + + +1.13.0 | + + + +{'base_package': 'pytest-mock==1.13.0', 'dependencies': ['pytest==6.2.5']} | + + + +pytest>=6.2.5; pre-commit; extra == "dev"; pytest-asyncio; extra == "dev"; tox; extra == "dev" | + + + +2.0.0, 3.0.0, 3.1.0, 3.1.1, 3.2.0, 3.3.0, 3.3.1, 3.4.0, 3.5.0, 3.5.1, 3.6.0, 3.6.1, 3.7.0, 3.8.0, 3.8.1, 3.8.2, 3.9.0, 3.10.0, 3.11.0, 3.11.1, 3.12.0, 3.13.0, 3.14.0, 3.14.1 | + + + +pytest>=6.2.5; pre-commit; extra == "dev"; pytest-asyncio; extra == "dev"; tox; extra == "dev" | + + + +3.14.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pytest-sugar | + + + +Base Package | + + + +EY | + + + +1.0.0 | + + + +{'base_package': 'pytest-sugar==1.0.0', 'dependencies': ['pytest==6.2.0', 'termcolor==2.1.0', 'packaging==21.3']} | + + + +pytest >=6.2.0; termcolor >=2.1.0; packaging >=21.3; black ; extra == 'dev'; flake8 ; extra == 'dev'; pre-commit ; extra == 'dev' | + + + ++ + + + | pytest >=6.2.0; termcolor >=2.1.0; packaging >=21.3; black ; extra == 'dev'; flake8 ; extra == 'dev'; pre-commit ; extra == 'dev' | + + + +1.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| python-multipart | + + + +Base Package | + + + +EY | + + + +0.0.19 | + + + +{'base_package': 'python-multipart==0.0.19', 'dependencies': []} | + + + ++ + + + | 0.0.20 | + + + ++ + + + | 0.0.20 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| recordlinkage | + + + +Base Package | + + + +EY | + + + +0.16 | + + + +{'base_package': 'recordlinkage==0.16', 'dependencies': ['jellyfish==1', 'numpy==1.13', 'pandas==1', 'scipy==1', 'scikit-learn==1', 'networkx==2']} | + + + +jellyfish (>=1); numpy (>=1.13); pandas (<3,>=1); scipy (>=1); scikit-learn (>=1); joblib; networkx (>=2) ; extra == 'all'; bottleneck ; extra == 'all'; numexpr ; extra == 'all'; sphinx ; extra == 'docs'; nbsphinx ; extra == 'docs'; sphinx-rtd-theme ; extra == 'docs'; ipykernel ; extra == 'docs'; ruff ; extra == 'lint'; pytest ; extra == 'test' | + + + ++ + + + | jellyfish (>=1); numpy (>=1.13); pandas (<3,>=1); scipy (>=1); scikit-learn (>=1); joblib; networkx (>=2) ; extra == 'all'; bottleneck ; extra == 'all'; numexpr ; extra == 'all'; sphinx ; extra == 'docs'; nbsphinx ; extra == 'docs'; sphinx-rtd-theme ; extra == 'docs'; ipykernel ; extra == 'docs'; ruff ; extra == 'lint'; pytest ; extra == 'test' | + + + +0.16 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| reportlab | + + + +Base Package | + + + +EY | + + + +4.2.0 | + + + +{'base_package': 'reportlab==4.2.0', 'dependencies': ['pillow==9.0.0', 'rl_accel==0.9.0', 'rl_renderPM==4.0.3', 'rlPyCairo==0.2.0', 'freetype-py==2.3.0']} | + + + +pillow>=9.0.0; charset-normalizer; rl_accel<1.1,>=0.9.0; extra == "accel"; rl_renderPM<4.1,>=4.0.3; extra == "renderpm"; rlPyCairo<1,>=0.2.0; extra == "pycairo"; freetype-py<2.4,>=2.3.0; extra == "pycairo"; rlbidi; extra == "bidi"; uharfbuzz; extra == "shaping" | + + + +4.2.2, 4.2.4, 4.2.5, 4.3.0, 4.3.1, 4.4.0, 4.4.1, 4.4.2 | + + + +pillow>=9.0.0; charset-normalizer; rl_accel<1.1,>=0.9.0; extra == "accel"; rl_renderPM<4.1,>=4.0.3; extra == "renderpm"; rlPyCairo<1,>=0.2.0; extra == "pycairo"; freetype-py<2.4,>=2.3.0; extra == "pycairo"; rlbidi; extra == "bidi"; uharfbuzz; extra == "shaping" | + + + +4.4.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| retry | + + + +Base Package | + + + +EY | + + + +0.9.2 | + + + +{'base_package': 'retry==0.9.2', 'dependencies': ['decorator==3.4.2', 'py==1.4.26']} | + + + +decorator (>=3.4.2); py (<2.0.0,>=1.4.26) | + + + ++ + + + | decorator (>=3.4.2); py (<2.0.0,>=1.4.26) | + + + +0.9.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| ruamel.yaml | + + + +Base Package | + + + +EY | + + + +0.18.6 | + + + +{'base_package': 'ruamel.yaml==0.18.6', 'dependencies': ['ruamel.yaml.clib==0.2.7', 'ruamel.yaml.jinja2==0.2', 'mercurial==5.7']} | + + + +ruamel.yaml.clib>=0.2.7; platform_python_implementation == "CPython" and python_version < "3.14"; ruamel.yaml.jinja2>=0.2; extra == "jinja2"; ryd; extra == "docs"; mercurial>5.7; extra == "docs" | + + + +0.18.7, 0.18.8, 0.18.9, 0.18.10, 0.18.11, 0.18.12, 0.18.13, 0.18.14 | + + + +ruamel.yaml.clib>=0.2.7; platform_python_implementation == "CPython" and python_version < "3.14"; ruamel.yaml.jinja2>=0.2; extra == "jinja2"; ryd; extra == "docs"; mercurial>5.7; extra == "docs" | + + + +0.18.14 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| ruamel.yaml.clib | + + + +Base Package | + + + +EY | + + + +0.2.12 | + + + +{'base_package': 'ruamel.yaml.clib==0.2.12', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 0.2.12 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| ruff | + + + +Base Package | + + + +EY | + + + +0.5.7 | + + + +{'base_package': 'ruff==0.5.7', 'dependencies': []} | + + + ++ + + + | 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.6.6, 0.6.7, 0.6.8, 0.6.9, 0.7.0, 0.7.1, 0.7.2, 0.7.3, 0.7.4, 0.8.0, 0.8.1, 0.8.2, 0.8.3, 0.8.4, 0.8.5, 0.8.6, 0.9.0, 0.9.1, 0.9.2, 0.9.3, 0.9.4, 0.9.5, 0.9.6, 0.9.7, 0.9.8, 0.9.9, 0.9.10, 0.10.0, 0.11.0, 0.11.1, 0.11.2, 0.11.3, 0.11.4, 0.11.5, 0.11.6, 0.11.7, 0.11.8, 0.11.9, 0.11.10, 0.11.11, 0.11.12, 0.11.13, 0.12.0 | + + + ++ + + + | 0.12.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| scikit-plot | + + + +Base Package | + + + +EY | + + + +0.3.7 | + + + +{'base_package': 'scikit-plot==0.3.7', 'dependencies': ['matplotlib==1.4.0', 'scikit-learn==0.18', 'scipy==0.9', 'joblib==0.10']} | + + + +matplotlib (>=1.4.0); scikit-learn (>=0.18); scipy (>=0.9); joblib (>=0.10); pytest; extra == 'testing' | + + + ++ + + + | matplotlib (>=1.4.0); scikit-learn (>=0.18); scipy (>=0.9); joblib (>=0.10); pytest; extra == 'testing' | + + + +0.3.7 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| seaborn | + + + +Base Package | + + + +EY | + + + +0.13.2 | + + + +{'base_package': 'seaborn==0.13.2', 'dependencies': ['numpy==1.20', 'pandas==1.2', 'matplotlib==3.4', 'pydata_sphinx_theme==0.10.0rc2', 'scipy==1.7', 'statsmodels==0.12']} | + + + +numpy>=1.20,!=1.24.0; pandas>=1.2; matplotlib>=3.4,!=3.6.1; pytest ; extra == "dev"; pytest-cov ; extra == "dev"; pytest-xdist ; extra == "dev"; flake8 ; extra == "dev"; mypy ; extra == "dev"; pandas-stubs ; extra == "dev"; pre-commit ; extra == "dev"; flit ; extra == "dev"; numpydoc ; extra == "docs"; nbconvert ; extra == "docs"; ipykernel ; extra == "docs"; sphinx<6.0.0 ; extra == "docs"; sphinx-copybutton ; extra == "docs"; sphinx-issues ; extra == "docs"; sphinx-design ; extra == "docs"; pyyaml ; extra == "docs"; pydata_sphinx_theme==0.10.0rc2 ; extra == "docs"; scipy>=1.7 ; extra == "stats"; statsmodels>=0.12 ; extra == "stats" | + + + ++ + + + | numpy>=1.20,!=1.24.0; pandas>=1.2; matplotlib>=3.4,!=3.6.1; pytest ; extra == "dev"; pytest-cov ; extra == "dev"; pytest-xdist ; extra == "dev"; flake8 ; extra == "dev"; mypy ; extra == "dev"; pandas-stubs ; extra == "dev"; pre-commit ; extra == "dev"; flit ; extra == "dev"; numpydoc ; extra == "docs"; nbconvert ; extra == "docs"; ipykernel ; extra == "docs"; sphinx<6.0.0 ; extra == "docs"; sphinx-copybutton ; extra == "docs"; sphinx-issues ; extra == "docs"; sphinx-design ; extra == "docs"; pyyaml ; extra == "docs"; pydata_sphinx_theme==0.10.0rc2 ; extra == "docs"; scipy>=1.7 ; extra == "stats"; statsmodels>=0.12 ; extra == "stats" | + + + +0.13.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| selenium | + + + +Base Package | + + + +EY | + + + +4.21.0 | + + + +{'base_package': 'selenium==4.21.0', 'dependencies': ['urllib3==2.4.0', 'trio==0.30.0', 'trio-websocket==0.12.2', 'certifi==2025.4.26', 'typing_extensions==4.13.2', 'websocket-client==1.8.0']} | + + + +urllib3[socks]~=2.4.0; trio~=0.30.0; trio-websocket~=0.12.2; certifi>=2025.4.26; typing_extensions~=4.13.2; websocket-client~=1.8.0 | + + + +4.22.0, 4.23.0, 4.23.1, 4.24.0, 4.25.0, 4.26.0, 4.26.1, 4.27.0, 4.27.1, 4.28.0, 4.28.1, 4.29.0, 4.30.0, 4.31.0, 4.32.0, 4.33.0 | + + + +urllib3[socks]~=2.4.0; trio~=0.30.0; trio-websocket~=0.12.2; certifi>=2025.4.26; typing_extensions~=4.13.2; websocket-client~=1.8.0 | + + + +4.33.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| sentence-transformers | + + + +Base Package | + + + +EY | + + + +2.2.2 | + + + +{'base_package': 'sentence-transformers==2.2.2', 'dependencies': ['transformers==4.41.0', 'torch==1.11.0', 'huggingface-hub==0.20.0', 'typing_extensions==4.5.0', 'accelerate==0.20.3', 'optimum==1.23.1', 'optimum==1.23.1', 'optimum-intel==1.20.0', 'accelerate==0.20.3']} | + + + +transformers<5.0.0,>=4.41.0; tqdm; torch>=1.11.0; scikit-learn; scipy; huggingface-hub>=0.20.0; Pillow; typing_extensions>=4.5.0; datasets; extra == "train"; accelerate>=0.20.3; extra == "train"; optimum[onnxruntime]>=1.23.1; extra == "onnx"; optimum[onnxruntime-gpu]>=1.23.1; extra == "onnx-gpu"; optimum-intel[openvino]>=1.20.0; extra == "openvino"; datasets; extra == "dev"; accelerate>=0.20.3; extra == "dev"; pre-commit; extra == "dev"; pytest; extra == "dev"; pytest-cov; extra == "dev"; peft; extra == "dev" | + + + +2.3.0, 2.3.1, 2.4.0, 2.5.0, 2.5.1, 2.6.0, 2.6.1, 2.7.0, 3.0.0, 3.0.1, 3.1.0, 3.1.1, 3.2.0, 3.2.1, 3.3.0, 3.3.1, 3.4.0, 3.4.1, 4.0.0, 4.0.1, 4.0.2, 4.1.0 | + + + +transformers<5.0.0,>=4.41.0; tqdm; torch>=1.11.0; scikit-learn; scipy; huggingface-hub>=0.20.0; Pillow; typing_extensions>=4.5.0; datasets; extra == "train"; accelerate>=0.20.3; extra == "train"; optimum[onnxruntime]>=1.23.1; extra == "onnx"; optimum[onnxruntime-gpu]>=1.23.1; extra == "onnx-gpu"; optimum-intel[openvino]>=1.20.0; extra == "openvino"; datasets; extra == "dev"; accelerate>=0.20.3; extra == "dev"; pre-commit; extra == "dev"; pytest; extra == "dev"; pytest-cov; extra == "dev"; peft; extra == "dev" | + + + +4.1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| sktime | + + + +Base Package | + + + +EY | + + + +0.26.0 | + + + +{'base_package': 'sktime==0.26.0', 'dependencies': ['joblib==1.2.0', 'numpy==1.21', 'pandas==1.1', 'scikit-base==0.6.1', 'scikit-learn==0.24', 'scipy==1.2', 'arch==5.6', 'autots==0.6.1', 'dask==2024.8.2', 'esig==0.9.7', 'filterpy==1.4.5', 'gluonts==0.9', 'hmmlearn==0.2.7', 'matplotlib==3.3.2', 'numba==0.53', 'pmdarima==1.8', 'polars==0.20', 'prophet==1.1', 'pyod==0.8', 'ray==2.40.0', 'scikit_posthocs==0.6.5', 'seaborn==0.11', 'skforecast==0.12.1', 'skpro==2', 'statsforecast==1.0.0', 'statsmodels==0.12.1', 'stumpy==1.5.1', 'tbats==1.1', 'temporian==0.7.0', 'tensorflow==2', 'tsfresh==0.17', 'tslearn==0.5.2', 'u8darts==0.29.0', 'arch==5.6', 'autots==0.6.1', 'dask==2024.8.2', 'esig==0.9.7', 'filterpy==1.4.5', 'gluonts==0.9', 'hmmlearn==0.2.7', 'matplotlib==3.3.2', 'numba==0.53', 'pmdarima==1.8', 'polars==0.20', 'prophet==1.1', 'pyod==0.8', 'ray==2.40.0', 'scikit_posthocs==0.6.5', 'seaborn==0.11', 'skforecast==0.12.1', 'skpro==2', 'statsforecast==1.0.0', 'statsmodels==0.12.1', 'stumpy==1.5.1', 'tbats==1.1', 'temporian==0.7.0', 'tensorflow==2', 'tsfresh==0.17', 'tslearn==0.5.2', 'u8darts==0.29.0', 'dtw-python==1.3', 'numba==0.53', 'hmmlearn==0.2.7', 'numba==0.53', 'pyod==0.8', 'esig==0.9.7', 'numba==0.53', 'tensorflow==2', 'tsfresh==0.17', 'numba==0.53', 'tslearn==0.5.2', 'hmmlearn==0.2.7', 'numba==0.53', 'pyod==0.8', 'arch==5.6', 'autots==0.6.1', 'pmdarima==1.8', 'prophet==1.1', 'skforecast==0.12.1', 'skpro==2', 'statsforecast==1.0.0', 'statsmodels==0.12.1', 'tbats==1.1', 'tensorflow==2', 'seasonal==0.3.1', 'statsmodels==0.12.1', 'numba==0.53', 'tensorflow==2', 'esig==0.9.7', 'filterpy==1.4.5', 'holidays==0.29', 'mne==1.5', 'numba==0.53', 'pycatch22==0.4', 'statsmodels==0.12.1', 'stumpy==1.5.1', 'temporian==0.7.0', 'tsfresh==0.17', 'nbsphinx==0.8.6', 'pytest==7.4', 'pytest-randomly==3.15', 'pytest-timeout==2.1', 'pytest-xdist==3.3', 'neuralforecast==1.6.4', 'peft==0.10.0', 'tensorflow==2', 'pykan==0.2.1', 'pytorch-forecasting==1.0.0', 'lightning==2.0', 'gluonts==0.14.3', 'einops==0.7.0', 'huggingface-hub==0.23.0']} | + + + +joblib<1.6,>=1.2.0; numpy<2.4,>=1.21; packaging; pandas<2.4.0,>=1.1; scikit-base<0.13.0,>=0.6.1; scikit-learn<1.8.0,>=0.24; scipy<2.0.0,>=1.2; arch<7.1.0,>=5.6; python_version < "3.13" and extra == "all-extras"; autots<0.7,>=0.6.1; extra == "all-extras"; cloudpickle; python_version < "3.13" and extra == "all-extras"; dash!=2.9.0; python_version < "3.13" and extra == "all-extras"; dask<2025.2.1,>2024.8.2; (extra == "dataframe" and python_version < "3.13") and extra == "all-extras"; dtaidistance<2.4; python_version < "3.13" and extra == "all-extras"; dtw-python; python_version < "3.13" and extra == "all-extras"; esig==0.9.7; python_version < "3.10" and extra == "all-extras"; filterpy>=1.4.5; python_version < "3.11" and extra == "all-extras"; gluonts>=0.9; python_version < "3.13" and extra == "all-extras"; h5py; python_version < "3.12" and extra == "all-extras"; hmmlearn>=0.2.7; python_version < "3.11" and extra == "all-extras"; holidays; python_version < "3.13" and extra == "all-extras"; matplotlib!=3.9.1,>=3.3.2; python_version < "3.13" and extra == "all-extras"; mne; python_version < "3.13" and extra == "all-extras"; numba<0.62,>=0.53; python_version < "3.13" and extra == "all-extras"; optuna<4.5; extra == "all-extras"; pmdarima!=1.8.1,<3.0.0,>=1.8; python_version < "3.12" and extra == "all-extras"; polars[pandas]<2.0,>=0.20; python_version < "3.13" and extra == "all-extras"; prophet>=1.1; python_version < "3.12" and extra == "all-extras"; pycatch22<0.4.6; python_version < "3.13" and extra == "all-extras"; pyod>=0.8; python_version < "3.11" and extra == "all-extras"; pyts<0.14.0; python_version < "3.12" and extra == "all-extras"; ray>=2.40.0; python_version < "3.13" and extra == "all-extras"; scikit-optimize; python_version < "3.13" and extra == "all-extras"; scikit_posthocs>=0.6.5; python_version < "3.13" and extra == "all-extras"; seaborn>=0.11; python_version < "3.13" and extra == "all-extras"; seasonal; python_version < "3.13" and extra == "all-extras"; simdkalman; extra == "all-extras"; skforecast<0.15,>=0.12.1; python_version < "3.13" and extra == "all-extras"; skpro<2.10.0,>=2; extra == "all-extras"; statsforecast<2.1.0,>=1.0.0; python_version < "3.13" and extra == "all-extras"; statsmodels>=0.12.1; python_version < "3.13" and extra == "all-extras"; stumpy>=1.5.1; python_version < "3.11" and extra == "all-extras"; tbats>=1.1; python_version < "3.12" and extra == "all-extras"; temporian!=0.8.0,<0.9.0,>=0.7.0; (python_version < "3.12" and sys_platform != "win32" and platform_machine != "aarch64") and extra == "all-extras"; tensorflow<2.20,>=2; python_version < "3.13" and extra == "all-extras"; tsfresh>=0.17; python_version < "3.12" and extra == "all-extras"; tslearn!=0.6.0,<0.7.0,>=0.5.2; python_version < "3.11" and extra == "all-extras"; u8darts<0.32.0,>=0.29.0; python_version < "3.13" and extra == "all-extras"; xarray; python_version < "3.13" and extra == "all-extras"; arch<7.1.0,>=5.6; python_version < "3.13" and extra == "all-extras-pandas2"; autots<0.7,>=0.6.1; python_version < "3.13" and extra == "all-extras-pandas2"; cloudpickle; python_version < "3.13" and extra == "all-extras-pandas2"; dash!=2.9.0; python_version < "3.13" and extra == "all-extras-pandas2"; dask<2025.2.1,>2024.8.2; (extra == "dataframe" and python_version < "3.13") and extra == "all-extras-pandas2"; dtaidistance<2.4; python_version < "3.13" and extra == "all-extras-pandas2"; dtw-python; python_version < "3.13" and extra == "all-extras-pandas2"; esig==0.9.7; python_version < "3.10" and extra == "all-extras-pandas2"; filterpy>=1.4.5; python_version < "3.11" and extra == "all-extras-pandas2"; gluonts>=0.9; python_version < "3.13" and extra == "all-extras-pandas2"; h5py; python_version < "3.12" and extra == "all-extras-pandas2"; hmmlearn>=0.2.7; python_version < "3.11" and extra == "all-extras-pandas2"; holidays; python_version < "3.13" and extra == "all-extras-pandas2"; matplotlib!=3.9.1,>=3.3.2; python_version < "3.13" and extra == "all-extras-pandas2"; mne; python_version < "3.13" and extra == "all-extras-pandas2"; numba<0.62,>=0.53; python_version < "3.13" and extra == "all-extras-pandas2"; optuna<4.5; extra == "all-extras-pandas2"; pmdarima!=1.8.1,<3.0.0,>=1.8; python_version < "3.12" and extra == "all-extras-pandas2"; polars[pandas]<2.0,>=0.20; python_version < "3.13" and extra == "all-extras-pandas2"; prophet>=1.1; python_version < "3.12" and extra == "all-extras-pandas2"; pycatch22<0.4.6; python_version < "3.13" and extra == "all-extras-pandas2"; pyod>=0.8; python_version < "3.11" and extra == "all-extras-pandas2"; ray>=2.40.0; python_version < "3.13" and extra == "all-extras-pandas2"; scikit_posthocs>=0.6.5; python_version < "3.13" and extra == "all-extras-pandas2"; seaborn>=0.11; python_version < "3.13" and extra == "all-extras-pandas2"; seasonal; python_version < "3.13" and extra == "all-extras-pandas2"; simdkalman; extra == "all-extras-pandas2"; skforecast<0.15,>=0.12.1; python_version < "3.13" and extra == "all-extras-pandas2"; skpro<2.10.0,>=2; extra == "all-extras-pandas2"; statsforecast<2.1.0,>=1.0.0; python_version < "3.13" and extra == "all-extras-pandas2"; statsmodels>=0.12.1; python_version < "3.13" and extra == "all-extras-pandas2"; stumpy>=1.5.1; python_version < "3.11" and extra == "all-extras-pandas2"; tbats>=1.1; python_version < "3.12" and extra == "all-extras-pandas2"; temporian!=0.8.0,<0.9.0,>=0.7.0; (python_version < "3.12" and sys_platform != "win32" and platform_machine != "aarch64") and extra == "all-extras-pandas2"; tensorflow<2.20,>=2; python_version < "3.13" and extra == "all-extras-pandas2"; tsfresh>=0.17; python_version < "3.12" and extra == "all-extras-pandas2"; tslearn!=0.6.0,<0.7.0,>=0.5.2; python_version < "3.11" and extra == "all-extras-pandas2"; u8darts<0.32.0,>=0.29.0; python_version < "3.13" and extra == "all-extras-pandas2"; xarray; python_version < "3.13" and extra == "all-extras-pandas2"; dtaidistance<2.4; python_version < "3.13" and extra == "alignment"; dtw-python<1.6,>=1.3; python_version < "3.13" and extra == "alignment"; numba<0.62,>=0.53; python_version < "3.13" and extra == "alignment"; hmmlearn<0.4,>=0.2.7; python_version < "3.13" and extra == "annotation"; numba<0.62,>=0.53; python_version < "3.13" and extra == "annotation"; pyod<1.2,>=0.8; python_version < "3.12" and extra == "annotation"; esig<0.10,>=0.9.7; python_version < "3.11" and extra == "classification"; numba<0.62,>=0.53; python_version < "3.13" and extra == "classification"; tensorflow<2.20,>=2; python_version < "3.13" and extra == "classification"; tsfresh<0.21,>=0.17; python_version < "3.12" and extra == "classification"; networkx<3.5; extra == "clustering"; numba<0.62,>=0.53; python_version < "3.13" and extra == "clustering"; tslearn!=0.6.0,<0.7.0,>=0.5.2; python_version < "3.12" and extra == "clustering"; ts2vg<1.3; python_version < "3.13" and extra == "clustering"; hmmlearn<0.4,>=0.2.7; python_version < "3.13" and extra == "detection"; numba<0.62,>=0.53; python_version < "3.13" and extra == "detection"; pyod<1.2,>=0.8; python_version < "3.12" and extra == "detection"; arch<7.1,>=5.6; python_version < "3.13" and extra == "forecasting"; autots<0.7,>=0.6.1; python_version < "3.13" and extra == "forecasting"; pmdarima!=1.8.1,<2.1,>=1.8; python_version < "3.12" and extra == "forecasting"; prophet<1.2,>=1.1; python_version < "3.13" and extra == "forecasting"; skforecast<0.15,>=0.12.1; python_version < "3.13" and extra == "forecasting"; skpro<2.10.0,>=2; extra == "forecasting"; statsforecast<2.1.0,>=1.0.0; python_version < "3.13" and extra == "forecasting"; statsmodels<0.15,>=0.12.1; python_version < "3.13" and extra == "forecasting"; tbats<1.2,>=1.1; python_version < "3.12" and extra == "forecasting"; tensorflow<2.20,>=2; python_version < "3.13" and extra == "networks"; seasonal<0.4,>=0.3.1; python_version < "3.13" and extra == "param-est"; statsmodels<0.15,>=0.12.1; python_version < "3.13" and extra == "param-est"; numba<0.62,>=0.53; python_version < "3.13" and extra == "regression"; tensorflow<2.20,>=2; python_version < "3.13" and extra == "regression"; esig<0.10,>=0.9.7; python_version < "3.11" and extra == "transformations"; filterpy<1.5,>=1.4.5; python_version < "3.13" and extra == "transformations"; holidays<0.59,>=0.29; python_version < "3.13" and extra == "transformations"; mne<1.9,>=1.5; python_version < "3.13" and extra == "transformations"; numba<0.62,>=0.53; python_version < "3.13" and extra == "transformations"; pycatch22<0.4.6,>=0.4; python_version < "3.13" and extra == "transformations"; simdkalman; extra == "transformations"; statsmodels<0.15,>=0.12.1; python_version < "3.13" and extra == "transformations"; stumpy<1.13,>=1.5.1; python_version < "3.12" and extra == "transformations"; temporian!=0.8.0,<0.9.0,>=0.7.0; (python_version < "3.12" and sys_platform != "win32" and platform_machine != "aarch64") and extra == "transformations"; tsfresh<0.21,>=0.17; python_version < "3.12" and extra == "transformations"; backoff; extra == "dev"; httpx; extra == "dev"; pre-commit; extra == "dev"; pytest; extra == "dev"; pytest-randomly; extra == "dev"; pytest-timeout; extra == "dev"; pytest-xdist; extra == "dev"; wheel; extra == "dev"; jupyter; extra == "docs"; myst-parser; extra == "docs"; nbsphinx>=0.8.6; extra == "docs"; numpydoc; extra == "docs"; pydata-sphinx-theme; extra == "docs"; Sphinx!=7.2.0,<9.0.0; extra == "docs"; sphinx-copybutton; extra == "docs"; sphinx-design<0.7.0; extra == "docs"; sphinx-gallery<0.20.0; extra == "docs"; sphinx-issues<6.0.0; extra == "docs"; tabulate; extra == "docs"; pytest<8.5,>=7.4; extra == "tests"; pytest-randomly<3.17,>=3.15; extra == "tests"; pytest-timeout<2.5,>=2.1; extra == "tests"; pytest-xdist<3.8,>=3.3; extra == "tests"; jupyter; extra == "binder"; pandas<2.0.0; extra == "binder"; skchange; extra == "binder"; mrseql<0.0.3; extra == "cython-extras"; mrsqm; python_version < "3.11" and extra == "cython-extras"; numba<0.62; extra == "cython-extras"; rdata; extra == "datasets"; requests; extra == "datasets"; FrEIA; python_version < "3.12" and extra == "dl"; neuralforecast<1.8.0,>=1.6.4; python_version < "3.11" and extra == "dl"; peft<0.14.0,>=0.10.0; python_version < "3.12" and extra == "dl"; tensorflow<2.20,>=2; python_version < "3.13" and extra == "dl"; torch; (sys_platform != "darwin" or python_version != "3.13") and extra == "dl"; transformers[torch]<4.41.0; python_version < "3.12" and extra == "dl"; pykan<0.2.9,>=0.2.1; python_version > "3.9.7" and extra == "dl"; pytorch-forecasting<1.5.0,>=1.0.0; (sys_platform != "darwin" or python_version != "3.13") and extra == "dl"; lightning>=2.0; python_version < "3.12" and extra == "dl"; gluonts>=0.14.3; python_version < "3.12" and extra == "dl"; einops>0.7.0; python_version < "3.12" and extra == "dl"; huggingface-hub>=0.23.0; python_version < "3.12" and extra == "dl"; accelerate; extra == "dl"; tqdm; extra == "dl"; hydra-core; python_version < "3.13" and extra == "dl"; mlflow<4.0; extra == "mlflow"; mlflow<3.0; extra == "mlflow2"; boto3; extra == "mlflow-tests"; botocore; extra == "mlflow-tests"; mlflow<4.0; extra == "mlflow-tests"; moto; extra == "mlflow-tests"; numpy<2.0.0; extra == "numpy1"; pandas<2.0.0; extra == "pandas1"; catboost; python_version < "3.13" and extra == "compatibility-tests" | + + + +0.26.1, 0.27.0, 0.27.1, 0.28.0, 0.28.1, 0.29.0, 0.29.1, 0.30.0, 0.30.1, 0.30.2, 0.31.0, 0.31.1, 0.31.2, 0.32.0, 0.32.1, 0.32.2, 0.32.3, 0.32.4, 0.33.0, 0.33.1, 0.33.2, 0.34.0, 0.34.1, 0.35.0, 0.35.1, 0.36.0, 0.36.1, 0.37.0, 0.37.1, 0.38.0 | + + + +joblib<1.6,>=1.2.0; numpy<2.4,>=1.21; packaging; pandas<2.4.0,>=1.1; scikit-base<0.13.0,>=0.6.1; scikit-learn<1.8.0,>=0.24; scipy<2.0.0,>=1.2; arch<7.1.0,>=5.6; python_version < "3.13" and extra == "all-extras"; autots<0.7,>=0.6.1; extra == "all-extras"; cloudpickle; python_version < "3.13" and extra == "all-extras"; dash!=2.9.0; python_version < "3.13" and extra == "all-extras"; dask<2025.2.1,>2024.8.2; (extra == "dataframe" and python_version < "3.13") and extra == "all-extras"; dtaidistance<2.4; python_version < "3.13" and extra == "all-extras"; dtw-python; python_version < "3.13" and extra == "all-extras"; esig==0.9.7; python_version < "3.10" and extra == "all-extras"; filterpy>=1.4.5; python_version < "3.11" and extra == "all-extras"; gluonts>=0.9; python_version < "3.13" and extra == "all-extras"; h5py; python_version < "3.12" and extra == "all-extras"; hmmlearn>=0.2.7; python_version < "3.11" and extra == "all-extras"; holidays; python_version < "3.13" and extra == "all-extras"; matplotlib!=3.9.1,>=3.3.2; python_version < "3.13" and extra == "all-extras"; mne; python_version < "3.13" and extra == "all-extras"; numba<0.62,>=0.53; python_version < "3.13" and extra == "all-extras"; optuna<4.5; extra == "all-extras"; pmdarima!=1.8.1,<3.0.0,>=1.8; python_version < "3.12" and extra == "all-extras"; polars[pandas]<2.0,>=0.20; python_version < "3.13" and extra == "all-extras"; prophet>=1.1; python_version < "3.12" and extra == "all-extras"; pycatch22<0.4.6; python_version < "3.13" and extra == "all-extras"; pyod>=0.8; python_version < "3.11" and extra == "all-extras"; pyts<0.14.0; python_version < "3.12" and extra == "all-extras"; ray>=2.40.0; python_version < "3.13" and extra == "all-extras"; scikit-optimize; python_version < "3.13" and extra == "all-extras"; scikit_posthocs>=0.6.5; python_version < "3.13" and extra == "all-extras"; seaborn>=0.11; python_version < "3.13" and extra == "all-extras"; seasonal; python_version < "3.13" and extra == "all-extras"; simdkalman; extra == "all-extras"; skforecast<0.15,>=0.12.1; python_version < "3.13" and extra == "all-extras"; skpro<2.10.0,>=2; extra == "all-extras"; statsforecast<2.1.0,>=1.0.0; python_version < "3.13" and extra == "all-extras"; statsmodels>=0.12.1; python_version < "3.13" and extra == "all-extras"; stumpy>=1.5.1; python_version < "3.11" and extra == "all-extras"; tbats>=1.1; python_version < "3.12" and extra == "all-extras"; temporian!=0.8.0,<0.9.0,>=0.7.0; (python_version < "3.12" and sys_platform != "win32" and platform_machine != "aarch64") and extra == "all-extras"; tensorflow<2.20,>=2; python_version < "3.13" and extra == "all-extras"; tsfresh>=0.17; python_version < "3.12" and extra == "all-extras"; tslearn!=0.6.0,<0.7.0,>=0.5.2; python_version < "3.11" and extra == "all-extras"; u8darts<0.32.0,>=0.29.0; python_version < "3.13" and extra == "all-extras"; xarray; python_version < "3.13" and extra == "all-extras"; arch<7.1.0,>=5.6; python_version < "3.13" and extra == "all-extras-pandas2"; autots<0.7,>=0.6.1; python_version < "3.13" and extra == "all-extras-pandas2"; cloudpickle; python_version < "3.13" and extra == "all-extras-pandas2"; dash!=2.9.0; python_version < "3.13" and extra == "all-extras-pandas2"; dask<2025.2.1,>2024.8.2; (extra == "dataframe" and python_version < "3.13") and extra == "all-extras-pandas2"; dtaidistance<2.4; python_version < "3.13" and extra == "all-extras-pandas2"; dtw-python; python_version < "3.13" and extra == "all-extras-pandas2"; esig==0.9.7; python_version < "3.10" and extra == "all-extras-pandas2"; filterpy>=1.4.5; python_version < "3.11" and extra == "all-extras-pandas2"; gluonts>=0.9; python_version < "3.13" and extra == "all-extras-pandas2"; h5py; python_version < "3.12" and extra == "all-extras-pandas2"; hmmlearn>=0.2.7; python_version < "3.11" and extra == "all-extras-pandas2"; holidays; python_version < "3.13" and extra == "all-extras-pandas2"; matplotlib!=3.9.1,>=3.3.2; python_version < "3.13" and extra == "all-extras-pandas2"; mne; python_version < "3.13" and extra == "all-extras-pandas2"; numba<0.62,>=0.53; python_version < "3.13" and extra == "all-extras-pandas2"; optuna<4.5; extra == "all-extras-pandas2"; pmdarima!=1.8.1,<3.0.0,>=1.8; python_version < "3.12" and extra == "all-extras-pandas2"; polars[pandas]<2.0,>=0.20; python_version < "3.13" and extra == "all-extras-pandas2"; prophet>=1.1; python_version < "3.12" and extra == "all-extras-pandas2"; pycatch22<0.4.6; python_version < "3.13" and extra == "all-extras-pandas2"; pyod>=0.8; python_version < "3.11" and extra == "all-extras-pandas2"; ray>=2.40.0; python_version < "3.13" and extra == "all-extras-pandas2"; scikit_posthocs>=0.6.5; python_version < "3.13" and extra == "all-extras-pandas2"; seaborn>=0.11; python_version < "3.13" and extra == "all-extras-pandas2"; seasonal; python_version < "3.13" and extra == "all-extras-pandas2"; simdkalman; extra == "all-extras-pandas2"; skforecast<0.15,>=0.12.1; python_version < "3.13" and extra == "all-extras-pandas2"; skpro<2.10.0,>=2; extra == "all-extras-pandas2"; statsforecast<2.1.0,>=1.0.0; python_version < "3.13" and extra == "all-extras-pandas2"; statsmodels>=0.12.1; python_version < "3.13" and extra == "all-extras-pandas2"; stumpy>=1.5.1; python_version < "3.11" and extra == "all-extras-pandas2"; tbats>=1.1; python_version < "3.12" and extra == "all-extras-pandas2"; temporian!=0.8.0,<0.9.0,>=0.7.0; (python_version < "3.12" and sys_platform != "win32" and platform_machine != "aarch64") and extra == "all-extras-pandas2"; tensorflow<2.20,>=2; python_version < "3.13" and extra == "all-extras-pandas2"; tsfresh>=0.17; python_version < "3.12" and extra == "all-extras-pandas2"; tslearn!=0.6.0,<0.7.0,>=0.5.2; python_version < "3.11" and extra == "all-extras-pandas2"; u8darts<0.32.0,>=0.29.0; python_version < "3.13" and extra == "all-extras-pandas2"; xarray; python_version < "3.13" and extra == "all-extras-pandas2"; dtaidistance<2.4; python_version < "3.13" and extra == "alignment"; dtw-python<1.6,>=1.3; python_version < "3.13" and extra == "alignment"; numba<0.62,>=0.53; python_version < "3.13" and extra == "alignment"; hmmlearn<0.4,>=0.2.7; python_version < "3.13" and extra == "annotation"; numba<0.62,>=0.53; python_version < "3.13" and extra == "annotation"; pyod<1.2,>=0.8; python_version < "3.12" and extra == "annotation"; esig<0.10,>=0.9.7; python_version < "3.11" and extra == "classification"; numba<0.62,>=0.53; python_version < "3.13" and extra == "classification"; tensorflow<2.20,>=2; python_version < "3.13" and extra == "classification"; tsfresh<0.21,>=0.17; python_version < "3.12" and extra == "classification"; networkx<3.5; extra == "clustering"; numba<0.62,>=0.53; python_version < "3.13" and extra == "clustering"; tslearn!=0.6.0,<0.7.0,>=0.5.2; python_version < "3.12" and extra == "clustering"; ts2vg<1.3; python_version < "3.13" and extra == "clustering"; hmmlearn<0.4,>=0.2.7; python_version < "3.13" and extra == "detection"; numba<0.62,>=0.53; python_version < "3.13" and extra == "detection"; pyod<1.2,>=0.8; python_version < "3.12" and extra == "detection"; arch<7.1,>=5.6; python_version < "3.13" and extra == "forecasting"; autots<0.7,>=0.6.1; python_version < "3.13" and extra == "forecasting"; pmdarima!=1.8.1,<2.1,>=1.8; python_version < "3.12" and extra == "forecasting"; prophet<1.2,>=1.1; python_version < "3.13" and extra == "forecasting"; skforecast<0.15,>=0.12.1; python_version < "3.13" and extra == "forecasting"; skpro<2.10.0,>=2; extra == "forecasting"; statsforecast<2.1.0,>=1.0.0; python_version < "3.13" and extra == "forecasting"; statsmodels<0.15,>=0.12.1; python_version < "3.13" and extra == "forecasting"; tbats<1.2,>=1.1; python_version < "3.12" and extra == "forecasting"; tensorflow<2.20,>=2; python_version < "3.13" and extra == "networks"; seasonal<0.4,>=0.3.1; python_version < "3.13" and extra == "param-est"; statsmodels<0.15,>=0.12.1; python_version < "3.13" and extra == "param-est"; numba<0.62,>=0.53; python_version < "3.13" and extra == "regression"; tensorflow<2.20,>=2; python_version < "3.13" and extra == "regression"; esig<0.10,>=0.9.7; python_version < "3.11" and extra == "transformations"; filterpy<1.5,>=1.4.5; python_version < "3.13" and extra == "transformations"; holidays<0.59,>=0.29; python_version < "3.13" and extra == "transformations"; mne<1.9,>=1.5; python_version < "3.13" and extra == "transformations"; numba<0.62,>=0.53; python_version < "3.13" and extra == "transformations"; pycatch22<0.4.6,>=0.4; python_version < "3.13" and extra == "transformations"; simdkalman; extra == "transformations"; statsmodels<0.15,>=0.12.1; python_version < "3.13" and extra == "transformations"; stumpy<1.13,>=1.5.1; python_version < "3.12" and extra == "transformations"; temporian!=0.8.0,<0.9.0,>=0.7.0; (python_version < "3.12" and sys_platform != "win32" and platform_machine != "aarch64") and extra == "transformations"; tsfresh<0.21,>=0.17; python_version < "3.12" and extra == "transformations"; backoff; extra == "dev"; httpx; extra == "dev"; pre-commit; extra == "dev"; pytest; extra == "dev"; pytest-randomly; extra == "dev"; pytest-timeout; extra == "dev"; pytest-xdist; extra == "dev"; wheel; extra == "dev"; jupyter; extra == "docs"; myst-parser; extra == "docs"; nbsphinx>=0.8.6; extra == "docs"; numpydoc; extra == "docs"; pydata-sphinx-theme; extra == "docs"; Sphinx!=7.2.0,<9.0.0; extra == "docs"; sphinx-copybutton; extra == "docs"; sphinx-design<0.7.0; extra == "docs"; sphinx-gallery<0.20.0; extra == "docs"; sphinx-issues<6.0.0; extra == "docs"; tabulate; extra == "docs"; pytest<8.5,>=7.4; extra == "tests"; pytest-randomly<3.17,>=3.15; extra == "tests"; pytest-timeout<2.5,>=2.1; extra == "tests"; pytest-xdist<3.8,>=3.3; extra == "tests"; jupyter; extra == "binder"; pandas<2.0.0; extra == "binder"; skchange; extra == "binder"; mrseql<0.0.3; extra == "cython-extras"; mrsqm; python_version < "3.11" and extra == "cython-extras"; numba<0.62; extra == "cython-extras"; rdata; extra == "datasets"; requests; extra == "datasets"; FrEIA; python_version < "3.12" and extra == "dl"; neuralforecast<1.8.0,>=1.6.4; python_version < "3.11" and extra == "dl"; peft<0.14.0,>=0.10.0; python_version < "3.12" and extra == "dl"; tensorflow<2.20,>=2; python_version < "3.13" and extra == "dl"; torch; (sys_platform != "darwin" or python_version != "3.13") and extra == "dl"; transformers[torch]<4.41.0; python_version < "3.12" and extra == "dl"; pykan<0.2.9,>=0.2.1; python_version > "3.9.7" and extra == "dl"; pytorch-forecasting<1.5.0,>=1.0.0; (sys_platform != "darwin" or python_version != "3.13") and extra == "dl"; lightning>=2.0; python_version < "3.12" and extra == "dl"; gluonts>=0.14.3; python_version < "3.12" and extra == "dl"; einops>0.7.0; python_version < "3.12" and extra == "dl"; huggingface-hub>=0.23.0; python_version < "3.12" and extra == "dl"; accelerate; extra == "dl"; tqdm; extra == "dl"; hydra-core; python_version < "3.13" and extra == "dl"; mlflow<4.0; extra == "mlflow"; mlflow<3.0; extra == "mlflow2"; boto3; extra == "mlflow-tests"; botocore; extra == "mlflow-tests"; mlflow<4.0; extra == "mlflow-tests"; moto; extra == "mlflow-tests"; numpy<2.0.0; extra == "numpy1"; pandas<2.0.0; extra == "pandas1"; catboost; python_version < "3.13" and extra == "compatibility-tests" | + + + +0.38.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| streamlit | + + + +Base Package | + + + +EY | + + + +1.37.1 | + + + +{'base_package': 'streamlit==1.37.1', 'dependencies': ['altair==4.0', 'blinker==1.5.0', 'cachetools==4.0', 'click==7.0', 'numpy==1.23', 'packaging==20', 'pandas==1.4.0', 'pillow==7.1.0', 'protobuf==3.20', 'pyarrow==7.0', 'requests==2.27', 'tenacity==8.1.0', 'toml==0.10.1', 'typing-extensions==4.4.0', 'watchdog==2.1.5', 'gitpython==3.0.7', 'pydeck==0.8.0b4', 'tornado==6.0.3', 'snowflake-snowpark-python==1.17.0', 'snowflake-connector-python==3.3.0']} | + + + +altair<6,>=4.0; blinker<2,>=1.5.0; cachetools<7,>=4.0; click<9,>=7.0; numpy<3,>=1.23; packaging<26,>=20; pandas<3,>=1.4.0; pillow<12,>=7.1.0; protobuf<7,>=3.20; pyarrow>=7.0; requests<3,>=2.27; tenacity<10,>=8.1.0; toml<2,>=0.10.1; typing-extensions<5,>=4.4.0; watchdog<7,>=2.1.5; platform_system != "Darwin"; gitpython!=3.1.19,<4,>=3.0.7; pydeck<1,>=0.8.0b4; tornado!=6.5.0,<7,>=6.0.3; snowflake-snowpark-python[modin]>=1.17.0; python_version < "3.12" and extra == "snowflake"; snowflake-connector-python>=3.3.0; python_version < "3.12" and extra == "snowflake" | + + + +1.38.0, 1.39.0, 1.39.1, 1.40.0, 1.40.1, 1.40.2, 1.41.0, 1.41.1, 1.42.0, 1.42.1, 1.42.2, 1.43.0, 1.43.1, 1.43.2, 1.44.0, 1.44.1, 1.45.0, 1.45.1, 1.46.0 | + + + +altair<6,>=4.0; blinker<2,>=1.5.0; cachetools<7,>=4.0; click<9,>=7.0; numpy<3,>=1.23; packaging<26,>=20; pandas<3,>=1.4.0; pillow<12,>=7.1.0; protobuf<7,>=3.20; pyarrow>=7.0; requests<3,>=2.27; tenacity<10,>=8.1.0; toml<2,>=0.10.1; typing-extensions<5,>=4.4.0; watchdog<7,>=2.1.5; platform_system != "Darwin"; gitpython!=3.1.19,<4,>=3.0.7; pydeck<1,>=0.8.0b4; tornado!=6.5.0,<7,>=6.0.3; snowflake-snowpark-python[modin]>=1.17.0; python_version < "3.12" and extra == "snowflake"; snowflake-connector-python>=3.3.0; python_version < "3.12" and extra == "snowflake" | + + + +1.46.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tabula-py | + + + +Base Package | + + + +EY | + + + +2.1.1 | + + + +{'base_package': 'tabula-py==2.1.1', 'dependencies': ['pandas==0.25.3', 'numpy==1.24.4', 'sphinx==7.1.2', 'sphinx-rtd-theme==1.3.0', 'Jinja2==3.1.2']} | + + + +pandas>=0.25.3; numpy>1.24.4; distro; pytest; extra == "dev"; ruff; extra == "dev"; mypy; extra == "dev"; Flake8-pyproject; extra == "dev"; sphinx==7.1.2; extra == "doc"; sphinx-rtd-theme==1.3.0; extra == "doc"; Jinja2==3.1.2; extra == "doc"; jpype1; extra == "jpype"; pytest; extra == "test" | + + + +2.2.0, 2.3.0, 2.3.1, 2.4.0, 2.5.0, 2.5.1, 2.6.0, 2.7.0rc0, 2.7.0, 2.8.0rc0, 2.8.0, 2.8.1, 2.8.2rc0, 2.8.2, 2.9.0rc0, 2.9.0, 2.9.1rc0, 2.9.1, 2.9.2, 2.9.3, 2.10.0rc1, 2.10.0 | + + + +pandas>=0.25.3; numpy>1.24.4; distro; pytest; extra == "dev"; ruff; extra == "dev"; mypy; extra == "dev"; Flake8-pyproject; extra == "dev"; sphinx==7.1.2; extra == "doc"; sphinx-rtd-theme==1.3.0; extra == "doc"; Jinja2==3.1.2; extra == "doc"; jpype1; extra == "jpype"; pytest; extra == "test" | + + + +2.10.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tbats | + + + +Base Package | + + + +EY | + + + +1.1.3 | + + + +{'base_package': 'tbats==1.1.3', 'dependencies': []} | + + + +numpy; scipy; pmdarima; scikit-learn; pip-tools ; extra == 'dev'; pytest ; extra == 'dev'; rpy2 ; extra == 'dev' | + + + ++ + + + | numpy; scipy; pmdarima; scikit-learn; pip-tools ; extra == 'dev'; pytest ; extra == 'dev'; rpy2 ; extra == 'dev' | + + + +1.1.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tensorflow | + + + +Base Package | + + + +EY | + + + +2.16.1 | + + + +{'base_package': 'tensorflow==2.16.1', 'dependencies': ['absl-py==1.0.0', 'astunparse==1.6.0', 'flatbuffers==24.3.25', 'gast==0.2.1', 'google-pasta==0.1.1', 'libclang==13.0.0', 'opt-einsum==2.3.2', 'protobuf==3.20.3', 'requests==2.21.0', 'six==1.12.0', 'termcolor==1.1.0', 'typing-extensions==3.6.6', 'wrapt==1.11.0', 'grpcio==1.24.3', 'tensorboard==2.19.0', 'keras==3.5.0', 'numpy==1.26.0', 'h5py==3.11.0', 'ml-dtypes==0.5.1', 'tensorflow-io-gcs-filesystem==0.23.1', 'nvidia-cublas-cu12==12.5.3.2', 'nvidia-cuda-cupti-cu12==12.5.82', 'nvidia-cuda-nvcc-cu12==12.5.82', 'nvidia-cuda-nvrtc-cu12==12.5.82', 'nvidia-cuda-runtime-cu12==12.5.82', 'nvidia-cudnn-cu12==9.3.0.75', 'nvidia-cufft-cu12==11.2.3.61', 'nvidia-curand-cu12==10.3.6.82', 'nvidia-cusolver-cu12==11.6.3.83', 'nvidia-cusparse-cu12==12.5.1.3', 'nvidia-nccl-cu12==2.23.4', 'nvidia-nvjitlink-cu12==12.5.82']} | + + + +absl-py>=1.0.0; astunparse>=1.6.0; flatbuffers>=24.3.25; gast!=0.5.0,!=0.5.1,!=0.5.2,>=0.2.1; google-pasta>=0.1.1; libclang>=13.0.0; opt-einsum>=2.3.2; packaging; protobuf!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<6.0.0dev,>=3.20.3; requests<3,>=2.21.0; setuptools; six>=1.12.0; termcolor>=1.1.0; typing-extensions>=3.6.6; wrapt>=1.11.0; grpcio<2.0,>=1.24.3; tensorboard~=2.19.0; keras>=3.5.0; numpy<2.2.0,>=1.26.0; h5py>=3.11.0; ml-dtypes<1.0.0,>=0.5.1; tensorflow-io-gcs-filesystem>=0.23.1; python_version < "3.12"; nvidia-cublas-cu12==12.5.3.2; extra == "and-cuda"; nvidia-cuda-cupti-cu12==12.5.82; extra == "and-cuda"; nvidia-cuda-nvcc-cu12==12.5.82; extra == "and-cuda"; nvidia-cuda-nvrtc-cu12==12.5.82; extra == "and-cuda"; nvidia-cuda-runtime-cu12==12.5.82; extra == "and-cuda"; nvidia-cudnn-cu12==9.3.0.75; extra == "and-cuda"; nvidia-cufft-cu12==11.2.3.61; extra == "and-cuda"; nvidia-curand-cu12==10.3.6.82; extra == "and-cuda"; nvidia-cusolver-cu12==11.6.3.83; extra == "and-cuda"; nvidia-cusparse-cu12==12.5.1.3; extra == "and-cuda"; nvidia-nccl-cu12==2.23.4; extra == "and-cuda"; nvidia-nvjitlink-cu12==12.5.82; extra == "and-cuda" | + + + +2.16.2, 2.17.0rc0, 2.17.0rc1, 2.17.0, 2.17.1, 2.18.0rc0, 2.18.0rc1, 2.18.0rc2, 2.18.0, 2.18.1, 2.19.0rc0, 2.19.0 | + + + +absl-py>=1.0.0; astunparse>=1.6.0; flatbuffers>=24.3.25; gast!=0.5.0,!=0.5.1,!=0.5.2,>=0.2.1; google-pasta>=0.1.1; libclang>=13.0.0; opt-einsum>=2.3.2; packaging; protobuf!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<6.0.0dev,>=3.20.3; requests<3,>=2.21.0; setuptools; six>=1.12.0; termcolor>=1.1.0; typing-extensions>=3.6.6; wrapt>=1.11.0; grpcio<2.0,>=1.24.3; tensorboard~=2.19.0; keras>=3.5.0; numpy<2.2.0,>=1.26.0; h5py>=3.11.0; ml-dtypes<1.0.0,>=0.5.1; tensorflow-io-gcs-filesystem>=0.23.1; python_version < "3.12"; nvidia-cublas-cu12==12.5.3.2; extra == "and-cuda"; nvidia-cuda-cupti-cu12==12.5.82; extra == "and-cuda"; nvidia-cuda-nvcc-cu12==12.5.82; extra == "and-cuda"; nvidia-cuda-nvrtc-cu12==12.5.82; extra == "and-cuda"; nvidia-cuda-runtime-cu12==12.5.82; extra == "and-cuda"; nvidia-cudnn-cu12==9.3.0.75; extra == "and-cuda"; nvidia-cufft-cu12==11.2.3.61; extra == "and-cuda"; nvidia-curand-cu12==10.3.6.82; extra == "and-cuda"; nvidia-cusolver-cu12==11.6.3.83; extra == "and-cuda"; nvidia-cusparse-cu12==12.5.1.3; extra == "and-cuda"; nvidia-nccl-cu12==2.23.4; extra == "and-cuda"; nvidia-nvjitlink-cu12==12.5.82; extra == "and-cuda" | + + + +2.19.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| textblob | + + + +Base Package | + + + +EY | + + + +0.15.3 | + + + +{'base_package': 'textblob==0.15.3', 'dependencies': ['nltk==3.9', 'pre-commit==3.5', 'sphinx==8.0.2', 'sphinx-issues==4.1.0', 'PyYAML==6.0.2']} | + + + +nltk>=3.9; textblob[tests]; extra == "dev"; tox; extra == "dev"; pre-commit~=3.5; extra == "dev"; sphinx==8.0.2; extra == "docs"; sphinx-issues==4.1.0; extra == "docs"; PyYAML==6.0.2; extra == "docs"; pytest; extra == "tests"; numpy; extra == "tests" | + + + +0.17.0, 0.17.1, 0.18.0, 0.18.0.post0, 0.19.0 | + + + +nltk>=3.9; textblob[tests]; extra == "dev"; tox; extra == "dev"; pre-commit~=3.5; extra == "dev"; sphinx==8.0.2; extra == "docs"; sphinx-issues==4.1.0; extra == "docs"; PyYAML==6.0.2; extra == "docs"; pytest; extra == "tests"; numpy; extra == "tests" | + + + +0.19.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tf2onnx | + + + +Base Package | + + + +EY | + + + +1.16.1 | + + + +{'base_package': 'tf2onnx==1.16.1', 'dependencies': ['numpy==1.14.1', 'onnx==1.4.1', 'flatbuffers==1.12', 'protobuf==3.20']} | + + + +numpy (>=1.14.1); onnx (>=1.4.1); requests; six; flatbuffers (>=1.12); protobuf (~=3.20) | + + + ++ + + + | numpy (>=1.14.1); onnx (>=1.4.1); requests; six; flatbuffers (>=1.12); protobuf (~=3.20) | + + + +1.16.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tinycss2 | + + + +Base Package | + + + +EY | + + + +1.3.0 | + + + +{'base_package': 'tinycss2==1.3.0', 'dependencies': ['webencodings==0.4']} | + + + +webencodings>=0.4; sphinx; extra == "doc"; sphinx_rtd_theme; extra == "doc"; pytest; extra == "test"; ruff; extra == "test" | + + + +1.4.0 | + + + +webencodings>=0.4; sphinx; extra == "doc"; sphinx_rtd_theme; extra == "doc"; pytest; extra == "test"; ruff; extra == "test" | + + + +1.4.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tomli | + + + +Base Package | + + + +EY | + + + +2.0.2 | + + + +{'base_package': 'tomli==2.0.2', 'dependencies': []} | + + + ++ + + + | 2.1.0, 2.2.1 | + + + ++ + + + | 2.2.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| toposort | + + + +Base Package | + + + +EY | + + + +1.1 | + + + +{'base_package': 'toposort==1.1', 'dependencies': []} | + + + ++ + + + | 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 1.10 | + + + ++ + + + | 1.10 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tox | + + + +Base Package | + + + +EY | + + + +4.15.0 | + + + +{'base_package': 'tox==4.15.0', 'dependencies': ['cachetools==5.5.1', 'chardet==5.2', 'colorama==0.4.6', 'filelock==3.16.1', 'packaging==24.2', 'platformdirs==4.3.6', 'pluggy==1.5', 'pyproject-api==1.8', 'tomli==2.2.1', 'typing-extensions==4.12.2', 'virtualenv==20.31', 'devpi-process==1.0.2', 'pytest-mock==3.14', 'pytest==8.3.4']} | + + + +cachetools>=5.5.1; chardet>=5.2; colorama>=0.4.6; filelock>=3.16.1; packaging>=24.2; platformdirs>=4.3.6; pluggy>=1.5; pyproject-api>=1.8; tomli>=2.2.1; python_version < "3.11"; typing-extensions>=4.12.2; python_version < "3.11"; virtualenv>=20.31; devpi-process>=1.0.2; extra == "test"; pytest-mock>=3.14; extra == "test"; pytest>=8.3.4; extra == "test" | + + + +4.15.1, 4.16.0, 4.17.0, 4.17.1, 4.18.0, 4.18.1, 4.19.0, 4.20.0, 4.21.0, 4.21.1, 4.21.2, 4.22.0, 4.23.0, 4.23.1, 4.23.2, 4.24.0, 4.24.1, 4.24.2, 4.25.0, 4.26.0, 4.27.0 | + + + +cachetools>=5.5.1; chardet>=5.2; colorama>=0.4.6; filelock>=3.16.1; packaging>=24.2; platformdirs>=4.3.6; pluggy>=1.5; pyproject-api>=1.8; tomli>=2.2.1; python_version < "3.11"; typing-extensions>=4.12.2; python_version < "3.11"; virtualenv>=20.31; devpi-process>=1.0.2; extra == "test"; pytest-mock>=3.14; extra == "test"; pytest>=8.3.4; extra == "test" | + + + +4.27.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| twine | + + + +Base Package | + + + +EY | + + + +5.1.1 | + + + +{'base_package': 'twine==5.1.1', 'dependencies': ['readme-renderer==35.0', 'requests==2.20', 'requests-toolbelt==0.8.0', 'urllib3==1.26.0', 'importlib-metadata==3.6', 'keyring==15.1', 'rfc3986==1.4.0', 'rich==12.0.0', 'packaging==24.0', 'keyring==15.1']} | + + + +readme-renderer>=35.0; requests>=2.20; requests-toolbelt!=0.9.0,>=0.8.0; urllib3>=1.26.0; importlib-metadata>=3.6; python_version < "3.10"; keyring>=15.1; platform_machine != "ppc64le" and platform_machine != "s390x"; rfc3986>=1.4.0; rich>=12.0.0; packaging>=24.0; id; keyring>=15.1; extra == "keyring" | + + + +6.0.0, 6.0.1, 6.1.0 | + + + +readme-renderer>=35.0; requests>=2.20; requests-toolbelt!=0.9.0,>=0.8.0; urllib3>=1.26.0; importlib-metadata>=3.6; python_version < "3.10"; keyring>=15.1; platform_machine != "ppc64le" and platform_machine != "s390x"; rfc3986>=1.4.0; rich>=12.0.0; packaging>=24.0; id; keyring>=15.1; extra == "keyring" | + + + +6.1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| unstructured | + + + +Base Package | + + + +EY | + + + +0.14.2 | + + + +{'base_package': 'unstructured==0.14.2', 'dependencies': ['onnx==1.17.0', 'unstructured.pytesseract==0.3.12', 'unstructured-inference==1.0.5', 'python-pptx==1.0.1', 'python-docx==1.1.2', 'onnxruntime==1.19.0', 'python-docx==1.1.2', 'python-docx==1.1.2', 'onnx==1.17.0', 'onnxruntime==1.19.0', 'unstructured-inference==1.0.5', 'unstructured.pytesseract==0.3.12', 'onnx==1.17.0', 'unstructured.pytesseract==0.3.12', 'unstructured-inference==1.0.5', 'python-pptx==1.0.1', 'python-docx==1.1.2', 'onnxruntime==1.19.0', 'python-docx==1.1.2', 'paddlepaddle==3.0.0b1', 'unstructured.paddleocr==2.10.0', 'onnx==1.17.0', 'onnxruntime==1.19.0', 'unstructured-inference==1.0.5', 'unstructured.pytesseract==0.3.12', 'python-pptx==1.0.1', 'python-pptx==1.0.1']} | + + + +chardet; filetype; python-magic; lxml; nltk; requests; beautifulsoup4; emoji; dataclasses-json; python-iso639; langdetect; numpy; rapidfuzz; backoff; typing-extensions; unstructured-client; wrapt; tqdm; psutil; python-oxmsg; html5lib; onnx>=1.17.0; extra == "all-docs"; pi-heif; extra == "all-docs"; markdown; extra == "all-docs"; pdf2image; extra == "all-docs"; networkx; extra == "all-docs"; pandas; extra == "all-docs"; unstructured.pytesseract>=0.3.12; extra == "all-docs"; google-cloud-vision; extra == "all-docs"; unstructured-inference>=1.0.5; extra == "all-docs"; xlrd; extra == "all-docs"; effdet; extra == "all-docs"; pypdf; extra == "all-docs"; python-pptx>=1.0.1; extra == "all-docs"; pdfminer.six; extra == "all-docs"; python-docx>=1.1.2; extra == "all-docs"; pypandoc; extra == "all-docs"; onnxruntime>=1.19.0; extra == "all-docs"; pikepdf; extra == "all-docs"; openpyxl; extra == "all-docs"; pandas; extra == "csv"; python-docx>=1.1.2; extra == "doc"; python-docx>=1.1.2; extra == "docx"; pypandoc; extra == "epub"; langdetect; extra == "huggingface"; sacremoses; extra == "huggingface"; sentencepiece; extra == "huggingface"; torch; extra == "huggingface"; transformers; extra == "huggingface"; onnx>=1.17.0; extra == "image"; onnxruntime>=1.19.0; extra == "image"; pdf2image; extra == "image"; pdfminer.six; extra == "image"; pikepdf; extra == "image"; pi-heif; extra == "image"; pypdf; extra == "image"; google-cloud-vision; extra == "image"; effdet; extra == "image"; unstructured-inference>=1.0.5; extra == "image"; unstructured.pytesseract>=0.3.12; extra == "image"; onnx>=1.17.0; extra == "local-inference"; pi-heif; extra == "local-inference"; markdown; extra == "local-inference"; pdf2image; extra == "local-inference"; networkx; extra == "local-inference"; pandas; extra == "local-inference"; unstructured.pytesseract>=0.3.12; extra == "local-inference"; google-cloud-vision; extra == "local-inference"; unstructured-inference>=1.0.5; extra == "local-inference"; xlrd; extra == "local-inference"; effdet; extra == "local-inference"; pypdf; extra == "local-inference"; python-pptx>=1.0.1; extra == "local-inference"; pdfminer.six; extra == "local-inference"; python-docx>=1.1.2; extra == "local-inference"; pypandoc; extra == "local-inference"; onnxruntime>=1.19.0; extra == "local-inference"; pikepdf; extra == "local-inference"; openpyxl; extra == "local-inference"; markdown; extra == "md"; python-docx>=1.1.2; extra == "odt"; pypandoc; extra == "odt"; pypandoc; extra == "org"; paddlepaddle>=3.0.0b1; extra == "paddleocr"; unstructured.paddleocr==2.10.0; extra == "paddleocr"; onnx>=1.17.0; extra == "pdf"; onnxruntime>=1.19.0; extra == "pdf"; pdf2image; extra == "pdf"; pdfminer.six; extra == "pdf"; pikepdf; extra == "pdf"; pi-heif; extra == "pdf"; pypdf; extra == "pdf"; google-cloud-vision; extra == "pdf"; effdet; extra == "pdf"; unstructured-inference>=1.0.5; extra == "pdf"; unstructured.pytesseract>=0.3.12; extra == "pdf"; python-pptx>=1.0.1; extra == "ppt"; python-pptx>=1.0.1; extra == "pptx"; pypandoc; extra == "rst"; pypandoc; extra == "rtf"; pandas; extra == "tsv"; openpyxl; extra == "xlsx"; pandas; extra == "xlsx"; xlrd; extra == "xlsx"; networkx; extra == "xlsx" | + + + +0.14.3, 0.14.4, 0.14.5, 0.14.6, 0.14.7, 0.14.8, 0.14.9, 0.14.10, 0.15.0, 0.15.1, 0.15.3, 0.15.5, 0.15.6, 0.15.7, 0.15.8, 0.15.9, 0.15.10, 0.15.12, 0.15.13, 0.15.14, 0.16.0, 0.16.1, 0.16.2, 0.16.3, 0.16.4, 0.16.5, 0.16.6, 0.16.7, 0.16.8, 0.16.9, 0.16.10, 0.16.11, 0.16.12, 0.16.13, 0.16.14, 0.16.15, 0.16.16, 0.16.17, 0.16.19, 0.16.20, 0.16.21, 0.16.22, 0.16.23, 0.16.24, 0.16.25, 0.17.0, 0.17.2, 0.18.1 | + + + +chardet; filetype; python-magic; lxml; nltk; requests; beautifulsoup4; emoji; dataclasses-json; python-iso639; langdetect; numpy; rapidfuzz; backoff; typing-extensions; unstructured-client; wrapt; tqdm; psutil; python-oxmsg; html5lib; onnx>=1.17.0; extra == "all-docs"; pi-heif; extra == "all-docs"; markdown; extra == "all-docs"; pdf2image; extra == "all-docs"; networkx; extra == "all-docs"; pandas; extra == "all-docs"; unstructured.pytesseract>=0.3.12; extra == "all-docs"; google-cloud-vision; extra == "all-docs"; unstructured-inference>=1.0.5; extra == "all-docs"; xlrd; extra == "all-docs"; effdet; extra == "all-docs"; pypdf; extra == "all-docs"; python-pptx>=1.0.1; extra == "all-docs"; pdfminer.six; extra == "all-docs"; python-docx>=1.1.2; extra == "all-docs"; pypandoc; extra == "all-docs"; onnxruntime>=1.19.0; extra == "all-docs"; pikepdf; extra == "all-docs"; openpyxl; extra == "all-docs"; pandas; extra == "csv"; python-docx>=1.1.2; extra == "doc"; python-docx>=1.1.2; extra == "docx"; pypandoc; extra == "epub"; langdetect; extra == "huggingface"; sacremoses; extra == "huggingface"; sentencepiece; extra == "huggingface"; torch; extra == "huggingface"; transformers; extra == "huggingface"; onnx>=1.17.0; extra == "image"; onnxruntime>=1.19.0; extra == "image"; pdf2image; extra == "image"; pdfminer.six; extra == "image"; pikepdf; extra == "image"; pi-heif; extra == "image"; pypdf; extra == "image"; google-cloud-vision; extra == "image"; effdet; extra == "image"; unstructured-inference>=1.0.5; extra == "image"; unstructured.pytesseract>=0.3.12; extra == "image"; onnx>=1.17.0; extra == "local-inference"; pi-heif; extra == "local-inference"; markdown; extra == "local-inference"; pdf2image; extra == "local-inference"; networkx; extra == "local-inference"; pandas; extra == "local-inference"; unstructured.pytesseract>=0.3.12; extra == "local-inference"; google-cloud-vision; extra == "local-inference"; unstructured-inference>=1.0.5; extra == "local-inference"; xlrd; extra == "local-inference"; effdet; extra == "local-inference"; pypdf; extra == "local-inference"; python-pptx>=1.0.1; extra == "local-inference"; pdfminer.six; extra == "local-inference"; python-docx>=1.1.2; extra == "local-inference"; pypandoc; extra == "local-inference"; onnxruntime>=1.19.0; extra == "local-inference"; pikepdf; extra == "local-inference"; openpyxl; extra == "local-inference"; markdown; extra == "md"; python-docx>=1.1.2; extra == "odt"; pypandoc; extra == "odt"; pypandoc; extra == "org"; paddlepaddle>=3.0.0b1; extra == "paddleocr"; unstructured.paddleocr==2.10.0; extra == "paddleocr"; onnx>=1.17.0; extra == "pdf"; onnxruntime>=1.19.0; extra == "pdf"; pdf2image; extra == "pdf"; pdfminer.six; extra == "pdf"; pikepdf; extra == "pdf"; pi-heif; extra == "pdf"; pypdf; extra == "pdf"; google-cloud-vision; extra == "pdf"; effdet; extra == "pdf"; unstructured-inference>=1.0.5; extra == "pdf"; unstructured.pytesseract>=0.3.12; extra == "pdf"; python-pptx>=1.0.1; extra == "ppt"; python-pptx>=1.0.1; extra == "pptx"; pypandoc; extra == "rst"; pypandoc; extra == "rtf"; pandas; extra == "tsv"; openpyxl; extra == "xlsx"; pandas; extra == "xlsx"; xlrd; extra == "xlsx"; networkx; extra == "xlsx" | + + + +0.18.1 | + + + +Yes | + + + +CVE-2024-46455, CVSS_V4, unstructured XML External Entity (XXE), CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N, affects: >=0,<0.14.3 | + + + +No | + + + +None | + + + +0.18.1 | + + + +{'base_package': 'unstructured==0.18.1', 'dependencies': ['chardet==5.2.0', 'filetype==1.2.0', 'python-magic==0.4.27', 'lxml==5.4.0', 'requests==2.32.4', 'beautifulsoup4==4.13.4', 'emoji==2.14.1', 'dataclasses-json==0.6.7', 'python-iso639==2025.2.18', 'langdetect==1.0.9', 'numpy==2.3.1', 'rapidfuzz==3.13.0', 'backoff==2.2.1', 'typing-extensions==4.14.0', 'unstructured-client==0.37.2', 'wrapt==1.17.2', 'tqdm==4.67.1', 'psutil==7.0.0', 'python-oxmsg==0.0.2', 'html5lib==1.1', 'onnx==1.18.0', 'pi-heif==0.22.0', 'markdown==3.8.2', 'pdf2image==1.17.0', 'networkx==3.5', 'pandas==2.3.0', 'unstructured.pytesseract==0.3.15', 'google-cloud-vision==3.10.2', 'unstructured-inference==1.0.5', 'xlrd==2.0.2', 'effdet==0.4.1', 'pypdf==5.6.1', 'python-pptx==1.0.2', 'pdfminer.six==20250506', 'python-docx==1.2.0', 'pypandoc==1.15', 'onnxruntime==1.22.0', 'pikepdf==9.9.0', 'openpyxl==3.2.0b1', 'sacremoses==2.3.0', 'sentencepiece==1.2.0', 'torch==1.2.0', 'transformers==1.15', 'paddlepaddle==1.0.9', 'unstructured.paddleocr==0.1.1']} | + + + +Not Used | + + +
| uri-template | + + + +Base Package | + + + +EY | + + + +1.3.0 | + + + +{'base_package': 'uri-template==1.3.0', 'dependencies': []} | + + + +types-PyYAML ; extra == 'dev'; mypy ; extra == 'dev'; flake8 ; extra == 'dev'; flake8-annotations ; extra == 'dev'; flake8-bandit ; extra == 'dev'; flake8-bugbear ; extra == 'dev'; flake8-commas ; extra == 'dev'; flake8-comprehensions ; extra == 'dev'; flake8-continuation ; extra == 'dev'; flake8-datetimez ; extra == 'dev'; flake8-docstrings ; extra == 'dev'; flake8-import-order ; extra == 'dev'; flake8-literal ; extra == 'dev'; flake8-modern-annotations ; extra == 'dev'; flake8-noqa ; extra == 'dev'; flake8-pyproject ; extra == 'dev'; flake8-requirements ; extra == 'dev'; flake8-typechecking-import ; extra == 'dev'; flake8-use-fstring ; extra == 'dev'; pep8-naming ; extra == 'dev' | + + + ++ + + + | types-PyYAML ; extra == 'dev'; mypy ; extra == 'dev'; flake8 ; extra == 'dev'; flake8-annotations ; extra == 'dev'; flake8-bandit ; extra == 'dev'; flake8-bugbear ; extra == 'dev'; flake8-commas ; extra == 'dev'; flake8-comprehensions ; extra == 'dev'; flake8-continuation ; extra == 'dev'; flake8-datetimez ; extra == 'dev'; flake8-docstrings ; extra == 'dev'; flake8-import-order ; extra == 'dev'; flake8-literal ; extra == 'dev'; flake8-modern-annotations ; extra == 'dev'; flake8-noqa ; extra == 'dev'; flake8-pyproject ; extra == 'dev'; flake8-requirements ; extra == 'dev'; flake8-typechecking-import ; extra == 'dev'; flake8-use-fstring ; extra == 'dev'; pep8-naming ; extra == 'dev' | + + + +1.3.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| uvloop | + + + +Base Package | + + + +EY | + + + +0.20.0 | + + + +{'base_package': 'uvloop==0.20.0', 'dependencies': ['setuptools==60', 'Cython==3.0', 'Sphinx==4.1.2', 'sphinxcontrib-asyncio==0.3.0', 'sphinx-rtd-theme==0.5.2', 'aiohttp==3.10.5', 'flake8==5.0', 'pycodestyle==2.9.0', 'pyOpenSSL==23.0.0', 'mypy==0.800']} | + + + +setuptools>=60; extra == "dev"; Cython~=3.0; extra == "dev"; Sphinx~=4.1.2; extra == "docs"; sphinxcontrib-asyncio~=0.3.0; extra == "docs"; sphinx-rtd-theme~=0.5.2; extra == "docs"; aiohttp>=3.10.5; extra == "test"; flake8~=5.0; extra == "test"; psutil; extra == "test"; pycodestyle~=2.9.0; extra == "test"; pyOpenSSL~=23.0.0; extra == "test"; mypy>=0.800; extra == "test" | + + + +0.21.0b1, 0.21.0 | + + + +setuptools>=60; extra == "dev"; Cython~=3.0; extra == "dev"; Sphinx~=4.1.2; extra == "docs"; sphinxcontrib-asyncio~=0.3.0; extra == "docs"; sphinx-rtd-theme~=0.5.2; extra == "docs"; aiohttp>=3.10.5; extra == "test"; flake8~=5.0; extra == "test"; psutil; extra == "test"; pycodestyle~=2.9.0; extra == "test"; pyOpenSSL~=23.0.0; extra == "test"; mypy>=0.800; extra == "test" | + + + +0.21.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| watchgod | + + + +Base Package | + + + +EY | + + + +0.8.2 | + + + +{'base_package': 'watchgod==0.8.2', 'dependencies': ['anyio==3.0.0']} | + + + +anyio (<4,>=3.0.0) | + + + +0.10a1 | + + + +anyio (<4,>=3.0.0) | + + + +0.10a1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| webcolors | + + + +Base Package | + + + +EY | + + + +24.8.0 | + + + +{'base_package': 'webcolors==24.8.0', 'dependencies': []} | + + + ++ + + + | 24.11.0, 24.11.1 | + + + ++ + + + | 24.11.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| websockets | + + + +Base Package | + + + +EY | + + + +13.1 | + + + +{'base_package': 'websockets==13.1', 'dependencies': []} | + + + ++ + + + | 14.0, 14.1, 14.2, 15.0, 15.0.1 | + + + ++ + + + | 15.0.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| xattr | + + + +Base Package | + + + +EY | + + + +1.1.0 | + + + +{'base_package': 'xattr==1.1.0', 'dependencies': ['cffi==1.16.0']} | + + + +cffi>=1.16.0; pytest; extra == "test" | + + + +1.1.4 | + + + +cffi>=1.16.0; pytest; extra == "test" | + + + +1.1.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| yellowbrick | + + + +Base Package | + + + +EY | + + + +1.5 | + + + +{'base_package': 'yellowbrick==1.5', 'dependencies': ['matplotlib==2.0.2', 'scipy==1.0.0', 'scikit-learn==1.0.0', 'numpy==1.16.0', 'cycler==0.10.0']} | + + + +matplotlib (!=3.0.0,>=2.0.2); scipy (>=1.0.0); scikit-learn (>=1.0.0); numpy (>=1.16.0); cycler (>=0.10.0) | + + + ++ + + + | matplotlib (!=3.0.0,>=2.0.2); scipy (>=1.0.0); scikit-learn (>=1.0.0); numpy (>=1.16.0); cycler (>=0.10.0) | + + + +1.5 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| adal | + + + +Dependency Package | + + + +EY | + + + +1.2.7 | + + + +None | + + + +PyJWT (<3,>=1.0.0); requests (<3,>=2.0.0); python-dateutil (<3,>=2.1.0); cryptography (>=1.1.0) | + + + ++ + + + | PyJWT (<3,>=1.0.0); requests (<3,>=2.0.0); python-dateutil (<3,>=2.1.0); cryptography (>=1.1.0) | + + + +1.2.7 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| aiofiles | + + + +Dependency Package | + + + +EY | + + + +24.1.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 24.1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| aiohappyeyeballs | + + + +Dependency Package | + + + +EY | + + + +2.4.6 | + + + +None | + + + ++ + + + | 2.4.7, 2.4.8, 2.5.0, 2.6.0, 2.6.1 | + + + ++ + + + | 2.6.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| aiohttp | + + + +Dependency Package | + + + +EY | + + + +3.11.13 | + + + +None | + + + +aiohappyeyeballs>=2.5.0; aiosignal>=1.1.2; async-timeout<6.0,>=4.0; python_version < "3.11"; attrs>=17.3.0; frozenlist>=1.1.1; multidict<7.0,>=4.5; propcache>=0.2.0; yarl<2.0,>=1.17.0; aiodns>=3.3.0; extra == "speedups"; Brotli; platform_python_implementation == "CPython" and extra == "speedups"; brotlicffi; platform_python_implementation != "CPython" and extra == "speedups" | + + + +3.11.14, 3.11.15, 3.11.16, 3.11.17, 3.11.18, 3.12.0b0, 3.12.0b1, 3.12.0b2, 3.12.0b3, 3.12.0rc0, 3.12.0rc1, 3.12.0, 3.12.1rc0, 3.12.1, 3.12.2, 3.12.3, 3.12.4, 3.12.6, 3.12.7rc0, 3.12.7, 3.12.8, 3.12.9, 3.12.10, 3.12.11, 3.12.12, 3.12.13, 4.0.0a0, 4.0.0a1 | + + + +aiohappyeyeballs>=2.5.0; aiosignal>=1.1.2; async-timeout<6.0,>=4.0; python_version < "3.11"; attrs>=17.3.0; frozenlist>=1.1.1; multidict<7.0,>=4.5; propcache>=0.2.0; yarl<2.0,>=1.17.0; aiodns>=3.3.0; extra == "speedups"; Brotli; platform_python_implementation == "CPython" and extra == "speedups"; brotlicffi; platform_python_implementation != "CPython" and extra == "speedups" | + + + +4.0.0a1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| aiosignal | + + + +Dependency Package | + + + +EY | + + + +1.3.2 | + + + +None | + + + +frozenlist>=1.1.0 | + + + ++ + + + | frozenlist>=1.1.0 | + + + +1.3.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| annotated-types | + + + +Dependency Package | + + + +EY | + + + +0.7.0 | + + + +None | + + + +typing-extensions>=4.0.0; python_version < "3.9" | + + + ++ + + + | typing-extensions>=4.0.0; python_version < "3.9" | + + + +0.7.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| antlr4-python3-runtime | + + + +Dependency Package | + + + +EY | + + + +4.9.3 | + + + +None | + + + +typing; python_version < "3.5" | + + + +4.10, 4.11.0, 4.11.1, 4.12.0, 4.13.0, 4.13.1, 4.13.2 | + + + +typing; python_version < "3.5" | + + + +4.13.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| anyconfig | + + + +Dependency Package | + + + +EY | + + + +0.14.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.14.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| anyio | + + + +Dependency Package | + + + +EY | + + + +4.8.0 | + + + +None | + + + +exceptiongroup>=1.0.2; python_version < "3.11"; idna>=2.8; sniffio>=1.1; typing_extensions>=4.5; python_version < "3.13"; trio>=0.26.1; extra == "trio"; anyio[trio]; extra == "test"; blockbuster>=1.5.23; extra == "test"; coverage[toml]>=7; extra == "test"; exceptiongroup>=1.2.0; extra == "test"; hypothesis>=4.0; extra == "test"; psutil>=5.9; extra == "test"; pytest>=7.0; extra == "test"; trustme; extra == "test"; truststore>=0.9.1; python_version >= "3.10" and extra == "test"; uvloop>=0.21; (platform_python_implementation == "CPython" and platform_system != "Windows" and python_version < "3.14") and extra == "test"; packaging; extra == "doc"; Sphinx~=8.2; extra == "doc"; sphinx_rtd_theme; extra == "doc"; sphinx-autodoc-typehints>=1.2.0; extra == "doc" | + + + +4.9.0 | + + + +exceptiongroup>=1.0.2; python_version < "3.11"; idna>=2.8; sniffio>=1.1; typing_extensions>=4.5; python_version < "3.13"; trio>=0.26.1; extra == "trio"; anyio[trio]; extra == "test"; blockbuster>=1.5.23; extra == "test"; coverage[toml]>=7; extra == "test"; exceptiongroup>=1.2.0; extra == "test"; hypothesis>=4.0; extra == "test"; psutil>=5.9; extra == "test"; pytest>=7.0; extra == "test"; trustme; extra == "test"; truststore>=0.9.1; python_version >= "3.10" and extra == "test"; uvloop>=0.21; (platform_python_implementation == "CPython" and platform_system != "Windows" and python_version < "3.14") and extra == "test"; packaging; extra == "doc"; Sphinx~=8.2; extra == "doc"; sphinx_rtd_theme; extra == "doc"; sphinx-autodoc-typehints>=1.2.0; extra == "doc" | + + + +4.9.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| appdirs | + + + +Dependency Package | + + + +EY | + + + +1.4.4 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.4.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| argcomplete | + + + +Dependency Package | + + + +EY | + + + +3.5.1 | + + + +None | + + + +coverage; extra == "test"; mypy; extra == "test"; pexpect; extra == "test"; ruff; extra == "test"; wheel; extra == "test" | + + + +3.5.2, 3.5.3, 3.6.0, 3.6.1, 3.6.2 | + + + +coverage; extra == "test"; mypy; extra == "test"; pexpect; extra == "test"; ruff; extra == "test"; wheel; extra == "test" | + + + +3.6.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| argon2-cffi | + + + +Dependency Package | + + + +EY | + + + +23.1.0 | + + + +None | + + + +argon2-cffi-bindings | + + + +25.1.0 | + + + +argon2-cffi-bindings | + + + +25.1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| argon2-cffi-bindings | + + + +Dependency Package | + + + +EY | + + + +21.2.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 21.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| arrow | + + + +Dependency Package | + + + +EY | + + + +1.3.0 | + + + +None | + + + +python-dateutil>=2.7.0; types-python-dateutil>=2.8.10; doc8 ; extra == "doc"; sphinx>=7.0.0 ; extra == "doc"; sphinx-autobuild ; extra == "doc"; sphinx-autodoc-typehints ; extra == "doc"; sphinx_rtd_theme>=1.3.0 ; extra == "doc"; dateparser==1.* ; extra == "test"; pre-commit ; extra == "test"; pytest ; extra == "test"; pytest-cov ; extra == "test"; pytest-mock ; extra == "test"; pytz==2021.1 ; extra == "test"; simplejson==3.* ; extra == "test" | + + + ++ + + + | python-dateutil>=2.7.0; types-python-dateutil>=2.8.10; doc8 ; extra == "doc"; sphinx>=7.0.0 ; extra == "doc"; sphinx-autobuild ; extra == "doc"; sphinx-autodoc-typehints ; extra == "doc"; sphinx_rtd_theme>=1.3.0 ; extra == "doc"; dateparser==1.* ; extra == "test"; pre-commit ; extra == "test"; pytest ; extra == "test"; pytest-cov ; extra == "test"; pytest-mock ; extra == "test"; pytz==2021.1 ; extra == "test"; simplejson==3.* ; extra == "test" | + + + +1.3.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| asttokens | + + + +Dependency Package | + + + +EY | + + + +2.4.1 | + + + +None | + + + +astroid<4,>=2; extra == "astroid"; astroid<4,>=2; extra == "test"; pytest; extra == "test"; pytest-cov; extra == "test"; pytest-xdist; extra == "test" | + + + +3.0.0 | + + + +astroid<4,>=2; extra == "astroid"; astroid<4,>=2; extra == "test"; pytest; extra == "test"; pytest-cov; extra == "test"; pytest-xdist; extra == "test" | + + + +3.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| async-lru | + + + +Dependency Package | + + + +EY | + + + +2.0.4 | + + + +None | + + + +typing_extensions>=4.0.0; python_version < "3.11" | + + + +2.0.5 | + + + +typing_extensions>=4.0.0; python_version < "3.11" | + + + +2.0.5 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| attrs | + + + +Dependency Package | + + + +EY | + + + +24.2.0 | + + + +None | + + + +cloudpickle; platform_python_implementation == "CPython" and extra == "benchmark"; hypothesis; extra == "benchmark"; mypy>=1.11.1; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "benchmark"; pympler; extra == "benchmark"; pytest-codspeed; extra == "benchmark"; pytest-mypy-plugins; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "benchmark"; pytest-xdist[psutil]; extra == "benchmark"; pytest>=4.3.0; extra == "benchmark"; cloudpickle; platform_python_implementation == "CPython" and extra == "cov"; coverage[toml]>=5.3; extra == "cov"; hypothesis; extra == "cov"; mypy>=1.11.1; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "cov"; pympler; extra == "cov"; pytest-mypy-plugins; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "cov"; pytest-xdist[psutil]; extra == "cov"; pytest>=4.3.0; extra == "cov"; cloudpickle; platform_python_implementation == "CPython" and extra == "dev"; hypothesis; extra == "dev"; mypy>=1.11.1; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "dev"; pre-commit-uv; extra == "dev"; pympler; extra == "dev"; pytest-mypy-plugins; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "dev"; pytest-xdist[psutil]; extra == "dev"; pytest>=4.3.0; extra == "dev"; cogapp; extra == "docs"; furo; extra == "docs"; myst-parser; extra == "docs"; sphinx; extra == "docs"; sphinx-notfound-page; extra == "docs"; sphinxcontrib-towncrier; extra == "docs"; towncrier; extra == "docs"; cloudpickle; platform_python_implementation == "CPython" and extra == "tests"; hypothesis; extra == "tests"; mypy>=1.11.1; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "tests"; pympler; extra == "tests"; pytest-mypy-plugins; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "tests"; pytest-xdist[psutil]; extra == "tests"; pytest>=4.3.0; extra == "tests"; mypy>=1.11.1; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "tests-mypy"; pytest-mypy-plugins; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "tests-mypy" | + + + +24.3.0, 25.1.0, 25.2.0, 25.3.0 | + + + +cloudpickle; platform_python_implementation == "CPython" and extra == "benchmark"; hypothesis; extra == "benchmark"; mypy>=1.11.1; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "benchmark"; pympler; extra == "benchmark"; pytest-codspeed; extra == "benchmark"; pytest-mypy-plugins; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "benchmark"; pytest-xdist[psutil]; extra == "benchmark"; pytest>=4.3.0; extra == "benchmark"; cloudpickle; platform_python_implementation == "CPython" and extra == "cov"; coverage[toml]>=5.3; extra == "cov"; hypothesis; extra == "cov"; mypy>=1.11.1; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "cov"; pympler; extra == "cov"; pytest-mypy-plugins; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "cov"; pytest-xdist[psutil]; extra == "cov"; pytest>=4.3.0; extra == "cov"; cloudpickle; platform_python_implementation == "CPython" and extra == "dev"; hypothesis; extra == "dev"; mypy>=1.11.1; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "dev"; pre-commit-uv; extra == "dev"; pympler; extra == "dev"; pytest-mypy-plugins; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "dev"; pytest-xdist[psutil]; extra == "dev"; pytest>=4.3.0; extra == "dev"; cogapp; extra == "docs"; furo; extra == "docs"; myst-parser; extra == "docs"; sphinx; extra == "docs"; sphinx-notfound-page; extra == "docs"; sphinxcontrib-towncrier; extra == "docs"; towncrier; extra == "docs"; cloudpickle; platform_python_implementation == "CPython" and extra == "tests"; hypothesis; extra == "tests"; mypy>=1.11.1; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "tests"; pympler; extra == "tests"; pytest-mypy-plugins; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "tests"; pytest-xdist[psutil]; extra == "tests"; pytest>=4.3.0; extra == "tests"; mypy>=1.11.1; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "tests-mypy"; pytest-mypy-plugins; (platform_python_implementation == "CPython" and python_version >= "3.10") and extra == "tests-mypy" | + + + +25.3.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-ai-ml | + + + +Dependency Package | + + + +EY | + + + +1.21.1 | + + + +None | + + + +pyyaml<7.0.0,>=5.1.0; msrest<1.0.0,>=0.6.18; azure-core>=1.23.0; azure-mgmt-core>=1.3.0; marshmallow<4.0.0,>=3.5; jsonschema<5.0.0,>=4.0.0; tqdm<5.0.0; strictyaml<2.0.0; colorama<1.0.0; pyjwt<3.0.0; azure-storage-blob>=12.10.0; azure-storage-file-share; azure-storage-file-datalake>=12.2.0; pydash<9.0.0,>=6.0.0; isodate<1.0.0; azure-common>=1.1; typing-extensions<5.0.0; azure-monitor-opentelemetry; six>=1.11.0; mldesigner; extra == "designer"; azureml-dataprep-rslex>=2.22.0; python_version < "3.13" and extra == "mount" | + + + +1.22.0, 1.22.1, 1.22.2, 1.22.3, 1.22.4, 1.23.0, 1.23.1, 1.24.0, 1.25.0, 1.26.0, 1.26.1, 1.26.2, 1.26.3, 1.26.4, 1.26.5, 1.27.0, 1.27.1 | + + + +pyyaml<7.0.0,>=5.1.0; msrest<1.0.0,>=0.6.18; azure-core>=1.23.0; azure-mgmt-core>=1.3.0; marshmallow<4.0.0,>=3.5; jsonschema<5.0.0,>=4.0.0; tqdm<5.0.0; strictyaml<2.0.0; colorama<1.0.0; pyjwt<3.0.0; azure-storage-blob>=12.10.0; azure-storage-file-share; azure-storage-file-datalake>=12.2.0; pydash<9.0.0,>=6.0.0; isodate<1.0.0; azure-common>=1.1; typing-extensions<5.0.0; azure-monitor-opentelemetry; six>=1.11.0; mldesigner; extra == "designer"; azureml-dataprep-rslex>=2.22.0; python_version < "3.13" and extra == "mount" | + + + +1.27.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-common | + + + +Dependency Package | + + + +EY | + + + +1.1.28 | + + + +None | + + + +azure-nspkg ; python_version<'3.0' | + + + ++ + + + | azure-nspkg ; python_version<'3.0' | + + + +1.1.28 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-core | + + + +Dependency Package | + + + +EY | + + + +1.31.0 | + + + +None | + + + +requests>=2.21.0; six>=1.11.0; typing-extensions>=4.6.0; aiohttp>=3.0; extra == "aio"; opentelemetry-api~=1.26; extra == "tracing" | + + + +1.32.0, 1.33.0, 1.34.0 | + + + +requests>=2.21.0; six>=1.11.0; typing-extensions>=4.6.0; aiohttp>=3.0; extra == "aio"; opentelemetry-api~=1.26; extra == "tracing" | + + + +1.34.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-datalake-store | + + + +Dependency Package | + + + +EY | + + + +0.0.53 | + + + +None | + + + +cffi; requests>=2.20.0; azure-identity; extra == "auth" | + + + +1.0.0a0, 1.0.1 | + + + +cffi; requests>=2.20.0; azure-identity; extra == "auth" | + + + +1.0.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-graphrbac | + + + +Dependency Package | + + + +EY | + + + +0.61.1 | + + + +None | + + + +msrest>=0.6.21; msrestazure<2.0.0,>=0.4.32; azure-common~=1.1; azure-nspkg; python_version < "3.0" | + + + +0.61.2 | + + + +msrest>=0.6.21; msrestazure<2.0.0,>=0.4.32; azure-common~=1.1; azure-nspkg; python_version < "3.0" | + + + +0.61.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-identity | + + + +Dependency Package | + + + +EY | + + + +1.19.0 | + + + +None | + + + +azure-core>=1.31.0; cryptography>=2.5; msal>=1.30.0; msal-extensions>=1.2.0; typing-extensions>=4.0.0 | + + + +1.20.0, 1.21.0, 1.22.0, 1.23.0 | + + + +azure-core>=1.31.0; cryptography>=2.5; msal>=1.30.0; msal-extensions>=1.2.0; typing-extensions>=4.0.0 | + + + +1.23.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-mgmt-authorization | + + + +Dependency Package | + + + +EY | + + + +4.0.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 4.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-mgmt-containerregistry | + + + +Dependency Package | + + + +EY | + + + +10.3.0 | + + + +None | + + + +isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.5.0 | + + + +11.0.0, 12.0.0, 13.0.0, 14.0.0, 14.1.0b1 | + + + +isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.5.0 | + + + +14.1.0b1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-mgmt-core | + + + +Dependency Package | + + + +EY | + + + +1.4.0 | + + + +None | + + + +azure-core>=1.31.0 | + + + +1.5.0 | + + + +azure-core>=1.31.0 | + + + +1.5.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-mgmt-keyvault | + + + +Dependency Package | + + + +EY | + + + +10.3.1 | + + + +None | + + + +isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.3.2 | + + + +11.0.0 | + + + +isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.3.2 | + + + +11.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-mgmt-network | + + + +Dependency Package | + + + +EY | + + + +27.0.0 | + + + +None | + + + +isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.5.0 | + + + +28.0.0, 28.1.0, 29.0.0 | + + + +isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.5.0 | + + + +29.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-mgmt-resource | + + + +Dependency Package | + + + +EY | + + + +23.2.0 | + + + +None | + + + +isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.5.0 | + + + +23.3.0, 23.4.0, 24.0.0 | + + + +isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.5.0 | + + + +24.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-mgmt-storage | + + + +Dependency Package | + + + +EY | + + + +21.2.1 | + + + +None | + + + +isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.5.0 | + + + +22.0.0, 22.1.0, 22.1.1, 22.2.0, 23.0.0 | + + + +isodate>=0.6.1; typing-extensions>=4.6.0; azure-common>=1.1; azure-mgmt-core>=1.5.0 | + + + +23.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-storage-blob | + + + +Dependency Package | + + + +EY | + + + +12.23.1 | + + + +None | + + + +azure-core>=1.30.0; cryptography>=2.1.4; typing-extensions>=4.6.0; isodate>=0.6.1; azure-core[aio]>=1.30.0; extra == "aio" | + + + +12.24.0b1, 12.24.0, 12.24.1, 12.25.0b1, 12.25.0, 12.25.1, 12.26.0b1, 12.27.0b1 | + + + +azure-core>=1.30.0; cryptography>=2.1.4; typing-extensions>=4.6.0; isodate>=0.6.1; azure-core[aio]>=1.30.0; extra == "aio" | + + + +12.27.0b1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-storage-file-datalake | + + + +Dependency Package | + + + +EY | + + + +12.17.0 | + + + +None | + + + +azure-core>=1.30.0; azure-storage-blob>=12.25.1; typing-extensions>=4.6.0; isodate>=0.6.1; azure-core[aio]>=1.30.0; extra == "aio" | + + + +12.18.0b1, 12.18.0, 12.18.1, 12.19.0b1, 12.19.0, 12.20.0, 12.21.0b1, 12.22.0b1 | + + + +azure-core>=1.30.0; azure-storage-blob>=12.25.1; typing-extensions>=4.6.0; isodate>=0.6.1; azure-core[aio]>=1.30.0; extra == "aio" | + + + +12.22.0b1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azure-storage-file-share | + + + +Dependency Package | + + + +EY | + + + +12.19.0 | + + + +None | + + + +azure-core>=1.30.0; cryptography>=2.1.4; typing-extensions>=4.6.0; isodate>=0.6.1; azure-core[aio]>=1.30.0; extra == "aio" | + + + +12.20.0b1, 12.20.0, 12.20.1, 12.21.0b1, 12.21.0, 12.22.0b1, 12.23.0b1 | + + + +azure-core>=1.30.0; cryptography>=2.1.4; typing-extensions>=4.6.0; isodate>=0.6.1; azure-core[aio]>=1.30.0; extra == "aio" | + + + +12.23.0b1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azureml-core | + + + +Dependency Package | + + + +EY | + + + +1.58.0 | + + + +None | + + + +pytz; backports.tempfile; pathspec<1.0.0; requests[socks]<3.0.0,>=2.19.1; msal<2.0.0,>=1.15.0; msal-extensions<=2.0.0,>=0.3.0; knack<0.13.0; azure-core<2.0.0; pkginfo; argcomplete<4; humanfriendly<11.0,>=4.7; paramiko<4.0.0,>=2.0.8; azure-mgmt-resource<=24.0.0,>=15.0.0; azure-mgmt-containerregistry<14,>=8.2.0; azure-mgmt-storage<=23.0.0,>=16.0.0; azure-mgmt-keyvault<12.0.0,>=0.40.0; azure-mgmt-authorization<5,>=0.40.0; azure-mgmt-network<=29.0.0; azure-graphrbac<1.0.0,>=0.40.0; azure-common<2.0.0,>=1.1.12; msrest<=0.7.1,>=0.5.1; msrestazure<=0.7,>=0.4.33; urllib3<3.0.0,>1.26.17; packaging<26.0,>=20.0; python-dateutil<3.0.0,>=2.7.3; ndg-httpsclient<=0.5.1; SecretStorage<4.0.0; jsonpickle<5.0.0; contextlib2<22.0.0; docker<8.0.0; PyJWT<3.0.0; adal<=1.2.7,>=1.2.0; pyopenssl<26.0.0; jmespath<2.0.0 | + + + +1.58.0.post1, 1.59.0, 1.59.0.post1, 1.59.0.post2, 1.60.0, 1.60.0.post1 | + + + +pytz; backports.tempfile; pathspec<1.0.0; requests[socks]<3.0.0,>=2.19.1; msal<2.0.0,>=1.15.0; msal-extensions<=2.0.0,>=0.3.0; knack<0.13.0; azure-core<2.0.0; pkginfo; argcomplete<4; humanfriendly<11.0,>=4.7; paramiko<4.0.0,>=2.0.8; azure-mgmt-resource<=24.0.0,>=15.0.0; azure-mgmt-containerregistry<14,>=8.2.0; azure-mgmt-storage<=23.0.0,>=16.0.0; azure-mgmt-keyvault<12.0.0,>=0.40.0; azure-mgmt-authorization<5,>=0.40.0; azure-mgmt-network<=29.0.0; azure-graphrbac<1.0.0,>=0.40.0; azure-common<2.0.0,>=1.1.12; msrest<=0.7.1,>=0.5.1; msrestazure<=0.7,>=0.4.33; urllib3<3.0.0,>1.26.17; packaging<26.0,>=20.0; python-dateutil<3.0.0,>=2.7.3; ndg-httpsclient<=0.5.1; SecretStorage<4.0.0; jsonpickle<5.0.0; contextlib2<22.0.0; docker<8.0.0; PyJWT<3.0.0; adal<=1.2.7,>=1.2.0; pyopenssl<26.0.0; jmespath<2.0.0 | + + + +1.60.0.post1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azureml-dataprep | + + + +Dependency Package | + + + +EY | + + + +5.1.6 | + + + +None | + + + +azureml-dataprep-native<42.0.0,>=41.0.0; azureml-dataprep-rslex~=2.24.0dev0; cloudpickle<3.0.0,>=1.1.0; azure-identity<=1.17.0,>=1.16.0; jsonschema; pyyaml<7.0.0,>=5.1.0; numpy>=1.14.0; extra == "pandas"; pandas>=0.23.4; extra == "pandas"; pyarrow>=0.17.0; extra == "pandas"; pyarrow>=0.17.0; extra == "parquet"; pyspark==2.3.0; extra == "pyspark"; fusepy<4.0.0,>=3.0.1; extra == "fuse"; scipy>=1.1.0; extra == "scipy"; pyarrow>=0.17.0; extra == "pyarrow" | + + + +5.2.0, 5.2.1, 5.3.0, 5.3.1, 5.3.2, 5.3.3 | + + + +azureml-dataprep-native<42.0.0,>=41.0.0; azureml-dataprep-rslex~=2.24.0dev0; cloudpickle<3.0.0,>=1.1.0; azure-identity<=1.17.0,>=1.16.0; jsonschema; pyyaml<7.0.0,>=5.1.0; numpy>=1.14.0; extra == "pandas"; pandas>=0.23.4; extra == "pandas"; pyarrow>=0.17.0; extra == "pandas"; pyarrow>=0.17.0; extra == "parquet"; pyspark==2.3.0; extra == "pyspark"; fusepy<4.0.0,>=3.0.1; extra == "fuse"; scipy>=1.1.0; extra == "scipy"; pyarrow>=0.17.0; extra == "pyarrow" | + + + +5.3.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azureml-dataprep-native | + + + +Dependency Package | + + + +EY | + + + +41.0.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 41.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| azureml-dataprep-rslex | + + + +Dependency Package | + + + +EY | + + + +2.22.4 | + + + +None | + + + ++ + + + | 2.22.5, 2.23.0, 2.23.1, 2.23.2, 2.23.3, 2.23.4, 2.23.5, 2.23.6, 2.23.7, 2.23.8, 2.24.0, 2.24.1, 2.24.2, 2.24.3, 2.24.4, 2.24.5 | + + + ++ + + + | 2.24.5 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| babel | + + + +Dependency Package | + + + +EY | + + + +2.16.0 | + + + +None | + + + +pytz>=2015.7; python_version < "3.9"; tzdata; sys_platform == "win32" and extra == "dev"; backports.zoneinfo; python_version < "3.9" and extra == "dev"; freezegun~=1.0; extra == "dev"; jinja2>=3.0; extra == "dev"; pytest-cov; extra == "dev"; pytest>=6.0; extra == "dev"; pytz; extra == "dev"; setuptools; extra == "dev" | + + + +2.17.0 | + + + +pytz>=2015.7; python_version < "3.9"; tzdata; sys_platform == "win32" and extra == "dev"; backports.zoneinfo; python_version < "3.9" and extra == "dev"; freezegun~=1.0; extra == "dev"; jinja2>=3.0; extra == "dev"; pytest-cov; extra == "dev"; pytest>=6.0; extra == "dev"; pytz; extra == "dev"; setuptools; extra == "dev" | + + + +2.17.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| backoff | + + + +Dependency Package | + + + +EY | + + + +2.2.1 | + + + +None | + + + ++ + + + | + + + + | + + + + | 2.2.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| bcrypt | + + + +Dependency Package | + + + +EY | + + + +4.2.0 | + + + +None | + + + +pytest!=3.3.0,>=3.2.1; extra == "tests"; mypy; extra == "typecheck" | + + + +4.2.1, 4.3.0 | + + + +pytest!=3.3.0,>=3.2.1; extra == "tests"; mypy; extra == "typecheck" | + + + +4.3.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| beautifulsoup4 | + + + +Dependency Package | + + + +EY | + + + +4.12.3 | + + + +None | + + + +soupsieve>1.2; typing-extensions>=4.0.0; cchardet; extra == "cchardet"; chardet; extra == "chardet"; charset-normalizer; extra == "charset-normalizer"; html5lib; extra == "html5lib"; lxml; extra == "lxml" | + + + +4.13.0b2, 4.13.0b3, 4.13.0, 4.13.1, 4.13.2, 4.13.3, 4.13.4 | + + + +soupsieve>1.2; typing-extensions>=4.0.0; cchardet; extra == "cchardet"; chardet; extra == "chardet"; charset-normalizer; extra == "charset-normalizer"; html5lib; extra == "html5lib"; lxml; extra == "lxml" | + + + +4.13.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| binaryornot | + + + +Dependency Package | + + + +EY | + + + +0.4.4 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.4.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| bleach | + + + +Dependency Package | + + + +EY | + + + +6.1.0 | + + + +None | + + + +webencodings; tinycss2<1.5,>=1.1.0; extra == "css" | + + + +6.2.0 | + + + +webencodings; tinycss2<1.5,>=1.1.0; extra == "css" | + + + +6.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| blis | + + + +Dependency Package | + + + +EY | + + + +1.0.1 | + + + +None | + + + +numpy<3.0.0,>=1.15.0; python_version < "3.9"; numpy<3.0.0,>=1.19.0; python_version >= "3.9" | + + + +1.0.2, 1.1.0a0, 1.1.0, 1.2.0, 1.2.1, 1.3.0 | + + + +numpy<3.0.0,>=1.15.0; python_version < "3.9"; numpy<3.0.0,>=1.19.0; python_version >= "3.9" | + + + +1.3.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| build | + + + +Dependency Package | + + + +EY | + + + +1.2.2.post1 | + + + +None | + + + +packaging>=19.1; pyproject_hooks; colorama; os_name == "nt"; importlib-metadata>=4.6; python_full_version < "3.10.2"; tomli>=1.1.0; python_version < "3.11"; furo>=2023.08.17; extra == "docs"; sphinx~=7.0; extra == "docs"; sphinx-argparse-cli>=1.5; extra == "docs"; sphinx-autodoc-typehints>=1.10; extra == "docs"; sphinx-issues>=3.0.0; extra == "docs"; build[uv,virtualenv]; extra == "test"; filelock>=3; extra == "test"; pytest>=6.2.4; extra == "test"; pytest-cov>=2.12; extra == "test"; pytest-mock>=2; extra == "test"; pytest-rerunfailures>=9.1; extra == "test"; pytest-xdist>=1.34; extra == "test"; wheel>=0.36.0; extra == "test"; setuptools>=42.0.0; extra == "test" and python_version < "3.10"; setuptools>=56.0.0; extra == "test" and python_version == "3.10"; setuptools>=56.0.0; extra == "test" and python_version == "3.11"; setuptools>=67.8.0; extra == "test" and python_version >= "3.12"; build[uv]; extra == "typing"; importlib-metadata>=5.1; extra == "typing"; mypy~=1.9.0; extra == "typing"; tomli; extra == "typing"; typing-extensions>=3.7.4.3; extra == "typing"; uv>=0.1.18; extra == "uv"; virtualenv>=20.0.35; extra == "virtualenv" | + + + ++ + + + | packaging>=19.1; pyproject_hooks; colorama; os_name == "nt"; importlib-metadata>=4.6; python_full_version < "3.10.2"; tomli>=1.1.0; python_version < "3.11"; furo>=2023.08.17; extra == "docs"; sphinx~=7.0; extra == "docs"; sphinx-argparse-cli>=1.5; extra == "docs"; sphinx-autodoc-typehints>=1.10; extra == "docs"; sphinx-issues>=3.0.0; extra == "docs"; build[uv,virtualenv]; extra == "test"; filelock>=3; extra == "test"; pytest>=6.2.4; extra == "test"; pytest-cov>=2.12; extra == "test"; pytest-mock>=2; extra == "test"; pytest-rerunfailures>=9.1; extra == "test"; pytest-xdist>=1.34; extra == "test"; wheel>=0.36.0; extra == "test"; setuptools>=42.0.0; extra == "test" and python_version < "3.10"; setuptools>=56.0.0; extra == "test" and python_version == "3.10"; setuptools>=56.0.0; extra == "test" and python_version == "3.11"; setuptools>=67.8.0; extra == "test" and python_version >= "3.12"; build[uv]; extra == "typing"; importlib-metadata>=5.1; extra == "typing"; mypy~=1.9.0; extra == "typing"; tomli; extra == "typing"; typing-extensions>=3.7.4.3; extra == "typing"; uv>=0.1.18; extra == "uv"; virtualenv>=20.0.35; extra == "virtualenv" | + + + +1.2.2.post1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| cachetools | + + + +Dependency Package | + + + +EY | + + + +5.5.0 | + + + +None | + + + ++ + + + | 5.5.1, 5.5.2, 6.0.0, 6.1.0 | + + + ++ + + + | 6.1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| catalogue | + + + +Dependency Package | + + + +EY | + + + +2.0.10 | + + + +None | + + + +zipp >=0.5 ; python_version < "3.8"; typing-extensions >=3.6.4 ; python_version < "3.8" | + + + +2.1.0 | + + + +zipp >=0.5 ; python_version < "3.8"; typing-extensions >=3.6.4 ; python_version < "3.8" | + + + +2.1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| certifi | + + + +Dependency Package | + + + +EY | + + + +2025.1.31 | + + + +None | + + + ++ + + + | 2025.4.26, 2025.6.15 | + + + ++ + + + | 2025.6.15 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| cffi | + + + +Dependency Package | + + + +EY | + + + +1.17.1 | + + + +None | + + + +pycparser | + + + ++ + + + | pycparser | + + + +1.17.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| chardet | + + + +Dependency Package | + + + +EY | + + + +5.2.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 5.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| charset-normalizer | + + + +Dependency Package | + + + +EY | + + + +3.4.1 | + + + +None | + + + ++ + + + | 3.4.2 | + + + ++ + + + | 3.4.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| click | + + + +Dependency Package | + + + +EY | + + + +8.1.7 | + + + +None | + + + +colorama; platform_system == "Windows" | + + + +8.1.8, 8.2.0, 8.2.1 | + + + +colorama; platform_system == "Windows" | + + + +8.2.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| click-default-group | + + + +Dependency Package | + + + +EY | + + + +1.2.4 | + + + +None | + + + +click; pytest ; extra == "test" | + + + ++ + + + | click; pytest ; extra == "test" | + + + +1.2.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| cloudpathlib | + + + +Dependency Package | + + + +EY | + + + +0.19.0 | + + + +None | + + + +typing-extensions>4; python_version < "3.11"; cloudpathlib[azure]; extra == "all"; cloudpathlib[gs]; extra == "all"; cloudpathlib[s3]; extra == "all"; azure-storage-blob>=12; extra == "azure"; azure-storage-file-datalake>=12; extra == "azure"; google-cloud-storage; extra == "gs"; boto3>=1.34.0; extra == "s3" | + + + +0.20.0, 0.21.0, 0.21.1 | + + + +typing-extensions>4; python_version < "3.11"; cloudpathlib[azure]; extra == "all"; cloudpathlib[gs]; extra == "all"; cloudpathlib[s3]; extra == "all"; azure-storage-blob>=12; extra == "azure"; azure-storage-file-datalake>=12; extra == "azure"; google-cloud-storage; extra == "gs"; boto3>=1.34.0; extra == "s3" | + + + +0.21.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| cloudpickle | + + + +Dependency Package | + + + +EY | + + + +3.1.0 | + + + +None | + + + ++ + + + | 3.1.1 | + + + ++ + + + | 3.1.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| colorama | + + + +Dependency Package | + + + +EY | + + + +0.4.6 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.4.6 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| comm | + + + +Dependency Package | + + + +EY | + + + +0.2.2 | + + + +None | + + + +traitlets>=4; pytest; extra == 'test' | + + + ++ + + + | traitlets>=4; pytest; extra == 'test' | + + + +0.2.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| confection | + + + +Dependency Package | + + + +EY | + + + +0.1.5 | + + + +None | + + + +pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4; srsly<3.0.0,>=2.4.0; typing-extensions<5.0.0,>=3.7.4.1; python_version < "3.8" | + + + +1.0.0.dev0 | + + + +pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4; srsly<3.0.0,>=2.4.0; typing-extensions<5.0.0,>=3.7.4.1; python_version < "3.8" | + + + +1.0.0.dev0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| contextlib2 | + + + +Dependency Package | + + + +EY | + + + +21.6.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 21.6.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| contourpy | + + + +Dependency Package | + + + +EY | + + + +1.3.0 | + + + +None | + + + +numpy>=1.23; furo; extra == "docs"; sphinx>=7.2; extra == "docs"; sphinx-copybutton; extra == "docs"; bokeh; extra == "bokeh"; selenium; extra == "bokeh"; contourpy[bokeh,docs]; extra == "mypy"; bokeh; extra == "mypy"; docutils-stubs; extra == "mypy"; mypy==1.15.0; extra == "mypy"; types-Pillow; extra == "mypy"; contourpy[test-no-images]; extra == "test"; matplotlib; extra == "test"; Pillow; extra == "test"; pytest; extra == "test-no-images"; pytest-cov; extra == "test-no-images"; pytest-rerunfailures; extra == "test-no-images"; pytest-xdist; extra == "test-no-images"; wurlitzer; extra == "test-no-images" | + + + +1.3.1, 1.3.2 | + + + +numpy>=1.23; furo; extra == "docs"; sphinx>=7.2; extra == "docs"; sphinx-copybutton; extra == "docs"; bokeh; extra == "bokeh"; selenium; extra == "bokeh"; contourpy[bokeh,docs]; extra == "mypy"; bokeh; extra == "mypy"; docutils-stubs; extra == "mypy"; mypy==1.15.0; extra == "mypy"; types-Pillow; extra == "mypy"; contourpy[test-no-images]; extra == "test"; matplotlib; extra == "test"; Pillow; extra == "test"; pytest; extra == "test-no-images"; pytest-cov; extra == "test-no-images"; pytest-rerunfailures; extra == "test-no-images"; pytest-xdist; extra == "test-no-images"; wurlitzer; extra == "test-no-images" | + + + +1.3.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| cookiecutter | + + + +Dependency Package | + + + +EY | + + + +2.6.0 | + + + +None | + + + +binaryornot >=0.4.4; Jinja2 <4.0.0,>=2.7; click <9.0.0,>=7.0; pyyaml >=5.3.1; python-slugify >=4.0.0; requests >=2.23.0; arrow; rich | + + + ++ + + + | binaryornot >=0.4.4; Jinja2 <4.0.0,>=2.7; click <9.0.0,>=7.0; pyyaml >=5.3.1; python-slugify >=4.0.0; requests >=2.23.0; arrow; rich | + + + +2.6.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| coverage | + + + +Dependency Package | + + + +EY | + + + +7.6.4 | + + + +None | + + + +tomli; python_full_version <= "3.11.0a6" and extra == "toml" | + + + +7.6.5, 7.6.6, 7.6.7, 7.6.8, 7.6.9, 7.6.10, 7.6.11, 7.6.12, 7.7.0, 7.7.1, 7.8.0, 7.8.1, 7.8.2, 7.9.0, 7.9.1 | + + + +tomli; python_full_version <= "3.11.0a6" and extra == "toml" | + + + +7.9.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| cryptography | + + + +Dependency Package | + + + +EY | + + + +44.0.2 | + + + +None | + + + +cffi>=1.14; platform_python_implementation != "PyPy"; bcrypt>=3.1.5; extra == "ssh"; nox>=2024.4.15; extra == "nox"; nox[uv]>=2024.3.2; python_full_version >= "3.8" and extra == "nox"; cryptography-vectors==45.0.4; extra == "test"; pytest>=7.4.0; extra == "test"; pytest-benchmark>=4.0; extra == "test"; pytest-cov>=2.10.1; extra == "test"; pytest-xdist>=3.5.0; extra == "test"; pretend>=0.7; extra == "test"; certifi>=2024; extra == "test"; pytest-randomly; extra == "test-randomorder"; sphinx>=5.3.0; extra == "docs"; sphinx-rtd-theme>=3.0.0; python_full_version >= "3.8" and extra == "docs"; sphinx-inline-tabs; python_full_version >= "3.8" and extra == "docs"; pyenchant>=3; extra == "docstest"; readme-renderer>=30.0; extra == "docstest"; sphinxcontrib-spelling>=7.3.1; extra == "docstest"; build>=1.0.0; extra == "sdist"; ruff>=0.3.6; extra == "pep8test"; mypy>=1.4; extra == "pep8test"; check-sdist; python_full_version >= "3.8" and extra == "pep8test"; click>=8.0.1; extra == "pep8test" | + + + +44.0.3, 45.0.0, 45.0.1, 45.0.2, 45.0.3, 45.0.4 | + + + +cffi>=1.14; platform_python_implementation != "PyPy"; bcrypt>=3.1.5; extra == "ssh"; nox>=2024.4.15; extra == "nox"; nox[uv]>=2024.3.2; python_full_version >= "3.8" and extra == "nox"; cryptography-vectors==45.0.4; extra == "test"; pytest>=7.4.0; extra == "test"; pytest-benchmark>=4.0; extra == "test"; pytest-cov>=2.10.1; extra == "test"; pytest-xdist>=3.5.0; extra == "test"; pretend>=0.7; extra == "test"; certifi>=2024; extra == "test"; pytest-randomly; extra == "test-randomorder"; sphinx>=5.3.0; extra == "docs"; sphinx-rtd-theme>=3.0.0; python_full_version >= "3.8" and extra == "docs"; sphinx-inline-tabs; python_full_version >= "3.8" and extra == "docs"; pyenchant>=3; extra == "docstest"; readme-renderer>=30.0; extra == "docstest"; sphinxcontrib-spelling>=7.3.1; extra == "docstest"; build>=1.0.0; extra == "sdist"; ruff>=0.3.6; extra == "pep8test"; mypy>=1.4; extra == "pep8test"; check-sdist; python_full_version >= "3.8" and extra == "pep8test"; click>=8.0.1; extra == "pep8test" | + + + +45.0.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| cycler | + + + +Dependency Package | + + + +EY | + + + +0.12.1 | + + + +None | + + + +ipython ; extra == 'docs'; matplotlib ; extra == 'docs'; numpydoc ; extra == 'docs'; sphinx ; extra == 'docs'; pytest ; extra == 'tests'; pytest-cov ; extra == 'tests'; pytest-xdist ; extra == 'tests' | + + + ++ + + + | ipython ; extra == 'docs'; matplotlib ; extra == 'docs'; numpydoc ; extra == 'docs'; sphinx ; extra == 'docs'; pytest ; extra == 'tests'; pytest-cov ; extra == 'tests'; pytest-xdist ; extra == 'tests' | + + + +0.12.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| cymem | + + + +Dependency Package | + + + +EY | + + + +2.0.8 | + + + +None | + + + ++ + + + | 2.0.9a2, 2.0.9a3, 2.0.10, 2.0.11 | + + + ++ + + + | 2.0.11 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| debugpy | + + + +Dependency Package | + + + +EY | + + + +1.8.7 | + + + +None | + + + ++ + + + | 1.8.8, 1.8.9, 1.8.10, 1.8.11, 1.8.12, 1.8.13, 1.8.14 | + + + ++ + + + | 1.8.14 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| decorator | + + + +Dependency Package | + + + +EY | + + + +5.1.1 | + + + +None | + + + ++ + + + | 5.2.0, 5.2.1 | + + + ++ + + + | 5.2.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| defusedxml | + + + +Dependency Package | + + + +EY | + + + +0.7.1 | + + + +None | + + + ++ + + + | 0.8.0rc1, 0.8.0rc2 | + + + ++ + + + | 0.8.0rc2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| distro | + + + +Dependency Package | + + + +EY | + + + +1.9.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.9.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| dnspython | + + + +Dependency Package | + + + +EY | + + + +2.7.0 | + + + +None | + + + +black>=23.1.0; extra == "dev"; coverage>=7.0; extra == "dev"; flake8>=7; extra == "dev"; hypercorn>=0.16.0; extra == "dev"; mypy>=1.8; extra == "dev"; pylint>=3; extra == "dev"; pytest-cov>=4.1.0; extra == "dev"; pytest>=7.4; extra == "dev"; quart-trio>=0.11.0; extra == "dev"; sphinx-rtd-theme>=2.0.0; extra == "dev"; sphinx>=7.2.0; extra == "dev"; twine>=4.0.0; extra == "dev"; wheel>=0.42.0; extra == "dev"; cryptography>=43; extra == "dnssec"; h2>=4.1.0; extra == "doh"; httpcore>=1.0.0; extra == "doh"; httpx>=0.26.0; extra == "doh"; aioquic>=1.0.0; extra == "doq"; idna>=3.7; extra == "idna"; trio>=0.23; extra == "trio"; wmi>=1.5.1; extra == "wmi" | + + + ++ + + + | black>=23.1.0; extra == "dev"; coverage>=7.0; extra == "dev"; flake8>=7; extra == "dev"; hypercorn>=0.16.0; extra == "dev"; mypy>=1.8; extra == "dev"; pylint>=3; extra == "dev"; pytest-cov>=4.1.0; extra == "dev"; pytest>=7.4; extra == "dev"; quart-trio>=0.11.0; extra == "dev"; sphinx-rtd-theme>=2.0.0; extra == "dev"; sphinx>=7.2.0; extra == "dev"; twine>=4.0.0; extra == "dev"; wheel>=0.42.0; extra == "dev"; cryptography>=43; extra == "dnssec"; h2>=4.1.0; extra == "doh"; httpcore>=1.0.0; extra == "doh"; httpx>=0.26.0; extra == "doh"; aioquic>=1.0.0; extra == "doq"; idna>=3.7; extra == "idna"; trio>=0.23; extra == "trio"; wmi>=1.5.1; extra == "wmi" | + + + +2.7.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| docker | + + + +Dependency Package | + + + +EY | + + + +7.1.0 | + + + +None | + + + +pywin32>=304; sys_platform == "win32"; requests>=2.26.0; urllib3>=1.26.0; coverage==7.2.7; extra == "dev"; pytest-cov==4.1.0; extra == "dev"; pytest-timeout==2.1.0; extra == "dev"; pytest==7.4.2; extra == "dev"; ruff==0.1.8; extra == "dev"; myst-parser==0.18.0; extra == "docs"; sphinx==5.1.1; extra == "docs"; paramiko>=2.4.3; extra == "ssh"; websocket-client>=1.3.0; extra == "websockets" | + + + ++ + + + | pywin32>=304; sys_platform == "win32"; requests>=2.26.0; urllib3>=1.26.0; coverage==7.2.7; extra == "dev"; pytest-cov==4.1.0; extra == "dev"; pytest-timeout==2.1.0; extra == "dev"; pytest==7.4.2; extra == "dev"; ruff==0.1.8; extra == "dev"; myst-parser==0.18.0; extra == "docs"; sphinx==5.1.1; extra == "docs"; paramiko>=2.4.3; extra == "ssh"; websocket-client>=1.3.0; extra == "websockets" | + + + +7.1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| dynaconf | + + + +Dependency Package | + + + +EY | + + + +3.2.6 | + + + +None | + + + +redis; extra == "all"; ruamel.yaml; extra == "all"; configobj; extra == "all"; hvac; extra == "all"; configobj; extra == "configobj"; configobj; extra == "ini"; redis; extra == "redis"; pytest; extra == "test"; pytest-cov; extra == "test"; pytest-xdist; extra == "test"; pytest-mock; extra == "test"; radon; extra == "test"; flask>=0.12; extra == "test"; django; extra == "test"; python-dotenv; extra == "test"; toml; extra == "test"; redis; extra == "test"; hvac>=1.1.0; extra == "test"; configobj; extra == "test"; toml; extra == "toml"; hvac; extra == "vault"; ruamel.yaml; extra == "yaml" | + + + +3.2.7, 3.2.8, 3.2.9, 3.2.10, 3.2.11 | + + + +redis; extra == "all"; ruamel.yaml; extra == "all"; configobj; extra == "all"; hvac; extra == "all"; configobj; extra == "configobj"; configobj; extra == "ini"; redis; extra == "redis"; pytest; extra == "test"; pytest-cov; extra == "test"; pytest-xdist; extra == "test"; pytest-mock; extra == "test"; radon; extra == "test"; flask>=0.12; extra == "test"; django; extra == "test"; python-dotenv; extra == "test"; toml; extra == "test"; redis; extra == "test"; hvac>=1.1.0; extra == "test"; configobj; extra == "test"; toml; extra == "toml"; hvac; extra == "vault"; ruamel.yaml; extra == "yaml" | + + + +3.2.11 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| executing | + + + +Dependency Package | + + + +EY | + + + +2.1.0 | + + + +None | + + + +asttokens>=2.1.0; extra == "tests"; ipython; extra == "tests"; pytest; extra == "tests"; coverage; extra == "tests"; coverage-enable-subprocess; extra == "tests"; littleutils; extra == "tests"; rich; python_version >= "3.11" and extra == "tests" | + + + +2.2.0 | + + + +asttokens>=2.1.0; extra == "tests"; ipython; extra == "tests"; pytest; extra == "tests"; coverage; extra == "tests"; coverage-enable-subprocess; extra == "tests"; littleutils; extra == "tests"; rich; python_version >= "3.11" and extra == "tests" | + + + +2.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| Faker | + + + +Dependency Package | + + + +EY | + + + +26.3.0 | + + + +None | + + + +tzdata | + + + +27.0.0, 27.1.0, 27.2.0, 27.3.0, 27.4.0, 28.0.0, 28.1.0, 28.2.0, 28.3.0, 28.4.0, 28.4.1, 29.0.0, 30.0.0, 30.1.0, 30.2.0, 30.3.0, 30.4.0, 30.5.0, 30.6.0, 30.7.0, 30.8.0, 30.8.1, 30.8.2, 30.9.0, 30.10.0, 31.0.0, 32.0.0, 32.1.0, 33.0.0, 33.1.0, 33.1.1, 33.1.2, 33.1.3, 33.2.0, 33.3.0, 33.3.1, 34.0.0, 34.0.1, 34.0.2, 35.0.0, 35.1.0, 35.2.0, 35.2.1, 35.2.2, 36.0.0, 36.1.0, 36.1.1, 36.2.0, 36.2.1, 36.2.2, 36.2.3, 37.0.0, 37.0.1, 37.0.2, 37.1.0, 37.1.1, 37.2.0, 37.2.1, 37.3.0, 37.4.0 | + + + +tzdata | + + + +37.4.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| fastapi | + + + +Dependency Package | + + + +EY | + + + +0.111.1 | + + + +None | + + + +starlette<0.47.0,>=0.40.0; pydantic!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0,>=1.7.4; typing-extensions>=4.8.0; fastapi-cli[standard]>=0.0.5; extra == "standard"; httpx>=0.23.0; extra == "standard"; jinja2>=3.1.5; extra == "standard"; python-multipart>=0.0.18; extra == "standard"; email-validator>=2.0.0; extra == "standard"; uvicorn[standard]>=0.12.0; extra == "standard"; fastapi-cli[standard]>=0.0.5; extra == "all"; httpx>=0.23.0; extra == "all"; jinja2>=3.1.5; extra == "all"; python-multipart>=0.0.18; extra == "all"; itsdangerous>=1.1.0; extra == "all"; pyyaml>=5.3.1; extra == "all"; ujson!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,>=4.0.1; extra == "all"; orjson>=3.2.1; extra == "all"; email-validator>=2.0.0; extra == "all"; uvicorn[standard]>=0.12.0; extra == "all"; pydantic-settings>=2.0.0; extra == "all"; pydantic-extra-types>=2.0.0; extra == "all" | + + + +0.112.0, 0.112.1, 0.112.2, 0.112.3, 0.112.4, 0.113.0, 0.114.0, 0.114.1, 0.114.2, 0.115.0, 0.115.1, 0.115.2, 0.115.3, 0.115.4, 0.115.5, 0.115.6, 0.115.7, 0.115.8, 0.115.9, 0.115.10, 0.115.11, 0.115.12, 0.115.13 | + + + +starlette<0.47.0,>=0.40.0; pydantic!=1.8,!=1.8.1,!=2.0.0,!=2.0.1,!=2.1.0,<3.0.0,>=1.7.4; typing-extensions>=4.8.0; fastapi-cli[standard]>=0.0.5; extra == "standard"; httpx>=0.23.0; extra == "standard"; jinja2>=3.1.5; extra == "standard"; python-multipart>=0.0.18; extra == "standard"; email-validator>=2.0.0; extra == "standard"; uvicorn[standard]>=0.12.0; extra == "standard"; fastapi-cli[standard]>=0.0.5; extra == "all"; httpx>=0.23.0; extra == "all"; jinja2>=3.1.5; extra == "all"; python-multipart>=0.0.18; extra == "all"; itsdangerous>=1.1.0; extra == "all"; pyyaml>=5.3.1; extra == "all"; ujson!=4.0.2,!=4.1.0,!=4.2.0,!=4.3.0,!=5.0.0,!=5.1.0,>=4.0.1; extra == "all"; orjson>=3.2.1; extra == "all"; email-validator>=2.0.0; extra == "all"; uvicorn[standard]>=0.12.0; extra == "all"; pydantic-settings>=2.0.0; extra == "all"; pydantic-extra-types>=2.0.0; extra == "all" | + + + +0.115.13 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| fastjsonschema | + + + +Dependency Package | + + + +EY | + + + +2.20.0 | + + + +None | + + + +colorama; extra == "devel"; jsonschema; extra == "devel"; json-spec; extra == "devel"; pylint; extra == "devel"; pytest; extra == "devel"; pytest-benchmark; extra == "devel"; pytest-cache; extra == "devel"; validictory; extra == "devel" | + + + +2.21.0, 2.21.1 | + + + +colorama; extra == "devel"; jsonschema; extra == "devel"; json-spec; extra == "devel"; pylint; extra == "devel"; pytest; extra == "devel"; pytest-benchmark; extra == "devel"; pytest-cache; extra == "devel"; validictory; extra == "devel" | + + + +2.21.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| filelock | + + + +Dependency Package | + + + +EY | + + + +3.16.1 | + + + +None | + + + +furo>=2024.8.6; extra == "docs"; sphinx-autodoc-typehints>=3; extra == "docs"; sphinx>=8.1.3; extra == "docs"; covdefaults>=2.3; extra == "testing"; coverage>=7.6.10; extra == "testing"; diff-cover>=9.2.1; extra == "testing"; pytest-asyncio>=0.25.2; extra == "testing"; pytest-cov>=6; extra == "testing"; pytest-mock>=3.14; extra == "testing"; pytest-timeout>=2.3.1; extra == "testing"; pytest>=8.3.4; extra == "testing"; virtualenv>=20.28.1; extra == "testing"; typing-extensions>=4.12.2; python_version < "3.11" and extra == "typing" | + + + +3.17.0, 3.18.0 | + + + +furo>=2024.8.6; extra == "docs"; sphinx-autodoc-typehints>=3; extra == "docs"; sphinx>=8.1.3; extra == "docs"; covdefaults>=2.3; extra == "testing"; coverage>=7.6.10; extra == "testing"; diff-cover>=9.2.1; extra == "testing"; pytest-asyncio>=0.25.2; extra == "testing"; pytest-cov>=6; extra == "testing"; pytest-mock>=3.14; extra == "testing"; pytest-timeout>=2.3.1; extra == "testing"; pytest>=8.3.4; extra == "testing"; virtualenv>=20.28.1; extra == "testing"; typing-extensions>=4.12.2; python_version < "3.11" and extra == "typing" | + + + +3.18.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| fonttools | + + + +Dependency Package | + + + +EY | + + + +4.54.1 | + + + +None | + + + +fs<3,>=2.2.0; extra == "ufo"; lxml>=4.0; extra == "lxml"; brotli>=1.0.1; platform_python_implementation == "CPython" and extra == "woff"; brotlicffi>=0.8.0; platform_python_implementation != "CPython" and extra == "woff"; zopfli>=0.1.4; extra == "woff"; unicodedata2>=15.1.0; python_version <= "3.12" and extra == "unicode"; lz4>=1.7.4.2; extra == "graphite"; scipy; platform_python_implementation != "PyPy" and extra == "interpolatable"; munkres; platform_python_implementation == "PyPy" and extra == "interpolatable"; pycairo; extra == "interpolatable"; matplotlib; extra == "plot"; sympy; extra == "symfont"; xattr; sys_platform == "darwin" and extra == "type1"; skia-pathops>=0.5.0; extra == "pathops"; uharfbuzz>=0.23.0; extra == "repacker"; fs<3,>=2.2.0; extra == "all"; lxml>=4.0; extra == "all"; brotli>=1.0.1; platform_python_implementation == "CPython" and extra == "all"; brotlicffi>=0.8.0; platform_python_implementation != "CPython" and extra == "all"; zopfli>=0.1.4; extra == "all"; unicodedata2>=15.1.0; python_version <= "3.12" and extra == "all"; lz4>=1.7.4.2; extra == "all"; scipy; platform_python_implementation != "PyPy" and extra == "all"; munkres; platform_python_implementation == "PyPy" and extra == "all"; pycairo; extra == "all"; matplotlib; extra == "all"; sympy; extra == "all"; xattr; sys_platform == "darwin" and extra == "all"; skia-pathops>=0.5.0; extra == "all"; uharfbuzz>=0.23.0; extra == "all" | + + + +4.55.0, 4.55.1, 4.55.2, 4.55.3, 4.55.4, 4.55.5, 4.55.6, 4.55.7, 4.55.8, 4.56.0, 4.57.0, 4.58.0, 4.58.1, 4.58.2, 4.58.3, 4.58.4 | + + + +fs<3,>=2.2.0; extra == "ufo"; lxml>=4.0; extra == "lxml"; brotli>=1.0.1; platform_python_implementation == "CPython" and extra == "woff"; brotlicffi>=0.8.0; platform_python_implementation != "CPython" and extra == "woff"; zopfli>=0.1.4; extra == "woff"; unicodedata2>=15.1.0; python_version <= "3.12" and extra == "unicode"; lz4>=1.7.4.2; extra == "graphite"; scipy; platform_python_implementation != "PyPy" and extra == "interpolatable"; munkres; platform_python_implementation == "PyPy" and extra == "interpolatable"; pycairo; extra == "interpolatable"; matplotlib; extra == "plot"; sympy; extra == "symfont"; xattr; sys_platform == "darwin" and extra == "type1"; skia-pathops>=0.5.0; extra == "pathops"; uharfbuzz>=0.23.0; extra == "repacker"; fs<3,>=2.2.0; extra == "all"; lxml>=4.0; extra == "all"; brotli>=1.0.1; platform_python_implementation == "CPython" and extra == "all"; brotlicffi>=0.8.0; platform_python_implementation != "CPython" and extra == "all"; zopfli>=0.1.4; extra == "all"; unicodedata2>=15.1.0; python_version <= "3.12" and extra == "all"; lz4>=1.7.4.2; extra == "all"; scipy; platform_python_implementation != "PyPy" and extra == "all"; munkres; platform_python_implementation == "PyPy" and extra == "all"; pycairo; extra == "all"; matplotlib; extra == "all"; sympy; extra == "all"; xattr; sys_platform == "darwin" and extra == "all"; skia-pathops>=0.5.0; extra == "all"; uharfbuzz>=0.23.0; extra == "all" | + + + +4.58.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| frozenlist | + + + +Dependency Package | + + + +EY | + + + +1.5.0 | + + + +None | + + + ++ + + + | 1.6.0, 1.6.1, 1.6.2, 1.7.0 | + + + ++ + + + | 1.7.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| fsspec | + + + +Dependency Package | + + + +EY | + + + +2024.10.0 | + + + +None | + + + +adlfs; extra == "abfs"; adlfs; extra == "adl"; pyarrow>=1; extra == "arrow"; dask; extra == "dask"; distributed; extra == "dask"; pre-commit; extra == "dev"; ruff; extra == "dev"; numpydoc; extra == "doc"; sphinx; extra == "doc"; sphinx-design; extra == "doc"; sphinx-rtd-theme; extra == "doc"; yarl; extra == "doc"; dropbox; extra == "dropbox"; dropboxdrivefs; extra == "dropbox"; requests; extra == "dropbox"; adlfs; extra == "full"; aiohttp!=4.0.0a0,!=4.0.0a1; extra == "full"; dask; extra == "full"; distributed; extra == "full"; dropbox; extra == "full"; dropboxdrivefs; extra == "full"; fusepy; extra == "full"; gcsfs; extra == "full"; libarchive-c; extra == "full"; ocifs; extra == "full"; panel; extra == "full"; paramiko; extra == "full"; pyarrow>=1; extra == "full"; pygit2; extra == "full"; requests; extra == "full"; s3fs; extra == "full"; smbprotocol; extra == "full"; tqdm; extra == "full"; fusepy; extra == "fuse"; gcsfs; extra == "gcs"; pygit2; extra == "git"; requests; extra == "github"; gcsfs; extra == "gs"; panel; extra == "gui"; pyarrow>=1; extra == "hdfs"; aiohttp!=4.0.0a0,!=4.0.0a1; extra == "http"; libarchive-c; extra == "libarchive"; ocifs; extra == "oci"; s3fs; extra == "s3"; paramiko; extra == "sftp"; smbprotocol; extra == "smb"; paramiko; extra == "ssh"; aiohttp!=4.0.0a0,!=4.0.0a1; extra == "test"; numpy; extra == "test"; pytest; extra == "test"; pytest-asyncio!=0.22.0; extra == "test"; pytest-benchmark; extra == "test"; pytest-cov; extra == "test"; pytest-mock; extra == "test"; pytest-recording; extra == "test"; pytest-rerunfailures; extra == "test"; requests; extra == "test"; aiobotocore<3.0.0,>=2.5.4; extra == "test-downstream"; dask[dataframe,test]; extra == "test-downstream"; moto[server]<5,>4; extra == "test-downstream"; pytest-timeout; extra == "test-downstream"; xarray; extra == "test-downstream"; adlfs; extra == "test-full"; aiohttp!=4.0.0a0,!=4.0.0a1; extra == "test-full"; cloudpickle; extra == "test-full"; dask; extra == "test-full"; distributed; extra == "test-full"; dropbox; extra == "test-full"; dropboxdrivefs; extra == "test-full"; fastparquet; extra == "test-full"; fusepy; extra == "test-full"; gcsfs; extra == "test-full"; jinja2; extra == "test-full"; kerchunk; extra == "test-full"; libarchive-c; extra == "test-full"; lz4; extra == "test-full"; notebook; extra == "test-full"; numpy; extra == "test-full"; ocifs; extra == "test-full"; pandas; extra == "test-full"; panel; extra == "test-full"; paramiko; extra == "test-full"; pyarrow; extra == "test-full"; pyarrow>=1; extra == "test-full"; pyftpdlib; extra == "test-full"; pygit2; extra == "test-full"; pytest; extra == "test-full"; pytest-asyncio!=0.22.0; extra == "test-full"; pytest-benchmark; extra == "test-full"; pytest-cov; extra == "test-full"; pytest-mock; extra == "test-full"; pytest-recording; extra == "test-full"; pytest-rerunfailures; extra == "test-full"; python-snappy; extra == "test-full"; requests; extra == "test-full"; smbprotocol; extra == "test-full"; tqdm; extra == "test-full"; urllib3; extra == "test-full"; zarr; extra == "test-full"; zstandard; extra == "test-full"; tqdm; extra == "tqdm" | + + + +2024.12.0, 2025.2.0, 2025.3.0, 2025.3.1, 2025.3.2, 2025.5.0, 2025.5.1 | + + + +adlfs; extra == "abfs"; adlfs; extra == "adl"; pyarrow>=1; extra == "arrow"; dask; extra == "dask"; distributed; extra == "dask"; pre-commit; extra == "dev"; ruff; extra == "dev"; numpydoc; extra == "doc"; sphinx; extra == "doc"; sphinx-design; extra == "doc"; sphinx-rtd-theme; extra == "doc"; yarl; extra == "doc"; dropbox; extra == "dropbox"; dropboxdrivefs; extra == "dropbox"; requests; extra == "dropbox"; adlfs; extra == "full"; aiohttp!=4.0.0a0,!=4.0.0a1; extra == "full"; dask; extra == "full"; distributed; extra == "full"; dropbox; extra == "full"; dropboxdrivefs; extra == "full"; fusepy; extra == "full"; gcsfs; extra == "full"; libarchive-c; extra == "full"; ocifs; extra == "full"; panel; extra == "full"; paramiko; extra == "full"; pyarrow>=1; extra == "full"; pygit2; extra == "full"; requests; extra == "full"; s3fs; extra == "full"; smbprotocol; extra == "full"; tqdm; extra == "full"; fusepy; extra == "fuse"; gcsfs; extra == "gcs"; pygit2; extra == "git"; requests; extra == "github"; gcsfs; extra == "gs"; panel; extra == "gui"; pyarrow>=1; extra == "hdfs"; aiohttp!=4.0.0a0,!=4.0.0a1; extra == "http"; libarchive-c; extra == "libarchive"; ocifs; extra == "oci"; s3fs; extra == "s3"; paramiko; extra == "sftp"; smbprotocol; extra == "smb"; paramiko; extra == "ssh"; aiohttp!=4.0.0a0,!=4.0.0a1; extra == "test"; numpy; extra == "test"; pytest; extra == "test"; pytest-asyncio!=0.22.0; extra == "test"; pytest-benchmark; extra == "test"; pytest-cov; extra == "test"; pytest-mock; extra == "test"; pytest-recording; extra == "test"; pytest-rerunfailures; extra == "test"; requests; extra == "test"; aiobotocore<3.0.0,>=2.5.4; extra == "test-downstream"; dask[dataframe,test]; extra == "test-downstream"; moto[server]<5,>4; extra == "test-downstream"; pytest-timeout; extra == "test-downstream"; xarray; extra == "test-downstream"; adlfs; extra == "test-full"; aiohttp!=4.0.0a0,!=4.0.0a1; extra == "test-full"; cloudpickle; extra == "test-full"; dask; extra == "test-full"; distributed; extra == "test-full"; dropbox; extra == "test-full"; dropboxdrivefs; extra == "test-full"; fastparquet; extra == "test-full"; fusepy; extra == "test-full"; gcsfs; extra == "test-full"; jinja2; extra == "test-full"; kerchunk; extra == "test-full"; libarchive-c; extra == "test-full"; lz4; extra == "test-full"; notebook; extra == "test-full"; numpy; extra == "test-full"; ocifs; extra == "test-full"; pandas; extra == "test-full"; panel; extra == "test-full"; paramiko; extra == "test-full"; pyarrow; extra == "test-full"; pyarrow>=1; extra == "test-full"; pyftpdlib; extra == "test-full"; pygit2; extra == "test-full"; pytest; extra == "test-full"; pytest-asyncio!=0.22.0; extra == "test-full"; pytest-benchmark; extra == "test-full"; pytest-cov; extra == "test-full"; pytest-mock; extra == "test-full"; pytest-recording; extra == "test-full"; pytest-rerunfailures; extra == "test-full"; python-snappy; extra == "test-full"; requests; extra == "test-full"; smbprotocol; extra == "test-full"; tqdm; extra == "test-full"; urllib3; extra == "test-full"; zarr; extra == "test-full"; zstandard; extra == "test-full"; tqdm; extra == "tqdm" | + + + +2025.5.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| gitdb | + + + +Dependency Package | + + + +EY | + + + +4.0.11 | + + + +None | + + + +smmap<6,>=3.0.1 | + + + +4.0.12 | + + + +smmap<6,>=3.0.1 | + + + +4.0.12 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| GitPython | + + + +Dependency Package | + + + +EY | + + + +3.1.43 | + + + +None | + + + +gitdb<5,>=4.0.1; typing-extensions>=3.7.4.3; python_version < "3.8"; coverage[toml]; extra == "test"; ddt!=1.4.3,>=1.1.1; extra == "test"; mock; python_version < "3.8" and extra == "test"; mypy; extra == "test"; pre-commit; extra == "test"; pytest>=7.3.1; extra == "test"; pytest-cov; extra == "test"; pytest-instafail; extra == "test"; pytest-mock; extra == "test"; pytest-sugar; extra == "test"; typing-extensions; python_version < "3.11" and extra == "test"; sphinx<7.2,>=7.1.2; extra == "doc"; sphinx_rtd_theme; extra == "doc"; sphinx-autodoc-typehints; extra == "doc" | + + + +3.1.44 | + + + +gitdb<5,>=4.0.1; typing-extensions>=3.7.4.3; python_version < "3.8"; coverage[toml]; extra == "test"; ddt!=1.4.3,>=1.1.1; extra == "test"; mock; python_version < "3.8" and extra == "test"; mypy; extra == "test"; pre-commit; extra == "test"; pytest>=7.3.1; extra == "test"; pytest-cov; extra == "test"; pytest-instafail; extra == "test"; pytest-mock; extra == "test"; pytest-sugar; extra == "test"; typing-extensions; python_version < "3.11" and extra == "test"; sphinx<7.2,>=7.1.2; extra == "doc"; sphinx_rtd_theme; extra == "doc"; sphinx-autodoc-typehints; extra == "doc" | + + + +3.1.44 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| google-api-core | + + + +Dependency Package | + + + +EY | + + + +2.21.0 | + + + +None | + + + +googleapis-common-protos<2.0.0,>=1.56.2; protobuf!=3.20.0,!=3.20.1,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<7.0.0,>=3.19.5; proto-plus<2.0.0,>=1.22.3; proto-plus<2.0.0,>=1.25.0; python_version >= "3.13"; google-auth<3.0.0,>=2.14.1; requests<3.0.0,>=2.18.0; google-auth[aiohttp]<3.0.0,>=2.35.0; extra == "async-rest"; grpcio<2.0.0,>=1.33.2; extra == "grpc"; grpcio<2.0.0,>=1.49.1; python_version >= "3.11" and extra == "grpc"; grpcio-status<2.0.0,>=1.33.2; extra == "grpc"; grpcio-status<2.0.0,>=1.49.1; python_version >= "3.11" and extra == "grpc"; grpcio-gcp<1.0.0,>=0.2.2; extra == "grpcgcp"; grpcio-gcp<1.0.0,>=0.2.2; extra == "grpcio-gcp" | + + + +2.22.0rc0, 2.22.0, 2.23.0rc0, 2.23.0, 2.24.0, 2.24.1rc0, 2.24.1rc1, 2.24.1, 2.24.2, 2.25.0rc0, 2.25.0rc1, 2.25.0, 2.25.1rc0, 2.25.1 | + + + +googleapis-common-protos<2.0.0,>=1.56.2; protobuf!=3.20.0,!=3.20.1,!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<7.0.0,>=3.19.5; proto-plus<2.0.0,>=1.22.3; proto-plus<2.0.0,>=1.25.0; python_version >= "3.13"; google-auth<3.0.0,>=2.14.1; requests<3.0.0,>=2.18.0; google-auth[aiohttp]<3.0.0,>=2.35.0; extra == "async-rest"; grpcio<2.0.0,>=1.33.2; extra == "grpc"; grpcio<2.0.0,>=1.49.1; python_version >= "3.11" and extra == "grpc"; grpcio-status<2.0.0,>=1.33.2; extra == "grpc"; grpcio-status<2.0.0,>=1.49.1; python_version >= "3.11" and extra == "grpc"; grpcio-gcp<1.0.0,>=0.2.2; extra == "grpcgcp"; grpcio-gcp<1.0.0,>=0.2.2; extra == "grpcio-gcp" | + + + +2.25.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| google-auth | + + + +Dependency Package | + + + +EY | + + + +2.35.0 | + + + +None | + + + +cachetools<6.0,>=2.0.0; pyasn1-modules>=0.2.1; rsa<5,>=3.1.4; aiohttp<4.0.0,>=3.6.2; extra == "aiohttp"; requests<3.0.0,>=2.20.0; extra == "aiohttp"; cryptography; extra == "enterprise-cert"; pyopenssl; extra == "enterprise-cert"; pyjwt>=2.0; extra == "pyjwt"; cryptography>=38.0.3; extra == "pyjwt"; cryptography<39.0.0; python_version < "3.8" and extra == "pyjwt"; pyopenssl>=20.0.0; extra == "pyopenssl"; cryptography>=38.0.3; extra == "pyopenssl"; cryptography<39.0.0; python_version < "3.8" and extra == "pyopenssl"; pyu2f>=0.1.5; extra == "reauth"; requests<3.0.0,>=2.20.0; extra == "requests"; grpcio; extra == "testing"; flask; extra == "testing"; freezegun; extra == "testing"; mock; extra == "testing"; oauth2client; extra == "testing"; pyjwt>=2.0; extra == "testing"; cryptography>=38.0.3; extra == "testing"; pytest; extra == "testing"; pytest-cov; extra == "testing"; pytest-localserver; extra == "testing"; pyopenssl>=20.0.0; extra == "testing"; pyu2f>=0.1.5; extra == "testing"; responses; extra == "testing"; urllib3; extra == "testing"; packaging; extra == "testing"; aiohttp<4.0.0,>=3.6.2; extra == "testing"; requests<3.0.0,>=2.20.0; extra == "testing"; aioresponses; extra == "testing"; pytest-asyncio; extra == "testing"; pyopenssl<24.3.0; extra == "testing"; aiohttp<3.10.0; extra == "testing"; cryptography<39.0.0; python_version < "3.8" and extra == "testing"; urllib3; extra == "urllib3"; packaging; extra == "urllib3" | + + + +2.36.0, 2.37.0, 2.38.0, 2.39.0, 2.40.0, 2.40.1, 2.40.2, 2.40.3 | + + + +cachetools<6.0,>=2.0.0; pyasn1-modules>=0.2.1; rsa<5,>=3.1.4; aiohttp<4.0.0,>=3.6.2; extra == "aiohttp"; requests<3.0.0,>=2.20.0; extra == "aiohttp"; cryptography; extra == "enterprise-cert"; pyopenssl; extra == "enterprise-cert"; pyjwt>=2.0; extra == "pyjwt"; cryptography>=38.0.3; extra == "pyjwt"; cryptography<39.0.0; python_version < "3.8" and extra == "pyjwt"; pyopenssl>=20.0.0; extra == "pyopenssl"; cryptography>=38.0.3; extra == "pyopenssl"; cryptography<39.0.0; python_version < "3.8" and extra == "pyopenssl"; pyu2f>=0.1.5; extra == "reauth"; requests<3.0.0,>=2.20.0; extra == "requests"; grpcio; extra == "testing"; flask; extra == "testing"; freezegun; extra == "testing"; mock; extra == "testing"; oauth2client; extra == "testing"; pyjwt>=2.0; extra == "testing"; cryptography>=38.0.3; extra == "testing"; pytest; extra == "testing"; pytest-cov; extra == "testing"; pytest-localserver; extra == "testing"; pyopenssl>=20.0.0; extra == "testing"; pyu2f>=0.1.5; extra == "testing"; responses; extra == "testing"; urllib3; extra == "testing"; packaging; extra == "testing"; aiohttp<4.0.0,>=3.6.2; extra == "testing"; requests<3.0.0,>=2.20.0; extra == "testing"; aioresponses; extra == "testing"; pytest-asyncio; extra == "testing"; pyopenssl<24.3.0; extra == "testing"; aiohttp<3.10.0; extra == "testing"; cryptography<39.0.0; python_version < "3.8" and extra == "testing"; urllib3; extra == "urllib3"; packaging; extra == "urllib3" | + + + +2.40.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| googleapis-common-protos | + + + +Dependency Package | + + + +EY | + + + +1.65.0 | + + + +None | + + + +protobuf!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<7.0.0,>=3.20.2; grpcio<2.0.0,>=1.44.0; extra == "grpc" | + + + +1.66.0, 1.67.0rc1, 1.67.0, 1.68.0, 1.69.0, 1.69.1, 1.69.2, 1.70.0 | + + + +protobuf!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<7.0.0,>=3.20.2; grpcio<2.0.0,>=1.44.0; extra == "grpc" | + + + +1.70.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| graphql-core | + + + +Dependency Package | + + + +EY | + + + +3.2.4 | + + + +None | + + + +typing-extensions<5,>=4; python_version < "3.10" | + + + +3.2.5, 3.2.6, 3.3.0a1, 3.3.0a2, 3.3.0a3, 3.3.0a4, 3.3.0a5, 3.3.0a6, 3.3.0a7, 3.3.0a8, 3.3.0a9 | + + + +typing-extensions<5,>=4; python_version < "3.10" | + + + +3.3.0a9 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| greenlet | + + + +Dependency Package | + + + +EY | + + + +3.1.1 | + + + +None | + + + +Sphinx; extra == "docs"; furo; extra == "docs"; objgraph; extra == "test"; psutil; extra == "test" | + + + +3.2.0, 3.2.1, 3.2.2, 3.2.3 | + + + +Sphinx; extra == "docs"; furo; extra == "docs"; objgraph; extra == "test"; psutil; extra == "test" | + + + +3.2.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| h11 | + + + +Dependency Package | + + + +EY | + + + +0.16.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.16.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| httpcore | + + + +Dependency Package | + + + +EY | + + + +1.0.7 | + + + +None | + + + +certifi; h11>=0.16; anyio<5.0,>=4.0; extra == "asyncio"; h2<5,>=3; extra == "http2"; socksio==1.*; extra == "socks"; trio<1.0,>=0.22.0; extra == "trio" | + + + +1.0.8, 1.0.9 | + + + +certifi; h11>=0.16; anyio<5.0,>=4.0; extra == "asyncio"; h2<5,>=3; extra == "http2"; socksio==1.*; extra == "socks"; trio<1.0,>=0.22.0; extra == "trio" | + + + +1.0.9 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| httpx | + + + +Dependency Package | + + + +EY | + + + +0.28.1 | + + + +None | + + + +anyio; certifi; httpcore==1.*; idna; brotli; platform_python_implementation == "CPython" and extra == "brotli"; brotlicffi; platform_python_implementation != "CPython" and extra == "brotli"; click==8.*; extra == "cli"; pygments==2.*; extra == "cli"; rich<14,>=10; extra == "cli"; h2<5,>=3; extra == "http2"; socksio==1.*; extra == "socks"; zstandard>=0.18.0; extra == "zstd" | + + + +1.0.0b0 | + + + +anyio; certifi; httpcore==1.*; idna; brotli; platform_python_implementation == "CPython" and extra == "brotli"; brotlicffi; platform_python_implementation != "CPython" and extra == "brotli"; click==8.*; extra == "cli"; pygments==2.*; extra == "cli"; rich<14,>=10; extra == "cli"; h2<5,>=3; extra == "http2"; socksio==1.*; extra == "socks"; zstandard>=0.18.0; extra == "zstd" | + + + +1.0.0b0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| humanfriendly | + + + +Dependency Package | + + + +EY | + + + +10 | + + + +None | + + + +monotonic ; python_version == "2.7"; pyreadline ; sys_platform == "win32" and python_version<"3.8"; pyreadline3 ; sys_platform == "win32" and python_version>="3.8" | + + + ++ + + + | monotonic ; python_version == "2.7"; pyreadline ; sys_platform == "win32" and python_version<"3.8"; pyreadline3 ; sys_platform == "win32" and python_version>="3.8" | + + + +10.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| idna | + + + +Dependency Package | + + + +EY | + + + +3.1 | + + + +None | + + + +ruff>=0.6.2; extra == "all"; mypy>=1.11.2; extra == "all"; pytest>=8.3.2; extra == "all"; flake8>=7.1.1; extra == "all" | + + + +3.2, 3.3, 3.4, 3.5, 3.6, 3.7, 3.8, 3.9, 3.10 | + + + +ruff>=0.6.2; extra == "all"; mypy>=1.11.2; extra == "all"; pytest>=8.3.2; extra == "all"; flake8>=7.1.1; extra == "all" | + + + +3.10 | + + + +Yes | + + + +CVE-2024-3651, CVSS_V3, Internationalized Domain Names in Applications (IDNA) vulnerable to denial of service from specially crafted inputs to idna.encode, CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<3.7 CVE-2024-3651, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.1,<3.7 |
+
+
+
+ Yes | + + + +3.4: CVE-2024-3651, CVSS_V3, Internationalized Domain Names in Applications (IDNA) vulnerable to denial of service from specially crafted inputs to idna.encode, CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<3.7 CVE-2024-3651, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.1,<3.7; 3.2: CVE-2024-3651, CVSS_V3, Internationalized Domain Names in Applications (IDNA) vulnerable to denial of service from specially crafted inputs to idna.encode, CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<3.7 CVE-2024-3651, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.1,<3.7; 3.5: CVE-2024-3651, CVSS_V3, Internationalized Domain Names in Applications (IDNA) vulnerable to denial of service from specially crafted inputs to idna.encode, CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<3.7 CVE-2024-3651, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.1,<3.7; 3.3: CVE-2024-3651, CVSS_V3, Internationalized Domain Names in Applications (IDNA) vulnerable to denial of service from specially crafted inputs to idna.encode, CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<3.7 CVE-2024-3651, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.1,<3.7; 3.6: CVE-2024-3651, CVSS_V3, Internationalized Domain Names in Applications (IDNA) vulnerable to denial of service from specially crafted inputs to idna.encode, CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<3.7 CVE-2024-3651, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.1,<3.7 |
+
+
+
+ 3.10 | + + + +{'base_package': 'idna==3.10', 'dependencies': ['ruff==0.12.0', 'mypy==1.16.1', 'pytest==8.4.1', 'flake8==7.3.0']} | + + + +Not Used | + + +
| importlib-metadata | + + + +Dependency Package | + + + +EY | + + + +8.5.0 | + + + +None | + + + +zipp>=3.20; typing-extensions>=3.6.4; python_version < "3.8"; pytest!=8.1.*,>=6; extra == "test"; importlib_resources>=1.3; python_version < "3.9" and extra == "test"; packaging; extra == "test"; pyfakefs; extra == "test"; flufl.flake8; extra == "test"; pytest-perf>=0.9.2; extra == "test"; jaraco.test>=5.4; extra == "test"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; ipython; extra == "perf"; pytest-checkdocs>=2.4; extra == "check"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"; pytest-cov; extra == "cover"; pytest-enabler>=2.2; extra == "enabler"; pytest-mypy; extra == "type" | + + + +8.6.0, 8.6.1, 8.7.0 | + + + +zipp>=3.20; typing-extensions>=3.6.4; python_version < "3.8"; pytest!=8.1.*,>=6; extra == "test"; importlib_resources>=1.3; python_version < "3.9" and extra == "test"; packaging; extra == "test"; pyfakefs; extra == "test"; flufl.flake8; extra == "test"; pytest-perf>=0.9.2; extra == "test"; jaraco.test>=5.4; extra == "test"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; ipython; extra == "perf"; pytest-checkdocs>=2.4; extra == "check"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"; pytest-cov; extra == "cover"; pytest-enabler>=2.2; extra == "enabler"; pytest-mypy; extra == "type" | + + + +8.7.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| importlib-resources | + + + +Dependency Package | + + + +EY | + + + +6.4.0 | + + + +None | + + + +zipp>=3.1.0; python_version < "3.10"; pytest!=8.1.*,>=6; extra == "test"; zipp>=3.17; extra == "test"; jaraco.test>=5.4; extra == "test"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; pytest-checkdocs>=2.4; extra == "check"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"; pytest-cov; extra == "cover"; pytest-enabler>=2.2; extra == "enabler"; pytest-mypy; extra == "type" | + + + +6.4.1, 6.4.2, 6.4.3, 6.4.4, 6.4.5, 6.5.0, 6.5.1, 6.5.2 | + + + +zipp>=3.1.0; python_version < "3.10"; pytest!=8.1.*,>=6; extra == "test"; zipp>=3.17; extra == "test"; jaraco.test>=5.4; extra == "test"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; pytest-checkdocs>=2.4; extra == "check"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"; pytest-cov; extra == "cover"; pytest-enabler>=2.2; extra == "enabler"; pytest-mypy; extra == "type" | + + + +6.5.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| iniconfig | + + + +Dependency Package | + + + +EY | + + + +2.0.0 | + + + +None | + + + ++ + + + | 2.1.0 | + + + ++ + + + | 2.1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| ipykernel | + + + +Dependency Package | + + + +EY | + + + +6.29.5 | + + + +None | + + + +appnope; platform_system == "Darwin"; comm>=0.1.1; debugpy>=1.6.5; ipython>=7.23.1; jupyter-client>=6.1.12; jupyter-core!=5.0.*,>=4.12; matplotlib-inline>=0.1; nest-asyncio; packaging; psutil; pyzmq>=24; tornado>=6.1; traitlets>=5.4.0; coverage[toml]; extra == "cov"; curio; extra == "cov"; matplotlib; extra == "cov"; pytest-cov; extra == "cov"; trio; extra == "cov"; myst-parser; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx; extra == "docs"; sphinx-autodoc-typehints; extra == "docs"; sphinxcontrib-github-alt; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; trio; extra == "docs"; pyqt5; extra == "pyqt5"; pyside6; extra == "pyside6"; flaky; extra == "test"; ipyparallel; extra == "test"; pre-commit; extra == "test"; pytest-asyncio>=0.23.5; extra == "test"; pytest-cov; extra == "test"; pytest-timeout; extra == "test"; pytest>=7.0; extra == "test" | + + + +6.30.0a0, 7.0.0a0, 7.0.0a1 | + + + +appnope; platform_system == "Darwin"; comm>=0.1.1; debugpy>=1.6.5; ipython>=7.23.1; jupyter-client>=6.1.12; jupyter-core!=5.0.*,>=4.12; matplotlib-inline>=0.1; nest-asyncio; packaging; psutil; pyzmq>=24; tornado>=6.1; traitlets>=5.4.0; coverage[toml]; extra == "cov"; curio; extra == "cov"; matplotlib; extra == "cov"; pytest-cov; extra == "cov"; trio; extra == "cov"; myst-parser; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx; extra == "docs"; sphinx-autodoc-typehints; extra == "docs"; sphinxcontrib-github-alt; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; trio; extra == "docs"; pyqt5; extra == "pyqt5"; pyside6; extra == "pyside6"; flaky; extra == "test"; ipyparallel; extra == "test"; pre-commit; extra == "test"; pytest-asyncio>=0.23.5; extra == "test"; pytest-cov; extra == "test"; pytest-timeout; extra == "test"; pytest>=7.0; extra == "test" | + + + +7.0.0a1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| ipython | + + + +Dependency Package | + + + +EY | + + + +8.28.0 | + + + +None | + + + +colorama; sys_platform == "win32"; decorator; ipython-pygments-lexers; jedi>=0.16; matplotlib-inline; pexpect>4.3; sys_platform != "win32" and sys_platform != "emscripten"; prompt_toolkit<3.1.0,>=3.0.41; pygments>=2.4.0; stack_data; traitlets>=5.13.0; typing_extensions>=4.6; python_version < "3.12"; black; extra == "black"; docrepr; extra == "doc"; exceptiongroup; extra == "doc"; intersphinx_registry; extra == "doc"; ipykernel; extra == "doc"; ipython[test]; extra == "doc"; matplotlib; extra == "doc"; setuptools>=18.5; extra == "doc"; sphinx_toml==0.0.4; extra == "doc"; sphinx-rtd-theme; extra == "doc"; sphinx>=1.3; extra == "doc"; typing_extensions; extra == "doc"; pytest; extra == "test"; pytest-asyncio<0.22; extra == "test"; testpath; extra == "test"; packaging; extra == "test"; ipython[test]; extra == "test-extra"; curio; extra == "test-extra"; jupyter_ai; extra == "test-extra"; matplotlib!=3.2.0; extra == "test-extra"; nbformat; extra == "test-extra"; nbclient; extra == "test-extra"; ipykernel; extra == "test-extra"; numpy>=1.23; extra == "test-extra"; pandas; extra == "test-extra"; trio; extra == "test-extra"; matplotlib; extra == "matplotlib"; ipython[doc,matplotlib,test,test_extra]; extra == "all" | + + + +8.29.0, 8.30.0, 8.31.0, 8.32.0, 8.33.0, 8.34.0, 8.35.0, 8.36.0, 8.37.0, 9.0.0b1, 9.0.0b2, 9.0.0, 9.0.1, 9.0.2, 9.1.0, 9.2.0, 9.3.0 | + + + +colorama; sys_platform == "win32"; decorator; ipython-pygments-lexers; jedi>=0.16; matplotlib-inline; pexpect>4.3; sys_platform != "win32" and sys_platform != "emscripten"; prompt_toolkit<3.1.0,>=3.0.41; pygments>=2.4.0; stack_data; traitlets>=5.13.0; typing_extensions>=4.6; python_version < "3.12"; black; extra == "black"; docrepr; extra == "doc"; exceptiongroup; extra == "doc"; intersphinx_registry; extra == "doc"; ipykernel; extra == "doc"; ipython[test]; extra == "doc"; matplotlib; extra == "doc"; setuptools>=18.5; extra == "doc"; sphinx_toml==0.0.4; extra == "doc"; sphinx-rtd-theme; extra == "doc"; sphinx>=1.3; extra == "doc"; typing_extensions; extra == "doc"; pytest; extra == "test"; pytest-asyncio<0.22; extra == "test"; testpath; extra == "test"; packaging; extra == "test"; ipython[test]; extra == "test-extra"; curio; extra == "test-extra"; jupyter_ai; extra == "test-extra"; matplotlib!=3.2.0; extra == "test-extra"; nbformat; extra == "test-extra"; nbclient; extra == "test-extra"; ipykernel; extra == "test-extra"; numpy>=1.23; extra == "test-extra"; pandas; extra == "test-extra"; trio; extra == "test-extra"; matplotlib; extra == "matplotlib"; ipython[doc,matplotlib,test,test_extra]; extra == "all" | + + + +9.3.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| isodate | + + + +Dependency Package | + + + +EY | + + + +0.7.2 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.7.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| iterative-telemetry | + + + +Dependency Package | + + + +EY | + + + +0.0.8 | + + + +None | + + + +requests; appdirs; filelock; distro; pytest==7.2.0; extra == "tests"; pytest-sugar==0.9.5; extra == "tests"; pytest-cov==3.0.0; extra == "tests"; pytest-mock==3.8.2; extra == "tests"; pylint==2.15.0; extra == "tests"; mypy==1.11.2; extra == "tests"; types-requests; extra == "tests"; pytest==7.2.0; extra == "dev"; pytest-sugar==0.9.5; extra == "dev"; pytest-cov==3.0.0; extra == "dev"; pytest-mock==3.8.2; extra == "dev"; pylint==2.15.0; extra == "dev"; mypy==1.11.2; extra == "dev"; types-requests; extra == "dev" | + + + +0.0.9, 0.0.10 | + + + +requests; appdirs; filelock; distro; pytest==7.2.0; extra == "tests"; pytest-sugar==0.9.5; extra == "tests"; pytest-cov==3.0.0; extra == "tests"; pytest-mock==3.8.2; extra == "tests"; pylint==2.15.0; extra == "tests"; mypy==1.11.2; extra == "tests"; types-requests; extra == "tests"; pytest==7.2.0; extra == "dev"; pytest-sugar==0.9.5; extra == "dev"; pytest-cov==3.0.0; extra == "dev"; pytest-mock==3.8.2; extra == "dev"; pylint==2.15.0; extra == "dev"; mypy==1.11.2; extra == "dev"; types-requests; extra == "dev" | + + + +0.0.10 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jedi | + + + +Dependency Package | + + + +EY | + + + +0.19.1 | + + + +None | + + + +parso<0.9.0,>=0.8.4; Jinja2==2.11.3; extra == "docs"; MarkupSafe==1.1.1; extra == "docs"; Pygments==2.8.1; extra == "docs"; alabaster==0.7.12; extra == "docs"; babel==2.9.1; extra == "docs"; chardet==4.0.0; extra == "docs"; commonmark==0.8.1; extra == "docs"; docutils==0.17.1; extra == "docs"; future==0.18.2; extra == "docs"; idna==2.10; extra == "docs"; imagesize==1.2.0; extra == "docs"; mock==1.0.1; extra == "docs"; packaging==20.9; extra == "docs"; pyparsing==2.4.7; extra == "docs"; pytz==2021.1; extra == "docs"; readthedocs-sphinx-ext==2.1.4; extra == "docs"; recommonmark==0.5.0; extra == "docs"; requests==2.25.1; extra == "docs"; six==1.15.0; extra == "docs"; snowballstemmer==2.1.0; extra == "docs"; sphinx-rtd-theme==0.4.3; extra == "docs"; sphinx==1.8.5; extra == "docs"; sphinxcontrib-serializinghtml==1.1.4; extra == "docs"; sphinxcontrib-websupport==1.2.4; extra == "docs"; urllib3==1.26.4; extra == "docs"; flake8==5.0.4; extra == "qa"; mypy==0.971; extra == "qa"; types-setuptools==67.2.0.1; extra == "qa"; Django; extra == "testing"; attrs; extra == "testing"; colorama; extra == "testing"; docopt; extra == "testing"; pytest<9.0.0; extra == "testing" | + + + +0.19.2 | + + + +parso<0.9.0,>=0.8.4; Jinja2==2.11.3; extra == "docs"; MarkupSafe==1.1.1; extra == "docs"; Pygments==2.8.1; extra == "docs"; alabaster==0.7.12; extra == "docs"; babel==2.9.1; extra == "docs"; chardet==4.0.0; extra == "docs"; commonmark==0.8.1; extra == "docs"; docutils==0.17.1; extra == "docs"; future==0.18.2; extra == "docs"; idna==2.10; extra == "docs"; imagesize==1.2.0; extra == "docs"; mock==1.0.1; extra == "docs"; packaging==20.9; extra == "docs"; pyparsing==2.4.7; extra == "docs"; pytz==2021.1; extra == "docs"; readthedocs-sphinx-ext==2.1.4; extra == "docs"; recommonmark==0.5.0; extra == "docs"; requests==2.25.1; extra == "docs"; six==1.15.0; extra == "docs"; snowballstemmer==2.1.0; extra == "docs"; sphinx-rtd-theme==0.4.3; extra == "docs"; sphinx==1.8.5; extra == "docs"; sphinxcontrib-serializinghtml==1.1.4; extra == "docs"; sphinxcontrib-websupport==1.2.4; extra == "docs"; urllib3==1.26.4; extra == "docs"; flake8==5.0.4; extra == "qa"; mypy==0.971; extra == "qa"; types-setuptools==67.2.0.1; extra == "qa"; Django; extra == "testing"; attrs; extra == "testing"; colorama; extra == "testing"; docopt; extra == "testing"; pytest<9.0.0; extra == "testing" | + + + +0.19.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jeepney | + + + +Dependency Package | + + + +EY | + + + +0.8.0 | + + + +None | + + + +pytest; extra == "test"; pytest-trio; extra == "test"; pytest-asyncio>=0.17; extra == "test"; testpath; extra == "test"; trio; extra == "test"; async-timeout; extra == "test" and python_version < "3.11"; trio; extra == "trio" | + + + +0.9.0 | + + + +pytest; extra == "test"; pytest-trio; extra == "test"; pytest-asyncio>=0.17; extra == "test"; testpath; extra == "test"; trio; extra == "test"; async-timeout; extra == "test" and python_version < "3.11"; trio; extra == "trio" | + + + +0.9.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| Jinja2 | + + + +Dependency Package | + + + +EY | + + + +3.1.6 | + + + +None | + + + +MarkupSafe>=2.0; Babel>=2.7; extra == "i18n" | + + + ++ + + + | MarkupSafe>=2.0; Babel>=2.7; extra == "i18n" | + + + +3.1.6 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jmespath | + + + +Dependency Package | + + + +EY | + + + +1.0.1 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.0.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| joblib | + + + +Dependency Package | + + + +EY | + + + +1.4.2 | + + + +None | + + + ++ + + + | 1.5.0, 1.5.1 | + + + ++ + + + | 1.5.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| json5 | + + + +Dependency Package | + + + +EY | + + + +0.9.25 | + + + +None | + + + +build==1.2.2.post1; extra == "dev"; coverage==7.5.4; python_version < "3.9" and extra == "dev"; coverage==7.8.0; python_version >= "3.9" and extra == "dev"; mypy==1.14.1; python_version < "3.9" and extra == "dev"; mypy==1.15.0; python_version >= "3.9" and extra == "dev"; pip==25.0.1; extra == "dev"; pylint==3.2.7; python_version < "3.9" and extra == "dev"; pylint==3.3.6; python_version >= "3.9" and extra == "dev"; ruff==0.11.2; extra == "dev"; twine==6.1.0; extra == "dev"; uv==0.6.11; extra == "dev" | + + + +0.9.26, 0.9.27, 0.9.28, 0.10.0, 0.11.0, 0.12.0 | + + + +build==1.2.2.post1; extra == "dev"; coverage==7.5.4; python_version < "3.9" and extra == "dev"; coverage==7.8.0; python_version >= "3.9" and extra == "dev"; mypy==1.14.1; python_version < "3.9" and extra == "dev"; mypy==1.15.0; python_version >= "3.9" and extra == "dev"; pip==25.0.1; extra == "dev"; pylint==3.2.7; python_version < "3.9" and extra == "dev"; pylint==3.3.6; python_version >= "3.9" and extra == "dev"; ruff==0.11.2; extra == "dev"; twine==6.1.0; extra == "dev"; uv==0.6.11; extra == "dev" | + + + +0.12.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jsonpickle | + + + +Dependency Package | + + + +EY | + + + +3.3.0 | + + + +None | + + + +pytest-cov; extra == "cov"; black; extra == "dev"; pyupgrade; extra == "dev"; pytest!=8.1.*,>=6.0; extra == "testing"; pytest-benchmark; extra == "testing"; pytest-benchmark[histogram]; extra == "testing"; pytest-checkdocs>=1.2.3; extra == "testing"; pytest-enabler>=1.0.1; extra == "testing"; pytest-ruff>=0.2.1; extra == "testing"; bson; extra == "testing"; ecdsa; extra == "testing"; feedparser; extra == "testing"; gmpy2; extra == "testing"; numpy; extra == "testing"; pandas; extra == "testing"; pymongo; extra == "testing"; PyYAML; extra == "testing"; scikit-learn; extra == "testing"; scipy>=1.9.3; python_version > "3.10" and extra == "testing"; scipy; python_version <= "3.10" and extra == "testing"; simplejson; extra == "testing"; sqlalchemy; extra == "testing"; ujson; extra == "testing"; atheris~=2.3.0; python_version < "3.12" and extra == "testing"; furo; extra == "docs"; rst.linker>=1.9; extra == "docs"; sphinx>=3.5; extra == "docs"; build; extra == "packaging"; setuptools>=61.2; extra == "packaging"; setuptools_scm[toml]>=6.0; extra == "packaging"; twine; extra == "packaging" | + + + +3.4.0, 3.4.1, 3.4.2, 4.0.0, 4.0.1, 4.0.2, 4.0.3, 4.0.4, 4.0.5, 4.1.0, 4.1.1, 5.0.0rc1 | + + + +pytest-cov; extra == "cov"; black; extra == "dev"; pyupgrade; extra == "dev"; pytest!=8.1.*,>=6.0; extra == "testing"; pytest-benchmark; extra == "testing"; pytest-benchmark[histogram]; extra == "testing"; pytest-checkdocs>=1.2.3; extra == "testing"; pytest-enabler>=1.0.1; extra == "testing"; pytest-ruff>=0.2.1; extra == "testing"; bson; extra == "testing"; ecdsa; extra == "testing"; feedparser; extra == "testing"; gmpy2; extra == "testing"; numpy; extra == "testing"; pandas; extra == "testing"; pymongo; extra == "testing"; PyYAML; extra == "testing"; scikit-learn; extra == "testing"; scipy>=1.9.3; python_version > "3.10" and extra == "testing"; scipy; python_version <= "3.10" and extra == "testing"; simplejson; extra == "testing"; sqlalchemy; extra == "testing"; ujson; extra == "testing"; atheris~=2.3.0; python_version < "3.12" and extra == "testing"; furo; extra == "docs"; rst.linker>=1.9; extra == "docs"; sphinx>=3.5; extra == "docs"; build; extra == "packaging"; setuptools>=61.2; extra == "packaging"; setuptools_scm[toml]>=6.0; extra == "packaging"; twine; extra == "packaging" | + + + +5.0.0rc1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jsonpointer | + + + +Dependency Package | + + + +EY | + + + +3.0.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 3.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jsonschema | + + + +Dependency Package | + + + +EY | + + + +4.23.0 | + + + +None | + + + +attrs>=22.2.0; importlib-resources>=1.4.0; python_version < "3.9"; jsonschema-specifications>=2023.03.6; pkgutil-resolve-name>=1.3.10; python_version < "3.9"; referencing>=0.28.4; rpds-py>=0.7.1; fqdn; extra == "format"; idna; extra == "format"; isoduration; extra == "format"; jsonpointer>1.13; extra == "format"; rfc3339-validator; extra == "format"; rfc3987; extra == "format"; uri-template; extra == "format"; webcolors>=1.11; extra == "format"; fqdn; extra == "format-nongpl"; idna; extra == "format-nongpl"; isoduration; extra == "format-nongpl"; jsonpointer>1.13; extra == "format-nongpl"; rfc3339-validator; extra == "format-nongpl"; rfc3986-validator>0.1.0; extra == "format-nongpl"; uri-template; extra == "format-nongpl"; webcolors>=24.6.0; extra == "format-nongpl" | + + + +4.24.0 | + + + +attrs>=22.2.0; importlib-resources>=1.4.0; python_version < "3.9"; jsonschema-specifications>=2023.03.6; pkgutil-resolve-name>=1.3.10; python_version < "3.9"; referencing>=0.28.4; rpds-py>=0.7.1; fqdn; extra == "format"; idna; extra == "format"; isoduration; extra == "format"; jsonpointer>1.13; extra == "format"; rfc3339-validator; extra == "format"; rfc3987; extra == "format"; uri-template; extra == "format"; webcolors>=1.11; extra == "format"; fqdn; extra == "format-nongpl"; idna; extra == "format-nongpl"; isoduration; extra == "format-nongpl"; jsonpointer>1.13; extra == "format-nongpl"; rfc3339-validator; extra == "format-nongpl"; rfc3986-validator>0.1.0; extra == "format-nongpl"; uri-template; extra == "format-nongpl"; webcolors>=24.6.0; extra == "format-nongpl" | + + + +4.24.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jsonschema-specifications | + + + +Dependency Package | + + + +EY | + + + +2024.10.1 | + + + +None | + + + +referencing>=0.31.0 | + + + +2025.4.1 | + + + +referencing>=0.31.0 | + + + +2025.4.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jupyter-client | + + + +Dependency Package | + + + +EY | + + + +8.6.3 | + + + +None | + + + +importlib-metadata>=4.8.3; python_version < "3.10"; jupyter-core!=5.0.*,>=4.12; python-dateutil>=2.8.2; pyzmq>=23.0; tornado>=6.2; traitlets>=5.3; ipykernel; extra == "docs"; myst-parser; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx-autodoc-typehints; extra == "docs"; sphinx>=4; extra == "docs"; sphinxcontrib-github-alt; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; coverage; extra == "test"; ipykernel>=6.14; extra == "test"; mypy; extra == "test"; paramiko; sys_platform == "win32" and extra == "test"; pre-commit; extra == "test"; pytest-cov; extra == "test"; pytest-jupyter[client]>=0.4.1; extra == "test"; pytest-timeout; extra == "test"; pytest<8.2.0; extra == "test" | + + + ++ + + + | importlib-metadata>=4.8.3; python_version < "3.10"; jupyter-core!=5.0.*,>=4.12; python-dateutil>=2.8.2; pyzmq>=23.0; tornado>=6.2; traitlets>=5.3; ipykernel; extra == "docs"; myst-parser; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx-autodoc-typehints; extra == "docs"; sphinx>=4; extra == "docs"; sphinxcontrib-github-alt; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; coverage; extra == "test"; ipykernel>=6.14; extra == "test"; mypy; extra == "test"; paramiko; sys_platform == "win32" and extra == "test"; pre-commit; extra == "test"; pytest-cov; extra == "test"; pytest-jupyter[client]>=0.4.1; extra == "test"; pytest-timeout; extra == "test"; pytest<8.2.0; extra == "test" | + + + +8.6.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jupyter-core | + + + +Dependency Package | + + + +EY | + + + +5.8.1 | + + + +None | + + + +platformdirs>=2.5; pywin32>=300; sys_platform == "win32" and platform_python_implementation != "PyPy"; traitlets>=5.3; intersphinx-registry; extra == "docs"; myst-parser; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx-autodoc-typehints; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; traitlets; extra == "docs"; ipykernel; extra == "test"; pre-commit; extra == "test"; pytest-cov; extra == "test"; pytest-timeout; extra == "test"; pytest<9; extra == "test" | + + + ++ + + + | platformdirs>=2.5; pywin32>=300; sys_platform == "win32" and platform_python_implementation != "PyPy"; traitlets>=5.3; intersphinx-registry; extra == "docs"; myst-parser; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx-autodoc-typehints; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; traitlets; extra == "docs"; ipykernel; extra == "test"; pre-commit; extra == "test"; pytest-cov; extra == "test"; pytest-timeout; extra == "test"; pytest<9; extra == "test" | + + + +5.8.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jupyter-events | + + + +Dependency Package | + + + +EY | + + + +0.10.0 | + + + +None | + + + +jsonschema[format-nongpl]>=4.18.0; packaging; python-json-logger>=2.0.4; pyyaml>=5.3; referencing; rfc3339-validator; rfc3986-validator>=0.1.1; traitlets>=5.3; click; extra == "cli"; rich; extra == "cli"; jupyterlite-sphinx; extra == "docs"; myst-parser; extra == "docs"; pydata-sphinx-theme>=0.16; extra == "docs"; sphinx>=8; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; click; extra == "test"; pre-commit; extra == "test"; pytest-asyncio>=0.19.0; extra == "test"; pytest-console-scripts; extra == "test"; pytest>=7.0; extra == "test"; rich; extra == "test" | + + + +0.11.0, 0.12.0 | + + + +jsonschema[format-nongpl]>=4.18.0; packaging; python-json-logger>=2.0.4; pyyaml>=5.3; referencing; rfc3339-validator; rfc3986-validator>=0.1.1; traitlets>=5.3; click; extra == "cli"; rich; extra == "cli"; jupyterlite-sphinx; extra == "docs"; myst-parser; extra == "docs"; pydata-sphinx-theme>=0.16; extra == "docs"; sphinx>=8; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; click; extra == "test"; pre-commit; extra == "test"; pytest-asyncio>=0.19.0; extra == "test"; pytest-console-scripts; extra == "test"; pytest>=7.0; extra == "test"; rich; extra == "test" | + + + +0.12.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jupyter-lsp | + + + +Dependency Package | + + + +EY | + + + +2.2.5 | + + + +None | + + + +jupyter-server>=1.1.2; importlib-metadata>=4.8.3; python_version < "3.10" | + + + ++ + + + | jupyter-server>=1.1.2; importlib-metadata>=4.8.3; python_version < "3.10" | + + + +2.2.5 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jupyter-server | + + + +Dependency Package | + + + +EY | + + + +2.14.2 | + + + +None | + + + +anyio>=3.1.0; argon2-cffi>=21.1; jinja2>=3.0.3; jupyter-client>=7.4.4; jupyter-core!=5.0.*,>=4.12; jupyter-events>=0.11.0; jupyter-server-terminals>=0.4.4; nbconvert>=6.4.4; nbformat>=5.3.0; overrides>=5.0; packaging>=22.0; prometheus-client>=0.9; pywinpty>=2.0.1; os_name == "nt"; pyzmq>=24; send2trash>=1.8.2; terminado>=0.8.3; tornado>=6.2.0; traitlets>=5.6.0; websocket-client>=1.7; ipykernel; extra == "docs"; jinja2; extra == "docs"; jupyter-client; extra == "docs"; myst-parser; extra == "docs"; nbformat; extra == "docs"; prometheus-client; extra == "docs"; pydata-sphinx-theme; extra == "docs"; send2trash; extra == "docs"; sphinx-autodoc-typehints; extra == "docs"; sphinxcontrib-github-alt; extra == "docs"; sphinxcontrib-openapi>=0.8.0; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; sphinxemoji; extra == "docs"; tornado; extra == "docs"; typing-extensions; extra == "docs"; flaky; extra == "test"; ipykernel; extra == "test"; pre-commit; extra == "test"; pytest-console-scripts; extra == "test"; pytest-jupyter[server]>=0.7; extra == "test"; pytest-timeout; extra == "test"; pytest<9,>=7.0; extra == "test"; requests; extra == "test" | + + + +2.15.0, 2.16.0 | + + + +anyio>=3.1.0; argon2-cffi>=21.1; jinja2>=3.0.3; jupyter-client>=7.4.4; jupyter-core!=5.0.*,>=4.12; jupyter-events>=0.11.0; jupyter-server-terminals>=0.4.4; nbconvert>=6.4.4; nbformat>=5.3.0; overrides>=5.0; packaging>=22.0; prometheus-client>=0.9; pywinpty>=2.0.1; os_name == "nt"; pyzmq>=24; send2trash>=1.8.2; terminado>=0.8.3; tornado>=6.2.0; traitlets>=5.6.0; websocket-client>=1.7; ipykernel; extra == "docs"; jinja2; extra == "docs"; jupyter-client; extra == "docs"; myst-parser; extra == "docs"; nbformat; extra == "docs"; prometheus-client; extra == "docs"; pydata-sphinx-theme; extra == "docs"; send2trash; extra == "docs"; sphinx-autodoc-typehints; extra == "docs"; sphinxcontrib-github-alt; extra == "docs"; sphinxcontrib-openapi>=0.8.0; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; sphinxemoji; extra == "docs"; tornado; extra == "docs"; typing-extensions; extra == "docs"; flaky; extra == "test"; ipykernel; extra == "test"; pre-commit; extra == "test"; pytest-console-scripts; extra == "test"; pytest-jupyter[server]>=0.7; extra == "test"; pytest-timeout; extra == "test"; pytest<9,>=7.0; extra == "test"; requests; extra == "test" | + + + +2.16.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jupyter-server-terminals | + + + +Dependency Package | + + + +EY | + + + +0.5.3 | + + + +None | + + + +pywinpty>=2.0.3; os_name == 'nt'; terminado>=0.8.3; jinja2; extra == 'docs'; jupyter-server; extra == 'docs'; mistune<4.0; extra == 'docs'; myst-parser; extra == 'docs'; nbformat; extra == 'docs'; packaging; extra == 'docs'; pydata-sphinx-theme; extra == 'docs'; sphinxcontrib-github-alt; extra == 'docs'; sphinxcontrib-openapi; extra == 'docs'; sphinxcontrib-spelling; extra == 'docs'; sphinxemoji; extra == 'docs'; tornado; extra == 'docs'; jupyter-server>=2.0.0; extra == 'test'; pytest-jupyter[server]>=0.5.3; extra == 'test'; pytest-timeout; extra == 'test'; pytest>=7.0; extra == 'test' | + + + ++ + + + | pywinpty>=2.0.3; os_name == 'nt'; terminado>=0.8.3; jinja2; extra == 'docs'; jupyter-server; extra == 'docs'; mistune<4.0; extra == 'docs'; myst-parser; extra == 'docs'; nbformat; extra == 'docs'; packaging; extra == 'docs'; pydata-sphinx-theme; extra == 'docs'; sphinxcontrib-github-alt; extra == 'docs'; sphinxcontrib-openapi; extra == 'docs'; sphinxcontrib-spelling; extra == 'docs'; sphinxemoji; extra == 'docs'; tornado; extra == 'docs'; jupyter-server>=2.0.0; extra == 'test'; pytest-jupyter[server]>=0.5.3; extra == 'test'; pytest-timeout; extra == 'test'; pytest>=7.0; extra == 'test' | + + + +0.5.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jupyterlab | + + + +Dependency Package | + + + +EY | + + + +4.2.5 | + + + +None | + + + +jupyter-server<3,>=2.4.0; jupyterlab-server<3,>=2.27.1; notebook-shim>=0.2; packaging; async-lru>=1.0.0; httpx>=0.25.0; importlib-metadata>=4.8.3; python_version < "3.10"; ipykernel>=6.5.0; jinja2>=3.0.3; jupyter-core; jupyter-lsp>=2.0.0; setuptools>=41.1.0; tomli>=1.2.2; python_version < "3.11"; tornado>=6.2.0; traitlets; build; extra == "dev"; bump2version; extra == "dev"; coverage; extra == "dev"; hatch; extra == "dev"; pre-commit; extra == "dev"; pytest-cov; extra == "dev"; ruff==0.11.4; extra == "dev"; jsx-lexer; extra == "docs"; myst-parser; extra == "docs"; pydata-sphinx-theme>=0.13.0; extra == "docs"; pytest; extra == "docs"; pytest-check-links; extra == "docs"; pytest-jupyter; extra == "docs"; sphinx-copybutton; extra == "docs"; sphinx<8.2.0,>=1.8; extra == "docs"; altair==5.5.0; extra == "docs-screenshots"; ipython==8.16.1; extra == "docs-screenshots"; ipywidgets==8.1.5; extra == "docs-screenshots"; jupyterlab-geojson==3.4.0; extra == "docs-screenshots"; jupyterlab-language-pack-zh-cn==4.3.post1; extra == "docs-screenshots"; matplotlib==3.10.0; extra == "docs-screenshots"; nbconvert>=7.0.0; extra == "docs-screenshots"; pandas==2.2.3; extra == "docs-screenshots"; scipy==1.15.1; extra == "docs-screenshots"; vega-datasets==0.9.0; extra == "docs-screenshots"; coverage; extra == "test"; pytest-check-links>=0.7; extra == "test"; pytest-console-scripts; extra == "test"; pytest-cov; extra == "test"; pytest-jupyter>=0.5.3; extra == "test"; pytest-timeout; extra == "test"; pytest-tornasync; extra == "test"; pytest>=7.0; extra == "test"; requests; extra == "test"; requests-cache; extra == "test"; virtualenv; extra == "test"; copier<10,>=9; extra == "upgrade-extension"; jinja2-time<0.3; extra == "upgrade-extension"; pydantic<3.0; extra == "upgrade-extension"; pyyaml-include<3.0; extra == "upgrade-extension"; tomli-w<2.0; extra == "upgrade-extension" | + + + +4.2.6, 4.2.7, 4.3.0a0, 4.3.0a1, 4.3.0a2, 4.3.0b0, 4.3.0b1, 4.3.0b2, 4.3.0b3, 4.3.0rc0, 4.3.0rc1, 4.3.0, 4.3.1, 4.3.2, 4.3.3, 4.3.4, 4.3.5, 4.3.6, 4.3.7, 4.3.8, 4.4.0a0, 4.4.0a1, 4.4.0a2, 4.4.0a3, 4.4.0b0, 4.4.0b1, 4.4.0b2, 4.4.0rc0, 4.4.0rc1, 4.4.0, 4.4.1, 4.4.2, 4.4.3, 4.5.0a0, 4.5.0a1 | + + + +jupyter-server<3,>=2.4.0; jupyterlab-server<3,>=2.27.1; notebook-shim>=0.2; packaging; async-lru>=1.0.0; httpx>=0.25.0; importlib-metadata>=4.8.3; python_version < "3.10"; ipykernel>=6.5.0; jinja2>=3.0.3; jupyter-core; jupyter-lsp>=2.0.0; setuptools>=41.1.0; tomli>=1.2.2; python_version < "3.11"; tornado>=6.2.0; traitlets; build; extra == "dev"; bump2version; extra == "dev"; coverage; extra == "dev"; hatch; extra == "dev"; pre-commit; extra == "dev"; pytest-cov; extra == "dev"; ruff==0.11.4; extra == "dev"; jsx-lexer; extra == "docs"; myst-parser; extra == "docs"; pydata-sphinx-theme>=0.13.0; extra == "docs"; pytest; extra == "docs"; pytest-check-links; extra == "docs"; pytest-jupyter; extra == "docs"; sphinx-copybutton; extra == "docs"; sphinx<8.2.0,>=1.8; extra == "docs"; altair==5.5.0; extra == "docs-screenshots"; ipython==8.16.1; extra == "docs-screenshots"; ipywidgets==8.1.5; extra == "docs-screenshots"; jupyterlab-geojson==3.4.0; extra == "docs-screenshots"; jupyterlab-language-pack-zh-cn==4.3.post1; extra == "docs-screenshots"; matplotlib==3.10.0; extra == "docs-screenshots"; nbconvert>=7.0.0; extra == "docs-screenshots"; pandas==2.2.3; extra == "docs-screenshots"; scipy==1.15.1; extra == "docs-screenshots"; vega-datasets==0.9.0; extra == "docs-screenshots"; coverage; extra == "test"; pytest-check-links>=0.7; extra == "test"; pytest-console-scripts; extra == "test"; pytest-cov; extra == "test"; pytest-jupyter>=0.5.3; extra == "test"; pytest-timeout; extra == "test"; pytest-tornasync; extra == "test"; pytest>=7.0; extra == "test"; requests; extra == "test"; requests-cache; extra == "test"; virtualenv; extra == "test"; copier<10,>=9; extra == "upgrade-extension"; jinja2-time<0.3; extra == "upgrade-extension"; pydantic<3.0; extra == "upgrade-extension"; pyyaml-include<3.0; extra == "upgrade-extension"; tomli-w<2.0; extra == "upgrade-extension" | + + + +4.5.0a1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jupyterlab-pygments | + + + +Dependency Package | + + + +EY | + + + +0.3.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.3.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jupyterlab-server | + + + +Dependency Package | + + + +EY | + + + +2.27.3 | + + + +None | + + + +babel>=2.10; importlib-metadata>=4.8.3; python_version < "3.10"; jinja2>=3.0.3; json5>=0.9.0; jsonschema>=4.18.0; jupyter-server<3,>=1.21; packaging>=21.3; requests>=2.31; autodoc-traits; extra == "docs"; jinja2<3.2.0; extra == "docs"; mistune<4; extra == "docs"; myst-parser; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx; extra == "docs"; sphinx-copybutton; extra == "docs"; sphinxcontrib-openapi>0.8; extra == "docs"; openapi-core~=0.18.0; extra == "openapi"; ruamel-yaml; extra == "openapi"; hatch; extra == "test"; ipykernel; extra == "test"; openapi-core~=0.18.0; extra == "test"; openapi-spec-validator<0.8.0,>=0.6.0; extra == "test"; pytest-console-scripts; extra == "test"; pytest-cov; extra == "test"; pytest-jupyter[server]>=0.6.2; extra == "test"; pytest-timeout; extra == "test"; pytest<8,>=7.0; extra == "test"; requests-mock; extra == "test"; ruamel-yaml; extra == "test"; sphinxcontrib-spelling; extra == "test"; strict-rfc3339; extra == "test"; werkzeug; extra == "test" | + + + ++ + + + | babel>=2.10; importlib-metadata>=4.8.3; python_version < "3.10"; jinja2>=3.0.3; json5>=0.9.0; jsonschema>=4.18.0; jupyter-server<3,>=1.21; packaging>=21.3; requests>=2.31; autodoc-traits; extra == "docs"; jinja2<3.2.0; extra == "docs"; mistune<4; extra == "docs"; myst-parser; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx; extra == "docs"; sphinx-copybutton; extra == "docs"; sphinxcontrib-openapi>0.8; extra == "docs"; openapi-core~=0.18.0; extra == "openapi"; ruamel-yaml; extra == "openapi"; hatch; extra == "test"; ipykernel; extra == "test"; openapi-core~=0.18.0; extra == "test"; openapi-spec-validator<0.8.0,>=0.6.0; extra == "test"; pytest-console-scripts; extra == "test"; pytest-cov; extra == "test"; pytest-jupyter[server]>=0.6.2; extra == "test"; pytest-timeout; extra == "test"; pytest<8,>=7.0; extra == "test"; requests-mock; extra == "test"; ruamel-yaml; extra == "test"; sphinxcontrib-spelling; extra == "test"; strict-rfc3339; extra == "test"; werkzeug; extra == "test" | + + + +2.27.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| kedro | + + + +Dependency Package | + + + +EY | + + + +0.19.12 | + + + +None | + + + +attrs>=21.3; build>=0.7.0; cachetools>=4.1; click<8.2.0,>=4.0; cookiecutter<3.0,>=2.1.1; dynaconf<4.0,>=3.1.2; fsspec>=2021.4; gitpython>=3.0; importlib-metadata<9.0,>=3.6; importlib_resources<7.0,>=1.3; kedro-telemetry>=0.5.0; more_itertools>=8.14.0; omegaconf>=2.1.1; parse>=1.19.0; pluggy>=1.0; pre-commit-hooks; PyYAML<7.0,>=4.2; rich<15.0,>=12.0; rope<2.0,>=0.21; toml>=0.10.0; typing_extensions>=4.0; behave==1.2.6; extra == "test"; coverage[toml]; extra == "test"; detect-secrets~=1.5.0; extra == "test"; import-linter==2.3; extra == "test"; ipylab>=1.0.0; extra == "test"; ipython~=8.10; extra == "test"; jupyterlab_server>=2.11.1; extra == "test"; jupyterlab<5,>=3; extra == "test"; jupyter~=1.0; extra == "test"; kedro-datasets; extra == "test"; mypy~=1.0; extra == "test"; pandas~=2.0; extra == "test"; pluggy>=1.0; extra == "test"; pre-commit<5.0,>=2.9.2; extra == "test"; pytest-cov<7,>=3; extra == "test"; pytest-mock<4.0,>=1.7.1; extra == "test"; pytest-xdist[psutil]~=2.2.1; extra == "test"; pytest<9.0,>=7.2; extra == "test"; s3fs<2025.6,>=2021.4; extra == "test"; requests_mock; extra == "test"; pandas-stubs; extra == "test"; types-PyYAML; extra == "test"; types-cachetools; extra == "test"; types-requests; extra == "test"; types-toml; extra == "test"; ipykernel<7.0,>=5.3; extra == "docs"; Jinja2<3.2.0; extra == "docs"; kedro-sphinx-theme==2024.10.3; extra == "docs"; sphinx-notfound-page!=1.0.3; extra == "docs"; ipylab>=1.0.0; extra == "jupyter"; notebook>=7.0.0; extra == "jupyter"; asv; extra == "benchmark"; kedro[benchmark,docs,jupyter,test]; extra == "all" | + + + +0.19.13, 0.19.14, 1.0.0rc1 | + + + +attrs>=21.3; build>=0.7.0; cachetools>=4.1; click<8.2.0,>=4.0; cookiecutter<3.0,>=2.1.1; dynaconf<4.0,>=3.1.2; fsspec>=2021.4; gitpython>=3.0; importlib-metadata<9.0,>=3.6; importlib_resources<7.0,>=1.3; kedro-telemetry>=0.5.0; more_itertools>=8.14.0; omegaconf>=2.1.1; parse>=1.19.0; pluggy>=1.0; pre-commit-hooks; PyYAML<7.0,>=4.2; rich<15.0,>=12.0; rope<2.0,>=0.21; toml>=0.10.0; typing_extensions>=4.0; behave==1.2.6; extra == "test"; coverage[toml]; extra == "test"; detect-secrets~=1.5.0; extra == "test"; import-linter==2.3; extra == "test"; ipylab>=1.0.0; extra == "test"; ipython~=8.10; extra == "test"; jupyterlab_server>=2.11.1; extra == "test"; jupyterlab<5,>=3; extra == "test"; jupyter~=1.0; extra == "test"; kedro-datasets; extra == "test"; mypy~=1.0; extra == "test"; pandas~=2.0; extra == "test"; pluggy>=1.0; extra == "test"; pre-commit<5.0,>=2.9.2; extra == "test"; pytest-cov<7,>=3; extra == "test"; pytest-mock<4.0,>=1.7.1; extra == "test"; pytest-xdist[psutil]~=2.2.1; extra == "test"; pytest<9.0,>=7.2; extra == "test"; s3fs<2025.6,>=2021.4; extra == "test"; requests_mock; extra == "test"; pandas-stubs; extra == "test"; types-PyYAML; extra == "test"; types-cachetools; extra == "test"; types-requests; extra == "test"; types-toml; extra == "test"; ipykernel<7.0,>=5.3; extra == "docs"; Jinja2<3.2.0; extra == "docs"; kedro-sphinx-theme==2024.10.3; extra == "docs"; sphinx-notfound-page!=1.0.3; extra == "docs"; ipylab>=1.0.0; extra == "jupyter"; notebook>=7.0.0; extra == "jupyter"; asv; extra == "benchmark"; kedro[benchmark,docs,jupyter,test]; extra == "all" | + + + +1.0.0rc1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| kedro-telemetry | + + + +Dependency Package | + + + +EY | + + + +0.5.0 | + + + +None | + + + +kedro>=0.18.0; requests~=2.20; appdirs>=1.4.4; pytest; extra == "test"; pytest-cov; extra == "test"; pytest-mock; extra == "test"; pytest-xdist[psutil]~=2.2.1; extra == "test"; PyYAML==5.3.1; extra == "test"; wheel; extra == "test"; bandit<2.0,>=1.6.2; extra == "lint"; black~=22.0; extra == "lint"; detect-secrets~=1.5.0; extra == "lint"; mypy~=1.0; extra == "lint"; pre-commit>=2.9.2; extra == "lint"; ruff~=0.0.290; extra == "lint"; types-requests; extra == "lint"; types-PyYAML; extra == "lint"; types-toml; extra == "lint" | + + + +0.6.0, 0.6.1, 0.6.2, 0.6.3 | + + + +kedro>=0.18.0; requests~=2.20; appdirs>=1.4.4; pytest; extra == "test"; pytest-cov; extra == "test"; pytest-mock; extra == "test"; pytest-xdist[psutil]~=2.2.1; extra == "test"; PyYAML==5.3.1; extra == "test"; wheel; extra == "test"; bandit<2.0,>=1.6.2; extra == "lint"; black~=22.0; extra == "lint"; detect-secrets~=1.5.0; extra == "lint"; mypy~=1.0; extra == "lint"; pre-commit>=2.9.2; extra == "lint"; ruff~=0.0.290; extra == "lint"; types-requests; extra == "lint"; types-PyYAML; extra == "lint"; types-toml; extra == "lint" | + + + +0.6.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| kiwisolver | + + + +Dependency Package | + + + +EY | + + + +1.4.7 | + + + +None | + + + ++ + + + | 1.4.8 | + + + ++ + + + | 1.4.8 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| knack | + + + +Dependency Package | + + + +EY | + + + +0.12.0 | + + + +None | + + + +argcomplete; jmespath; packaging; pygments; pyyaml; tabulate | + + + ++ + + + | argcomplete; jmespath; packaging; pygments; pyyaml; tabulate | + + + +0.12.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| langcodes | + + + +Dependency Package | + + + +EY | + + + +3.4.1 | + + + +None | + + + +language-data>=1.2; build; extra == "build"; twine; extra == "build"; pytest; extra == "test"; pytest-cov; extra == "test" | + + + +3.5.0 | + + + +language-data>=1.2; build; extra == "build"; twine; extra == "build"; pytest; extra == "test"; pytest-cov; extra == "test" | + + + +3.5.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| language-data | + + + +Dependency Package | + + + +EY | + + + +1.2.0 | + + + +None | + + + +marisa-trie>=1.1.0; build; extra == "build"; twine; extra == "build"; pytest; extra == "test"; pytest-cov; extra == "test" | + + + +1.3.0 | + + + +marisa-trie>=1.1.0; build; extra == "build"; twine; extra == "build"; pytest; extra == "test"; pytest-cov; extra == "test" | + + + +1.3.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| lazy-loader | + + + +Dependency Package | + + + +EY | + + + +0.4 | + + + +None | + + + +packaging; importlib-metadata; python_version < "3.8"; changelist==0.5; extra == "dev"; pre-commit==3.7.0; extra == "lint"; pytest>=7.4; extra == "test"; pytest-cov>=4.1; extra == "test" | + + + ++ + + + | packaging; importlib-metadata; python_version < "3.8"; changelist==0.5; extra == "dev"; pre-commit==3.7.0; extra == "lint"; pytest>=7.4; extra == "test"; pytest-cov>=4.1; extra == "test" | + + + +0.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| litestar | + + + +Dependency Package | + + + +EY | + + + +2.13.0 | + + + +None | + + + +anyio>=3; click; exceptiongroup; python_version < "3.11"; exceptiongroup>=1.2.2; python_version < "3.11"; httpx>=0.22; importlib-metadata; python_version < "3.10"; importlib-resources>=5.12.0; python_version < "3.9"; litestar-htmx>=0.4.0; msgspec>=0.18.2; multidict>=6.0.2; multipart>=1.2.0; polyfactory>=2.6.3; pyyaml; rich-click; rich>=13.0.0; typing-extensions; annotated-types; extra == "annotated-types"; attrs; extra == "attrs"; brotli; extra == "brotli"; jsbeautifier; extra == "cli"; uvicorn[standard]; extra == "cli"; uvloop>=0.18.0; sys_platform != "win32" and extra == "cli"; cryptography; extra == "cryptography"; advanced-alchemy>=0.2.2; extra == "full"; annotated-types; extra == "full"; attrs; extra == "full"; brotli; extra == "full"; cryptography; extra == "full"; email-validator; extra == "full"; fast-query-parsers>=1.0.2; extra == "full"; jinja2; extra == "full"; jinja2>=3.1.2; extra == "full"; jsbeautifier; extra == "full"; mako>=1.2.4; extra == "full"; minijinja>=1.0.0; extra == "full"; opentelemetry-instrumentation-asgi; extra == "full"; piccolo; extra == "full"; picologging; python_version < "3.13" and extra == "full"; prometheus-client; extra == "full"; pydantic; extra == "full"; pydantic-extra-types!=2.9.0; python_version < "3.9" and extra == "full"; pydantic-extra-types; python_version >= "3.9" and extra == "full"; pyjwt>=2.9.0; extra == "full"; redis[hiredis]>=4.4.4; extra == "full"; structlog; extra == "full"; uvicorn[standard]; extra == "full"; uvloop>=0.18.0; sys_platform != "win32" and extra == "full"; valkey[libvalkey]>=6.0.2; extra == "full"; jinja2>=3.1.2; extra == "jinja"; cryptography; extra == "jwt"; pyjwt>=2.9.0; extra == "jwt"; mako>=1.2.4; extra == "mako"; minijinja>=1.0.0; extra == "minijinja"; opentelemetry-instrumentation-asgi; extra == "opentelemetry"; piccolo; extra == "piccolo"; picologging; python_version < "3.13" and extra == "picologging"; prometheus-client; extra == "prometheus"; email-validator; extra == "pydantic"; pydantic; extra == "pydantic"; pydantic-extra-types!=2.9.0; python_version < "3.9" and extra == "pydantic"; pydantic-extra-types; python_version >= "3.9" and extra == "pydantic"; redis[hiredis]>=4.4.4; extra == "redis"; advanced-alchemy>=0.2.2; extra == "sqlalchemy"; fast-query-parsers>=1.0.2; extra == "standard"; jinja2; extra == "standard"; jsbeautifier; extra == "standard"; uvicorn[standard]; extra == "standard"; uvloop>=0.18.0; sys_platform != "win32" and extra == "standard"; structlog; extra == "structlog"; valkey[libvalkey]>=6.0.2; extra == "valkey" | + + + +2.14.0, 2.15.0, 2.15.1, 2.15.2, 2.16.0 | + + + +anyio>=3; click; exceptiongroup; python_version < "3.11"; exceptiongroup>=1.2.2; python_version < "3.11"; httpx>=0.22; importlib-metadata; python_version < "3.10"; importlib-resources>=5.12.0; python_version < "3.9"; litestar-htmx>=0.4.0; msgspec>=0.18.2; multidict>=6.0.2; multipart>=1.2.0; polyfactory>=2.6.3; pyyaml; rich-click; rich>=13.0.0; typing-extensions; annotated-types; extra == "annotated-types"; attrs; extra == "attrs"; brotli; extra == "brotli"; jsbeautifier; extra == "cli"; uvicorn[standard]; extra == "cli"; uvloop>=0.18.0; sys_platform != "win32" and extra == "cli"; cryptography; extra == "cryptography"; advanced-alchemy>=0.2.2; extra == "full"; annotated-types; extra == "full"; attrs; extra == "full"; brotli; extra == "full"; cryptography; extra == "full"; email-validator; extra == "full"; fast-query-parsers>=1.0.2; extra == "full"; jinja2; extra == "full"; jinja2>=3.1.2; extra == "full"; jsbeautifier; extra == "full"; mako>=1.2.4; extra == "full"; minijinja>=1.0.0; extra == "full"; opentelemetry-instrumentation-asgi; extra == "full"; piccolo; extra == "full"; picologging; python_version < "3.13" and extra == "full"; prometheus-client; extra == "full"; pydantic; extra == "full"; pydantic-extra-types!=2.9.0; python_version < "3.9" and extra == "full"; pydantic-extra-types; python_version >= "3.9" and extra == "full"; pyjwt>=2.9.0; extra == "full"; redis[hiredis]>=4.4.4; extra == "full"; structlog; extra == "full"; uvicorn[standard]; extra == "full"; uvloop>=0.18.0; sys_platform != "win32" and extra == "full"; valkey[libvalkey]>=6.0.2; extra == "full"; jinja2>=3.1.2; extra == "jinja"; cryptography; extra == "jwt"; pyjwt>=2.9.0; extra == "jwt"; mako>=1.2.4; extra == "mako"; minijinja>=1.0.0; extra == "minijinja"; opentelemetry-instrumentation-asgi; extra == "opentelemetry"; piccolo; extra == "piccolo"; picologging; python_version < "3.13" and extra == "picologging"; prometheus-client; extra == "prometheus"; email-validator; extra == "pydantic"; pydantic; extra == "pydantic"; pydantic-extra-types!=2.9.0; python_version < "3.9" and extra == "pydantic"; pydantic-extra-types; python_version >= "3.9" and extra == "pydantic"; redis[hiredis]>=4.4.4; extra == "redis"; advanced-alchemy>=0.2.2; extra == "sqlalchemy"; fast-query-parsers>=1.0.2; extra == "standard"; jinja2; extra == "standard"; jsbeautifier; extra == "standard"; uvicorn[standard]; extra == "standard"; uvloop>=0.18.0; sys_platform != "win32" and extra == "standard"; structlog; extra == "structlog"; valkey[libvalkey]>=6.0.2; extra == "valkey" | + + + +2.16.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| marisa-trie | + + + +Dependency Package | + + + +EY | + + + +1.2.0 | + + + +None | + + + +setuptools; hypothesis; extra == "test"; pytest; extra == "test"; readme-renderer; extra == "test" | + + + +1.2.1 | + + + +setuptools; hypothesis; extra == "test"; pytest; extra == "test"; readme-renderer; extra == "test" | + + + +1.2.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| markdown-it-py | + + + +Dependency Package | + + + +EY | + + + +3.0.0 | + + + +None | + + + +mdurl~=0.1; psutil ; extra == "benchmarking"; pytest ; extra == "benchmarking"; pytest-benchmark ; extra == "benchmarking"; pre-commit~=3.0 ; extra == "code_style"; commonmark~=0.9 ; extra == "compare"; markdown~=3.4 ; extra == "compare"; mistletoe~=1.0 ; extra == "compare"; mistune~=2.0 ; extra == "compare"; panflute~=2.3 ; extra == "compare"; linkify-it-py>=1,<3 ; extra == "linkify"; mdit-py-plugins ; extra == "plugins"; gprof2dot ; extra == "profiling"; mdit-py-plugins ; extra == "rtd"; myst-parser ; extra == "rtd"; pyyaml ; extra == "rtd"; sphinx ; extra == "rtd"; sphinx-copybutton ; extra == "rtd"; sphinx-design ; extra == "rtd"; sphinx_book_theme ; extra == "rtd"; jupyter_sphinx ; extra == "rtd"; coverage ; extra == "testing"; pytest ; extra == "testing"; pytest-cov ; extra == "testing"; pytest-regressions ; extra == "testing" | + + + ++ + + + | mdurl~=0.1; psutil ; extra == "benchmarking"; pytest ; extra == "benchmarking"; pytest-benchmark ; extra == "benchmarking"; pre-commit~=3.0 ; extra == "code_style"; commonmark~=0.9 ; extra == "compare"; markdown~=3.4 ; extra == "compare"; mistletoe~=1.0 ; extra == "compare"; mistune~=2.0 ; extra == "compare"; panflute~=2.3 ; extra == "compare"; linkify-it-py>=1,<3 ; extra == "linkify"; mdit-py-plugins ; extra == "plugins"; gprof2dot ; extra == "profiling"; mdit-py-plugins ; extra == "rtd"; myst-parser ; extra == "rtd"; pyyaml ; extra == "rtd"; sphinx ; extra == "rtd"; sphinx-copybutton ; extra == "rtd"; sphinx-design ; extra == "rtd"; sphinx_book_theme ; extra == "rtd"; jupyter_sphinx ; extra == "rtd"; coverage ; extra == "testing"; pytest ; extra == "testing"; pytest-cov ; extra == "testing"; pytest-regressions ; extra == "testing" | + + + +3.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| MarkupSafe | + + + +Dependency Package | + + + +EY | + + + +3.0.2 | + + + +None | + + + ++ + + + | + + + + | + + + + | 3.0.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| marshmallow | + + + +Dependency Package | + + + +EY | + + + +3.23.0 | + + + +None | + + + +backports-datetime-fromisoformat; python_version < "3.11"; typing-extensions; python_version < "3.11"; marshmallow[tests]; extra == "dev"; tox; extra == "dev"; pre-commit<5.0,>=3.5; extra == "dev"; autodocsumm==0.2.14; extra == "docs"; furo==2024.8.6; extra == "docs"; sphinx-copybutton==0.5.2; extra == "docs"; sphinx-issues==5.0.1; extra == "docs"; sphinx==8.2.3; extra == "docs"; sphinxext-opengraph==0.10.0; extra == "docs"; pytest; extra == "tests"; simplejson; extra == "tests" | + + + +3.23.1, 3.23.2, 3.23.3, 3.24.0, 3.24.1, 3.24.2, 3.25.0, 3.25.1, 3.26.0, 3.26.1, 4.0.0 | + + + +backports-datetime-fromisoformat; python_version < "3.11"; typing-extensions; python_version < "3.11"; marshmallow[tests]; extra == "dev"; tox; extra == "dev"; pre-commit<5.0,>=3.5; extra == "dev"; autodocsumm==0.2.14; extra == "docs"; furo==2024.8.6; extra == "docs"; sphinx-copybutton==0.5.2; extra == "docs"; sphinx-issues==5.0.1; extra == "docs"; sphinx==8.2.3; extra == "docs"; sphinxext-opengraph==0.10.0; extra == "docs"; pytest; extra == "tests"; simplejson; extra == "tests" | + + + +4.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| matplotlib | + + + +Dependency Package | + + + +EY | + + + +3.9.2 | + + + +None | + + + +contourpy>=1.0.1; cycler>=0.10; fonttools>=4.22.0; kiwisolver>=1.3.1; numpy>=1.23; packaging>=20.0; pillow>=8; pyparsing>=2.3.1; python-dateutil>=2.7; meson-python<0.17.0,>=0.13.1; extra == "dev"; pybind11!=2.13.3,>=2.13.2; extra == "dev"; setuptools_scm>=7; extra == "dev"; setuptools>=64; extra == "dev" | + + + +3.9.3, 3.9.4, 3.10.0rc1, 3.10.0, 3.10.1, 3.10.3 | + + + +contourpy>=1.0.1; cycler>=0.10; fonttools>=4.22.0; kiwisolver>=1.3.1; numpy>=1.23; packaging>=20.0; pillow>=8; pyparsing>=2.3.1; python-dateutil>=2.7; meson-python<0.17.0,>=0.13.1; extra == "dev"; pybind11!=2.13.3,>=2.13.2; extra == "dev"; setuptools_scm>=7; extra == "dev"; setuptools>=64; extra == "dev" | + + + +3.10.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| matplotlib-inline | + + + +Dependency Package | + + + +EY | + + + +0.1.7 | + + + +None | + + + +traitlets | + + + ++ + + + | traitlets | + + + +0.1.7 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| mdurl | + + + +Dependency Package | + + + +EY | + + + +0.1.2 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.1.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| mistune | + + + +Dependency Package | + + + +EY | + + + +3.0.2 | + + + +None | + + + +typing-extensions; python_version < "3.11" | + + + +3.1.0, 3.1.1, 3.1.2, 3.1.3 | + + + +typing-extensions; python_version < "3.11" | + + + +3.1.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| mltable | + + + +Dependency Package | + + + +EY | + + + +1.6.1 | + + + +None | + + + +azureml-dataprep[parquet] <5.2.0a,>=5.1.0a; pyyaml <7.0.0,>=5.1.0; jsonschema <5.0.0,>=4.0.0; msrest >=0.6.18; azure-core !=1.22.0,<2.0.0,>=1.8.0; azure-mgmt-core <2.0.0,>=1.3.0; python-dateutil <3.0.0,>=2.7.3; cryptography !=1.9,!=2.0.*,!=2.1.*,!=2.2.*; PyJWT <3.0.0; pytz; azure-ai-ml ; extra == 'azure-ai-ml' | + + + ++ + + + | azureml-dataprep[parquet] <5.2.0a,>=5.1.0a; pyyaml <7.0.0,>=5.1.0; jsonschema <5.0.0,>=4.0.0; msrest >=0.6.18; azure-core !=1.22.0,<2.0.0,>=1.8.0; azure-mgmt-core <2.0.0,>=1.3.0; python-dateutil <3.0.0,>=2.7.3; cryptography !=1.9,!=2.0.*,!=2.1.*,!=2.2.*; PyJWT <3.0.0; pytz; azure-ai-ml ; extra == 'azure-ai-ml' | + + + +1.6.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| more-itertools | + + + +Dependency Package | + + + +EY | + + + +10.5.0 | + + + +None | + + + ++ + + + | 10.6.0, 10.7.0 | + + + ++ + + + | 10.7.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| msal | + + + +Dependency Package | + + + +EY | + + + +1.31.0 | + + + +None | + + + +requests<3,>=2.0.0; PyJWT[crypto]<3,>=1.0.0; cryptography<47,>=2.5; pymsalruntime<0.18,>=0.14; (python_version >= "3.6" and platform_system == "Windows") and extra == "broker"; pymsalruntime<0.18,>=0.17; (python_version >= "3.8" and platform_system == "Darwin") and extra == "broker" | + + + +1.31.1, 1.31.2b1, 1.32.0, 1.32.1, 1.32.2, 1.32.3, 1.33.0b1 | + + + +requests<3,>=2.0.0; PyJWT[crypto]<3,>=1.0.0; cryptography<47,>=2.5; pymsalruntime<0.18,>=0.14; (python_version >= "3.6" and platform_system == "Windows") and extra == "broker"; pymsalruntime<0.18,>=0.17; (python_version >= "3.8" and platform_system == "Darwin") and extra == "broker" | + + + +1.33.0b1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| msal-extensions | + + + +Dependency Package | + + + +EY | + + + +1.2.0 | + + + +None | + + + +msal<2,>=1.29; portalocker<4,>=1.4; extra == "portalocker" | + + + +1.3.0, 1.3.1 | + + + +msal<2,>=1.29; portalocker<4,>=1.4; extra == "portalocker" | + + + +1.3.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| msgspec | + + + +Dependency Package | + + + +EY | + + + +0.18.6 | + + + +None | + + + +pyyaml; extra == "yaml"; tomli; python_version < "3.11" and extra == "toml"; tomli_w; extra == "toml"; sphinx; extra == "doc"; furo; extra == "doc"; sphinx-copybutton; extra == "doc"; sphinx-design; extra == "doc"; ipython; extra == "doc"; pytest; extra == "test"; msgpack; extra == "test"; attrs; extra == "test"; eval-type-backport; python_version < "3.10" and extra == "test"; pyyaml; extra == "test"; tomli; python_version < "3.11" and extra == "test"; tomli_w; extra == "test"; pre-commit; extra == "dev"; coverage; extra == "dev"; mypy; extra == "dev"; pyright; extra == "dev"; sphinx; extra == "dev"; furo; extra == "dev"; sphinx-copybutton; extra == "dev"; sphinx-design; extra == "dev"; ipython; extra == "dev"; pytest; extra == "dev"; msgpack; extra == "dev"; attrs; extra == "dev"; eval-type-backport; python_version < "3.10" and extra == "dev"; pyyaml; extra == "dev"; tomli; python_version < "3.11" and extra == "dev"; tomli_w; extra == "dev" | + + + +0.19.0 | + + + +pyyaml; extra == "yaml"; tomli; python_version < "3.11" and extra == "toml"; tomli_w; extra == "toml"; sphinx; extra == "doc"; furo; extra == "doc"; sphinx-copybutton; extra == "doc"; sphinx-design; extra == "doc"; ipython; extra == "doc"; pytest; extra == "test"; msgpack; extra == "test"; attrs; extra == "test"; eval-type-backport; python_version < "3.10" and extra == "test"; pyyaml; extra == "test"; tomli; python_version < "3.11" and extra == "test"; tomli_w; extra == "test"; pre-commit; extra == "dev"; coverage; extra == "dev"; mypy; extra == "dev"; pyright; extra == "dev"; sphinx; extra == "dev"; furo; extra == "dev"; sphinx-copybutton; extra == "dev"; sphinx-design; extra == "dev"; ipython; extra == "dev"; pytest; extra == "dev"; msgpack; extra == "dev"; attrs; extra == "dev"; eval-type-backport; python_version < "3.10" and extra == "dev"; pyyaml; extra == "dev"; tomli; python_version < "3.11" and extra == "dev"; tomli_w; extra == "dev" | + + + +0.19.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| msrest | + + + +Dependency Package | + + + +EY | + + + +0.7.1 | + + + +None | + + + +azure-core (>=1.24.0); certifi (>=2017.4.17); isodate (>=0.6.0); requests-oauthlib (>=0.5.0); requests (~=2.16); aiodns ; (python_version>='3.5') and extra == 'async'; aiohttp (>=3.0) ; (python_version>='3.5') and extra == 'async' | + + + ++ + + + | azure-core (>=1.24.0); certifi (>=2017.4.17); isodate (>=0.6.0); requests-oauthlib (>=0.5.0); requests (~=2.16); aiodns ; (python_version>='3.5') and extra == 'async'; aiohttp (>=3.0) ; (python_version>='3.5') and extra == 'async' | + + + +0.7.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| msrestazure | + + + +Dependency Package | + + + +EY | + + + +0.6.4.post1 | + + + +None | + + + +adal<2.0.0,>=0.6.0; msrest<2.0.0,>=0.6.0; six | + + + ++ + + + | adal<2.0.0,>=0.6.0; msrest<2.0.0,>=0.6.0; six | + + + +0.6.4.post1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| multidict | + + + +Dependency Package | + + + +EY | + + + +6.1.0 | + + + +None | + + + +typing-extensions>=4.1.0; python_version < "3.11" | + + + +6.2.0, 6.3.0, 6.3.1, 6.3.2, 6.4.0, 6.4.1, 6.4.2, 6.4.3, 6.4.4, 6.5.0, 6.5.1 | + + + +typing-extensions>=4.1.0; python_version < "3.11" | + + + +6.5.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| murmurhash | + + + +Dependency Package | + + + +EY | + + + +1.0.10 | + + + +None | + + + ++ + + + | 1.0.11, 1.0.12, 1.0.13, 1.1.0.dev0 | + + + ++ + + + | 1.1.0.dev0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| mypy-extensions | + + + +Dependency Package | + + + +EY | + + + +1.0.0 | + + + +None | + + + ++ + + + | 1.1.0 | + + + ++ + + + | 1.1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| nbclient | + + + +Dependency Package | + + + +EY | + + + +0.10.0 | + + + +None | + + + +jupyter-client>=6.1.12; jupyter-core!=5.0.*,>=4.12; nbformat>=5.1; traitlets>=5.4; pre-commit; extra == "dev"; autodoc-traits; extra == "docs"; flaky; extra == "docs"; ipykernel>=6.19.3; extra == "docs"; ipython; extra == "docs"; ipywidgets; extra == "docs"; mock; extra == "docs"; moto; extra == "docs"; myst-parser; extra == "docs"; nbconvert>=7.1.0; extra == "docs"; pytest-asyncio; extra == "docs"; pytest-cov>=4.0; extra == "docs"; pytest<8,>=7.0; extra == "docs"; sphinx-book-theme; extra == "docs"; sphinx>=1.7; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; testpath; extra == "docs"; xmltodict; extra == "docs"; flaky; extra == "test"; ipykernel>=6.19.3; extra == "test"; ipython; extra == "test"; ipywidgets; extra == "test"; nbconvert>=7.1.0; extra == "test"; pytest-asyncio; extra == "test"; pytest-cov>=4.0; extra == "test"; pytest<8,>=7.0; extra == "test"; testpath; extra == "test"; xmltodict; extra == "test" | + + + +0.10.1, 0.10.2 | + + + +jupyter-client>=6.1.12; jupyter-core!=5.0.*,>=4.12; nbformat>=5.1; traitlets>=5.4; pre-commit; extra == "dev"; autodoc-traits; extra == "docs"; flaky; extra == "docs"; ipykernel>=6.19.3; extra == "docs"; ipython; extra == "docs"; ipywidgets; extra == "docs"; mock; extra == "docs"; moto; extra == "docs"; myst-parser; extra == "docs"; nbconvert>=7.1.0; extra == "docs"; pytest-asyncio; extra == "docs"; pytest-cov>=4.0; extra == "docs"; pytest<8,>=7.0; extra == "docs"; sphinx-book-theme; extra == "docs"; sphinx>=1.7; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; testpath; extra == "docs"; xmltodict; extra == "docs"; flaky; extra == "test"; ipykernel>=6.19.3; extra == "test"; ipython; extra == "test"; ipywidgets; extra == "test"; nbconvert>=7.1.0; extra == "test"; pytest-asyncio; extra == "test"; pytest-cov>=4.0; extra == "test"; pytest<8,>=7.0; extra == "test"; testpath; extra == "test"; xmltodict; extra == "test" | + + + +0.10.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| nbconvert | + + + +Dependency Package | + + + +EY | + + + +7.16.4 | + + + +None | + + + +beautifulsoup4; bleach[css]!=5.0.0; defusedxml; importlib-metadata>=3.6; python_version < "3.10"; jinja2>=3.0; jupyter-core>=4.7; jupyterlab-pygments; markupsafe>=2.0; mistune<4,>=2.0.3; nbclient>=0.5.0; nbformat>=5.7; packaging; pandocfilters>=1.4.1; pygments>=2.4.1; traitlets>=5.1; flaky; extra == "all"; ipykernel; extra == "all"; ipython; extra == "all"; ipywidgets>=7.5; extra == "all"; myst-parser; extra == "all"; nbsphinx>=0.2.12; extra == "all"; playwright; extra == "all"; pydata-sphinx-theme; extra == "all"; pyqtwebengine>=5.15; extra == "all"; pytest>=7; extra == "all"; sphinx==5.0.2; extra == "all"; sphinxcontrib-spelling; extra == "all"; tornado>=6.1; extra == "all"; ipykernel; extra == "docs"; ipython; extra == "docs"; myst-parser; extra == "docs"; nbsphinx>=0.2.12; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx==5.0.2; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; pyqtwebengine>=5.15; extra == "qtpdf"; pyqtwebengine>=5.15; extra == "qtpng"; tornado>=6.1; extra == "serve"; flaky; extra == "test"; ipykernel; extra == "test"; ipywidgets>=7.5; extra == "test"; pytest>=7; extra == "test"; playwright; extra == "webpdf" | + + + +7.16.5, 7.16.6 | + + + +beautifulsoup4; bleach[css]!=5.0.0; defusedxml; importlib-metadata>=3.6; python_version < "3.10"; jinja2>=3.0; jupyter-core>=4.7; jupyterlab-pygments; markupsafe>=2.0; mistune<4,>=2.0.3; nbclient>=0.5.0; nbformat>=5.7; packaging; pandocfilters>=1.4.1; pygments>=2.4.1; traitlets>=5.1; flaky; extra == "all"; ipykernel; extra == "all"; ipython; extra == "all"; ipywidgets>=7.5; extra == "all"; myst-parser; extra == "all"; nbsphinx>=0.2.12; extra == "all"; playwright; extra == "all"; pydata-sphinx-theme; extra == "all"; pyqtwebengine>=5.15; extra == "all"; pytest>=7; extra == "all"; sphinx==5.0.2; extra == "all"; sphinxcontrib-spelling; extra == "all"; tornado>=6.1; extra == "all"; ipykernel; extra == "docs"; ipython; extra == "docs"; myst-parser; extra == "docs"; nbsphinx>=0.2.12; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx==5.0.2; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; pyqtwebengine>=5.15; extra == "qtpdf"; pyqtwebengine>=5.15; extra == "qtpng"; tornado>=6.1; extra == "serve"; flaky; extra == "test"; ipykernel; extra == "test"; ipywidgets>=7.5; extra == "test"; pytest>=7; extra == "test"; playwright; extra == "webpdf" | + + + +7.16.6 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| nbformat | + + + +Dependency Package | + + + +EY | + + + +5.10.4 | + + + +None | + + + +fastjsonschema>=2.15; jsonschema>=2.6; jupyter-core!=5.0.*,>=4.12; traitlets>=5.1; myst-parser; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx; extra == "docs"; sphinxcontrib-github-alt; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; pep440; extra == "test"; pre-commit; extra == "test"; pytest; extra == "test"; testpath; extra == "test" | + + + ++ + + + | fastjsonschema>=2.15; jsonschema>=2.6; jupyter-core!=5.0.*,>=4.12; traitlets>=5.1; myst-parser; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx; extra == "docs"; sphinxcontrib-github-alt; extra == "docs"; sphinxcontrib-spelling; extra == "docs"; pep440; extra == "test"; pre-commit; extra == "test"; pytest; extra == "test"; testpath; extra == "test" | + + + +5.10.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| ndg-httpsclient | + + + +Dependency Package | + + + +EY | + + + +0.5.1 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.5.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| nest-asyncio | + + + +Dependency Package | + + + +EY | + + + +1.6.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.6.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| networkx | + + + +Dependency Package | + + + +EY | + + + +3.4.2 | + + + +None | + + + +numpy>=1.25; extra == "default"; scipy>=1.11.2; extra == "default"; matplotlib>=3.8; extra == "default"; pandas>=2.0; extra == "default"; pre-commit>=4.1; extra == "developer"; mypy>=1.15; extra == "developer"; sphinx>=8.0; extra == "doc"; pydata-sphinx-theme>=0.16; extra == "doc"; sphinx-gallery>=0.18; extra == "doc"; numpydoc>=1.8.0; extra == "doc"; pillow>=10; extra == "doc"; texext>=0.6.7; extra == "doc"; myst-nb>=1.1; extra == "doc"; intersphinx-registry; extra == "doc"; osmnx>=2.0.0; extra == "example"; momepy>=0.7.2; extra == "example"; contextily>=1.6; extra == "example"; seaborn>=0.13; extra == "example"; cairocffi>=1.7; extra == "example"; igraph>=0.11; extra == "example"; scikit-learn>=1.5; extra == "example"; lxml>=4.6; extra == "extra"; pygraphviz>=1.14; extra == "extra"; pydot>=3.0.1; extra == "extra"; sympy>=1.10; extra == "extra"; pytest>=7.2; extra == "test"; pytest-cov>=4.0; extra == "test"; pytest-xdist>=3.0; extra == "test"; pytest-mpl; extra == "test-extras"; pytest-randomly; extra == "test-extras" | + + + +3.5rc0, 3.5 | + + + +numpy>=1.25; extra == "default"; scipy>=1.11.2; extra == "default"; matplotlib>=3.8; extra == "default"; pandas>=2.0; extra == "default"; pre-commit>=4.1; extra == "developer"; mypy>=1.15; extra == "developer"; sphinx>=8.0; extra == "doc"; pydata-sphinx-theme>=0.16; extra == "doc"; sphinx-gallery>=0.18; extra == "doc"; numpydoc>=1.8.0; extra == "doc"; pillow>=10; extra == "doc"; texext>=0.6.7; extra == "doc"; myst-nb>=1.1; extra == "doc"; intersphinx-registry; extra == "doc"; osmnx>=2.0.0; extra == "example"; momepy>=0.7.2; extra == "example"; contextily>=1.6; extra == "example"; seaborn>=0.13; extra == "example"; cairocffi>=1.7; extra == "example"; igraph>=0.11; extra == "example"; scikit-learn>=1.5; extra == "example"; lxml>=4.6; extra == "extra"; pygraphviz>=1.14; extra == "extra"; pydot>=3.0.1; extra == "extra"; sympy>=1.10; extra == "extra"; pytest>=7.2; extra == "test"; pytest-cov>=4.0; extra == "test"; pytest-xdist>=3.0; extra == "test"; pytest-mpl; extra == "test-extras"; pytest-randomly; extra == "test-extras" | + + + +3.5 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| nltk | + + + +Dependency Package | + + + +EY | + + + +3.9.1 | + + + +None | + + + +click; joblib; regex>=2021.8.3; tqdm; numpy; extra == "all"; requests; extra == "all"; twython; extra == "all"; python-crfsuite; extra == "all"; pyparsing; extra == "all"; scipy; extra == "all"; matplotlib; extra == "all"; scikit-learn; extra == "all"; requests; extra == "corenlp"; numpy; extra == "machine-learning"; python-crfsuite; extra == "machine-learning"; scikit-learn; extra == "machine-learning"; scipy; extra == "machine-learning"; matplotlib; extra == "plot"; pyparsing; extra == "tgrep"; twython; extra == "twitter" | + + + ++ + + + | click; joblib; regex>=2021.8.3; tqdm; numpy; extra == "all"; requests; extra == "all"; twython; extra == "all"; python-crfsuite; extra == "all"; pyparsing; extra == "all"; scipy; extra == "all"; matplotlib; extra == "all"; scikit-learn; extra == "all"; requests; extra == "corenlp"; numpy; extra == "machine-learning"; python-crfsuite; extra == "machine-learning"; scikit-learn; extra == "machine-learning"; scipy; extra == "machine-learning"; matplotlib; extra == "plot"; pyparsing; extra == "tgrep"; twython; extra == "twitter" | + + + +3.9.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| notebook-shim | + + + +Dependency Package | + + + +EY | + + + +0.2.4 | + + + +None | + + + +jupyter-server<3,>=1.8; pytest; extra == 'test'; pytest-console-scripts; extra == 'test'; pytest-jupyter; extra == 'test'; pytest-tornasync; extra == 'test' | + + + ++ + + + | jupyter-server<3,>=1.8; pytest; extra == 'test'; pytest-console-scripts; extra == 'test'; pytest-jupyter; extra == 'test'; pytest-tornasync; extra == 'test' | + + + +0.2.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| numpy | + + + +Dependency Package | + + + +EY | + + + +2.2.3 | + + + +None | + + + ++ + + + | 2.2.4, 2.2.5, 2.2.6, 2.3.0rc1, 2.3.0, 2.3.1 | + + + ++ + + + | 2.3.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| oauthlib | + + + +Dependency Package | + + + +EY | + + + +3.2.2 | + + + +None | + + + +cryptography>=3.0.0; extra == "rsa"; cryptography>=3.0.0; extra == "signedtoken"; pyjwt<3,>=2.0.0; extra == "signedtoken"; blinker>=1.4.0; extra == "signals" | + + + +3.3.0, 3.3.1 | + + + +cryptography>=3.0.0; extra == "rsa"; cryptography>=3.0.0; extra == "signedtoken"; pyjwt<3,>=2.0.0; extra == "signedtoken"; blinker>=1.4.0; extra == "signals" | + + + +3.3.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| omegaconf | + + + +Dependency Package | + + + +EY | + + + +2.3.0 | + + + +None | + + + +antlr4-python3-runtime (==4.9.*); PyYAML (>=5.1.0); dataclasses ; python_version == "3.6" | + + + +2.4.0.dev0, 2.4.0.dev1, 2.4.0.dev2, 2.4.0.dev3 | + + + +antlr4-python3-runtime (==4.9.*); PyYAML (>=5.1.0); dataclasses ; python_version == "3.6" | + + + +2.4.0.dev3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| opencensus | + + + +Dependency Package | + + + +EY | + + + +0.11.4 | + + + +None | + + + +opencensus-context (>=0.1.3); six (~=1.16); google-api-core (<2.0.0,>=1.0.0) ; python_version < "3.6"; google-api-core (<3.0.0,>=1.0.0) ; python_version >= "3.6" | + + + ++ + + + | opencensus-context (>=0.1.3); six (~=1.16); google-api-core (<2.0.0,>=1.0.0) ; python_version < "3.6"; google-api-core (<3.0.0,>=1.0.0) ; python_version >= "3.6" | + + + +0.11.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| opencensus-context | + + + +Dependency Package | + + + +EY | + + + +0.1.3 | + + + +None | + + + +contextvars ; python_version >= "3.6" and python_version < "3.7" | + + + +0.2.dev0 | + + + +contextvars ; python_version >= "3.6" and python_version < "3.7" | + + + +0.2.dev0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| orjson | + + + +Dependency Package | + + + +EY | + + + +3.10.7 | + + + +None | + + + ++ + + + | 3.10.8, 3.10.9, 3.10.10, 3.10.11, 3.10.12, 3.10.13, 3.10.14, 3.10.15, 3.10.16, 3.10.17, 3.10.18 | + + + ++ + + + | 3.10.18 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| overrides | + + + +Dependency Package | + + + +EY | + + + +7.7.0 | + + + +None | + + + +typing ; python_version < "3.5" | + + + ++ + + + | typing ; python_version < "3.5" | + + + +7.7.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| packaging | + + + +Dependency Package | + + + +EY | + + + +24.2 | + + + +None | + + + ++ + + + | 25.0 | + + + ++ + + + | 25.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pandas | + + + +Dependency Package | + + + +EY | + + + +2.2.3 | + + + +None | + + + +numpy>=1.22.4; python_version < "3.11"; numpy>=1.23.2; python_version == "3.11"; numpy>=1.26.0; python_version >= "3.12"; python-dateutil>=2.8.2; pytz>=2020.1; tzdata>=2022.7; hypothesis>=6.46.1; extra == "test"; pytest>=7.3.2; extra == "test"; pytest-xdist>=2.2.0; extra == "test"; pyarrow>=10.0.1; extra == "pyarrow"; bottleneck>=1.3.6; extra == "performance"; numba>=0.56.4; extra == "performance"; numexpr>=2.8.4; extra == "performance"; scipy>=1.10.0; extra == "computation"; xarray>=2022.12.0; extra == "computation"; fsspec>=2022.11.0; extra == "fss"; s3fs>=2022.11.0; extra == "aws"; gcsfs>=2022.11.0; extra == "gcp"; pandas-gbq>=0.19.0; extra == "gcp"; odfpy>=1.4.1; extra == "excel"; openpyxl>=3.1.0; extra == "excel"; python-calamine>=0.1.7; extra == "excel"; pyxlsb>=1.0.10; extra == "excel"; xlrd>=2.0.1; extra == "excel"; xlsxwriter>=3.0.5; extra == "excel"; pyarrow>=10.0.1; extra == "parquet"; pyarrow>=10.0.1; extra == "feather"; tables>=3.8.0; extra == "hdf5"; pyreadstat>=1.2.0; extra == "spss"; SQLAlchemy>=2.0.0; extra == "postgresql"; psycopg2>=2.9.6; extra == "postgresql"; adbc-driver-postgresql>=0.8.0; extra == "postgresql"; SQLAlchemy>=2.0.0; extra == "mysql"; pymysql>=1.0.2; extra == "mysql"; SQLAlchemy>=2.0.0; extra == "sql-other"; adbc-driver-postgresql>=0.8.0; extra == "sql-other"; adbc-driver-sqlite>=0.8.0; extra == "sql-other"; beautifulsoup4>=4.11.2; extra == "html"; html5lib>=1.1; extra == "html"; lxml>=4.9.2; extra == "html"; lxml>=4.9.2; extra == "xml"; matplotlib>=3.6.3; extra == "plot"; jinja2>=3.1.2; extra == "output-formatting"; tabulate>=0.9.0; extra == "output-formatting"; PyQt5>=5.15.9; extra == "clipboard"; qtpy>=2.3.0; extra == "clipboard"; zstandard>=0.19.0; extra == "compression"; dataframe-api-compat>=0.1.7; extra == "consortium-standard"; adbc-driver-postgresql>=0.8.0; extra == "all"; adbc-driver-sqlite>=0.8.0; extra == "all"; beautifulsoup4>=4.11.2; extra == "all"; bottleneck>=1.3.6; extra == "all"; dataframe-api-compat>=0.1.7; extra == "all"; fastparquet>=2022.12.0; extra == "all"; fsspec>=2022.11.0; extra == "all"; gcsfs>=2022.11.0; extra == "all"; html5lib>=1.1; extra == "all"; hypothesis>=6.46.1; extra == "all"; jinja2>=3.1.2; extra == "all"; lxml>=4.9.2; extra == "all"; matplotlib>=3.6.3; extra == "all"; numba>=0.56.4; extra == "all"; numexpr>=2.8.4; extra == "all"; odfpy>=1.4.1; extra == "all"; openpyxl>=3.1.0; extra == "all"; pandas-gbq>=0.19.0; extra == "all"; psycopg2>=2.9.6; extra == "all"; pyarrow>=10.0.1; extra == "all"; pymysql>=1.0.2; extra == "all"; PyQt5>=5.15.9; extra == "all"; pyreadstat>=1.2.0; extra == "all"; pytest>=7.3.2; extra == "all"; pytest-xdist>=2.2.0; extra == "all"; python-calamine>=0.1.7; extra == "all"; pyxlsb>=1.0.10; extra == "all"; qtpy>=2.3.0; extra == "all"; scipy>=1.10.0; extra == "all"; s3fs>=2022.11.0; extra == "all"; SQLAlchemy>=2.0.0; extra == "all"; tables>=3.8.0; extra == "all"; tabulate>=0.9.0; extra == "all"; xarray>=2022.12.0; extra == "all"; xlrd>=2.0.1; extra == "all"; xlsxwriter>=3.0.5; extra == "all"; zstandard>=0.19.0; extra == "all" | + + + +2.3.0 | + + + +numpy>=1.22.4; python_version < "3.11"; numpy>=1.23.2; python_version == "3.11"; numpy>=1.26.0; python_version >= "3.12"; python-dateutil>=2.8.2; pytz>=2020.1; tzdata>=2022.7; hypothesis>=6.46.1; extra == "test"; pytest>=7.3.2; extra == "test"; pytest-xdist>=2.2.0; extra == "test"; pyarrow>=10.0.1; extra == "pyarrow"; bottleneck>=1.3.6; extra == "performance"; numba>=0.56.4; extra == "performance"; numexpr>=2.8.4; extra == "performance"; scipy>=1.10.0; extra == "computation"; xarray>=2022.12.0; extra == "computation"; fsspec>=2022.11.0; extra == "fss"; s3fs>=2022.11.0; extra == "aws"; gcsfs>=2022.11.0; extra == "gcp"; pandas-gbq>=0.19.0; extra == "gcp"; odfpy>=1.4.1; extra == "excel"; openpyxl>=3.1.0; extra == "excel"; python-calamine>=0.1.7; extra == "excel"; pyxlsb>=1.0.10; extra == "excel"; xlrd>=2.0.1; extra == "excel"; xlsxwriter>=3.0.5; extra == "excel"; pyarrow>=10.0.1; extra == "parquet"; pyarrow>=10.0.1; extra == "feather"; tables>=3.8.0; extra == "hdf5"; pyreadstat>=1.2.0; extra == "spss"; SQLAlchemy>=2.0.0; extra == "postgresql"; psycopg2>=2.9.6; extra == "postgresql"; adbc-driver-postgresql>=0.8.0; extra == "postgresql"; SQLAlchemy>=2.0.0; extra == "mysql"; pymysql>=1.0.2; extra == "mysql"; SQLAlchemy>=2.0.0; extra == "sql-other"; adbc-driver-postgresql>=0.8.0; extra == "sql-other"; adbc-driver-sqlite>=0.8.0; extra == "sql-other"; beautifulsoup4>=4.11.2; extra == "html"; html5lib>=1.1; extra == "html"; lxml>=4.9.2; extra == "html"; lxml>=4.9.2; extra == "xml"; matplotlib>=3.6.3; extra == "plot"; jinja2>=3.1.2; extra == "output-formatting"; tabulate>=0.9.0; extra == "output-formatting"; PyQt5>=5.15.9; extra == "clipboard"; qtpy>=2.3.0; extra == "clipboard"; zstandard>=0.19.0; extra == "compression"; dataframe-api-compat>=0.1.7; extra == "consortium-standard"; adbc-driver-postgresql>=0.8.0; extra == "all"; adbc-driver-sqlite>=0.8.0; extra == "all"; beautifulsoup4>=4.11.2; extra == "all"; bottleneck>=1.3.6; extra == "all"; dataframe-api-compat>=0.1.7; extra == "all"; fastparquet>=2022.12.0; extra == "all"; fsspec>=2022.11.0; extra == "all"; gcsfs>=2022.11.0; extra == "all"; html5lib>=1.1; extra == "all"; hypothesis>=6.46.1; extra == "all"; jinja2>=3.1.2; extra == "all"; lxml>=4.9.2; extra == "all"; matplotlib>=3.6.3; extra == "all"; numba>=0.56.4; extra == "all"; numexpr>=2.8.4; extra == "all"; odfpy>=1.4.1; extra == "all"; openpyxl>=3.1.0; extra == "all"; pandas-gbq>=0.19.0; extra == "all"; psycopg2>=2.9.6; extra == "all"; pyarrow>=10.0.1; extra == "all"; pymysql>=1.0.2; extra == "all"; PyQt5>=5.15.9; extra == "all"; pyreadstat>=1.2.0; extra == "all"; pytest>=7.3.2; extra == "all"; pytest-xdist>=2.2.0; extra == "all"; python-calamine>=0.1.7; extra == "all"; pyxlsb>=1.0.10; extra == "all"; qtpy>=2.3.0; extra == "all"; scipy>=1.10.0; extra == "all"; s3fs>=2022.11.0; extra == "all"; SQLAlchemy>=2.0.0; extra == "all"; tables>=3.8.0; extra == "all"; tabulate>=0.9.0; extra == "all"; xarray>=2022.12.0; extra == "all"; xlrd>=2.0.1; extra == "all"; xlsxwriter>=3.0.5; extra == "all"; zstandard>=0.19.0; extra == "all" | + + + +2.3.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pandocfilters | + + + +Dependency Package | + + + +EY | + + + +1.5.1 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.5.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| paramiko | + + + +Dependency Package | + + + +EY | + + + +3.5.0 | + + + +None | + + + +bcrypt>=3.2; cryptography>=3.3; pynacl>=1.5; pyasn1>=0.1.7; extra == "gssapi"; gssapi>=1.4.1; platform_system != "Windows" and extra == "gssapi"; pywin32>=2.1.8; platform_system == "Windows" and extra == "gssapi"; invoke>=2.0; extra == "invoke"; pyasn1>=0.1.7; extra == "all"; gssapi>=1.4.1; platform_system != "Windows" and extra == "all"; pywin32>=2.1.8; platform_system == "Windows" and extra == "all"; invoke>=2.0; extra == "all" | + + + +3.5.1 | + + + +bcrypt>=3.2; cryptography>=3.3; pynacl>=1.5; pyasn1>=0.1.7; extra == "gssapi"; gssapi>=1.4.1; platform_system != "Windows" and extra == "gssapi"; pywin32>=2.1.8; platform_system == "Windows" and extra == "gssapi"; invoke>=2.0; extra == "invoke"; pyasn1>=0.1.7; extra == "all"; gssapi>=1.4.1; platform_system != "Windows" and extra == "all"; pywin32>=2.1.8; platform_system == "Windows" and extra == "all"; invoke>=2.0; extra == "all" | + + + +3.5.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| parse | + + + +Dependency Package | + + + +EY | + + + +1.20.2 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.20.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| parso | + + + +Dependency Package | + + + +EY | + + + +0.8.4 | + + + +None | + + + +flake8==5.0.4; extra == "qa"; mypy==0.971; extra == "qa"; types-setuptools==67.2.0.1; extra == "qa"; docopt; extra == "testing"; pytest; extra == "testing" | + + + ++ + + + | flake8==5.0.4; extra == "qa"; mypy==0.971; extra == "qa"; types-setuptools==67.2.0.1; extra == "qa"; docopt; extra == "testing"; pytest; extra == "testing" | + + + +0.8.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pathspec | + + + +Dependency Package | + + + +EY | + + + +0.12.1 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.12.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| patsy | + + + +Dependency Package | + + + +EY | + + + +0.5.6 | + + + +None | + + + +numpy>=1.4; pytest; extra == "test"; pytest-cov; extra == "test"; scipy; extra == "test" | + + + +1.0.0, 1.0.1 | + + + +numpy>=1.4; pytest; extra == "test"; pytest-cov; extra == "test"; scipy; extra == "test" | + + + +1.0.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pexpect | + + + +Dependency Package | + + + +EY | + + + +4.9.0 | + + + +None | + + + +ptyprocess (>=0.5) | + + + ++ + + + | ptyprocess (>=0.5) | + + + +4.9.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pillow | + + + +Dependency Package | + + + +EY | + + + +11.0.0 | + + + +None | + + + +furo; extra == "docs"; olefile; extra == "docs"; sphinx>=8.2; extra == "docs"; sphinx-copybutton; extra == "docs"; sphinx-inline-tabs; extra == "docs"; sphinxext-opengraph; extra == "docs"; olefile; extra == "fpx"; olefile; extra == "mic"; pyarrow; extra == "test-arrow"; check-manifest; extra == "tests"; coverage>=7.4.2; extra == "tests"; defusedxml; extra == "tests"; markdown2; extra == "tests"; olefile; extra == "tests"; packaging; extra == "tests"; pyroma; extra == "tests"; pytest; extra == "tests"; pytest-cov; extra == "tests"; pytest-timeout; extra == "tests"; trove-classifiers>=2024.10.12; extra == "tests"; typing-extensions; python_version < "3.10" and extra == "typing"; defusedxml; extra == "xmp" | + + + +11.1.0, 11.2.1 | + + + +furo; extra == "docs"; olefile; extra == "docs"; sphinx>=8.2; extra == "docs"; sphinx-copybutton; extra == "docs"; sphinx-inline-tabs; extra == "docs"; sphinxext-opengraph; extra == "docs"; olefile; extra == "fpx"; olefile; extra == "mic"; pyarrow; extra == "test-arrow"; check-manifest; extra == "tests"; coverage>=7.4.2; extra == "tests"; defusedxml; extra == "tests"; markdown2; extra == "tests"; olefile; extra == "tests"; packaging; extra == "tests"; pyroma; extra == "tests"; pytest; extra == "tests"; pytest-cov; extra == "tests"; pytest-timeout; extra == "tests"; trove-classifiers>=2024.10.12; extra == "tests"; typing-extensions; python_version < "3.10" and extra == "typing"; defusedxml; extra == "xmp" | + + + +11.2.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pkginfo | + + + +Dependency Package | + + + +EY | + + + +1.11.2 | + + + +None | + + + +pytest; extra == "testing"; pytest-cov; extra == "testing"; wheel; extra == "testing" | + + + +1.11.3, 1.12.0, 1.12.1, 1.12.1.1, 1.12.1.2 | + + + +pytest; extra == "testing"; pytest-cov; extra == "testing"; wheel; extra == "testing" | + + + +1.12.1.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| platformdirs | + + + +Dependency Package | + + + +EY | + + + +4.3.6 | + + + +None | + + + +furo>=2024.8.6; extra == "docs"; proselint>=0.14; extra == "docs"; sphinx-autodoc-typehints>=3; extra == "docs"; sphinx>=8.1.3; extra == "docs"; appdirs==1.4.4; extra == "test"; covdefaults>=2.3; extra == "test"; pytest-cov>=6; extra == "test"; pytest-mock>=3.14; extra == "test"; pytest>=8.3.4; extra == "test"; mypy>=1.14.1; extra == "type" | + + + +4.3.7, 4.3.8 | + + + +furo>=2024.8.6; extra == "docs"; proselint>=0.14; extra == "docs"; sphinx-autodoc-typehints>=3; extra == "docs"; sphinx>=8.1.3; extra == "docs"; appdirs==1.4.4; extra == "test"; covdefaults>=2.3; extra == "test"; pytest-cov>=6; extra == "test"; pytest-mock>=3.14; extra == "test"; pytest>=8.3.4; extra == "test"; mypy>=1.14.1; extra == "type" | + + + +4.3.8 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| plotly | + + + +Dependency Package | + + + +EY | + + + +5.24.1 | + + + +None | + + + +narwhals>=1.15.1; packaging; numpy; extra == "express"; kaleido==1.0.0rc13; extra == "kaleido"; black==25.1.0; extra == "dev" | + + + +6.0.0rc0, 6.0.0, 6.0.1, 6.1.0b0, 6.1.0rc0, 6.1.0, 6.1.1, 6.1.2 | + + + +narwhals>=1.15.1; packaging; numpy; extra == "express"; kaleido==1.0.0rc13; extra == "kaleido"; black==25.1.0; extra == "dev" | + + + +6.1.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pluggy | + + + +Dependency Package | + + + +EY | + + + +1.5.0 | + + + +None | + + + +pre-commit; extra == "dev"; tox; extra == "dev"; pytest; extra == "testing"; pytest-benchmark; extra == "testing"; coverage; extra == "testing" | + + + +1.6.0 | + + + +pre-commit; extra == "dev"; tox; extra == "dev"; pytest; extra == "testing"; pytest-benchmark; extra == "testing"; coverage; extra == "testing" | + + + +1.6.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| polyfactory | + + + +Dependency Package | + + + +EY | + + + +2.16.2 | + + + +None | + + + +faker>=5.0.0; typing-extensions>=4.6.0; attrs>=22.2.0; extra == "attrs"; beanie; extra == "beanie"; pydantic[email]; extra == "beanie"; pymongo<4.9; extra == "beanie"; attrs; extra == "full"; beanie; extra == "full"; msgspec; extra == "full"; odmantic; extra == "full"; pydantic; extra == "full"; sqlalchemy; extra == "full"; msgspec; extra == "msgspec"; odmantic<1.0.0; extra == "odmantic"; pydantic[email]; extra == "odmantic"; pydantic[email]>=1.10; extra == "pydantic"; sqlalchemy>=1.4.29; extra == "sqlalchemy" | + + + +2.17.0, 2.18.0, 2.18.1, 2.19.0, 2.20.0, 2.21.0 | + + + +faker>=5.0.0; typing-extensions>=4.6.0; attrs>=22.2.0; extra == "attrs"; beanie; extra == "beanie"; pydantic[email]; extra == "beanie"; pymongo<4.9; extra == "beanie"; attrs; extra == "full"; beanie; extra == "full"; msgspec; extra == "full"; odmantic; extra == "full"; pydantic; extra == "full"; sqlalchemy; extra == "full"; msgspec; extra == "msgspec"; odmantic<1.0.0; extra == "odmantic"; pydantic[email]; extra == "odmantic"; pydantic[email]>=1.10; extra == "pydantic"; sqlalchemy>=1.4.29; extra == "sqlalchemy" | + + + +2.21.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pre-commit-hooks | + + + +Dependency Package | + + + +EY | + + + +4.6.0 | + + + +None | + + + +ruamel.yaml>=0.15; tomli>=1.1.0; python_version < "3.11" | + + + +5.0.0 | + + + +ruamel.yaml>=0.15; tomli>=1.1.0; python_version < "3.11" | + + + +5.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| preshed | + + + +Dependency Package | + + + +EY | + + + +3.0.9 | + + + +None | + + + +cymem<2.1.0,>=2.0.2; murmurhash<1.1.0,>=0.28.0 | + + + +3.0.10, 4.0.0 | + + + +cymem<2.1.0,>=2.0.2; murmurhash<1.1.0,>=0.28.0 | + + + +4.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| prometheus-client | + + + +Dependency Package | + + + +EY | + + + +0.21.0 | + + + +None | + + + +twisted; extra == "twisted" | + + + +0.21.1, 0.22.0, 0.22.1 | + + + +twisted; extra == "twisted" | + + + +0.22.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| prompt-toolkit | + + + +Dependency Package | + + + +EY | + + + +3.0.48 | + + + +None | + + + +wcwidth | + + + +3.0.49, 3.0.50, 3.0.51 | + + + +wcwidth | + + + +3.0.51 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| proto-plus | + + + +Dependency Package | + + + +EY | + + + +1.25.0 | + + + +None | + + + +protobuf<7.0.0,>=3.19.0; google-api-core>=1.31.5; extra == "testing" | + + + +1.26.0rc1, 1.26.0, 1.26.1 | + + + +protobuf<7.0.0,>=3.19.0; google-api-core>=1.31.5; extra == "testing" | + + + +1.26.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| protobuf | + + + +Dependency Package | + + + +EY | + + + +6.31.1 | + + + +None | + + + ++ + + + | + + + + | + + + + | 6.31.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| psutil | + + + +Dependency Package | + + + +EY | + + + +6.1.0 | + + + +None | + + + +pytest; extra == "dev"; pytest-xdist; extra == "dev"; setuptools; extra == "dev"; abi3audit; extra == "dev"; black==24.10.0; extra == "dev"; check-manifest; extra == "dev"; coverage; extra == "dev"; packaging; extra == "dev"; pylint; extra == "dev"; pyperf; extra == "dev"; pypinfo; extra == "dev"; pytest-cov; extra == "dev"; requests; extra == "dev"; rstcheck; extra == "dev"; ruff; extra == "dev"; sphinx; extra == "dev"; sphinx_rtd_theme; extra == "dev"; toml-sort; extra == "dev"; twine; extra == "dev"; virtualenv; extra == "dev"; vulture; extra == "dev"; wheel; extra == "dev"; pytest; extra == "test"; pytest-xdist; extra == "test"; setuptools; extra == "test" | + + + +6.1.1, 7.0.0 | + + + +pytest; extra == "dev"; pytest-xdist; extra == "dev"; setuptools; extra == "dev"; abi3audit; extra == "dev"; black==24.10.0; extra == "dev"; check-manifest; extra == "dev"; coverage; extra == "dev"; packaging; extra == "dev"; pylint; extra == "dev"; pyperf; extra == "dev"; pypinfo; extra == "dev"; pytest-cov; extra == "dev"; requests; extra == "dev"; rstcheck; extra == "dev"; ruff; extra == "dev"; sphinx; extra == "dev"; sphinx_rtd_theme; extra == "dev"; toml-sort; extra == "dev"; twine; extra == "dev"; virtualenv; extra == "dev"; vulture; extra == "dev"; wheel; extra == "dev"; pytest; extra == "test"; pytest-xdist; extra == "test"; setuptools; extra == "test" | + + + +7.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| ptyprocess | + + + +Dependency Package | + + + +EY | + + + +0.7.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.7.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pure-eval | + + + +Dependency Package | + + + +EY | + + + +0.2.3 | + + + +None | + + + +pytest; extra == "tests" | + + + ++ + + + | pytest; extra == "tests" | + + + +0.2.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pyarrow | + + + +Dependency Package | + + + +EY | + + + +19.0.1 | + + + +None | + + + +pytest; extra == "test"; hypothesis; extra == "test"; cffi; extra == "test"; pytz; extra == "test"; pandas; extra == "test" | + + + +20.0.0 | + + + +pytest; extra == "test"; hypothesis; extra == "test"; cffi; extra == "test"; pytz; extra == "test"; pandas; extra == "test" | + + + +20.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pyasn1 | + + + +Dependency Package | + + + +EY | + + + +0.6.1 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.6.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pyasn1-modules | + + + +Dependency Package | + + + +EY | + + + +0.4.1 | + + + +None | + + + +pyasn1<0.7.0,>=0.6.1 | + + + +0.4.2 | + + + +pyasn1<0.7.0,>=0.6.1 | + + + +0.4.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pycparser | + + + +Dependency Package | + + + +EY | + + + +2.22 | + + + +None | + + + ++ + + + | + + + + | + + + + | 2.22 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pydantic | + + + +Dependency Package | + + + +EY | + + + +2.9.2 | + + + +None | + + + +annotated-types>=0.6.0; pydantic-core==2.33.2; typing-extensions>=4.12.2; typing-inspection>=0.4.0; email-validator>=2.0.0; extra == "email"; tzdata; (python_version >= "3.9" and platform_system == "Windows") and extra == "timezone" | + + + +2.10.0b1, 2.10.0b2, 2.10.0, 2.10.1, 2.10.2, 2.10.3, 2.10.4, 2.10.5, 2.10.6, 2.11.0a1, 2.11.0a2, 2.11.0b1, 2.11.0b2, 2.11.0, 2.11.1, 2.11.2, 2.11.3, 2.11.4, 2.11.5, 2.11.6, 2.11.7 | + + + +annotated-types>=0.6.0; pydantic-core==2.33.2; typing-extensions>=4.12.2; typing-inspection>=0.4.0; email-validator>=2.0.0; extra == "email"; tzdata; (python_version >= "3.9" and platform_system == "Windows") and extra == "timezone" | + + + +2.11.7 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pydantic-core | + + + +Dependency Package | + + + +EY | + + + +2.23.4 | + + + +None | + + + +typing-extensions>=4.13.0 | + + + +2.24.0, 2.24.1, 2.24.2, 2.25.0, 2.25.1, 2.26.0, 2.27.0, 2.27.1, 2.27.2, 2.28.0, 2.29.0, 2.30.0, 2.31.0, 2.31.1, 2.32.0, 2.33.0, 2.33.1, 2.33.2, 2.34.0, 2.34.1, 2.35.0, 2.35.1 | + + + +typing-extensions>=4.13.0 | + + + +2.35.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pydash | + + + +Dependency Package | + + + +EY | + + + +8.0.3 | + + + +None | + + + +typing-extensions!=4.6.0,>3.10; build; extra == "dev"; coverage; extra == "dev"; ruff; extra == "dev"; furo; extra == "dev"; invoke; extra == "dev"; mypy; extra == "dev"; pytest; extra == "dev"; pytest-mypy-testing; extra == "dev"; pytest-cov; extra == "dev"; sphinx; extra == "dev"; tox; extra == "dev"; twine; extra == "dev"; wheel; extra == "dev"; sphinx-autodoc-typehints; extra == "dev" | + + + +8.0.4, 8.0.5 | + + + +typing-extensions!=4.6.0,>3.10; build; extra == "dev"; coverage; extra == "dev"; ruff; extra == "dev"; furo; extra == "dev"; invoke; extra == "dev"; mypy; extra == "dev"; pytest; extra == "dev"; pytest-mypy-testing; extra == "dev"; pytest-cov; extra == "dev"; sphinx; extra == "dev"; tox; extra == "dev"; twine; extra == "dev"; wheel; extra == "dev"; sphinx-autodoc-typehints; extra == "dev" | + + + +8.0.5 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| Pygments | + + + +Dependency Package | + + + +EY | + + + +2.18.0 | + + + +None | + + + +colorama>=0.4.6; extra == "windows-terminal" | + + + +2.19.0, 2.19.1, 2.19.2 | + + + +colorama>=0.4.6; extra == "windows-terminal" | + + + +2.19.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| PyJWT | + + + +Dependency Package | + + + +EY | + + + +2.9.0 | + + + +None | + + + +cryptography>=3.4.0; extra == "crypto"; coverage[toml]==5.0.4; extra == "dev"; cryptography>=3.4.0; extra == "dev"; pre-commit; extra == "dev"; pytest<7.0.0,>=6.0.0; extra == "dev"; sphinx; extra == "dev"; sphinx-rtd-theme; extra == "dev"; zope.interface; extra == "dev"; sphinx; extra == "docs"; sphinx-rtd-theme; extra == "docs"; zope.interface; extra == "docs"; coverage[toml]==5.0.4; extra == "tests"; pytest<7.0.0,>=6.0.0; extra == "tests" | + + + +2.10.0, 2.10.1 | + + + +cryptography>=3.4.0; extra == "crypto"; coverage[toml]==5.0.4; extra == "dev"; cryptography>=3.4.0; extra == "dev"; pre-commit; extra == "dev"; pytest<7.0.0,>=6.0.0; extra == "dev"; sphinx; extra == "dev"; sphinx-rtd-theme; extra == "dev"; zope.interface; extra == "dev"; sphinx; extra == "docs"; sphinx-rtd-theme; extra == "docs"; zope.interface; extra == "docs"; coverage[toml]==5.0.4; extra == "tests"; pytest<7.0.0,>=6.0.0; extra == "tests" | + + + +2.10.1 | + + + +No | + + + ++ + + + | Yes | + + + +2.10.0: CVE-2024-53861, CVSS_V3, PyJWT Issuer field partial matches allowed, CVSS:3.1/AV:N/AC:H/PR:H/UI:N/S:U/C:N/I:L/A:N, affects: >=2.10.0,<2.10.1 | + + + +None | + + + +None | + + + ++ + + |
| PyNaCl | + + + +Dependency Package | + + + +EY | + + + +1.5.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.5.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pyOpenSSL | + + + +Dependency Package | + + + +EY | + + + +24.2.1 | + + + +None | + + + +cryptography<46,>=41.0.5; typing-extensions>=4.9; python_version < "3.13" and python_version >= "3.8"; pytest-rerunfailures; extra == "test"; pretend; extra == "test"; pytest>=3.0.1; extra == "test"; sphinx!=5.2.0,!=5.2.0.post0,!=7.2.5; extra == "docs"; sphinx_rtd_theme; extra == "docs" | + + + +24.3.0, 25.0.0, 25.1.0 | + + + +cryptography<46,>=41.0.5; typing-extensions>=4.9; python_version < "3.13" and python_version >= "3.8"; pytest-rerunfailures; extra == "test"; pretend; extra == "test"; pytest>=3.0.1; extra == "test"; sphinx!=5.2.0,!=5.2.0.post0,!=7.2.5; extra == "docs"; sphinx_rtd_theme; extra == "docs" | + + + +25.1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pyparsing | + + + +Dependency Package | + + + +EY | + + + +3.2.0 | + + + +None | + + + +railroad-diagrams; extra == "diagrams"; jinja2; extra == "diagrams" | + + + +3.2.1, 3.2.2, 3.2.3 | + + + +railroad-diagrams; extra == "diagrams"; jinja2; extra == "diagrams" | + + + +3.2.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pyproject-hooks | + + + +Dependency Package | + + + +EY | + + + +1.2.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pytest | + + + +Dependency Package | + + + +EY | + + + +8.3.3 | + + + +None | + + + +colorama>=0.4; sys_platform == "win32"; exceptiongroup>=1; python_version < "3.11"; iniconfig>=1; packaging>=20; pluggy<2,>=1.5; pygments>=2.7.2; tomli>=1; python_version < "3.11"; argcomplete; extra == "dev"; attrs>=19.2; extra == "dev"; hypothesis>=3.56; extra == "dev"; mock; extra == "dev"; requests; extra == "dev"; setuptools; extra == "dev"; xmlschema; extra == "dev" | + + + +8.3.4, 8.3.5, 8.4.0, 8.4.1 | + + + +colorama>=0.4; sys_platform == "win32"; exceptiongroup>=1; python_version < "3.11"; iniconfig>=1; packaging>=20; pluggy<2,>=1.5; pygments>=2.7.2; tomli>=1; python_version < "3.11"; argcomplete; extra == "dev"; attrs>=19.2; extra == "dev"; hypothesis>=3.56; extra == "dev"; mock; extra == "dev"; requests; extra == "dev"; setuptools; extra == "dev"; xmlschema; extra == "dev" | + + + +8.4.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| python-dateutil | + + + +Dependency Package | + + + +EY | + + + +2.9.0.post0 | + + + +None | + + + +six >=1.5 | + + + ++ + + + | six >=1.5 | + + + +2.9.0.post0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| python-dotenv | + + + +Dependency Package | + + + +EY | + + + +1.0.1 | + + + +None | + + + +click>=5.0; extra == "cli" | + + + +1.1.0, 1.1.1 | + + + +click>=5.0; extra == "cli" | + + + +1.1.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| python-json-logger | + + + +Dependency Package | + + + +EY | + + + +2.0.7 | + + + +None | + + + +typing_extensions; python_version < "3.10"; orjson; implementation_name != "pypy" and extra == "dev"; msgspec; implementation_name != "pypy" and extra == "dev"; validate-pyproject[all]; extra == "dev"; black; extra == "dev"; pylint; extra == "dev"; mypy; extra == "dev"; pytest; extra == "dev"; freezegun; extra == "dev"; backports.zoneinfo; python_version < "3.9" and extra == "dev"; tzdata; extra == "dev"; build; extra == "dev"; mkdocs; extra == "dev"; mkdocs-material>=8.5; extra == "dev"; mkdocs-awesome-pages-plugin; extra == "dev"; mdx_truly_sane_lists; extra == "dev"; mkdocstrings[python]; extra == "dev"; mkdocs-gen-files; extra == "dev"; mkdocs-literate-nav; extra == "dev"; mike; extra == "dev" | + + + +3.0.0, 3.0.1, 3.1.0, 3.2.0, 3.2.1.dev1, 3.2.1, 3.3.0, 4.0.0.dev0 | + + + +typing_extensions; python_version < "3.10"; orjson; implementation_name != "pypy" and extra == "dev"; msgspec; implementation_name != "pypy" and extra == "dev"; validate-pyproject[all]; extra == "dev"; black; extra == "dev"; pylint; extra == "dev"; mypy; extra == "dev"; pytest; extra == "dev"; freezegun; extra == "dev"; backports.zoneinfo; python_version < "3.9" and extra == "dev"; tzdata; extra == "dev"; build; extra == "dev"; mkdocs; extra == "dev"; mkdocs-material>=8.5; extra == "dev"; mkdocs-awesome-pages-plugin; extra == "dev"; mdx_truly_sane_lists; extra == "dev"; mkdocstrings[python]; extra == "dev"; mkdocs-gen-files; extra == "dev"; mkdocs-literate-nav; extra == "dev"; mike; extra == "dev" | + + + +4.0.0.dev0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| python-slugify | + + + +Dependency Package | + + + +EY | + + + +8.0.4 | + + + +None | + + + +text-unidecode (>=1.3); Unidecode (>=1.1.1) ; extra == 'unidecode' | + + + ++ + + + | text-unidecode (>=1.3); Unidecode (>=1.1.1) ; extra == 'unidecode' | + + + +8.0.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pytoolconfig | + + + +Dependency Package | + + + +EY | + + + +1.3.1 | + + + +None | + + + +tomli>=2.0.1; python_version < "3.11"; packaging>=23.2; pydantic>=2.5.3; extra == "validation"; platformdirs>=3.11.0; extra == "global"; tabulate>=0.9.0; extra == "doc"; sphinx>=7.1.2; extra == "doc"; sphinx>=7.1.2; extra == "gendocs"; sphinx-autodoc-typehints>=1.25.2; extra == "gendocs"; sphinx-rtd-theme>=2.0.0; extra == "gendocs"; pytoolconfig[doc]; extra == "gendocs" | + + + ++ + + + | tomli>=2.0.1; python_version < "3.11"; packaging>=23.2; pydantic>=2.5.3; extra == "validation"; platformdirs>=3.11.0; extra == "global"; tabulate>=0.9.0; extra == "doc"; sphinx>=7.1.2; extra == "doc"; sphinx>=7.1.2; extra == "gendocs"; sphinx-autodoc-typehints>=1.25.2; extra == "gendocs"; sphinx-rtd-theme>=2.0.0; extra == "gendocs"; pytoolconfig[doc]; extra == "gendocs" | + + + +1.3.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pytz | + + + +Dependency Package | + + + +EY | + + + +2024.2 | + + + +None | + + + ++ + + + | 2025.1, 2025.2 | + + + ++ + + + | 2025.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| PyYAML | + + + +Dependency Package | + + + +EY | + + + +6.0.2 | + + + +None | + + + ++ + + + | + + + + | + + + + | 6.0.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pyzmq | + + + +Dependency Package | + + + +EY | + + + +26.2.0 | + + + +None | + + + +cffi; implementation_name == "pypy" | + + + +26.2.1, 26.3.0, 26.4.0, 27.0.0 | + + + +cffi; implementation_name == "pypy" | + + + +27.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| referencing | + + + +Dependency Package | + + + +EY | + + + +0.35.1 | + + + +None | + + + +attrs>=22.2.0; rpds-py>=0.7.0; typing-extensions>=4.4.0; python_version < "3.13" | + + + +0.36.0, 0.36.1, 0.36.2 | + + + +attrs>=22.2.0; rpds-py>=0.7.0; typing-extensions>=4.4.0; python_version < "3.13" | + + + +0.36.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| regex | + + + +Dependency Package | + + + +EY | + + + +2024.9.11 | + + + +None | + + + ++ + + + | 2024.11.6 | + + + ++ + + + | 2024.11.6 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| requests | + + + +Dependency Package | + + + +EY | + + + +2.32.4 | + + + +None | + + + +charset_normalizer<4,>=2; idna<4,>=2.5; urllib3<3,>=1.21.1; certifi>=2017.4.17; PySocks!=1.5.7,>=1.5.6; extra == "socks"; chardet<6,>=3.0.2; extra == "use-chardet-on-py3" | + + + ++ + + + | charset_normalizer<4,>=2; idna<4,>=2.5; urllib3<3,>=1.21.1; certifi>=2017.4.17; PySocks!=1.5.7,>=1.5.6; extra == "socks"; chardet<6,>=3.0.2; extra == "use-chardet-on-py3" | + + + +2.32.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| requests-oauthlib | + + + +Dependency Package | + + + +EY | + + + +2.0.0 | + + + +None | + + + +oauthlib>=3.0.0; requests>=2.0.0; oauthlib[signedtoken]>=3.0.0; extra == "rsa" | + + + ++ + + + | oauthlib>=3.0.0; requests>=2.0.0; oauthlib[signedtoken]>=3.0.0; extra == "rsa" | + + + +2.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| rfc3339-validator | + + + +Dependency Package | + + + +EY | + + + +0.1.4 | + + + +None | + + + +six | + + + ++ + + + | six | + + + +0.1.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| rfc3986-validator | + + + +Dependency Package | + + + +EY | + + + +0.1.1 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.1.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| rich | + + + +Dependency Package | + + + +EY | + + + +13.9.2 | + + + +None | + + + +typing-extensions<5.0,>=4.0.0; python_version < "3.11"; pygments<3.0.0,>=2.13.0; ipywidgets<9,>=7.5.1; extra == "jupyter"; markdown-it-py>=2.2.0 | + + + +13.9.3, 13.9.4, 14.0.0 | + + + +typing-extensions<5.0,>=4.0.0; python_version < "3.11"; pygments<3.0.0,>=2.13.0; ipywidgets<9,>=7.5.1; extra == "jupyter"; markdown-it-py>=2.2.0 | + + + +14.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| rich-click | + + + +Dependency Package | + + + +EY | + + + +1.8.3 | + + + +None | + + + +click>=7; importlib-metadata; python_version < "3.8"; rich>=10.7; typing_extensions>=4; mypy; extra == "dev"; packaging; extra == "dev"; pre-commit; extra == "dev"; pytest; extra == "dev"; pytest-cov; extra == "dev"; rich-codex; extra == "dev"; ruff; extra == "dev"; types-setuptools; extra == "dev"; markdown_include; extra == "docs"; mkdocs; extra == "docs"; mkdocs-glightbox; extra == "docs"; mkdocs-material[imaging]~=9.5.18; extra == "docs"; mkdocs-material-extensions; extra == "docs"; mkdocs-rss-plugin; extra == "docs"; mkdocstrings[python]; extra == "docs"; rich-codex; extra == "docs" | + + + +1.8.4, 1.8.5, 1.8.6, 1.8.7.dev0, 1.8.7, 1.8.8, 1.8.9 | + + + +click>=7; importlib-metadata; python_version < "3.8"; rich>=10.7; typing_extensions>=4; mypy; extra == "dev"; packaging; extra == "dev"; pre-commit; extra == "dev"; pytest; extra == "dev"; pytest-cov; extra == "dev"; rich-codex; extra == "dev"; ruff; extra == "dev"; types-setuptools; extra == "dev"; markdown_include; extra == "docs"; mkdocs; extra == "docs"; mkdocs-glightbox; extra == "docs"; mkdocs-material[imaging]~=9.5.18; extra == "docs"; mkdocs-material-extensions; extra == "docs"; mkdocs-rss-plugin; extra == "docs"; mkdocstrings[python]; extra == "docs"; rich-codex; extra == "docs" | + + + +1.8.9 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| rope | + + + +Dependency Package | + + + +EY | + + + +1.13.0 | + + + +None | + + + +pytoolconfig[global]>=1.2.2; pytest>=7.0.1; extra == "dev"; pytest-cov>=4.1.0; extra == "dev"; pytest-timeout>=2.1.0; extra == "dev"; build>=0.7.0; extra == "dev"; pre-commit>=2.20.0; extra == "dev"; pytoolconfig[doc]; extra == "doc"; sphinx>=4.5.0; extra == "doc"; sphinx-autodoc-typehints>=1.18.1; extra == "doc"; sphinx-rtd-theme>=1.0.0; extra == "doc"; toml>=0.10.2; extra == "release"; twine>=4.0.2; extra == "release"; pip-tools>=6.12.1; extra == "release" | + + + ++ + + + | pytoolconfig[global]>=1.2.2; pytest>=7.0.1; extra == "dev"; pytest-cov>=4.1.0; extra == "dev"; pytest-timeout>=2.1.0; extra == "dev"; build>=0.7.0; extra == "dev"; pre-commit>=2.20.0; extra == "dev"; pytoolconfig[doc]; extra == "doc"; sphinx>=4.5.0; extra == "doc"; sphinx-autodoc-typehints>=1.18.1; extra == "doc"; sphinx-rtd-theme>=1.0.0; extra == "doc"; toml>=0.10.2; extra == "release"; twine>=4.0.2; extra == "release"; pip-tools>=6.12.1; extra == "release" | + + + +1.13.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| rpds-py | + + + +Dependency Package | + + + +EY | + + + +0.20.0 | + + + +None | + + + ++ + + + | 0.20.1, 0.21.0, 0.22.0, 0.22.1, 0.22.3, 0.23.0, 0.23.1, 0.24.0, 0.25.0, 0.25.1 | + + + ++ + + + | 0.25.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| rsa | + + + +Dependency Package | + + + +EY | + + + +4.9 | + + + +None | + + + +pyasn1>=0.1.3 | + + + +4.9.1 | + + + +pyasn1>=0.1.3 | + + + +4.9.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| scikit-learn | + + + +Dependency Package | + + + +EY | + + + +1.5.2 | + + + +None | + + + +numpy>=1.22.0; scipy>=1.8.0; joblib>=1.2.0; threadpoolctl>=3.1.0; numpy>=1.22.0; extra == "build"; scipy>=1.8.0; extra == "build"; cython>=3.0.10; extra == "build"; meson-python>=0.16.0; extra == "build"; numpy>=1.22.0; extra == "install"; scipy>=1.8.0; extra == "install"; joblib>=1.2.0; extra == "install"; threadpoolctl>=3.1.0; extra == "install"; matplotlib>=3.5.0; extra == "benchmark"; pandas>=1.4.0; extra == "benchmark"; memory_profiler>=0.57.0; extra == "benchmark"; matplotlib>=3.5.0; extra == "docs"; scikit-image>=0.19.0; extra == "docs"; pandas>=1.4.0; extra == "docs"; seaborn>=0.9.0; extra == "docs"; memory_profiler>=0.57.0; extra == "docs"; sphinx>=7.3.7; extra == "docs"; sphinx-copybutton>=0.5.2; extra == "docs"; sphinx-gallery>=0.17.1; extra == "docs"; numpydoc>=1.2.0; extra == "docs"; Pillow>=8.4.0; extra == "docs"; pooch>=1.6.0; extra == "docs"; sphinx-prompt>=1.4.0; extra == "docs"; sphinxext-opengraph>=0.9.1; extra == "docs"; plotly>=5.14.0; extra == "docs"; polars>=0.20.30; extra == "docs"; sphinx-design>=0.5.0; extra == "docs"; sphinx-design>=0.6.0; extra == "docs"; sphinxcontrib-sass>=0.3.4; extra == "docs"; pydata-sphinx-theme>=0.15.3; extra == "docs"; sphinx-remove-toctrees>=1.0.0.post1; extra == "docs"; towncrier>=24.8.0; extra == "docs"; matplotlib>=3.5.0; extra == "examples"; scikit-image>=0.19.0; extra == "examples"; pandas>=1.4.0; extra == "examples"; seaborn>=0.9.0; extra == "examples"; pooch>=1.6.0; extra == "examples"; plotly>=5.14.0; extra == "examples"; matplotlib>=3.5.0; extra == "tests"; scikit-image>=0.19.0; extra == "tests"; pandas>=1.4.0; extra == "tests"; pytest>=7.1.2; extra == "tests"; pytest-cov>=2.9.0; extra == "tests"; ruff>=0.11.7; extra == "tests"; mypy>=1.15; extra == "tests"; pyamg>=4.2.1; extra == "tests"; polars>=0.20.30; extra == "tests"; pyarrow>=12.0.0; extra == "tests"; numpydoc>=1.2.0; extra == "tests"; pooch>=1.6.0; extra == "tests"; conda-lock==3.0.1; extra == "maintenance" | + + + +1.6.0rc1, 1.6.0, 1.6.1, 1.7.0rc1, 1.7.0 | + + + +numpy>=1.22.0; scipy>=1.8.0; joblib>=1.2.0; threadpoolctl>=3.1.0; numpy>=1.22.0; extra == "build"; scipy>=1.8.0; extra == "build"; cython>=3.0.10; extra == "build"; meson-python>=0.16.0; extra == "build"; numpy>=1.22.0; extra == "install"; scipy>=1.8.0; extra == "install"; joblib>=1.2.0; extra == "install"; threadpoolctl>=3.1.0; extra == "install"; matplotlib>=3.5.0; extra == "benchmark"; pandas>=1.4.0; extra == "benchmark"; memory_profiler>=0.57.0; extra == "benchmark"; matplotlib>=3.5.0; extra == "docs"; scikit-image>=0.19.0; extra == "docs"; pandas>=1.4.0; extra == "docs"; seaborn>=0.9.0; extra == "docs"; memory_profiler>=0.57.0; extra == "docs"; sphinx>=7.3.7; extra == "docs"; sphinx-copybutton>=0.5.2; extra == "docs"; sphinx-gallery>=0.17.1; extra == "docs"; numpydoc>=1.2.0; extra == "docs"; Pillow>=8.4.0; extra == "docs"; pooch>=1.6.0; extra == "docs"; sphinx-prompt>=1.4.0; extra == "docs"; sphinxext-opengraph>=0.9.1; extra == "docs"; plotly>=5.14.0; extra == "docs"; polars>=0.20.30; extra == "docs"; sphinx-design>=0.5.0; extra == "docs"; sphinx-design>=0.6.0; extra == "docs"; sphinxcontrib-sass>=0.3.4; extra == "docs"; pydata-sphinx-theme>=0.15.3; extra == "docs"; sphinx-remove-toctrees>=1.0.0.post1; extra == "docs"; towncrier>=24.8.0; extra == "docs"; matplotlib>=3.5.0; extra == "examples"; scikit-image>=0.19.0; extra == "examples"; pandas>=1.4.0; extra == "examples"; seaborn>=0.9.0; extra == "examples"; pooch>=1.6.0; extra == "examples"; plotly>=5.14.0; extra == "examples"; matplotlib>=3.5.0; extra == "tests"; scikit-image>=0.19.0; extra == "tests"; pandas>=1.4.0; extra == "tests"; pytest>=7.1.2; extra == "tests"; pytest-cov>=2.9.0; extra == "tests"; ruff>=0.11.7; extra == "tests"; mypy>=1.15; extra == "tests"; pyamg>=4.2.1; extra == "tests"; polars>=0.20.30; extra == "tests"; pyarrow>=12.0.0; extra == "tests"; numpydoc>=1.2.0; extra == "tests"; pooch>=1.6.0; extra == "tests"; conda-lock==3.0.1; extra == "maintenance" | + + + +1.7.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| scipy | + + + +Dependency Package | + + + +EY | + + + +1.14.1 | + + + +None | + + + +numpy<2.6,>=1.25.2; pytest; extra == "test"; pytest-cov; extra == "test"; pytest-timeout; extra == "test"; pytest-xdist; extra == "test"; asv; extra == "test"; mpmath; extra == "test"; gmpy2; extra == "test"; threadpoolctl; extra == "test"; scikit-umfpack; extra == "test"; pooch; extra == "test"; hypothesis>=6.30; extra == "test"; array-api-strict>=2.3.1; extra == "test"; Cython; extra == "test"; meson; extra == "test"; ninja; sys_platform != "emscripten" and extra == "test"; sphinx<8.2.0,>=5.0.0; extra == "doc"; intersphinx_registry; extra == "doc"; pydata-sphinx-theme>=0.15.2; extra == "doc"; sphinx-copybutton; extra == "doc"; sphinx-design>=0.4.0; extra == "doc"; matplotlib>=3.5; extra == "doc"; numpydoc; extra == "doc"; jupytext; extra == "doc"; myst-nb>=1.2.0; extra == "doc"; pooch; extra == "doc"; jupyterlite-sphinx>=0.19.1; extra == "doc"; jupyterlite-pyodide-kernel; extra == "doc"; linkify-it-py; extra == "doc"; mypy==1.10.0; extra == "dev"; typing_extensions; extra == "dev"; types-psutil; extra == "dev"; pycodestyle; extra == "dev"; ruff>=0.0.292; extra == "dev"; cython-lint>=0.12.2; extra == "dev"; rich-click; extra == "dev"; doit>=0.36.0; extra == "dev"; pydevtool; extra == "dev" | + + + +1.15.0rc1, 1.15.0rc2, 1.15.0, 1.15.1, 1.15.2, 1.15.3, 1.16.0rc1, 1.16.0rc2, 1.16.0 | + + + +numpy<2.6,>=1.25.2; pytest; extra == "test"; pytest-cov; extra == "test"; pytest-timeout; extra == "test"; pytest-xdist; extra == "test"; asv; extra == "test"; mpmath; extra == "test"; gmpy2; extra == "test"; threadpoolctl; extra == "test"; scikit-umfpack; extra == "test"; pooch; extra == "test"; hypothesis>=6.30; extra == "test"; array-api-strict>=2.3.1; extra == "test"; Cython; extra == "test"; meson; extra == "test"; ninja; sys_platform != "emscripten" and extra == "test"; sphinx<8.2.0,>=5.0.0; extra == "doc"; intersphinx_registry; extra == "doc"; pydata-sphinx-theme>=0.15.2; extra == "doc"; sphinx-copybutton; extra == "doc"; sphinx-design>=0.4.0; extra == "doc"; matplotlib>=3.5; extra == "doc"; numpydoc; extra == "doc"; jupytext; extra == "doc"; myst-nb>=1.2.0; extra == "doc"; pooch; extra == "doc"; jupyterlite-sphinx>=0.19.1; extra == "doc"; jupyterlite-pyodide-kernel; extra == "doc"; linkify-it-py; extra == "doc"; mypy==1.10.0; extra == "dev"; typing_extensions; extra == "dev"; types-psutil; extra == "dev"; pycodestyle; extra == "dev"; ruff>=0.0.292; extra == "dev"; cython-lint>=0.12.2; extra == "dev"; rich-click; extra == "dev"; doit>=0.36.0; extra == "dev"; pydevtool; extra == "dev" | + + + +1.16.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| SecretStorage | + + + +Dependency Package | + + + +EY | + + + +3.3.3 | + + + +None | + + + +cryptography (>=2.0); jeepney (>=0.6) | + + + ++ + + + | cryptography (>=2.0); jeepney (>=0.6) | + + + +3.3.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| secure | + + + +Dependency Package | + + + +EY | + + + +0.3.0 | + + + +None | + + + ++ + + + | 1.0.0, 1.0.1 | + + + ++ + + + | 1.0.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| semver | + + + +Dependency Package | + + + +EY | + + + +2.13.0 | + + + +None | + + + ++ + + + | 3.0.0.dev1, 3.0.0.dev2, 3.0.0.dev3, 3.0.0.dev4, 3.0.0rc1, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4 | + + + ++ + + + | 3.0.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| Send2Trash | + + + +Dependency Package | + + + +EY | + + + +1.8.3 | + + + +None | + + + +pyobjc-framework-Cocoa; sys_platform == "darwin" and extra == "nativelib"; pywin32; sys_platform == "win32" and extra == "nativelib"; pyobjc-framework-Cocoa; sys_platform == "darwin" and extra == "objc"; pywin32; sys_platform == "win32" and extra == "win32" | + + + ++ + + + | pyobjc-framework-Cocoa; sys_platform == "darwin" and extra == "nativelib"; pywin32; sys_platform == "win32" and extra == "nativelib"; pyobjc-framework-Cocoa; sys_platform == "darwin" and extra == "objc"; pywin32; sys_platform == "win32" and extra == "win32" | + + + +1.8.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| shellingham | + + + +Dependency Package | + + + +EY | + + + +1.5.4 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.5.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| six | + + + +Dependency Package | + + + +EY | + + + +1.17.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.17.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| smart-open | + + + +Dependency Package | + + + +EY | + + + +7.0.4 | + + + +None | + + + ++ + + + | 7.0.5, 7.1.0 | + + + ++ + + + | 7.1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| smmap | + + + +Dependency Package | + + + +EY | + + + +5.0.1 | + + + +None | + + + ++ + + + | 5.0.2, 6.0.0 | + + + ++ + + + | 6.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| sniffio | + + + +Dependency Package | + + + +EY | + + + +1.3.1 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.3.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| soupsieve | + + + +Dependency Package | + + + +EY | + + + +2.6 | + + + +None | + + + ++ + + + | 2.7 | + + + ++ + + + | 2.7 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| spacy | + + + +Dependency Package | + + + +EY | + + + +3.8.2 | + + + +None | + + + +spacy-legacy<3.1.0,>=3.0.11; spacy-loggers<2.0.0,>=1.0.0; murmurhash<1.1.0,>=0.28.0; cymem<2.1.0,>=2.0.2; preshed<3.1.0,>=3.0.2; thinc<8.4.0,>=8.3.4; wasabi<1.2.0,>=0.9.1; srsly<3.0.0,>=2.4.3; catalogue<2.1.0,>=2.0.6; weasel<0.5.0,>=0.1.0; typer<1.0.0,>=0.3.0; tqdm<5.0.0,>=4.38.0; numpy>=1.15.0; python_version < "3.9"; numpy>=1.19.0; python_version >= "3.9"; requests<3.0.0,>=2.13.0; pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4; jinja2; setuptools; packaging>=20.0; langcodes<4.0.0,>=3.2.0; spacy_lookups_data<1.1.0,>=1.0.3; extra == "lookups"; spacy_transformers<1.4.0,>=1.1.2; extra == "transformers"; cupy<13.0.0,>=5.0.0b4; extra == "cuda"; cupy-cuda80<13.0.0,>=5.0.0b4; extra == "cuda80"; cupy-cuda90<13.0.0,>=5.0.0b4; extra == "cuda90"; cupy-cuda91<13.0.0,>=5.0.0b4; extra == "cuda91"; cupy-cuda92<13.0.0,>=5.0.0b4; extra == "cuda92"; cupy-cuda100<13.0.0,>=5.0.0b4; extra == "cuda100"; cupy-cuda101<13.0.0,>=5.0.0b4; extra == "cuda101"; cupy-cuda102<13.0.0,>=5.0.0b4; extra == "cuda102"; cupy-cuda110<13.0.0,>=5.0.0b4; extra == "cuda110"; cupy-cuda111<13.0.0,>=5.0.0b4; extra == "cuda111"; cupy-cuda112<13.0.0,>=5.0.0b4; extra == "cuda112"; cupy-cuda113<13.0.0,>=5.0.0b4; extra == "cuda113"; cupy-cuda114<13.0.0,>=5.0.0b4; extra == "cuda114"; cupy-cuda115<13.0.0,>=5.0.0b4; extra == "cuda115"; cupy-cuda116<13.0.0,>=5.0.0b4; extra == "cuda116"; cupy-cuda117<13.0.0,>=5.0.0b4; extra == "cuda117"; cupy-cuda11x<13.0.0,>=11.0.0; extra == "cuda11x"; cupy-cuda12x<13.0.0,>=11.5.0; extra == "cuda12x"; cupy-wheel<13.0.0,>=11.0.0; extra == "cuda-autodetect"; thinc-apple-ops<2.0.0,>=1.0.0; extra == "apple"; sudachipy!=0.6.1,>=0.5.2; extra == "ja"; sudachidict_core>=20211220; extra == "ja"; natto-py>=0.9.0; extra == "ko"; pythainlp>=2.0; extra == "th" | + + + +3.8.3, 3.8.4, 3.8.5, 3.8.6, 3.8.7, 4.0.0.dev1, 4.0.0.dev2, 4.0.0.dev3 | + + + +spacy-legacy<3.1.0,>=3.0.11; spacy-loggers<2.0.0,>=1.0.0; murmurhash<1.1.0,>=0.28.0; cymem<2.1.0,>=2.0.2; preshed<3.1.0,>=3.0.2; thinc<8.4.0,>=8.3.4; wasabi<1.2.0,>=0.9.1; srsly<3.0.0,>=2.4.3; catalogue<2.1.0,>=2.0.6; weasel<0.5.0,>=0.1.0; typer<1.0.0,>=0.3.0; tqdm<5.0.0,>=4.38.0; numpy>=1.15.0; python_version < "3.9"; numpy>=1.19.0; python_version >= "3.9"; requests<3.0.0,>=2.13.0; pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4; jinja2; setuptools; packaging>=20.0; langcodes<4.0.0,>=3.2.0; spacy_lookups_data<1.1.0,>=1.0.3; extra == "lookups"; spacy_transformers<1.4.0,>=1.1.2; extra == "transformers"; cupy<13.0.0,>=5.0.0b4; extra == "cuda"; cupy-cuda80<13.0.0,>=5.0.0b4; extra == "cuda80"; cupy-cuda90<13.0.0,>=5.0.0b4; extra == "cuda90"; cupy-cuda91<13.0.0,>=5.0.0b4; extra == "cuda91"; cupy-cuda92<13.0.0,>=5.0.0b4; extra == "cuda92"; cupy-cuda100<13.0.0,>=5.0.0b4; extra == "cuda100"; cupy-cuda101<13.0.0,>=5.0.0b4; extra == "cuda101"; cupy-cuda102<13.0.0,>=5.0.0b4; extra == "cuda102"; cupy-cuda110<13.0.0,>=5.0.0b4; extra == "cuda110"; cupy-cuda111<13.0.0,>=5.0.0b4; extra == "cuda111"; cupy-cuda112<13.0.0,>=5.0.0b4; extra == "cuda112"; cupy-cuda113<13.0.0,>=5.0.0b4; extra == "cuda113"; cupy-cuda114<13.0.0,>=5.0.0b4; extra == "cuda114"; cupy-cuda115<13.0.0,>=5.0.0b4; extra == "cuda115"; cupy-cuda116<13.0.0,>=5.0.0b4; extra == "cuda116"; cupy-cuda117<13.0.0,>=5.0.0b4; extra == "cuda117"; cupy-cuda11x<13.0.0,>=11.0.0; extra == "cuda11x"; cupy-cuda12x<13.0.0,>=11.5.0; extra == "cuda12x"; cupy-wheel<13.0.0,>=11.0.0; extra == "cuda-autodetect"; thinc-apple-ops<2.0.0,>=1.0.0; extra == "apple"; sudachipy!=0.6.1,>=0.5.2; extra == "ja"; sudachidict_core>=20211220; extra == "ja"; natto-py>=0.9.0; extra == "ko"; pythainlp>=2.0; extra == "th" | + + + +4.0.0.dev3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| spacy-legacy | + + + +Dependency Package | + + + +EY | + + + +3.0.12 | + + + +None | + + + ++ + + + | 4.0.0.dev0, 4.0.0.dev1 | + + + ++ + + + | 4.0.0.dev1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| spacy-loggers | + + + +Dependency Package | + + + +EY | + + + +1.0.5 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.0.5 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| SQLAlchemy | + + + +Dependency Package | + + + +EY | + + + +2.0.38 | + + + +None | + + + +importlib-metadata; python_version < "3.8"; greenlet>=1; python_version < "3.14" and (platform_machine == "aarch64" or (platform_machine == "ppc64le" or (platform_machine == "x86_64" or (platform_machine == "amd64" or (platform_machine == "AMD64" or (platform_machine == "win32" or platform_machine == "WIN32")))))); typing-extensions>=4.6.0; greenlet>=1; extra == "asyncio"; mypy>=0.910; extra == "mypy"; pyodbc; extra == "mssql"; pymssql; extra == "mssql-pymssql"; pyodbc; extra == "mssql-pyodbc"; mysqlclient>=1.4.0; extra == "mysql"; mysql-connector-python; extra == "mysql-connector"; mariadb!=1.1.10,!=1.1.2,!=1.1.5,>=1.0.1; extra == "mariadb-connector"; cx_oracle>=8; extra == "oracle"; oracledb>=1.0.1; extra == "oracle-oracledb"; psycopg2>=2.7; extra == "postgresql"; pg8000>=1.29.1; extra == "postgresql-pg8000"; greenlet>=1; extra == "postgresql-asyncpg"; asyncpg; extra == "postgresql-asyncpg"; psycopg2-binary; extra == "postgresql-psycopg2binary"; psycopg2cffi; extra == "postgresql-psycopg2cffi"; psycopg>=3.0.7; extra == "postgresql-psycopg"; psycopg[binary]>=3.0.7; extra == "postgresql-psycopgbinary"; pymysql; extra == "pymysql"; greenlet>=1; extra == "aiomysql"; aiomysql>=0.2.0; extra == "aiomysql"; greenlet>=1; extra == "aioodbc"; aioodbc; extra == "aioodbc"; greenlet>=1; extra == "asyncmy"; asyncmy!=0.2.4,!=0.2.6,>=0.2.3; extra == "asyncmy"; greenlet>=1; extra == "aiosqlite"; aiosqlite; extra == "aiosqlite"; typing_extensions!=3.10.0.1; extra == "aiosqlite"; sqlcipher3_binary; extra == "sqlcipher" | + + + +2.0.39, 2.0.40, 2.0.41 | + + + +importlib-metadata; python_version < "3.8"; greenlet>=1; python_version < "3.14" and (platform_machine == "aarch64" or (platform_machine == "ppc64le" or (platform_machine == "x86_64" or (platform_machine == "amd64" or (platform_machine == "AMD64" or (platform_machine == "win32" or platform_machine == "WIN32")))))); typing-extensions>=4.6.0; greenlet>=1; extra == "asyncio"; mypy>=0.910; extra == "mypy"; pyodbc; extra == "mssql"; pymssql; extra == "mssql-pymssql"; pyodbc; extra == "mssql-pyodbc"; mysqlclient>=1.4.0; extra == "mysql"; mysql-connector-python; extra == "mysql-connector"; mariadb!=1.1.10,!=1.1.2,!=1.1.5,>=1.0.1; extra == "mariadb-connector"; cx_oracle>=8; extra == "oracle"; oracledb>=1.0.1; extra == "oracle-oracledb"; psycopg2>=2.7; extra == "postgresql"; pg8000>=1.29.1; extra == "postgresql-pg8000"; greenlet>=1; extra == "postgresql-asyncpg"; asyncpg; extra == "postgresql-asyncpg"; psycopg2-binary; extra == "postgresql-psycopg2binary"; psycopg2cffi; extra == "postgresql-psycopg2cffi"; psycopg>=3.0.7; extra == "postgresql-psycopg"; psycopg[binary]>=3.0.7; extra == "postgresql-psycopgbinary"; pymysql; extra == "pymysql"; greenlet>=1; extra == "aiomysql"; aiomysql>=0.2.0; extra == "aiomysql"; greenlet>=1; extra == "aioodbc"; aioodbc; extra == "aioodbc"; greenlet>=1; extra == "asyncmy"; asyncmy!=0.2.4,!=0.2.6,>=0.2.3; extra == "asyncmy"; greenlet>=1; extra == "aiosqlite"; aiosqlite; extra == "aiosqlite"; typing_extensions!=3.10.0.1; extra == "aiosqlite"; sqlcipher3_binary; extra == "sqlcipher" | + + + +2.0.41 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| srsly | + + + +Dependency Package | + + + +EY | + + + +2.4.8 | + + + +None | + + + +catalogue<2.1.0,>=2.0.3 | + + + +2.5.0, 2.5.1 | + + + +catalogue<2.1.0,>=2.0.3 | + + + +2.5.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| stack-data | + + + +Dependency Package | + + + +EY | + + + +0.6.3 | + + + +None | + + + +executing >=1.2.0; asttokens >=2.1.0; pure-eval; pytest ; extra == 'tests'; typeguard ; extra == 'tests'; pygments ; extra == 'tests'; littleutils ; extra == 'tests'; cython ; extra == 'tests' | + + + ++ + + + | executing >=1.2.0; asttokens >=2.1.0; pure-eval; pytest ; extra == 'tests'; typeguard ; extra == 'tests'; pygments ; extra == 'tests'; littleutils ; extra == 'tests'; cython ; extra == 'tests' | + + + +0.6.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| starlette | + + + +Dependency Package | + + + +EY | + + + +0.40.0 | + + + +None | + + + +anyio<5,>=3.6.2; typing-extensions>=4.10.0; python_version < "3.13"; httpx<0.29.0,>=0.27.0; extra == "full"; itsdangerous; extra == "full"; jinja2; extra == "full"; python-multipart>=0.0.18; extra == "full"; pyyaml; extra == "full" | + + + +0.41.0, 0.41.1, 0.41.2, 0.41.3, 0.42.0, 0.43.0, 0.44.0, 0.45.0, 0.45.1, 0.45.2, 0.45.3, 0.46.0, 0.46.1, 0.46.2, 0.47.0, 0.47.1 | + + + +anyio<5,>=3.6.2; typing-extensions>=4.10.0; python_version < "3.13"; httpx<0.29.0,>=0.27.0; extra == "full"; itsdangerous; extra == "full"; jinja2; extra == "full"; python-multipart>=0.0.18; extra == "full"; pyyaml; extra == "full" | + + + +0.47.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| statsmodels | + + + +Dependency Package | + + + +EY | + + + +0.14.4 | + + + +None | + + + +numpy<3,>=1.22.3; scipy!=1.9.2,>=1.8; pandas!=2.1.0,>=1.4; patsy>=0.5.6; packaging>=21.3; cython>=3.0.10; extra == "build"; cython>=3.0.10; extra == "develop"; cython<4,>=3.0.10; extra == "develop"; setuptools-scm[toml]~=8.0; extra == "develop"; matplotlib>=3; extra == "develop"; colorama; extra == "develop"; joblib; extra == "develop"; pytest<8,>=7.3.0; extra == "develop"; pytest-randomly; extra == "develop"; pytest-xdist; extra == "develop"; pytest-cov; extra == "develop"; flake8; extra == "develop"; isort; extra == "develop"; pywinpty; os_name == "nt" and extra == "develop"; sphinx; extra == "docs"; nbconvert; extra == "docs"; jupyter-client; extra == "docs"; ipykernel; extra == "docs"; matplotlib; extra == "docs"; nbformat; extra == "docs"; numpydoc; extra == "docs"; pandas-datareader; extra == "docs" | + + + ++ + + + | numpy<3,>=1.22.3; scipy!=1.9.2,>=1.8; pandas!=2.1.0,>=1.4; patsy>=0.5.6; packaging>=21.3; cython>=3.0.10; extra == "build"; cython>=3.0.10; extra == "develop"; cython<4,>=3.0.10; extra == "develop"; setuptools-scm[toml]~=8.0; extra == "develop"; matplotlib>=3; extra == "develop"; colorama; extra == "develop"; joblib; extra == "develop"; pytest<8,>=7.3.0; extra == "develop"; pytest-randomly; extra == "develop"; pytest-xdist; extra == "develop"; pytest-cov; extra == "develop"; flake8; extra == "develop"; isort; extra == "develop"; pywinpty; os_name == "nt" and extra == "develop"; sphinx; extra == "docs"; nbconvert; extra == "docs"; jupyter-client; extra == "docs"; ipykernel; extra == "docs"; matplotlib; extra == "docs"; nbformat; extra == "docs"; numpydoc; extra == "docs"; pandas-datareader; extra == "docs" | + + + +0.14.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| strawberry-graphql | + + + +Dependency Package | + + + +EY | + + + +0.243.0 | + + + +None | + + + +graphql-core<3.4.0,>=3.2.0; typing-extensions>=4.5.0; python-dateutil<3.0,>=2.7; packaging>=23; aiohttp<4,>=3.7.4.post0; extra == "aiohttp"; starlette>=0.18.0; extra == "asgi"; python-multipart>=0.0.7; extra == "asgi"; rich>=12.0.0; extra == "debug"; libcst; extra == "debug"; starlette>=0.18.0; extra == "debug-server"; uvicorn>=0.11.6; extra == "debug-server"; websockets<16,>=15.0.1; extra == "debug-server"; python-multipart>=0.0.7; extra == "debug-server"; typer>=0.7.0; extra == "debug-server"; pygments<3.0,>=2.3; extra == "debug-server"; rich>=12.0.0; extra == "debug-server"; libcst; extra == "debug-server"; Django>=3.2; extra == "django"; asgiref<4.0,>=3.2; extra == "django"; channels>=3.0.5; extra == "channels"; asgiref<4.0,>=3.2; extra == "channels"; flask>=1.1; extra == "flask"; quart>=0.19.3; extra == "quart"; opentelemetry-api<2; extra == "opentelemetry"; opentelemetry-sdk<2; extra == "opentelemetry"; pydantic>1.6.1; extra == "pydantic"; sanic>=20.12.2; extra == "sanic"; fastapi>=0.65.2; extra == "fastapi"; python-multipart>=0.0.7; extra == "fastapi"; chalice<2.0,>=1.22; extra == "chalice"; typer>=0.7.0; extra == "cli"; pygments<3.0,>=2.3; extra == "cli"; rich>=12.0.0; extra == "cli"; libcst; extra == "cli"; litestar>=2; python_version ~= "3.10" and extra == "litestar"; pyinstrument>=4.0.0; extra == "pyinstrument" | + + + +0.243.1, 0.244.0, 0.244.1, 0.245.0, 0.246.0, 0.246.1, 0.246.2, 0.246.3, 0.247.0, 0.247.1, 0.247.2, 0.248.0, 0.248.1, 0.249.0, 0.250.0, 0.250.1, 0.251.0, 0.252.0, 0.253.0, 0.253.1, 0.254.0, 0.254.1, 0.255.0, 0.256.0, 0.256.1, 0.257.0.dev1735244504, 0.257.0, 0.258.0, 0.258.1, 0.259.0, 0.259.1, 0.260.0, 0.260.1, 0.260.2, 0.260.3, 0.260.4, 0.261.0, 0.261.1, 0.262.0, 0.262.1, 0.262.2, 0.262.3, 0.262.4, 0.262.5, 0.262.6, 0.262.7.dev1743345593, 0.263.0.dev1743450281, 0.263.0.dev1743450503, 0.263.0.dev1743450741, 0.263.0.dev1743582446, 0.263.0, 0.263.1, 0.263.2, 0.264.0, 0.264.1, 0.265.0, 0.265.1, 0.266.0.dev1744797470, 0.266.0, 0.266.1, 0.267.0.dev1746643548, 0.267.0, 0.268.0, 0.268.1, 0.268.2.dev1747436835, 0.268.2, 0.269.0.dev1746905409, 0.269.0.dev1747164009, 0.269.0, 0.270.0, 0.270.1, 0.270.2, 0.270.3, 0.270.4, 0.270.5, 0.270.6, 0.271.0, 0.271.1, 0.271.2, 0.272.0, 0.272.1, 0.273.0, 0.273.1, 0.273.2, 0.273.3, 0.274.0, 0.274.1, 0.274.2, 0.274.3, 0.275.0, 0.275.1, 0.275.2, 0.276.0.dev1750672223 | + + + +graphql-core<3.4.0,>=3.2.0; typing-extensions>=4.5.0; python-dateutil<3.0,>=2.7; packaging>=23; aiohttp<4,>=3.7.4.post0; extra == "aiohttp"; starlette>=0.18.0; extra == "asgi"; python-multipart>=0.0.7; extra == "asgi"; rich>=12.0.0; extra == "debug"; libcst; extra == "debug"; starlette>=0.18.0; extra == "debug-server"; uvicorn>=0.11.6; extra == "debug-server"; websockets<16,>=15.0.1; extra == "debug-server"; python-multipart>=0.0.7; extra == "debug-server"; typer>=0.7.0; extra == "debug-server"; pygments<3.0,>=2.3; extra == "debug-server"; rich>=12.0.0; extra == "debug-server"; libcst; extra == "debug-server"; Django>=3.2; extra == "django"; asgiref<4.0,>=3.2; extra == "django"; channels>=3.0.5; extra == "channels"; asgiref<4.0,>=3.2; extra == "channels"; flask>=1.1; extra == "flask"; quart>=0.19.3; extra == "quart"; opentelemetry-api<2; extra == "opentelemetry"; opentelemetry-sdk<2; extra == "opentelemetry"; pydantic>1.6.1; extra == "pydantic"; sanic>=20.12.2; extra == "sanic"; fastapi>=0.65.2; extra == "fastapi"; python-multipart>=0.0.7; extra == "fastapi"; chalice<2.0,>=1.22; extra == "chalice"; typer>=0.7.0; extra == "cli"; pygments<3.0,>=2.3; extra == "cli"; rich>=12.0.0; extra == "cli"; libcst; extra == "cli"; litestar>=2; python_version ~= "3.10" and extra == "litestar"; pyinstrument>=4.0.0; extra == "pyinstrument" | + + + +0.276.0.dev1750672223 | + + + +Yes | + + + +CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0 | + + + +Yes | + + + +0.257.0.dev1735244504: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.246.2: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.247.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.243.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.251.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.245.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.247.2: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.248.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.253.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.247.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.244.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.250.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.249.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.244.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.246.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.253.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.254.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.255.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.254.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.248.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.256.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.246.3: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.252.0: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.256.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.250.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0; 0.246.1: CVE-2025-22151, CVSS_V3, Strawberry GraphQL has type resolution vulnerability in node interface that allows potential data leakage through incorrect type resolution, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N, affects: >=0.182.0,<0.257.0 | + + + +0.276.0.dev1750672223 | + + + +{'base_package': 'strawberry-graphql==0.276.0.dev1750672223', 'dependencies': ['graphql-core==3.3.0a9', 'typing-extensions==4.14.0', 'python-dateutil==2.9.0.post0', 'packaging==23.2', 'aiohttp==3.12.13', 'starlette==0.47.1', 'python-multipart==0.0.20', 'rich==12.6.0', 'libcst==1.8.2', 'uvicorn==0.47.1', 'websockets==0.34.3', 'typer==15.0.1', 'pygments==0.0.20', 'Django==0.16.0', 'asgiref==2.19.2', 'channels==12.6.0', 'flask==1.8.2', 'opentelemetry-api==3.8.1', 'opentelemetry-sdk==3.0.5', 'pydantic==3.8.1', 'fastapi==0.20.0', 'chalice==1.34.1', 'litestar==1.34.1', 'pyinstrument==1.10.22']} | + + + +Not Used | + + +
| strictyaml | + + + +Dependency Package | + + + +EY | + + + +1.7.3 | + + + +None | + + + +python-dateutil (>=2.6.0) | + + + ++ + + + | python-dateutil (>=2.6.0) | + + + +1.7.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tabulate | + + + +Dependency Package | + + + +EY | + + + +0.9.0 | + + + +None | + + + +wcwidth ; extra == 'widechars' | + + + ++ + + + | wcwidth ; extra == 'widechars' | + + + +0.9.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tenacity | + + + +Dependency Package | + + + +EY | + + + +9.0.0 | + + + +None | + + + +reno; extra == "doc"; sphinx; extra == "doc"; pytest; extra == "test"; tornado>=4.5; extra == "test"; typeguard; extra == "test" | + + + +9.1.2 | + + + +reno; extra == "doc"; sphinx; extra == "doc"; pytest; extra == "test"; tornado>=4.5; extra == "test"; typeguard; extra == "test" | + + + +9.1.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| terminado | + + + +Dependency Package | + + + +EY | + + + +0.18.1 | + + + +None | + + + +ptyprocess; os_name != 'nt'; pywinpty>=1.1.0; os_name == 'nt'; tornado>=6.1.0; myst-parser; extra == 'docs'; pydata-sphinx-theme; extra == 'docs'; sphinx; extra == 'docs'; pre-commit; extra == 'test'; pytest-timeout; extra == 'test'; pytest>=7.0; extra == 'test'; mypy~=1.6; extra == 'typing'; traitlets>=5.11.1; extra == 'typing' | + + + ++ + + + | ptyprocess; os_name != 'nt'; pywinpty>=1.1.0; os_name == 'nt'; tornado>=6.1.0; myst-parser; extra == 'docs'; pydata-sphinx-theme; extra == 'docs'; sphinx; extra == 'docs'; pre-commit; extra == 'test'; pytest-timeout; extra == 'test'; pytest>=7.0; extra == 'test'; mypy~=1.6; extra == 'typing'; traitlets>=5.11.1; extra == 'typing' | + + + +0.18.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| text-unidecode | + + + +Dependency Package | + + + +EY | + + + +1.3 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| thinc | + + + +Dependency Package | + + + +EY | + + + +8.3.2 | + + + +None | + + + +blis<1.1.0,>=1.0.0; murmurhash<1.1.0,>=1.0.2; cymem<2.1.0,>=2.0.2; preshed<3.1.0,>=3.0.2; wasabi<1.2.0,>=0.8.1; srsly<3.0.0,>=2.4.0; catalogue<2.1.0,>=2.0.4; confection<1.0.0,>=0.0.1; setuptools; numpy<3.0.0,>=2.0.0; pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4; packaging>=20.0; cupy>=5.0.0b4; extra == "cuda"; cupy-wheel>=11.0.0; extra == "cuda-autodetect"; cupy-cuda100>=5.0.0b4; extra == "cuda100"; cupy-cuda101>=5.0.0b4; extra == "cuda101"; cupy-cuda102>=5.0.0b4; extra == "cuda102"; cupy-cuda110>=5.0.0b4; extra == "cuda110"; cupy-cuda111>=5.0.0b4; extra == "cuda111"; cupy-cuda112>=5.0.0b4; extra == "cuda112"; cupy-cuda113>=5.0.0b4; extra == "cuda113"; cupy-cuda114>=5.0.0b4; extra == "cuda114"; cupy-cuda115>=5.0.0b4; extra == "cuda115"; cupy-cuda116>=5.0.0b4; extra == "cuda116"; cupy-cuda117>=5.0.0b4; extra == "cuda117"; cupy-cuda11x>=11.0.0; extra == "cuda11x"; cupy-cuda12x>=11.5.0; extra == "cuda12x"; cupy-cuda80>=5.0.0b4; extra == "cuda80"; cupy-cuda90>=5.0.0b4; extra == "cuda90"; cupy-cuda91>=5.0.0b4; extra == "cuda91"; cupy-cuda92>=5.0.0b4; extra == "cuda92"; ml-datasets<0.3.0,>=0.2.0; extra == "datasets"; mxnet<1.6.0,>=1.5.1; extra == "mxnet"; tensorflow<2.6.0,>=2.0.0; extra == "tensorflow"; torch>=1.6.0; extra == "torch" | + + + +8.3.3, 8.3.4, 8.3.5, 8.3.6, 9.0.0.dev0, 9.0.0.dev1, 9.0.0.dev2, 9.0.0.dev3, 9.0.0.dev4, 9.0.0.dev5, 9.0.0, 9.1.0, 9.1.1 | + + + +blis<1.1.0,>=1.0.0; murmurhash<1.1.0,>=1.0.2; cymem<2.1.0,>=2.0.2; preshed<3.1.0,>=3.0.2; wasabi<1.2.0,>=0.8.1; srsly<3.0.0,>=2.4.0; catalogue<2.1.0,>=2.0.4; confection<1.0.0,>=0.0.1; setuptools; numpy<3.0.0,>=2.0.0; pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4; packaging>=20.0; cupy>=5.0.0b4; extra == "cuda"; cupy-wheel>=11.0.0; extra == "cuda-autodetect"; cupy-cuda100>=5.0.0b4; extra == "cuda100"; cupy-cuda101>=5.0.0b4; extra == "cuda101"; cupy-cuda102>=5.0.0b4; extra == "cuda102"; cupy-cuda110>=5.0.0b4; extra == "cuda110"; cupy-cuda111>=5.0.0b4; extra == "cuda111"; cupy-cuda112>=5.0.0b4; extra == "cuda112"; cupy-cuda113>=5.0.0b4; extra == "cuda113"; cupy-cuda114>=5.0.0b4; extra == "cuda114"; cupy-cuda115>=5.0.0b4; extra == "cuda115"; cupy-cuda116>=5.0.0b4; extra == "cuda116"; cupy-cuda117>=5.0.0b4; extra == "cuda117"; cupy-cuda11x>=11.0.0; extra == "cuda11x"; cupy-cuda12x>=11.5.0; extra == "cuda12x"; cupy-cuda80>=5.0.0b4; extra == "cuda80"; cupy-cuda90>=5.0.0b4; extra == "cuda90"; cupy-cuda91>=5.0.0b4; extra == "cuda91"; cupy-cuda92>=5.0.0b4; extra == "cuda92"; ml-datasets<0.3.0,>=0.2.0; extra == "datasets"; mxnet<1.6.0,>=1.5.1; extra == "mxnet"; tensorflow<2.6.0,>=2.0.0; extra == "tensorflow"; torch>=1.6.0; extra == "torch" | + + + +9.1.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| threadpoolctl | + + + +Dependency Package | + + + +EY | + + + +3.5.0 | + + + +None | + + + ++ + + + | 3.6.0 | + + + ++ + + + | 3.6.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| toml | + + + +Dependency Package | + + + +EY | + + + +0.10.2 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.10.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tornado | + + + +Dependency Package | + + + +EY | + + + +6.5.0 | + + + +None | + + + ++ + + + | 6.5.1 | + + + ++ + + + | 6.5.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tqdm | + + + +Dependency Package | + + + +EY | + + + +4.67.1 | + + + +None | + + + +colorama; platform_system == "Windows"; pytest>=6; extra == "dev"; pytest-cov; extra == "dev"; pytest-timeout; extra == "dev"; pytest-asyncio>=0.24; extra == "dev"; nbval; extra == "dev"; requests; extra == "discord"; slack-sdk; extra == "slack"; requests; extra == "telegram"; ipywidgets>=6; extra == "notebook" | + + + ++ + + + | colorama; platform_system == "Windows"; pytest>=6; extra == "dev"; pytest-cov; extra == "dev"; pytest-timeout; extra == "dev"; pytest-asyncio>=0.24; extra == "dev"; nbval; extra == "dev"; requests; extra == "discord"; slack-sdk; extra == "slack"; requests; extra == "telegram"; ipywidgets>=6; extra == "notebook" | + + + +4.67.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| traitlets | + + + +Dependency Package | + + + +EY | + + + +5.14.3 | + + + +None | + + + +myst-parser; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx; extra == "docs"; argcomplete>=3.0.3; extra == "test"; mypy>=1.7.0; extra == "test"; pre-commit; extra == "test"; pytest-mock; extra == "test"; pytest-mypy-testing; extra == "test"; pytest<8.2,>=7.0; extra == "test" | + + + ++ + + + | myst-parser; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx; extra == "docs"; argcomplete>=3.0.3; extra == "test"; mypy>=1.7.0; extra == "test"; pre-commit; extra == "test"; pytest-mock; extra == "test"; pytest-mypy-testing; extra == "test"; pytest<8.2,>=7.0; extra == "test" | + + + +5.14.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| typer | + + + +Dependency Package | + + + +EY | + + + +0.12.5 | + + + +None | + + + +click>=8.0.0; typing-extensions>=3.7.4.3; shellingham>=1.3.0; rich>=10.11.0 | + + + +0.13.0, 0.13.1, 0.14.0, 0.15.0, 0.15.1, 0.15.2, 0.15.3, 0.15.4, 0.16.0 | + + + +click>=8.0.0; typing-extensions>=3.7.4.3; shellingham>=1.3.0; rich>=10.11.0 | + + + +0.16.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| types-python-dateutil | + + + +Dependency Package | + + + +EY | + + + +2.9.0.20241003 | + + + +None | + + + ++ + + + | 2.9.0.20241206, 2.9.0.20250516 | + + + ++ + + + | 2.9.0.20250516 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| typing-extensions | + + + +Dependency Package | + + + +EY | + + + +4.12.2 | + + + +None | + + + ++ + + + | 4.13.0rc1, 4.13.0, 4.13.1, 4.13.2, 4.14.0rc1, 4.14.0 | + + + ++ + + + | 4.14.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| typing-inspect | + + + +Dependency Package | + + + +EY | + + + +0.9.0 | + + + +None | + + + +mypy-extensions (>=0.3.0); typing-extensions (>=3.7.4); typing (>=3.7.4) ; python_version < "3.5" | + + + ++ + + + | mypy-extensions (>=0.3.0); typing-extensions (>=3.7.4); typing (>=3.7.4) ; python_version < "3.5" | + + + +0.9.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tzdata | + + + +Dependency Package | + + + +EY | + + + +2024.2 | + + + +None | + + + ++ + + + | 2025.1, 2025.2 | + + + ++ + + + | 2025.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| urllib3 | + + + +Dependency Package | + + + +EY | + + + +2.5.0 | + + + +None | + + + +brotli>=1.0.9; platform_python_implementation == "CPython" and extra == "brotli"; brotlicffi>=0.8.0; platform_python_implementation != "CPython" and extra == "brotli"; h2<5,>=4; extra == "h2"; pysocks!=1.5.7,<2.0,>=1.5.6; extra == "socks"; zstandard>=0.18.0; extra == "zstd" | + + + ++ + + + | brotli>=1.0.9; platform_python_implementation == "CPython" and extra == "brotli"; brotlicffi>=0.8.0; platform_python_implementation != "CPython" and extra == "brotli"; h2<5,>=4; extra == "h2"; pysocks!=1.5.7,<2.0,>=1.5.6; extra == "socks"; zstandard>=0.18.0; extra == "zstd" | + + + +2.5.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| uvicorn | + + + +Dependency Package | + + + +EY | + + + +0.31.0 | + + + +None | + + + +click>=7.0; h11>=0.8; typing-extensions>=4.0; python_version < "3.11"; colorama>=0.4; sys_platform == "win32" and extra == "standard"; httptools>=0.6.3; extra == "standard"; python-dotenv>=0.13; extra == "standard"; pyyaml>=5.1; extra == "standard"; uvloop>=0.15.1; (sys_platform != "win32" and (sys_platform != "cygwin" and platform_python_implementation != "PyPy")) and extra == "standard"; watchfiles>=0.13; extra == "standard"; websockets>=10.4; extra == "standard" | + + + +0.31.1, 0.32.0, 0.32.1, 0.33.0, 0.34.0, 0.34.1, 0.34.2, 0.34.3 | + + + +click>=7.0; h11>=0.8; typing-extensions>=4.0; python_version < "3.11"; colorama>=0.4; sys_platform == "win32" and extra == "standard"; httptools>=0.6.3; extra == "standard"; python-dotenv>=0.13; extra == "standard"; pyyaml>=5.1; extra == "standard"; uvloop>=0.15.1; (sys_platform != "win32" and (sys_platform != "cygwin" and platform_python_implementation != "PyPy")) and extra == "standard"; watchfiles>=0.13; extra == "standard"; websockets>=10.4; extra == "standard" | + + + +0.34.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| wasabi | + + + +Dependency Package | + + + +EY | + + + +1.1.3 | + + + +None | + + + +typing-extensions<5.0.0,>=3.7.4.1; python_version < "3.8"; colorama>=0.4.6; sys_platform == "win32" and python_version >= "3.7" | + + + ++ + + + | typing-extensions<5.0.0,>=3.7.4.1; python_version < "3.8"; colorama>=0.4.6; sys_platform == "win32" and python_version >= "3.7" | + + + +1.1.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| watchdog | + + + +Dependency Package | + + + +EY | + + + +4.0.1 | + + + +None | + + + +PyYAML>=3.10; extra == "watchmedo" | + + + +4.0.2, 5.0.0, 5.0.1, 5.0.2, 5.0.3, 6.0.0 | + + + +PyYAML>=3.10; extra == "watchmedo" | + + + +6.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| watchfiles | + + + +Dependency Package | + + + +EY | + + + +0.24.0 | + + + +None | + + + +anyio>=3.0.0 | + + + +1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5, 1.1.0 | + + + +anyio>=3.0.0 | + + + +1.1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| wcwidth | + + + +Dependency Package | + + + +EY | + + + +0.2.13 | + + + +None | + + + +backports.functools-lru-cache >=1.2.1 ; python_version < "3.2" | + + + ++ + + + | backports.functools-lru-cache >=1.2.1 ; python_version < "3.2" | + + + +0.2.13 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| weasel | + + + +Dependency Package | + + + +EY | + + + +0.4.1 | + + + +None | + + + +confection<0.2.0,>=0.0.4; packaging>=20.0; wasabi<1.2.0,>=0.9.1; srsly<3.0.0,>=2.4.3; typer<1.0.0,>=0.3.0; cloudpathlib<1.0.0,>=0.7.0; smart-open<8.0.0,>=5.2.1; requests<3.0.0,>=2.13.0; pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4 | + + + ++ + + + | confection<0.2.0,>=0.0.4; packaging>=20.0; wasabi<1.2.0,>=0.9.1; srsly<3.0.0,>=2.4.3; typer<1.0.0,>=0.3.0; cloudpathlib<1.0.0,>=0.7.0; smart-open<8.0.0,>=5.2.1; requests<3.0.0,>=2.13.0; pydantic!=1.8,!=1.8.1,<3.0.0,>=1.7.4 | + + + +0.4.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| webencodings | + + + +Dependency Package | + + + +EY | + + + +0.5.1 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.5.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| websocket-client | + + + +Dependency Package | + + + +EY | + + + +1.8.0 | + + + +None | + + + +Sphinx>=6.0; extra == "docs"; sphinx-rtd-theme>=1.1.0; extra == "docs"; myst-parser>=2.0.0; extra == "docs"; python-socks; extra == "optional"; wsaccel; extra == "optional"; websockets; extra == "test" | + + + ++ + + + | Sphinx>=6.0; extra == "docs"; sphinx-rtd-theme>=1.1.0; extra == "docs"; myst-parser>=2.0.0; extra == "docs"; python-socks; extra == "optional"; wsaccel; extra == "optional"; websockets; extra == "test" | + + + +1.8.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| wrapt | + + + +Dependency Package | + + + +EY | + + + +1.16.0 | + + + +None | + + + ++ + + + | 1.17.0.dev3, 1.17.0.dev4, 1.17.0rc1, 1.17.0, 1.17.1, 1.17.2 | + + + ++ + + + | 1.17.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| yarl | + + + +Dependency Package | + + + +EY | + + + +1.18.3 | + + + +None | + + + +idna>=2.0; multidict>=4.0; propcache>=0.2.1 | + + + +1.19.0, 1.20.0, 1.20.1 | + + + +idna>=2.0; multidict>=4.0; propcache>=0.2.1 | + + + +1.20.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| zipp | + + + +Dependency Package | + + + +EY | + + + +3.20.2 | + + + +None | + + + +pytest!=8.1.*,>=6; extra == "test"; jaraco.itertools; extra == "test"; jaraco.functools; extra == "test"; more_itertools; extra == "test"; big-O; extra == "test"; pytest-ignore-flaky; extra == "test"; jaraco.test; extra == "test"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; pytest-checkdocs>=2.4; extra == "check"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"; pytest-cov; extra == "cover"; pytest-enabler>=2.2; extra == "enabler"; pytest-mypy; extra == "type" | + + + +3.21.0, 3.22.0, 3.23.0 | + + + +pytest!=8.1.*,>=6; extra == "test"; jaraco.itertools; extra == "test"; jaraco.functools; extra == "test"; more_itertools; extra == "test"; big-O; extra == "test"; pytest-ignore-flaky; extra == "test"; jaraco.test; extra == "test"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; pytest-checkdocs>=2.4; extra == "check"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"; pytest-cov; extra == "cover"; pytest-enabler>=2.2; extra == "enabler"; pytest-mypy; extra == "type" | + + + +3.23.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| aniso8601 | + + + +Base Package | + + + +I&S | + + + +9.0.1 | + + + +{'base_package': 'aniso8601==9.0.1', 'dependencies': []} | + + + +black; extra == "dev"; coverage; extra == "dev"; isort; extra == "dev"; pre-commit; extra == "dev"; pyenchant; extra == "dev"; pylint; extra == "dev" | + + + +10.0.0, 10.0.1 | + + + +black; extra == "dev"; coverage; extra == "dev"; isort; extra == "dev"; pre-commit; extra == "dev"; pyenchant; extra == "dev"; pylint; extra == "dev" | + + + +10.0.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| appnope | + + + +Base Package | + + + +I&S | + + + +0.1.4 | + + + +{'base_package': 'appnope==0.1.4', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 0.1.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| AST | + + + +Base Package | + + + +I&S | + + + +0.0.2 | + + + +{'base_package': 'AST==0.0.2', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 0.0.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| asyncio | + + + +Base Package | + + + +I&S | + + + +3.4.3 | + + + +{'base_package': 'asyncio==3.4.3', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 3.4.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| bandit | + + + +Base Package | + + + +I&S | + + + +1.7.9 | + + + +{'base_package': 'bandit==1.7.9', 'dependencies': ['PyYAML==5.3.1', 'stevedore==1.20.0', 'colorama==0.3.9', 'GitPython==3.1.30', 'sarif-om==1.0.4', 'jschema-to-python==1.2.3', 'coverage==4.5.4', 'fixtures==3.0.0', 'flake8==4.0.0', 'stestr==2.5.0', 'testscenarios==0.5.0', 'testtools==2.3.0', 'beautifulsoup4==4.8.0', 'pylint==1.9.4', 'tomli==1.1.0']} | + + + +PyYAML>=5.3.1; stevedore>=1.20.0; rich; colorama>=0.3.9; platform_system == "Windows"; GitPython>=3.1.30; extra == "baseline"; sarif-om>=1.0.4; extra == "sarif"; jschema-to-python>=1.2.3; extra == "sarif"; coverage>=4.5.4; extra == "test"; fixtures>=3.0.0; extra == "test"; flake8>=4.0.0; extra == "test"; stestr>=2.5.0; extra == "test"; testscenarios>=0.5.0; extra == "test"; testtools>=2.3.0; extra == "test"; beautifulsoup4>=4.8.0; extra == "test"; pylint==1.9.4; extra == "test"; tomli>=1.1.0; python_version < "3.11" and extra == "toml"; PyYAML; extra == "yaml" | + + + +1.7.10, 1.8.0, 1.8.1, 1.8.2, 1.8.3, 1.8.5 | + + + +PyYAML>=5.3.1; stevedore>=1.20.0; rich; colorama>=0.3.9; platform_system == "Windows"; GitPython>=3.1.30; extra == "baseline"; sarif-om>=1.0.4; extra == "sarif"; jschema-to-python>=1.2.3; extra == "sarif"; coverage>=4.5.4; extra == "test"; fixtures>=3.0.0; extra == "test"; flake8>=4.0.0; extra == "test"; stestr>=2.5.0; extra == "test"; testscenarios>=0.5.0; extra == "test"; testtools>=2.3.0; extra == "test"; beautifulsoup4>=4.8.0; extra == "test"; pylint==1.9.4; extra == "test"; tomli>=1.1.0; python_version < "3.11" and extra == "toml"; PyYAML; extra == "yaml" | + + + +1.8.5 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| configparser | + + + +Base Package | + + + +I&S | + + + +7.0.0 | + + + +{'base_package': 'configparser==7.0.0', 'dependencies': ['pytest==6', 'sphinx==3.5', 'jaraco.packaging==9.3', 'rst.linker==1.9', 'jaraco.tidelift==1.4', 'pytest-checkdocs==2.4', 'pytest-ruff==0.2.1', 'pytest-enabler==2.2']} | + + + +pytest!=8.1.*,>=6; extra == "test"; types-backports; extra == "test"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; pytest-checkdocs>=2.4; extra == "check"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"; pytest-cov; extra == "cover"; pytest-enabler>=2.2; extra == "enabler"; pytest-mypy; extra == "type" | + + + +7.0.1, 7.1.0, 7.2.0 | + + + +pytest!=8.1.*,>=6; extra == "test"; types-backports; extra == "test"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; pytest-checkdocs>=2.4; extra == "check"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"; pytest-cov; extra == "cover"; pytest-enabler>=2.2; extra == "enabler"; pytest-mypy; extra == "type" | + + + +7.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| dash-core-components | + + + +Base Package | + + + +I&S | + + + +2.0.0 | + + + +{'base_package': 'dash-core-components==2.0.0', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 2.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| dash-html-components | + + + +Base Package | + + + +I&S | + + + +2.0.0 | + + + +{'base_package': 'dash-html-components==2.0.0', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 2.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| dash-table | + + + +Base Package | + + + +I&S | + + + +5.0.0 | + + + +{'base_package': 'dash-table==5.0.0', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 5.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| deepdiff | + + + +Base Package | + + + +I&S | + + + +8.0.1 | + + + +{'base_package': 'deepdiff==8.0.1', 'dependencies': ['orderly-set==5.4.1', 'click==8.1.0', 'pyyaml==6.0.0', 'coverage==7.6.0', 'bump2version==1.0.0', 'jsonpickle==4.0.0', 'ipdb==0.13.0', 'numpy==2.2.0', 'numpy==2.0', 'python-dateutil==2.9.0', 'orjson==3.10.0', 'tomli==2.2.0', 'tomli-w==1.2.0', 'pandas==2.2.0', 'polars==1.21.0', 'nox==2025.5.1', 'Sphinx==6.2.0', 'sphinx-sitemap==2.6.0', 'sphinxemoji==0.3.0', 'flake8==7.1.0', 'flake8-pyproject==1.2.3', 'pydantic==2.10.0', 'pytest==8.3.0', 'pytest-benchmark==5.1.0', 'pytest-cov==6.0.0', 'python-dotenv==1.0.0']} | + + + +orderly-set<6,>=5.4.1; click~=8.1.0; extra == "cli"; pyyaml~=6.0.0; extra == "cli"; coverage~=7.6.0; extra == "coverage"; bump2version~=1.0.0; extra == "dev"; jsonpickle~=4.0.0; extra == "dev"; ipdb~=0.13.0; extra == "dev"; numpy~=2.2.0; extra == "dev" and python_version >= "3.10"; numpy~=2.0; extra == "dev" and python_version < "3.10"; python-dateutil~=2.9.0; extra == "dev"; orjson~=3.10.0; extra == "dev"; tomli~=2.2.0; extra == "dev"; tomli-w~=1.2.0; extra == "dev"; pandas~=2.2.0; extra == "dev"; polars~=1.21.0; extra == "dev"; nox==2025.5.1; extra == "dev"; Sphinx~=6.2.0; extra == "docs"; sphinx-sitemap~=2.6.0; extra == "docs"; sphinxemoji~=0.3.0; extra == "docs"; orjson; extra == "optimize"; flake8~=7.1.0; extra == "static"; flake8-pyproject~=1.2.3; extra == "static"; pydantic~=2.10.0; extra == "static"; pytest~=8.3.0; extra == "test"; pytest-benchmark~=5.1.0; extra == "test"; pytest-cov~=6.0.0; extra == "test"; python-dotenv~=1.0.0; extra == "test" | + + + +8.1.0, 8.1.1, 8.2.0, 8.3.0, 8.4.0, 8.4.1, 8.4.2, 8.5.0 | + + + +orderly-set<6,>=5.4.1; click~=8.1.0; extra == "cli"; pyyaml~=6.0.0; extra == "cli"; coverage~=7.6.0; extra == "coverage"; bump2version~=1.0.0; extra == "dev"; jsonpickle~=4.0.0; extra == "dev"; ipdb~=0.13.0; extra == "dev"; numpy~=2.2.0; extra == "dev" and python_version >= "3.10"; numpy~=2.0; extra == "dev" and python_version < "3.10"; python-dateutil~=2.9.0; extra == "dev"; orjson~=3.10.0; extra == "dev"; tomli~=2.2.0; extra == "dev"; tomli-w~=1.2.0; extra == "dev"; pandas~=2.2.0; extra == "dev"; polars~=1.21.0; extra == "dev"; nox==2025.5.1; extra == "dev"; Sphinx~=6.2.0; extra == "docs"; sphinx-sitemap~=2.6.0; extra == "docs"; sphinxemoji~=0.3.0; extra == "docs"; orjson; extra == "optimize"; flake8~=7.1.0; extra == "static"; flake8-pyproject~=1.2.3; extra == "static"; pydantic~=2.10.0; extra == "static"; pytest~=8.3.0; extra == "test"; pytest-benchmark~=5.1.0; extra == "test"; pytest-cov~=6.0.0; extra == "test"; python-dotenv~=1.0.0; extra == "test" | + + + +8.5.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| docx | + + + +Base Package | + + + +I&S | + + + +0.2.4 | + + + +{'base_package': 'docx==0.2.4', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 0.2.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| entrypoints | + + + +Base Package | + + + +I&S | + + + +0.4 | + + + +{'base_package': 'entrypoints==0.4', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 0.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| faiss | + + + +Base Package | + + + +I&S | + + + +1.5.3 | + + + +{'base_package': 'faiss==1.5.3', 'dependencies': []} | + + + +numpy | + + + ++ + + + | numpy | + + + +1.5.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| faiss-cpu | + + + +Base Package | + + + +I&S | + + + +1.7.4 | + + + +{'base_package': 'faiss-cpu==1.7.4', 'dependencies': ['numpy==1.25.0']} | + + + +numpy<3.0,>=1.25.0; packaging | + + + +1.8.0, 1.8.0.post1, 1.9.0, 1.9.0.post1, 1.10.0, 1.11.0 | + + + +numpy<3.0,>=1.25.0; packaging | + + + +1.11.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| faiss-gpu | + + + +Base Package | + + + +I&S | + + + +1.7.2 | + + + +{'base_package': 'faiss-gpu==1.7.2', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 1.7.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| flake8 | + + + +Base Package | + + + +I&S | + + + +7.0.0 | + + + +{'base_package': 'flake8==7.0.0', 'dependencies': ['mccabe==0.7.0', 'pycodestyle==2.14.0', 'pyflakes==3.4.0']} | + + + +mccabe<0.8.0,>=0.7.0; pycodestyle<2.15.0,>=2.14.0; pyflakes<3.5.0,>=3.4.0 | + + + +7.1.0, 7.1.1, 7.1.2, 7.2.0, 7.3.0 | + + + +mccabe<0.8.0,>=0.7.0; pycodestyle<2.15.0,>=2.14.0; pyflakes<3.5.0,>=3.4.0 | + + + +7.3.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| fuzzywuzzy | + + + +Base Package | + + + +I&S | + + + +0.18.0 | + + + +{'base_package': 'fuzzywuzzy==0.18.0', 'dependencies': ['python-levenshtein==0.12']} | + + + +python-levenshtein (>=0.12) ; extra == 'speedup' | + + + ++ + + + | python-levenshtein (>=0.12) ; extra == 'speedup' | + + + +0.18.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| gensim | + + + +Base Package | + + + +I&S | + + + +3.8.3 | + + + +{'base_package': 'gensim==3.8.3', 'dependencies': ['numpy==1.18.5', 'scipy==1.7.0', 'smart-open==1.8.1', 'Pyro4==4.27', 'Pyro4==4.27', 'visdom==0.1.8', 'sphinx==5.1.1', 'sphinx-gallery==0.11.1', 'sphinxcontrib.programoutput==0.17', 'sphinxcontrib-napoleon==0.7', 'visdom==0.1.8']} | + + + +numpy<2.0,>=1.18.5; scipy<1.14.0,>=1.7.0; smart-open>=1.8.1; Pyro4>=4.27; extra == "distributed"; pytest; extra == "docs"; pytest-cov; extra == "docs"; testfixtures; extra == "docs"; POT; extra == "docs"; Pyro4>=4.27; extra == "docs"; visdom!=0.1.8.7,>=0.1.8; extra == "docs"; sphinx==5.1.1; extra == "docs"; sphinx-gallery==0.11.1; extra == "docs"; sphinxcontrib.programoutput==0.17; extra == "docs"; sphinxcontrib-napoleon==0.7; extra == "docs"; matplotlib; extra == "docs"; memory-profiler; extra == "docs"; annoy; extra == "docs"; Pyro4; extra == "docs"; scikit-learn; extra == "docs"; nltk; extra == "docs"; statsmodels; extra == "docs"; pandas; extra == "docs"; pytest; extra == "test"; pytest-cov; extra == "test"; testfixtures; extra == "test"; POT; extra == "test"; visdom!=0.1.8.7,>=0.1.8; extra == "test"; pytest; extra == "test-win"; pytest-cov; extra == "test-win"; testfixtures; extra == "test-win"; POT; extra == "test-win" | + + + +4.0.0, 4.0.1, 4.1.0, 4.1.1, 4.1.2, 4.2.0, 4.3.0, 4.3.1, 4.3.2, 4.3.3 | + + + +numpy<2.0,>=1.18.5; scipy<1.14.0,>=1.7.0; smart-open>=1.8.1; Pyro4>=4.27; extra == "distributed"; pytest; extra == "docs"; pytest-cov; extra == "docs"; testfixtures; extra == "docs"; POT; extra == "docs"; Pyro4>=4.27; extra == "docs"; visdom!=0.1.8.7,>=0.1.8; extra == "docs"; sphinx==5.1.1; extra == "docs"; sphinx-gallery==0.11.1; extra == "docs"; sphinxcontrib.programoutput==0.17; extra == "docs"; sphinxcontrib-napoleon==0.7; extra == "docs"; matplotlib; extra == "docs"; memory-profiler; extra == "docs"; annoy; extra == "docs"; Pyro4; extra == "docs"; scikit-learn; extra == "docs"; nltk; extra == "docs"; statsmodels; extra == "docs"; pandas; extra == "docs"; pytest; extra == "test"; pytest-cov; extra == "test"; testfixtures; extra == "test"; POT; extra == "test"; visdom!=0.1.8.7,>=0.1.8; extra == "test"; pytest; extra == "test-win"; pytest-cov; extra == "test-win"; testfixtures; extra == "test-win"; POT; extra == "test-win" | + + + +4.3.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| graphframes | + + + +Base Package | + + + +I&S | + + + +0.6 | + + + +{'base_package': 'graphframes==0.6', 'dependencies': []} | + + + +numpy; nose | + + + ++ + + + | numpy; nose | + + + +0.6 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| invoke | + + + +Base Package | + + + +I&S | + + + +2.2.0 | + + + +{'base_package': 'invoke==2.2.0', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 2.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| ipython-genutils | + + + +Base Package | + + + +I&S | + + + +0.2.0 | + + + +{'base_package': 'ipython-genutils==0.2.0', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 0.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jaraco.classes | + + + +Base Package | + + + +I&S | + + + +3.4.0 | + + + +{'base_package': 'jaraco.classes==3.4.0', 'dependencies': ['sphinx==3.5', 'jaraco.packaging==9.3', 'rst.linker==1.9', 'jaraco.tidelift==1.4', 'pytest==6', 'pytest-checkdocs==2.4', 'pytest-enabler==2.2', 'pytest-ruff==0.2.1']} | + + + +more-itertools; sphinx>=3.5; extra == "docs"; jaraco.packaging>=9.3; extra == "docs"; rst.linker>=1.9; extra == "docs"; furo; extra == "docs"; sphinx-lint; extra == "docs"; jaraco.tidelift>=1.4; extra == "docs"; pytest>=6; extra == "testing"; pytest-checkdocs>=2.4; extra == "testing"; pytest-cov; extra == "testing"; pytest-mypy; extra == "testing"; pytest-enabler>=2.2; extra == "testing"; pytest-ruff>=0.2.1; extra == "testing" | + + + ++ + + + | more-itertools; sphinx>=3.5; extra == "docs"; jaraco.packaging>=9.3; extra == "docs"; rst.linker>=1.9; extra == "docs"; furo; extra == "docs"; sphinx-lint; extra == "docs"; jaraco.tidelift>=1.4; extra == "docs"; pytest>=6; extra == "testing"; pytest-checkdocs>=2.4; extra == "testing"; pytest-cov; extra == "testing"; pytest-mypy; extra == "testing"; pytest-enabler>=2.2; extra == "testing"; pytest-ruff>=0.2.1; extra == "testing" | + + + +3.4.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jaraco.context | + + + +Base Package | + + + +I&S | + + + +6.0.1 | + + + +{'base_package': 'jaraco.context==6.0.1', 'dependencies': ['sphinx==3.5', 'jaraco.packaging==9.3', 'rst.linker==1.9', 'jaraco.tidelift==1.4', 'pytest==6', 'pytest-checkdocs==2.4', 'pytest-enabler==2.2', 'pytest-ruff==0.2.1']} | + + + +backports.tarfile; python_version < "3.12"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; pytest!=8.1.*,>=6; extra == "test"; pytest-checkdocs>=2.4; extra == "test"; pytest-cov; extra == "test"; pytest-mypy; extra == "test"; pytest-enabler>=2.2; extra == "test"; portend; extra == "test"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "test" | + + + ++ + + + | backports.tarfile; python_version < "3.12"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; pytest!=8.1.*,>=6; extra == "test"; pytest-checkdocs>=2.4; extra == "test"; pytest-cov; extra == "test"; pytest-mypy; extra == "test"; pytest-enabler>=2.2; extra == "test"; portend; extra == "test"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "test" | + + + +6.0.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jaraco.functools | + + + +Base Package | + + + +I&S | + + + +4.1.0 | + + + +{'base_package': 'jaraco.functools==4.1.0', 'dependencies': ['pytest==6', 'sphinx==3.5', 'jaraco.packaging==9.3', 'rst.linker==1.9', 'jaraco.tidelift==1.4', 'pytest-checkdocs==2.4', 'pytest-ruff==0.2.1', 'pytest-enabler==2.2']} | + + + +more_itertools; pytest!=8.1.*,>=6; extra == "test"; jaraco.classes; extra == "test"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; pytest-checkdocs>=2.4; extra == "check"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"; pytest-cov; extra == "cover"; pytest-enabler>=2.2; extra == "enabler"; pytest-mypy; extra == "type" | + + + +4.2.0, 4.2.1 | + + + +more_itertools; pytest!=8.1.*,>=6; extra == "test"; jaraco.classes; extra == "test"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; pytest-checkdocs>=2.4; extra == "check"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"; pytest-cov; extra == "cover"; pytest-enabler>=2.2; extra == "enabler"; pytest-mypy; extra == "type" | + + + +4.2.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jsonpath-ng | + + + +Base Package | + + + +I&S | + + + +1.6.1 | + + + +{'base_package': 'jsonpath-ng==1.6.1', 'dependencies': []} | + + + ++ + + + | 1.7.0 | + + + ++ + + + | 1.7.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jsonpath-python | + + + +Base Package | + + + +I&S | + + + +1.0.6 | + + + +{'base_package': 'jsonpath-python==1.0.6', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 1.0.6 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| kaleido | + + + +Base Package | + + + +I&S | + + + +0.2.1 | + + + +{'base_package': 'kaleido==0.2.1', 'dependencies': ['choreographer==1.0.5', 'logistro==1.0.8', 'orjson==3.10.15']} | + + + +choreographer>=1.0.5; logistro>=1.0.8; orjson>=3.10.15; packaging | + + + +0.2.1.post1, 0.4.0rc1, 0.4.0rc2, 0.4.0rc3, 0.4.0rc4, 0.4.0rc5, 0.4.0, 0.4.1, 0.4.2, 1.0.0rc0, 1.0.0rc11, 1.0.0rc13, 1.0.0rc15, 1.0.0 | + + + +choreographer>=1.0.5; logistro>=1.0.8; orjson>=3.10.15; packaging | + + + +1.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| ldap3 | + + + +Base Package | + + + +I&S | + + + +2.9.1 | + + + +{'base_package': 'ldap3==2.9.1', 'dependencies': ['pyasn1==0.4.6']} | + + + +pyasn1 (>=0.4.6) | + + + +2.10.2rc2 | + + + +pyasn1 (>=0.4.6) | + + + +2.10.2rc2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| lightfm | + + + +Base Package | + + + +I&S | + + + +1.17 | + + + +{'base_package': 'lightfm==1.17', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 1.17 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| lightgbm | + + + +Base Package | + + + +I&S | + + + +4.3.0 | + + + +{'base_package': 'lightgbm==4.3.0', 'dependencies': ['numpy==1.17.0', 'cffi==1.15.1', 'pyarrow==6.0.1', 'dask==2.0.0', 'pandas==0.24.0', 'pandas==0.24.0', 'scikit-learn==0.24.2']} | + + + +numpy>=1.17.0; scipy; cffi>=1.15.1; extra == "arrow"; pyarrow>=6.0.1; extra == "arrow"; dask[array,dataframe,distributed]>=2.0.0; extra == "dask"; pandas>=0.24.0; extra == "dask"; pandas>=0.24.0; extra == "pandas"; scikit-learn>=0.24.2; extra == "scikit-learn" | + + + +4.4.0, 4.5.0, 4.6.0 | + + + +numpy>=1.17.0; scipy; cffi>=1.15.1; extra == "arrow"; pyarrow>=6.0.1; extra == "arrow"; dask[array,dataframe,distributed]>=2.0.0; extra == "dask"; pandas>=0.24.0; extra == "dask"; pandas>=0.24.0; extra == "pandas"; scikit-learn>=0.24.2; extra == "scikit-learn" | + + + +4.6.0 | + + + +Yes | + + + +CVE-2024-43598, CVSS_V3, LightGBM Remote Code Execution Vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H/E:U/RL:O/RC:C, affects: >=1.0.0,<4.6.0 CVE-2024-43598, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<4.6.0 |
+
+
+
+ Yes | + + + +4.5.0: CVE-2024-43598, CVSS_V3, LightGBM Remote Code Execution Vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H/E:U/RL:O/RC:C, affects: >=1.0.0,<4.6.0 CVE-2024-43598, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<4.6.0; 4.4.0: CVE-2024-43598, CVSS_V3, LightGBM Remote Code Execution Vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H/E:U/RL:O/RC:C, affects: >=1.0.0,<4.6.0 CVE-2024-43598, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<4.6.0 |
+
+
+
+ 4.6.0 | + + + +{'base_package': 'lightgbm==4.6.0', 'dependencies': ['numpy==1.26.4', 'scipy==1.16.0', 'cffi==1.17.1']} | + + + +Not Used | + + +
| mongomock-motor | + + + +Base Package | + + + +I&S | + + + +0.0.29 | + + + +{'base_package': 'mongomock-motor==0.0.29', 'dependencies': ['mongomock==4.1.2', 'motor==2.5']} | + + + +mongomock<5.0.0,>=4.1.2; motor>=2.5 | + + + +0.0.30, 0.0.31, 0.0.32, 0.0.33, 0.0.34, 0.0.35, 0.0.36 | + + + +mongomock<5.0.0,>=4.1.2; motor>=2.5 | + + + +0.0.36 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| monotonic | + + + +Base Package | + + + +I&S | + + + +1.6 | + + + +{'base_package': 'monotonic==1.6', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 1.6 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| mypy | + + + +Base Package | + + + +I&S | + + + +1.10.0 | + + + +{'base_package': 'mypy==1.10.0', 'dependencies': ['typing_extensions==4.6.0', 'mypy_extensions==1.0.0', 'pathspec==0.9.0', 'tomli==1.1.0', 'psutil==4.0', 'setuptools==50']} | + + + +typing_extensions>=4.6.0; mypy_extensions>=1.0.0; pathspec>=0.9.0; tomli>=1.1.0; python_version < "3.11"; psutil>=4.0; extra == "dmypy"; setuptools>=50; extra == "mypyc"; lxml; extra == "reports"; pip; extra == "install-types"; orjson; extra == "faster-cache" | + + + +1.10.1, 1.11.0, 1.11.1, 1.11.2, 1.12.0, 1.12.1, 1.13.0, 1.14.0, 1.14.1, 1.15.0, 1.16.0, 1.16.1 | + + + +typing_extensions>=4.6.0; mypy_extensions>=1.0.0; pathspec>=0.9.0; tomli>=1.1.0; python_version < "3.11"; psutil>=4.0; extra == "dmypy"; setuptools>=50; extra == "mypyc"; lxml; extra == "reports"; pip; extra == "install-types"; orjson; extra == "faster-cache" | + + + +1.16.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| neo4j | + + + +Base Package | + + + +I&S | + + + +5.24.0 | + + + +{'base_package': 'neo4j==5.24.0', 'dependencies': ['numpy==1.7.0', 'pandas==1.1.0', 'numpy==1.7.0', 'pyarrow==1.0.0']} | + + + +pytz; numpy<3.0.0,>=1.7.0; extra == "numpy"; pandas<3.0.0,>=1.1.0; extra == "pandas"; numpy<3.0.0,>=1.7.0; extra == "pandas"; pyarrow>=1.0.0; extra == "pyarrow" | + + + +5.25.0, 5.26.0, 5.27.0, 5.28.0, 5.28.1 | + + + +pytz; numpy<3.0.0,>=1.7.0; extra == "numpy"; pandas<3.0.0,>=1.1.0; extra == "pandas"; numpy<3.0.0,>=1.7.0; extra == "pandas"; pyarrow>=1.0.0; extra == "pyarrow" | + + + +5.28.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| opencv-python | + + + +Base Package | + + + +I&S | + + + +4.2.0.34 | + + + +{'base_package': 'opencv-python==4.2.0.34', 'dependencies': ['numpy==1.13.3', 'numpy==1.21.0', 'numpy==1.21.2', 'numpy==1.21.4', 'numpy==1.23.5', 'numpy==1.26.0', 'numpy==1.19.3', 'numpy==1.17.0', 'numpy==1.17.3', 'numpy==1.19.3']} | + + + +numpy>=1.13.3; python_version < "3.7"; numpy>=1.21.0; python_version <= "3.9" and platform_system == "Darwin" and platform_machine == "arm64"; numpy>=1.21.2; python_version >= "3.10"; numpy>=1.21.4; python_version >= "3.10" and platform_system == "Darwin"; numpy>=1.23.5; python_version >= "3.11"; numpy>=1.26.0; python_version >= "3.12"; numpy>=1.19.3; python_version >= "3.6" and platform_system == "Linux" and platform_machine == "aarch64"; numpy>=1.17.0; python_version >= "3.7"; numpy>=1.17.3; python_version >= "3.8"; numpy>=1.19.3; python_version >= "3.9" | + + + +4.3.0.36, 4.3.0.38, 4.4.0.40, 4.4.0.42, 4.4.0.44, 4.4.0.46, 4.5.1.48, 4.5.2.52, 4.5.2.54, 4.5.3.56, 4.5.4.58, 4.5.4.60, 4.5.5.62, 4.5.5.64, 4.6.0.66, 4.7.0.68, 4.7.0.72, 4.8.0.74, 4.8.0.76, 4.8.1.78, 4.9.0.80, 4.10.0.82, 4.10.0.84, 4.11.0.86 | + + + +numpy>=1.13.3; python_version < "3.7"; numpy>=1.21.0; python_version <= "3.9" and platform_system == "Darwin" and platform_machine == "arm64"; numpy>=1.21.2; python_version >= "3.10"; numpy>=1.21.4; python_version >= "3.10" and platform_system == "Darwin"; numpy>=1.23.5; python_version >= "3.11"; numpy>=1.26.0; python_version >= "3.12"; numpy>=1.19.3; python_version >= "3.6" and platform_system == "Linux" and platform_machine == "aarch64"; numpy>=1.17.0; python_version >= "3.7"; numpy>=1.17.3; python_version >= "3.8"; numpy>=1.19.3; python_version >= "3.9" | + + + +4.11.0.86 | + + + +Yes | + + + +GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78 |
+
+
+
+ Yes | + + + +4.3.0.36: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.5.4.58: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.3.0.38: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.8.0.76: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.8.0.74: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.5.5.62: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.4.0.40: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.4.0.46: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.4.0.44: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.5.5.64: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.7.0.72: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.5.2.52: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.5.2.54: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.5.4.60: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.5.1.48: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.7.0.68: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.6.0.66: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.5.3.56: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78; 4.4.0.42: GHSA-qr4w-53vh-m672, CVSS_V3, opencv-python bundled libwebp binaries in wheels that are vulnerable to CVE-2023-4863, CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.8.1.78 PYSEC-2023-183, UNKNOWN, , , affects: >=0,<4.8.1.78 |
+
+
+
+ 4.11.0.86 | + + + +{'base_package': 'opencv-python==4.11.0.86', 'dependencies': ['numpy==1.26.4']} | + + + +Not Used | + + +
| openpyxl | + + + +Base Package | + + + +I&S | + + + +3.1.2 | + + + +{'base_package': 'openpyxl==3.1.2', 'dependencies': []} | + + + +et-xmlfile | + + + +3.1.3, 3.1.4, 3.1.5, 3.2.0b1 | + + + +et-xmlfile | + + + +3.2.0b1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pdf2image | + + + +Base Package | + + + +I&S | + + + +1.13.1 | + + + +{'base_package': 'pdf2image==1.13.1', 'dependencies': []} | + + + +pillow | + + + +1.14.0, 1.15.0, 1.15.1, 1.16.0, 1.16.2, 1.16.3, 1.17.0 | + + + +pillow | + + + +1.17.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pdfminer | + + + +Base Package | + + + +I&S | + + + +20191125 | + + + +{'base_package': 'pdfminer==20191125', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 20191125 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pdfrw | + + + +Base Package | + + + +I&S | + + + +0.4 | + + + +{'base_package': 'pdfrw==0.4', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 0.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pyaml | + + + +Base Package | + + + +I&S | + + + +23.12.0 | + + + +{'base_package': 'pyaml==23.12.0', 'dependencies': []} | + + + +PyYAML; unidecode; extra == "anchors" | + + + +24.4.0, 24.7.0, 24.9.0, 24.12.0, 24.12.1, 25.1.0, 25.5.0 | + + + +PyYAML; unidecode; extra == "anchors" | + + + +25.5.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pyarrow-hotfix | + + + +Base Package | + + + +I&S | + + + +0.6 | + + + +{'base_package': 'pyarrow-hotfix==0.6', 'dependencies': []} | + + + ++ + + + | 0.7 | + + + ++ + + + | 0.7 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pyctuator | + + + +Base Package | + + + +I&S | + + + +1.2.0 | + + + +{'base_package': 'pyctuator==1.2.0', 'dependencies': ['psutil==5.6', 'flask==2.3.0', 'fastapi==0.100.1', 'uvicorn==0.23.0', 'sqlalchemy==2.0.4', 'PyMySQL==1.0.2', 'cryptography==39.0.1', 'redis==4.3.4', 'aiohttp==3.6.2', 'tornado==6.0.4']} | + + + +psutil (>=5.6,<6.0); extra == "psutil"; flask (>=2.3.0,<3.0.0); extra == "flask"; fastapi (>=0.100.1,<0.101.0); extra == "fastapi"; uvicorn (>=0.23.0,<0.24.0); extra == "fastapi"; sqlalchemy (>=2.0.4,<3.0.0); extra == "db"; PyMySQL (>=1.0.2,<2.0.0); extra == "db"; cryptography (>=39.0.1,<40.0.0); extra == "db"; redis (>=4.3.4,<5.0.0); extra == "redis"; aiohttp (>=3.6.2,<4.0.0); extra == "aiohttp"; tornado (>=6.0.4,<7.0.0); extra == "tornado" | + + + ++ + + + | psutil (>=5.6,<6.0); extra == "psutil"; flask (>=2.3.0,<3.0.0); extra == "flask"; fastapi (>=0.100.1,<0.101.0); extra == "fastapi"; uvicorn (>=0.23.0,<0.24.0); extra == "fastapi"; sqlalchemy (>=2.0.4,<3.0.0); extra == "db"; PyMySQL (>=1.0.2,<2.0.0); extra == "db"; cryptography (>=39.0.1,<40.0.0); extra == "db"; redis (>=4.3.4,<5.0.0); extra == "redis"; aiohttp (>=3.6.2,<4.0.0); extra == "aiohttp"; tornado (>=6.0.4,<7.0.0); extra == "tornado" | + + + +1.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| PyHive | + + + +Base Package | + + + +I&S | + + + +0.6.2 | + + + +{'base_package': 'PyHive==0.6.2', 'dependencies': []} | + + + ++ + + + | 0.6.3.dev0, 0.6.3, 0.6.4rc1, 0.6.4rc2, 0.6.4, 0.6.5, 0.7.0.dev0, 0.7.0, 0.7.1.dev0 | + + + ++ + + + | 0.7.1.dev0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pylance | + + + +Base Package | + + + +I&S | + + + +0.15.0 | + + + +{'base_package': 'pylance==0.15.0', 'dependencies': ['pyarrow==14', 'numpy==1.22', 'ruff==0.4.1']} | + + + +pyarrow>=14; numpy>=1.22; boto3; extra == "tests"; datasets; extra == "tests"; duckdb; extra == "tests"; ml-dtypes; extra == "tests"; pillow; extra == "tests"; pandas; extra == "tests"; polars[pandas,pyarrow]; extra == "tests"; pytest; extra == "tests"; tensorflow; extra == "tests"; tqdm; extra == "tests"; datafusion; extra == "tests"; ruff==0.4.1; extra == "dev"; pyright; extra == "dev"; pytest-benchmark; extra == "benchmarks"; torch; extra == "torch"; ray[data]<2.38; python_full_version < "3.12" and extra == "ray" | + + + +0.16.0, 0.16.1, 0.17.0, 0.18.0, 0.18.2, 0.19.1, 0.19.2, 0.20.0, 0.21.0, 0.22.0, 0.23.0, 0.23.1, 0.23.2, 0.24.0, 0.24.1, 0.25.0, 0.25.1, 0.25.2, 0.26.0, 0.26.1, 0.27.0, 0.27.1, 0.27.2, 0.28.0, 0.29.0, 0.30.0 | + + + +pyarrow>=14; numpy>=1.22; boto3; extra == "tests"; datasets; extra == "tests"; duckdb; extra == "tests"; ml-dtypes; extra == "tests"; pillow; extra == "tests"; pandas; extra == "tests"; polars[pandas,pyarrow]; extra == "tests"; pytest; extra == "tests"; tensorflow; extra == "tests"; tqdm; extra == "tests"; datafusion; extra == "tests"; ruff==0.4.1; extra == "dev"; pyright; extra == "dev"; pytest-benchmark; extra == "benchmarks"; torch; extra == "torch"; ray[data]<2.38; python_full_version < "3.12" and extra == "ray" | + + + +0.30.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pylint | + + + +Base Package | + + + +I&S | + + + +3.2.6 | + + + +{'base_package': 'pylint==3.2.6', 'dependencies': ['astroid==3.3.8', 'colorama==0.4.5', 'dill==0.2', 'dill==0.3.6', 'dill==0.3.7', 'isort==4.2.5', 'mccabe==0.6', 'platformdirs==2.2', 'tomli==1.1', 'tomlkit==0.10.1', 'typing-extensions==3.10', 'pyenchant==3.2', 'gitpython==3']} | + + + +astroid<=3.4.0.dev0,>=3.3.8; colorama>=0.4.5; sys_platform == "win32"; dill>=0.2; python_version < "3.11"; dill>=0.3.6; python_version >= "3.11"; dill>=0.3.7; python_version >= "3.12"; isort!=5.13,<7,>=4.2.5; mccabe<0.8,>=0.6; platformdirs>=2.2; tomli>=1.1; python_version < "3.11"; tomlkit>=0.10.1; typing-extensions>=3.10; python_version < "3.10"; pyenchant~=3.2; extra == "spelling"; gitpython>3; extra == "testutils" | + + + +3.2.7, 3.3.0, 3.3.1, 3.3.2, 3.3.3, 3.3.4, 3.3.5a0, 3.3.5, 3.3.6, 3.3.7 | + + + +astroid<=3.4.0.dev0,>=3.3.8; colorama>=0.4.5; sys_platform == "win32"; dill>=0.2; python_version < "3.11"; dill>=0.3.6; python_version >= "3.11"; dill>=0.3.7; python_version >= "3.12"; isort!=5.13,<7,>=4.2.5; mccabe<0.8,>=0.6; platformdirs>=2.2; tomli>=1.1; python_version < "3.11"; tomlkit>=0.10.1; typing-extensions>=3.10; python_version < "3.10"; pyenchant~=3.2; extra == "spelling"; gitpython>3; extra == "testutils" | + + + +3.3.7 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| PyMuPDF | + + + +Base Package | + + + +I&S | + + + +1.24.4 | + + + +{'base_package': 'PyMuPDF==1.24.4', 'dependencies': []} | + + + ++ + + + | 1.24.5, 1.24.6, 1.24.7, 1.24.8, 1.24.9, 1.24.10, 1.24.11, 1.24.12, 1.24.13, 1.24.14, 1.25.0, 1.25.1, 1.25.2, 1.25.3, 1.25.4, 1.25.5, 1.26.0, 1.26.1 | + + + ++ + + + | 1.26.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| PyMuPDFb | + + + +Base Package | + + + +I&S | + + + +1.24.3 | + + + +{'base_package': 'PyMuPDFb==1.24.3', 'dependencies': []} | + + + ++ + + + | 1.24.6, 1.24.8, 1.24.9, 1.24.10 | + + + ++ + + + | 1.24.10 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pyodbc | + + + +Base Package | + + + +I&S | + + + +5.1.0 | + + + +{'base_package': 'pyodbc==5.1.0', 'dependencies': []} | + + + ++ + + + | 5.2.0 | + + + ++ + + + | 5.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pytesseract | + + + +Base Package | + + + +I&S | + + + +0.3.4 | + + + +{'base_package': 'pytesseract==0.3.4', 'dependencies': ['packaging==21.3', 'Pillow==8.0.0']} | + + + +packaging>=21.3; Pillow>=8.0.0 | + + + +0.3.5, 0.3.6, 0.3.7, 0.3.8, 0.3.9, 0.3.10, 0.3.13 | + + + +packaging>=21.3; Pillow>=8.0.0 | + + + +0.3.13 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| python-ldap | + + + +Base Package | + + + +I&S | + + + +3.4.3 | + + + +{'base_package': 'python-ldap==3.4.3', 'dependencies': ['pyasn1==0.3.7', 'pyasn1_modules==0.1.5']} | + + + +pyasn1>=0.3.7; pyasn1_modules>=0.1.5 | + + + +3.4.4 | + + + +pyasn1>=0.3.7; pyasn1_modules>=0.1.5 | + + + +3.4.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pywin32 | + + + +Base Package | + + + +I&S | + + + +307 | + + + +{'base_package': 'pywin32==307', 'dependencies': []} | + + + ++ + + + | 308, 309, 310 | + + + ++ + + + | 310 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pywin32-ctypes | + + + +Base Package | + + + +I&S | + + + +0.2.3 | + + + +{'base_package': 'pywin32-ctypes==0.2.3', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 0.2.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| querystring-parser | + + + +Base Package | + + + +I&S | + + + +1.2.4 | + + + +{'base_package': 'querystring-parser==1.2.4', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 1.2.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| ratelimiter | + + + +Base Package | + + + +I&S | + + + +1.2.0.post0 | + + + +{'base_package': 'ratelimiter==1.2.0.post0', 'dependencies': ['pytest==3.0']} | + + + +pytest (>=3.0); extra == 'test'; pytest-asyncio; python_version>="3.5" and extra == 'test' | + + + ++ + + + | pytest (>=3.0); extra == 'test'; pytest-asyncio; python_version>="3.5" and extra == 'test' | + + + +1.2.0.post0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| schemdraw | + + + +Base Package | + + + +I&S | + + + +0.15 | + + + +{'base_package': 'schemdraw==0.15', 'dependencies': ['matplotlib==3.4', 'ziafont==0.10', 'ziamath==0.12']} | + + + +matplotlib>=3.4; extra == "matplotlib"; ziafont>=0.10; extra == "svgmath"; ziamath>=0.12; extra == "svgmath"; latex2mathml; extra == "svgmath" | + + + +0.16, 0.17, 0.18, 0.19, 0.20 | + + + +matplotlib>=3.4; extra == "matplotlib"; ziafont>=0.10; extra == "svgmath"; ziamath>=0.12; extra == "svgmath"; latex2mathml; extra == "svgmath" | + + + +0.20 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| simplejson | + + + +Base Package | + + + +I&S | + + + +3.19.2 | + + + +{'base_package': 'simplejson==3.19.2', 'dependencies': []} | + + + ++ + + + | 3.19.3, 3.20.1 | + + + ++ + + + | 3.20.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| sparse-dot-topn | + + + +Base Package | + + + +I&S | + + + +1.1.1 | + + + +{'base_package': 'sparse-dot-topn==1.1.1', 'dependencies': ['numpy==1.18.0', 'scipy==1.4.1', 'pytest==4.0.2']} | + + + +numpy>=1.18.0; scipy>=1.4.1; psutil; pytest>=4.0.2; extra == "test" | + + + +1.1.2, 1.1.3, 1.1.4, 1.1.5 | + + + +numpy>=1.18.0; scipy>=1.4.1; psutil; pytest>=4.0.2; extra == "test" | + + + +1.1.5 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| strsimpy | + + + +Base Package | + + + +I&S | + + + +0.2.1 | + + + +{'base_package': 'strsimpy==0.2.1', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 0.2.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tantivy | + + + +Base Package | + + + +I&S | + + + +0.22.0 | + + + +{'base_package': 'tantivy==0.22.0', 'dependencies': []} | + + + +nox; extra == "dev" | + + + +0.22.2, 0.24.0 | + + + +nox; extra == "dev" | + + + +0.24.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tensorflow-io-gcs-filesystem | + + + +Base Package | + + + +I&S | + + + +0.37.1 | + + + +{'base_package': 'tensorflow-io-gcs-filesystem==0.37.1', 'dependencies': ['tensorflow==2.16.0', 'tensorflow-aarch64==2.16.0', 'tensorflow-cpu==2.16.0', 'tensorflow-gpu==2.16.0', 'tensorflow-rocm==2.16.0']} | + + + +tensorflow<2.17.0,>=2.16.0; extra == "tensorflow"; tensorflow-aarch64<2.17.0,>=2.16.0; extra == "tensorflow-aarch64"; tensorflow-cpu<2.17.0,>=2.16.0; extra == "tensorflow-cpu"; tensorflow-gpu<2.17.0,>=2.16.0; extra == "tensorflow-gpu"; tensorflow-rocm<2.17.0,>=2.16.0; extra == "tensorflow-rocm" | + + + ++ + + + | tensorflow<2.17.0,>=2.16.0; extra == "tensorflow"; tensorflow-aarch64<2.17.0,>=2.16.0; extra == "tensorflow-aarch64"; tensorflow-cpu<2.17.0,>=2.16.0; extra == "tensorflow-cpu"; tensorflow-gpu<2.17.0,>=2.16.0; extra == "tensorflow-gpu"; tensorflow-rocm<2.17.0,>=2.16.0; extra == "tensorflow-rocm" | + + + +0.37.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| toolz | + + + +Base Package | + + + +I&S | + + + +1.0.0 | + + + +{'base_package': 'toolz==1.0.0', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 1.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| unicorn | + + + +Base Package | + + + +I&S | + + + +2.0.1.post1 | + + + +{'base_package': 'unicorn==2.0.1.post1', 'dependencies': ['capstone==6.0.0a2', 'capstone==5.0.1']} | + + + +importlib_resources; python_version < "3.9"; capstone==6.0.0a2; python_version > "3.7" and extra == "test"; capstone==5.0.1; python_version <= "3.7" and extra == "test" | + + + +2.1.0, 2.1.1, 2.1.2, 2.1.3 | + + + +importlib_resources; python_version < "3.9"; capstone==6.0.0a2; python_version > "3.7" and extra == "test"; capstone==5.0.1; python_version <= "3.7" and extra == "test" | + + + +2.1.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| wurlitzer | + + + +Base Package | + + + +I&S | + + + +3.1.1 | + + + +{'base_package': 'wurlitzer==3.1.1', 'dependencies': []} | + + + ++ + + + | + + + + | + + + + | 3.1.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| xgboost | + + + +Base Package | + + + +I&S | + + + +1.7.6 | + + + +{'base_package': 'xgboost==1.7.6', 'dependencies': ['pandas==1.2']} | + + + +numpy; nvidia-nccl-cu12; platform_system == "Linux" and platform_machine != "aarch64"; scipy; dask; extra == "dask"; distributed; extra == "dask"; pandas; extra == "dask"; pandas>=1.2; extra == "pandas"; graphviz; extra == "plotting"; matplotlib; extra == "plotting"; cloudpickle; extra == "pyspark"; pyspark; extra == "pyspark"; scikit-learn; extra == "pyspark"; scikit-learn; extra == "scikit-learn" | + + + +2.0.0rc1, 2.0.0, 2.0.1, 2.0.2, 2.0.3, 2.1.0rc1, 2.1.0, 2.1.1, 2.1.2, 2.1.3, 2.1.4, 3.0.0rc1, 3.0.0, 3.0.1, 3.0.2 | + + + +numpy; nvidia-nccl-cu12; platform_system == "Linux" and platform_machine != "aarch64"; scipy; dask; extra == "dask"; distributed; extra == "dask"; pandas; extra == "dask"; pandas>=1.2; extra == "pandas"; graphviz; extra == "plotting"; matplotlib; extra == "plotting"; cloudpickle; extra == "pyspark"; pyspark; extra == "pyspark"; scikit-learn; extra == "pyspark"; scikit-learn; extra == "scikit-learn" | + + + +3.0.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| absl-py | + + + +Dependency Package | + + + +I&S | + + + +2.1.0 | + + + +None | + + + ++ + + + | 2.2.0, 2.2.1, 2.2.2, 2.3.0 | + + + ++ + + + | 2.3.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| alembic | + + + +Dependency Package | + + + +I&S | + + + +1.13.3 | + + + +None | + + + +SQLAlchemy>=1.4.0; Mako; typing-extensions>=4.12; tomli; python_version < "3.11"; tzdata; extra == "tz" | + + + +1.14.0, 1.14.1, 1.15.0, 1.15.1, 1.15.2, 1.16.0, 1.16.1, 1.16.2 | + + + +SQLAlchemy>=1.4.0; Mako; typing-extensions>=4.12; tomli; python_version < "3.11"; tzdata; extra == "tz" | + + + +1.16.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| altair | + + + +Dependency Package | + + + +I&S | + + + +5.4.1 | + + + +None | + + + +jinja2; jsonschema>=3.0; narwhals>=1.14.2; packaging; typing-extensions>=4.10.0; python_version < "3.14"; altair-tiles>=0.3.0; extra == "all"; anywidget>=0.9.0; extra == "all"; numpy; extra == "all"; pandas>=1.1.3; extra == "all"; pyarrow>=11; extra == "all"; vega-datasets>=0.9.0; extra == "all"; vegafusion[embed]>=1.6.6; extra == "all"; vl-convert-python>=1.7.0; extra == "all"; duckdb>=1.0; extra == "dev"; geopandas; extra == "dev"; hatch>=1.13.0; extra == "dev"; ipython[kernel]; extra == "dev"; mistune; extra == "dev"; mypy; extra == "dev"; pandas-stubs; extra == "dev"; pandas>=1.1.3; extra == "dev"; polars>=0.20.3; extra == "dev"; pyarrow-stubs; extra == "dev"; pytest; extra == "dev"; pytest-cov; extra == "dev"; pytest-xdist[psutil]~=3.5; extra == "dev"; ruff>=0.6.0; extra == "dev"; types-jsonschema; extra == "dev"; types-setuptools; extra == "dev"; docutils; extra == "doc"; jinja2; extra == "doc"; myst-parser; extra == "doc"; numpydoc; extra == "doc"; pillow<10,>=9; extra == "doc"; pydata-sphinx-theme>=0.14.1; extra == "doc"; scipy; extra == "doc"; sphinx; extra == "doc"; sphinx-copybutton; extra == "doc"; sphinx-design; extra == "doc"; sphinxext-altair; extra == "doc"; vl-convert-python>=1.7.0; extra == "save" | + + + +5.5.0 | + + + +jinja2; jsonschema>=3.0; narwhals>=1.14.2; packaging; typing-extensions>=4.10.0; python_version < "3.14"; altair-tiles>=0.3.0; extra == "all"; anywidget>=0.9.0; extra == "all"; numpy; extra == "all"; pandas>=1.1.3; extra == "all"; pyarrow>=11; extra == "all"; vega-datasets>=0.9.0; extra == "all"; vegafusion[embed]>=1.6.6; extra == "all"; vl-convert-python>=1.7.0; extra == "all"; duckdb>=1.0; extra == "dev"; geopandas; extra == "dev"; hatch>=1.13.0; extra == "dev"; ipython[kernel]; extra == "dev"; mistune; extra == "dev"; mypy; extra == "dev"; pandas-stubs; extra == "dev"; pandas>=1.1.3; extra == "dev"; polars>=0.20.3; extra == "dev"; pyarrow-stubs; extra == "dev"; pytest; extra == "dev"; pytest-cov; extra == "dev"; pytest-xdist[psutil]~=3.5; extra == "dev"; ruff>=0.6.0; extra == "dev"; types-jsonschema; extra == "dev"; types-setuptools; extra == "dev"; docutils; extra == "doc"; jinja2; extra == "doc"; myst-parser; extra == "doc"; numpydoc; extra == "doc"; pillow<10,>=9; extra == "doc"; pydata-sphinx-theme>=0.14.1; extra == "doc"; scipy; extra == "doc"; sphinx; extra == "doc"; sphinx-copybutton; extra == "doc"; sphinx-design; extra == "doc"; sphinxext-altair; extra == "doc"; vl-convert-python>=1.7.0; extra == "save" | + + + +5.5.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| astroid | + + + +Dependency Package | + + + +I&S | + + + +3.2.4 | + + + +None | + + + +typing-extensions>=4; python_version < "3.11" | + + + +3.3.0, 3.3.1, 3.3.2, 3.3.3, 3.3.4, 3.3.5, 3.3.6, 3.3.7, 3.3.8, 3.3.9, 3.3.10, 4.0.0a0 | + + + +typing-extensions>=4; python_version < "3.11" | + + + +4.0.0a0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| astunparse | + + + +Dependency Package | + + + +I&S | + + + +1.6.3 | + + + +None | + + + +wheel (<1.0,>=0.23.0); six (<2.0,>=1.6.1) | + + + ++ + + + | wheel (<1.0,>=0.23.0); six (<2.0,>=1.6.1) | + + + +1.6.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| blinker | + + + +Dependency Package | + + + +I&S | + + + +1.8.2 | + + + +None | + + + ++ + + + | 1.9.0 | + + + ++ + + + | 1.9.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| boilerpy3 | + + + +Dependency Package | + + + +I&S | + + + +1.0.7 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.0.7 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| CacheControl | + + + +Dependency Package | + + + +I&S | + + + +0.14.0 | + + + +None | + + + +requests>=2.16.0; msgpack<2.0.0,>=0.5.2; CacheControl[filecache,redis]; extra == "dev"; build; extra == "dev"; cherrypy; extra == "dev"; codespell[tomli]; extra == "dev"; furo; extra == "dev"; mypy; extra == "dev"; pytest; extra == "dev"; pytest-cov; extra == "dev"; ruff; extra == "dev"; sphinx; extra == "dev"; sphinx-copybutton; extra == "dev"; tox; extra == "dev"; types-redis; extra == "dev"; types-requests; extra == "dev"; filelock>=3.8.0; extra == "filecache"; redis>=2.10.5; extra == "redis" | + + + +0.14.1, 0.14.2, 0.14.3 | + + + +requests>=2.16.0; msgpack<2.0.0,>=0.5.2; CacheControl[filecache,redis]; extra == "dev"; build; extra == "dev"; cherrypy; extra == "dev"; codespell[tomli]; extra == "dev"; furo; extra == "dev"; mypy; extra == "dev"; pytest; extra == "dev"; pytest-cov; extra == "dev"; ruff; extra == "dev"; sphinx; extra == "dev"; sphinx-copybutton; extra == "dev"; tox; extra == "dev"; types-redis; extra == "dev"; types-requests; extra == "dev"; filelock>=3.8.0; extra == "filecache"; redis>=2.10.5; extra == "redis" | + + + +0.14.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| category-encoders | + + + +Dependency Package | + + + +I&S | + + + +2.6.4 | + + + +None | + + + +numpy>=1.14.0; pandas>=1.0.5; patsy>=0.5.1; scikit-learn>=1.6.0; scipy>=1.0.0; statsmodels>=0.9.0 | + + + +2.7.0, 2.8.0, 2.8.1 | + + + +numpy>=1.14.0; pandas>=1.0.5; patsy>=0.5.1; scikit-learn>=1.6.0; scipy>=1.0.0; statsmodels>=0.9.0 | + + + +2.8.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| cattrs | + + + +Dependency Package | + + + +I&S | + + + +24.1.2 | + + + +None | + + + +attrs>=24.3.0; exceptiongroup>=1.1.1; python_version < "3.11"; typing-extensions>=4.12.2; pymongo>=4.4.0; extra == "bson"; cbor2>=5.4.6; extra == "cbor2"; msgpack>=1.0.5; extra == "msgpack"; msgspec>=0.19.0; implementation_name == "cpython" and extra == "msgspec"; orjson>=3.10.7; implementation_name == "cpython" and extra == "orjson"; pyyaml>=6.0; extra == "pyyaml"; tomlkit>=0.11.8; extra == "tomlkit"; ujson>=5.10.0; extra == "ujson" | + + + +24.1.3, 25.1.0, 25.1.1 | + + + +attrs>=24.3.0; exceptiongroup>=1.1.1; python_version < "3.11"; typing-extensions>=4.12.2; pymongo>=4.4.0; extra == "bson"; cbor2>=5.4.6; extra == "cbor2"; msgpack>=1.0.5; extra == "msgpack"; msgspec>=0.19.0; implementation_name == "cpython" and extra == "msgspec"; orjson>=3.10.7; implementation_name == "cpython" and extra == "orjson"; pyyaml>=6.0; extra == "pyyaml"; tomlkit>=0.11.8; extra == "tomlkit"; ujson>=5.10.0; extra == "ujson" | + + + +25.1.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| cfgv | + + + +Dependency Package | + + + +I&S | + + + +3.4.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 3.4.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| cleo | + + + +Dependency Package | + + + +I&S | + + + +2.1.0 | + + + +None | + + + +crashtest (>=0.4.1,<0.5.0); rapidfuzz (>=3.0.0,<4.0.0) | + + + +2.2.0, 2.2.1 | + + + +crashtest (>=0.4.1,<0.5.0); rapidfuzz (>=3.0.0,<4.0.0) | + + + +2.2.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| coloredlogs | + + + +Dependency Package | + + + +I&S | + + + +15.0.1 | + + + +None | + + + +humanfriendly (>=9.1); capturer (>=2.4) ; extra == 'cron' | + + + ++ + + + | humanfriendly (>=9.1); capturer (>=2.4) ; extra == 'cron' | + + + +15.0.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| colorlog | + + + +Dependency Package | + + + +I&S | + + + +6.8.2 | + + + +None | + + + +colorama; sys_platform == "win32"; black; extra == "development"; flake8; extra == "development"; mypy; extra == "development"; pytest; extra == "development"; types-colorama; extra == "development" | + + + +6.9.0 | + + + +colorama; sys_platform == "win32"; black; extra == "development"; flake8; extra == "development"; mypy; extra == "development"; pytest; extra == "development"; types-colorama; extra == "development" | + + + +6.9.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| crashtest | + + + +Dependency Package | + + + +I&S | + + + +0.4.1 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.4.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| Cython | + + + +Dependency Package | + + + +I&S | + + + +3.0.11 | + + + +None | + + + ++ + + + | 3.0.12, 3.1.0a1, 3.1.0b1, 3.1.0rc1, 3.1.0rc2, 3.1.0, 3.1.1, 3.1.2 | + + + ++ + + + | 3.1.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| dash | + + + +Dependency Package | + + + +I&S | + + + +2.18.1 | + + + +None | + + + +Flask<3.1,>=1.0.4; Werkzeug<3.1; plotly>=5.0.0; importlib-metadata; typing-extensions>=4.1.1; requests; retrying; nest-asyncio; setuptools; redis>=3.5.3; extra == "celery"; celery[redis]>=5.1.2; extra == "celery"; black==22.3.0; extra == "ci"; flake8==7.0.0; extra == "ci"; flaky==3.8.1; extra == "ci"; flask-talisman==1.0.0; extra == "ci"; ipython<9.0.0; extra == "ci"; mimesis<=11.1.0; extra == "ci"; mock==4.0.3; extra == "ci"; numpy<=1.26.3; extra == "ci"; orjson==3.10.3; extra == "ci"; openpyxl; extra == "ci"; pandas>=1.4.0; extra == "ci"; pyarrow; extra == "ci"; pylint==3.0.3; extra == "ci"; pytest-mock; extra == "ci"; pytest-sugar==0.9.6; extra == "ci"; pyzmq==25.1.2; extra == "ci"; xlrd>=2.0.1; extra == "ci"; pytest-rerunfailures; extra == "ci"; jupyterlab<4.0.0; extra == "ci"; mypy==1.15.0; python_version >= "3.12" and extra == "ci"; pyright==1.1.398; python_version >= "3.7" and extra == "ci"; flask-compress; extra == "compress"; coloredlogs>=15.0.1; extra == "dev"; fire>=0.4.0; extra == "dev"; PyYAML>=5.4.1; extra == "dev"; diskcache>=5.2.1; extra == "diskcache"; multiprocess>=0.70.12; extra == "diskcache"; psutil>=5.8.0; extra == "diskcache"; beautifulsoup4>=4.8.2; extra == "testing"; cryptography; extra == "testing"; lxml>=4.6.2; extra == "testing"; percy>=2.0.2; extra == "testing"; pytest>=6.0.2; extra == "testing"; requests[security]>=2.21.0; extra == "testing"; selenium<=4.2.0,>=3.141.0; extra == "testing"; waitress>=1.4.4; extra == "testing"; multiprocess>=0.70.12; extra == "testing"; psutil>=5.8.0; extra == "testing"; dash-testing-stub>=0.0.2; extra == "testing" | + + + +2.18.2, 3.0.0rc1, 3.0.0rc2, 3.0.0rc3, 3.0.0rc4, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4 | + + + +Flask<3.1,>=1.0.4; Werkzeug<3.1; plotly>=5.0.0; importlib-metadata; typing-extensions>=4.1.1; requests; retrying; nest-asyncio; setuptools; redis>=3.5.3; extra == "celery"; celery[redis]>=5.1.2; extra == "celery"; black==22.3.0; extra == "ci"; flake8==7.0.0; extra == "ci"; flaky==3.8.1; extra == "ci"; flask-talisman==1.0.0; extra == "ci"; ipython<9.0.0; extra == "ci"; mimesis<=11.1.0; extra == "ci"; mock==4.0.3; extra == "ci"; numpy<=1.26.3; extra == "ci"; orjson==3.10.3; extra == "ci"; openpyxl; extra == "ci"; pandas>=1.4.0; extra == "ci"; pyarrow; extra == "ci"; pylint==3.0.3; extra == "ci"; pytest-mock; extra == "ci"; pytest-sugar==0.9.6; extra == "ci"; pyzmq==25.1.2; extra == "ci"; xlrd>=2.0.1; extra == "ci"; pytest-rerunfailures; extra == "ci"; jupyterlab<4.0.0; extra == "ci"; mypy==1.15.0; python_version >= "3.12" and extra == "ci"; pyright==1.1.398; python_version >= "3.7" and extra == "ci"; flask-compress; extra == "compress"; coloredlogs>=15.0.1; extra == "dev"; fire>=0.4.0; extra == "dev"; PyYAML>=5.4.1; extra == "dev"; diskcache>=5.2.1; extra == "diskcache"; multiprocess>=0.70.12; extra == "diskcache"; psutil>=5.8.0; extra == "diskcache"; beautifulsoup4>=4.8.2; extra == "testing"; cryptography; extra == "testing"; lxml>=4.6.2; extra == "testing"; percy>=2.0.2; extra == "testing"; pytest>=6.0.2; extra == "testing"; requests[security]>=2.21.0; extra == "testing"; selenium<=4.2.0,>=3.141.0; extra == "testing"; waitress>=1.4.4; extra == "testing"; multiprocess>=0.70.12; extra == "testing"; psutil>=5.8.0; extra == "testing"; dash-testing-stub>=0.0.2; extra == "testing" | + + + +3.0.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| databricks-sdk | + + + +Dependency Package | + + + +I&S | + + + +0.33.0 | + + + +None | + + + +requests<3,>=2.28.1; google-auth~=2.0; pytest; extra == "dev"; pytest-cov; extra == "dev"; pytest-xdist; extra == "dev"; pytest-mock; extra == "dev"; black; extra == "dev"; pycodestyle; extra == "dev"; autoflake; extra == "dev"; isort; extra == "dev"; wheel; extra == "dev"; ipython; extra == "dev"; ipywidgets; extra == "dev"; requests-mock; extra == "dev"; pyfakefs; extra == "dev"; databricks-connect; extra == "dev"; pytest-rerunfailures; extra == "dev"; openai; extra == "dev"; langchain-openai; python_version > "3.7" and extra == "dev"; httpx; extra == "dev"; build; extra == "dev"; ipython<10,>=8; extra == "notebook"; ipywidgets<9,>=8; extra == "notebook"; openai; extra == "openai"; langchain-openai; python_version > "3.7" and extra == "openai"; httpx; extra == "openai" | + + + +0.34.0, 0.35.0, 0.36.0, 0.37.0, 0.38.0, 0.39.0, 0.40.0, 0.41.0, 0.42.0, 0.43.0, 0.44.0, 0.44.1, 0.45.0, 0.46.0, 0.47.0, 0.48.0, 0.49.0, 0.50.0, 0.51.0, 0.52.0, 0.53.0, 0.54.0, 0.55.0, 0.56.0, 0.57.0 | + + + +requests<3,>=2.28.1; google-auth~=2.0; pytest; extra == "dev"; pytest-cov; extra == "dev"; pytest-xdist; extra == "dev"; pytest-mock; extra == "dev"; black; extra == "dev"; pycodestyle; extra == "dev"; autoflake; extra == "dev"; isort; extra == "dev"; wheel; extra == "dev"; ipython; extra == "dev"; ipywidgets; extra == "dev"; requests-mock; extra == "dev"; pyfakefs; extra == "dev"; databricks-connect; extra == "dev"; pytest-rerunfailures; extra == "dev"; openai; extra == "dev"; langchain-openai; python_version > "3.7" and extra == "dev"; httpx; extra == "dev"; build; extra == "dev"; ipython<10,>=8; extra == "notebook"; ipywidgets<9,>=8; extra == "notebook"; openai; extra == "openai"; langchain-openai; python_version > "3.7" and extra == "openai"; httpx; extra == "openai" | + + + +0.57.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| dataclasses-json | + + + +Dependency Package | + + + +I&S | + + + +0.6.7 | + + + +None | + + + +marshmallow<4.0.0,>=3.18.0; typing-inspect<1,>=0.4.0 | + + + ++ + + + | marshmallow<4.0.0,>=3.18.0; typing-inspect<1,>=0.4.0 | + + + +0.6.7 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| Deprecated | + + + +Dependency Package | + + + +I&S | + + + +1.2.14 | + + + +None | + + + +wrapt<2,>=1.10; tox; extra == "dev"; PyTest; extra == "dev"; PyTest-Cov; extra == "dev"; bump2version<1; extra == "dev"; setuptools; python_version >= "3.12" and extra == "dev" | + + + +1.2.15, 1.2.16, 1.2.17, 1.2.18 | + + + +wrapt<2,>=1.10; tox; extra == "dev"; PyTest; extra == "dev"; PyTest-Cov; extra == "dev"; bump2version<1; extra == "dev"; setuptools; python_version >= "3.12" and extra == "dev" | + + + +1.2.18 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| deprecation | + + + +Dependency Package | + + + +I&S | + + + +2.1.0 | + + + +None | + + + +packaging | + + + ++ + + + | packaging | + + + +2.1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| dill | + + + +Dependency Package | + + + +I&S | + + + +0.3.9 | + + + +None | + + + +objgraph>=1.7.2; extra == "graph"; gprof2dot>=2022.7.29; extra == "profile" | + + + +0.4.0 | + + + +objgraph>=1.7.2; extra == "graph"; gprof2dot>=2022.7.29; extra == "profile" | + + + +0.4.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| dirtyjson | + + + +Dependency Package | + + + +I&S | + + + +1.0.8 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.0.8 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| distlib | + + + +Dependency Package | + + + +I&S | + + + +0.3.9 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.3.9 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| docutils | + + + +Dependency Package | + + + +I&S | + + + +0.21.2 | + + + +None | + + + ++ + + + | 0.22rc1, 0.22rc2, 0.22rc3, 0.22rc4, 0.22rc5 | + + + ++ + + + | 0.22rc5 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| dulwich | + + + +Dependency Package | + + + +I&S | + + + +0.21.7 | + + + +None | + + + +urllib3>=1.25; fastimport; extra == "fastimport"; urllib3>=1.24.1; extra == "https"; gpg; extra == "pgp"; paramiko; extra == "paramiko"; ruff==0.11.13; extra == "dev"; mypy==1.16.0; extra == "dev"; dissolve>=0.1.1; extra == "dev"; merge3; extra == "merge" | + + + +0.22.0, 0.22.1, 0.22.3, 0.22.4, 0.22.5, 0.22.6, 0.22.7, 0.22.8, 0.23.0 | + + + +urllib3>=1.25; fastimport; extra == "fastimport"; urllib3>=1.24.1; extra == "https"; gpg; extra == "pgp"; paramiko; extra == "paramiko"; ruff==0.11.13; extra == "dev"; mypy==1.16.0; extra == "dev"; dissolve>=0.1.1; extra == "dev"; merge3; extra == "merge" | + + + +0.23.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| elastic-transport | + + + +Dependency Package | + + + +I&S | + + + +8.15.0 | + + + +None | + + + +urllib3<3,>=1.26.2; certifi; pytest; extra == "develop"; pytest-cov; extra == "develop"; pytest-mock; extra == "develop"; pytest-asyncio; extra == "develop"; pytest-httpserver; extra == "develop"; trustme; extra == "develop"; requests; extra == "develop"; aiohttp; extra == "develop"; httpx; extra == "develop"; respx; extra == "develop"; opentelemetry-api; extra == "develop"; opentelemetry-sdk; extra == "develop"; orjson; extra == "develop"; sphinx>2; extra == "develop"; furo; extra == "develop"; sphinx-autodoc-typehints; extra == "develop" | + + + +8.15.1, 8.17.0, 8.17.1 | + + + +urllib3<3,>=1.26.2; certifi; pytest; extra == "develop"; pytest-cov; extra == "develop"; pytest-mock; extra == "develop"; pytest-asyncio; extra == "develop"; pytest-httpserver; extra == "develop"; trustme; extra == "develop"; requests; extra == "develop"; aiohttp; extra == "develop"; httpx; extra == "develop"; respx; extra == "develop"; opentelemetry-api; extra == "develop"; opentelemetry-sdk; extra == "develop"; orjson; extra == "develop"; sphinx>2; extra == "develop"; furo; extra == "develop"; sphinx-autodoc-typehints; extra == "develop" | + + + +8.17.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| emoji | + + + +Dependency Package | + + + +I&S | + + + +2.12.1 | + + + +None | + + + +typing_extensions>=4.7.0; python_version < "3.9"; pytest>=7.4.4; extra == "dev"; coverage; extra == "dev" | + + + +2.13.0, 2.13.2, 2.14.0, 2.14.1 | + + + +typing_extensions>=4.7.0; python_version < "3.9"; pytest>=7.4.4; extra == "dev"; coverage; extra == "dev" | + + + +2.14.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| et-xmlfile | + + + +Dependency Package | + + + +I&S | + + + +1.1.0 | + + + +None | + + + ++ + + + | 2.0.0 | + + + ++ + + + | 2.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| Events | + + + +Dependency Package | + + + +I&S | + + + +0.5 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.5 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| filetype | + + + +Dependency Package | + + + +I&S | + + + +1.2.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| Flask | + + + +Dependency Package | + + + +I&S | + + + +3.0.3 | + + + +None | + + + +blinker>=1.9.0; click>=8.1.3; importlib-metadata>=3.6.0; python_version < "3.10"; itsdangerous>=2.2.0; jinja2>=3.1.2; markupsafe>=2.1.1; werkzeug>=3.1.0; asgiref>=3.2; extra == "async"; python-dotenv; extra == "dotenv" | + + + +3.1.0, 3.1.1 | + + + +blinker>=1.9.0; click>=8.1.3; importlib-metadata>=3.6.0; python_version < "3.10"; itsdangerous>=2.2.0; jinja2>=3.1.2; markupsafe>=2.1.1; werkzeug>=3.1.0; asgiref>=3.2; extra == "async"; python-dotenv; extra == "dotenv" | + + + +3.1.1 | + + + +No | + + + ++ + + + | Yes | + + + +3.1.0: CVE-2025-47278, CVSS_V4, Flask uses fallback key instead of current signing key, CVSS:4.0/AV:L/AC:L/AT:P/PR:H/UI:N/VC:N/VI:N/VA:L/SC:N/SI:N/SA:N, affects: >=3.1.0,<3.1.1 | + + + +None | + + + +None | + + + ++ + + |
| flatbuffers | + + + +Dependency Package | + + + +I&S | + + + +24.3.25 | + + + +None | + + + ++ + + + | 24.12.23, 25.1.21, 25.1.24, 25.2.10 | + + + ++ + + + | 25.2.10 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| future | + + + +Dependency Package | + + + +I&S | + + + +1.0.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| gast | + + + +Dependency Package | + + + +I&S | + + + +0.6.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.6.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| google-ai-generativelanguage | + + + +Dependency Package | + + + +I&S | + + + +0.3.3 | + + + +None | + + + +google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0,>=1.34.1; google-auth!=2.24.0,!=2.25.0,<3.0.0,>=2.14.1; proto-plus<2.0.0,>=1.22.3; protobuf!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<7.0.0,>=3.20.2; proto-plus<2.0.0,>=1.25.0; python_version >= "3.13" | + + + +0.3.4, 0.3.5rc0, 0.3.5, 0.4.0, 0.4.1, 0.5.0, 0.5.1, 0.5.2, 0.5.3, 0.5.4, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.6.6, 0.6.7, 0.6.8, 0.6.9, 0.6.10, 0.6.11, 0.6.12, 0.6.13, 0.6.14, 0.6.15, 0.6.16, 0.6.17, 0.6.18 | + + + +google-api-core[grpc]!=2.0.*,!=2.1.*,!=2.10.*,!=2.2.*,!=2.3.*,!=2.4.*,!=2.5.*,!=2.6.*,!=2.7.*,!=2.8.*,!=2.9.*,<3.0.0,>=1.34.1; google-auth!=2.24.0,!=2.25.0,<3.0.0,>=2.14.1; proto-plus<2.0.0,>=1.22.3; protobuf!=4.21.0,!=4.21.1,!=4.21.2,!=4.21.3,!=4.21.4,!=4.21.5,<7.0.0,>=3.20.2; proto-plus<2.0.0,>=1.25.0; python_version >= "3.13" | + + + +0.6.18 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| google-pasta | + + + +Dependency Package | + + + +I&S | + + + +0.2.0 | + + + +None | + + + +six | + + + ++ + + + | six | + + + +0.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| graphene | + + + +Dependency Package | + + + +I&S | + + + +3.3 | + + + +None | + + + +graphql-core<3.3,>=3.1; graphql-relay<3.3,>=3.1; python-dateutil<3,>=2.7.0; typing-extensions<5,>=4.7.1; ruff==0.5.0; extra == "dev"; types-python-dateutil<3,>=2.8.1; extra == "dev"; mypy<2,>=1.10; extra == "dev"; pytest<9,>=8; extra == "dev"; pytest-benchmark<5,>=4; extra == "dev"; pytest-cov<6,>=5; extra == "dev"; pytest-mock<4,>=3; extra == "dev"; pytest-asyncio<2,>=0.16; extra == "dev"; coveralls<5,>=3.3; extra == "dev"; pytest<9,>=8; extra == "test"; pytest-benchmark<5,>=4; extra == "test"; pytest-cov<6,>=5; extra == "test"; pytest-mock<4,>=3; extra == "test"; pytest-asyncio<2,>=0.16; extra == "test"; coveralls<5,>=3.3; extra == "test" | + + + +3.4, 3.4.1, 3.4.2, 3.4.3 | + + + +graphql-core<3.3,>=3.1; graphql-relay<3.3,>=3.1; python-dateutil<3,>=2.7.0; typing-extensions<5,>=4.7.1; ruff==0.5.0; extra == "dev"; types-python-dateutil<3,>=2.8.1; extra == "dev"; mypy<2,>=1.10; extra == "dev"; pytest<9,>=8; extra == "dev"; pytest-benchmark<5,>=4; extra == "dev"; pytest-cov<6,>=5; extra == "dev"; pytest-mock<4,>=3; extra == "dev"; pytest-asyncio<2,>=0.16; extra == "dev"; coveralls<5,>=3.3; extra == "dev"; pytest<9,>=8; extra == "test"; pytest-benchmark<5,>=4; extra == "test"; pytest-cov<6,>=5; extra == "test"; pytest-mock<4,>=3; extra == "test"; pytest-asyncio<2,>=0.16; extra == "test"; coveralls<5,>=3.3; extra == "test" | + + + +3.4.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| graphql-relay | + + + +Dependency Package | + + + +I&S | + + + +3.2.0 | + + + +None | + + + +graphql-core (<3.3,>=3.2); typing-extensions (<5,>=4.1) ; python_version < "3.8" | + + + ++ + + + | graphql-core (<3.3,>=3.2); typing-extensions (<5,>=4.1) ; python_version < "3.8" | + + + +3.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| grpcio | + + + +Dependency Package | + + + +I&S | + + + +1.66.2 | + + + +None | + + + +grpcio-tools>=1.73.0; extra == "protobuf" | + + + +1.67.0rc1, 1.67.0, 1.67.1, 1.68.0rc1, 1.68.0, 1.68.1, 1.69.0rc1, 1.69.0, 1.70.0rc1, 1.70.0, 1.71.0rc2, 1.71.0, 1.72.0rc1, 1.72.0, 1.72.1, 1.73.0rc1, 1.73.0 | + + + +grpcio-tools>=1.73.0; extra == "protobuf" | + + + +1.73.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| gunicorn | + + + +Dependency Package | + + + +I&S | + + + +23.0.0 | + + + +None | + + + +packaging; importlib-metadata; python_version < "3.8"; eventlet!=0.36.0,>=0.24.1; extra == "eventlet"; gevent>=1.4.0; extra == "gevent"; setproctitle; extra == "setproctitle"; gevent; extra == "testing"; eventlet; extra == "testing"; coverage; extra == "testing"; pytest; extra == "testing"; pytest-cov; extra == "testing"; tornado>=0.2; extra == "tornado" | + + + ++ + + + | packaging; importlib-metadata; python_version < "3.8"; eventlet!=0.36.0,>=0.24.1; extra == "eventlet"; gevent>=1.4.0; extra == "gevent"; setproctitle; extra == "setproctitle"; gevent; extra == "testing"; eventlet; extra == "testing"; coverage; extra == "testing"; pytest; extra == "testing"; pytest-cov; extra == "testing"; tornado>=0.2; extra == "tornado" | + + + +23.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| h5py | + + + +Dependency Package | + + + +I&S | + + + +3.12.1 | + + + +None | + + + +numpy>=1.19.3 | + + + +3.13.0, 3.14.0 | + + + +numpy>=1.19.3 | + + + +3.14.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| html2text | + + + +Dependency Package | + + + +I&S | + + + +2020.1.16 | + + + +None | + + + ++ + + + | 2024.2.25, 2024.2.26, 2025.4.15 | + + + ++ + + + | 2025.4.15 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| huggingface-hub | + + + +Dependency Package | + + + +I&S | + + + +0.26.1 | + + + +None | + + + +filelock; fsspec>=2023.5.0; packaging>=20.9; pyyaml>=5.1; requests; tqdm>=4.42.1; typing-extensions>=3.7.4.3; hf-xet<2.0.0,>=1.1.2; platform_machine == "x86_64" or platform_machine == "amd64" or platform_machine == "arm64" or platform_machine == "aarch64"; InquirerPy==0.3.4; extra == "all"; aiohttp; extra == "all"; authlib>=1.3.2; extra == "all"; fastapi; extra == "all"; httpx; extra == "all"; itsdangerous; extra == "all"; jedi; extra == "all"; Jinja2; extra == "all"; pytest<8.2.2,>=8.1.1; extra == "all"; pytest-cov; extra == "all"; pytest-env; extra == "all"; pytest-xdist; extra == "all"; pytest-vcr; extra == "all"; pytest-asyncio; extra == "all"; pytest-rerunfailures; extra == "all"; pytest-mock; extra == "all"; urllib3<2.0; extra == "all"; soundfile; extra == "all"; Pillow; extra == "all"; gradio>=4.0.0; extra == "all"; numpy; extra == "all"; ruff>=0.9.0; extra == "all"; libcst==1.4.0; extra == "all"; typing-extensions>=4.8.0; extra == "all"; types-PyYAML; extra == "all"; types-requests; extra == "all"; types-simplejson; extra == "all"; types-toml; extra == "all"; types-tqdm; extra == "all"; types-urllib3; extra == "all"; mypy<1.15.0,>=1.14.1; python_version == "3.8" and extra == "all"; mypy==1.15.0; python_version >= "3.9" and extra == "all"; InquirerPy==0.3.4; extra == "cli"; InquirerPy==0.3.4; extra == "dev"; aiohttp; extra == "dev"; authlib>=1.3.2; extra == "dev"; fastapi; extra == "dev"; httpx; extra == "dev"; itsdangerous; extra == "dev"; jedi; extra == "dev"; Jinja2; extra == "dev"; pytest<8.2.2,>=8.1.1; extra == "dev"; pytest-cov; extra == "dev"; pytest-env; extra == "dev"; pytest-xdist; extra == "dev"; pytest-vcr; extra == "dev"; pytest-asyncio; extra == "dev"; pytest-rerunfailures; extra == "dev"; pytest-mock; extra == "dev"; urllib3<2.0; extra == "dev"; soundfile; extra == "dev"; Pillow; extra == "dev"; gradio>=4.0.0; extra == "dev"; numpy; extra == "dev"; ruff>=0.9.0; extra == "dev"; libcst==1.4.0; extra == "dev"; typing-extensions>=4.8.0; extra == "dev"; types-PyYAML; extra == "dev"; types-requests; extra == "dev"; types-simplejson; extra == "dev"; types-toml; extra == "dev"; types-tqdm; extra == "dev"; types-urllib3; extra == "dev"; mypy<1.15.0,>=1.14.1; python_version == "3.8" and extra == "dev"; mypy==1.15.0; python_version >= "3.9" and extra == "dev"; toml; extra == "fastai"; fastai>=2.4; extra == "fastai"; fastcore>=1.3.27; extra == "fastai"; hf-transfer>=0.1.4; extra == "hf-transfer"; hf-xet<2.0.0,>=1.1.2; extra == "hf-xet"; aiohttp; extra == "inference"; mcp>=1.8.0; extra == "mcp"; typer; extra == "mcp"; aiohttp; extra == "mcp"; authlib>=1.3.2; extra == "oauth"; fastapi; extra == "oauth"; httpx; extra == "oauth"; itsdangerous; extra == "oauth"; ruff>=0.9.0; extra == "quality"; libcst==1.4.0; extra == "quality"; mypy<1.15.0,>=1.14.1; python_version == "3.8" and extra == "quality"; mypy==1.15.0; python_version >= "3.9" and extra == "quality"; tensorflow; extra == "tensorflow"; pydot; extra == "tensorflow"; graphviz; extra == "tensorflow"; tensorflow; extra == "tensorflow-testing"; keras<3.0; extra == "tensorflow-testing"; InquirerPy==0.3.4; extra == "testing"; aiohttp; extra == "testing"; authlib>=1.3.2; extra == "testing"; fastapi; extra == "testing"; httpx; extra == "testing"; itsdangerous; extra == "testing"; jedi; extra == "testing"; Jinja2; extra == "testing"; pytest<8.2.2,>=8.1.1; extra == "testing"; pytest-cov; extra == "testing"; pytest-env; extra == "testing"; pytest-xdist; extra == "testing"; pytest-vcr; extra == "testing"; pytest-asyncio; extra == "testing"; pytest-rerunfailures; extra == "testing"; pytest-mock; extra == "testing"; urllib3<2.0; extra == "testing"; soundfile; extra == "testing"; Pillow; extra == "testing"; gradio>=4.0.0; extra == "testing"; numpy; extra == "testing"; torch; extra == "torch"; safetensors[torch]; extra == "torch"; typing-extensions>=4.8.0; extra == "typing"; types-PyYAML; extra == "typing"; types-requests; extra == "typing"; types-simplejson; extra == "typing"; types-toml; extra == "typing"; types-tqdm; extra == "typing"; types-urllib3; extra == "typing" | + + + +0.26.2, 0.26.3, 0.26.4, 0.26.5, 0.27.0rc0, 0.27.0rc1, 0.27.0, 0.27.1, 0.28.0rc0, 0.28.0rc1, 0.28.0rc2, 0.28.0rc3, 0.28.0rc4, 0.28.0rc5, 0.28.0, 0.28.1, 0.29.0rc0, 0.29.0rc1, 0.29.0rc2, 0.29.0rc3, 0.29.0rc4, 0.29.0rc5, 0.29.0rc6, 0.29.0rc7, 0.29.0, 0.29.1, 0.29.2, 0.29.3rc0, 0.29.3, 0.30.0rc0, 0.30.0rc1, 0.30.0rc2, 0.30.0rc3, 0.30.0, 0.30.1, 0.30.2, 0.31.0rc0, 0.31.0, 0.31.1, 0.31.2, 0.31.3, 0.31.4, 0.32.0rc0, 0.32.0rc1, 0.32.0, 0.32.1, 0.32.2, 0.32.3, 0.32.4, 0.32.5, 0.32.6, 0.33.0rc0, 0.33.0 | + + + +filelock; fsspec>=2023.5.0; packaging>=20.9; pyyaml>=5.1; requests; tqdm>=4.42.1; typing-extensions>=3.7.4.3; hf-xet<2.0.0,>=1.1.2; platform_machine == "x86_64" or platform_machine == "amd64" or platform_machine == "arm64" or platform_machine == "aarch64"; InquirerPy==0.3.4; extra == "all"; aiohttp; extra == "all"; authlib>=1.3.2; extra == "all"; fastapi; extra == "all"; httpx; extra == "all"; itsdangerous; extra == "all"; jedi; extra == "all"; Jinja2; extra == "all"; pytest<8.2.2,>=8.1.1; extra == "all"; pytest-cov; extra == "all"; pytest-env; extra == "all"; pytest-xdist; extra == "all"; pytest-vcr; extra == "all"; pytest-asyncio; extra == "all"; pytest-rerunfailures; extra == "all"; pytest-mock; extra == "all"; urllib3<2.0; extra == "all"; soundfile; extra == "all"; Pillow; extra == "all"; gradio>=4.0.0; extra == "all"; numpy; extra == "all"; ruff>=0.9.0; extra == "all"; libcst==1.4.0; extra == "all"; typing-extensions>=4.8.0; extra == "all"; types-PyYAML; extra == "all"; types-requests; extra == "all"; types-simplejson; extra == "all"; types-toml; extra == "all"; types-tqdm; extra == "all"; types-urllib3; extra == "all"; mypy<1.15.0,>=1.14.1; python_version == "3.8" and extra == "all"; mypy==1.15.0; python_version >= "3.9" and extra == "all"; InquirerPy==0.3.4; extra == "cli"; InquirerPy==0.3.4; extra == "dev"; aiohttp; extra == "dev"; authlib>=1.3.2; extra == "dev"; fastapi; extra == "dev"; httpx; extra == "dev"; itsdangerous; extra == "dev"; jedi; extra == "dev"; Jinja2; extra == "dev"; pytest<8.2.2,>=8.1.1; extra == "dev"; pytest-cov; extra == "dev"; pytest-env; extra == "dev"; pytest-xdist; extra == "dev"; pytest-vcr; extra == "dev"; pytest-asyncio; extra == "dev"; pytest-rerunfailures; extra == "dev"; pytest-mock; extra == "dev"; urllib3<2.0; extra == "dev"; soundfile; extra == "dev"; Pillow; extra == "dev"; gradio>=4.0.0; extra == "dev"; numpy; extra == "dev"; ruff>=0.9.0; extra == "dev"; libcst==1.4.0; extra == "dev"; typing-extensions>=4.8.0; extra == "dev"; types-PyYAML; extra == "dev"; types-requests; extra == "dev"; types-simplejson; extra == "dev"; types-toml; extra == "dev"; types-tqdm; extra == "dev"; types-urllib3; extra == "dev"; mypy<1.15.0,>=1.14.1; python_version == "3.8" and extra == "dev"; mypy==1.15.0; python_version >= "3.9" and extra == "dev"; toml; extra == "fastai"; fastai>=2.4; extra == "fastai"; fastcore>=1.3.27; extra == "fastai"; hf-transfer>=0.1.4; extra == "hf-transfer"; hf-xet<2.0.0,>=1.1.2; extra == "hf-xet"; aiohttp; extra == "inference"; mcp>=1.8.0; extra == "mcp"; typer; extra == "mcp"; aiohttp; extra == "mcp"; authlib>=1.3.2; extra == "oauth"; fastapi; extra == "oauth"; httpx; extra == "oauth"; itsdangerous; extra == "oauth"; ruff>=0.9.0; extra == "quality"; libcst==1.4.0; extra == "quality"; mypy<1.15.0,>=1.14.1; python_version == "3.8" and extra == "quality"; mypy==1.15.0; python_version >= "3.9" and extra == "quality"; tensorflow; extra == "tensorflow"; pydot; extra == "tensorflow"; graphviz; extra == "tensorflow"; tensorflow; extra == "tensorflow-testing"; keras<3.0; extra == "tensorflow-testing"; InquirerPy==0.3.4; extra == "testing"; aiohttp; extra == "testing"; authlib>=1.3.2; extra == "testing"; fastapi; extra == "testing"; httpx; extra == "testing"; itsdangerous; extra == "testing"; jedi; extra == "testing"; Jinja2; extra == "testing"; pytest<8.2.2,>=8.1.1; extra == "testing"; pytest-cov; extra == "testing"; pytest-env; extra == "testing"; pytest-xdist; extra == "testing"; pytest-vcr; extra == "testing"; pytest-asyncio; extra == "testing"; pytest-rerunfailures; extra == "testing"; pytest-mock; extra == "testing"; urllib3<2.0; extra == "testing"; soundfile; extra == "testing"; Pillow; extra == "testing"; gradio>=4.0.0; extra == "testing"; numpy; extra == "testing"; torch; extra == "torch"; safetensors[torch]; extra == "torch"; typing-extensions>=4.8.0; extra == "typing"; types-PyYAML; extra == "typing"; types-requests; extra == "typing"; types-simplejson; extra == "typing"; types-toml; extra == "typing"; types-tqdm; extra == "typing"; types-urllib3; extra == "typing" | + + + +0.33.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| identify | + + + +Dependency Package | + + + +I&S | + + + +2.6.1 | + + + +None | + + + +ukkonen; extra == "license" | + + + +2.6.2, 2.6.3, 2.6.4, 2.6.5, 2.6.6, 2.6.7, 2.6.8, 2.6.9, 2.6.10, 2.6.11, 2.6.12 | + + + +ukkonen; extra == "license" | + + + +2.6.12 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| inflect | + + + +Dependency Package | + + + +I&S | + + + +7.4.0 | + + + +None | + + + +more_itertools>=8.5.0; typeguard>=4.0.1; typing_extensions; python_version < "3.9"; pytest!=8.1.*,>=6; extra == "test"; pygments; extra == "test"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; pytest-checkdocs>=2.4; extra == "check"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"; pytest-cov; extra == "cover"; pytest-enabler>=2.2; extra == "enabler"; pytest-mypy; extra == "type" | + + + +7.5.0 | + + + +more_itertools>=8.5.0; typeguard>=4.0.1; typing_extensions; python_version < "3.9"; pytest!=8.1.*,>=6; extra == "test"; pygments; extra == "test"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; pytest-checkdocs>=2.4; extra == "check"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"; pytest-cov; extra == "cover"; pytest-enabler>=2.2; extra == "enabler"; pytest-mypy; extra == "type" | + + + +7.5.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| installer | + + + +Dependency Package | + + + +I&S | + + + +0.7.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.7.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| interpret-community | + + + +Dependency Package | + + + +I&S | + + + +0.31.0 | + + + +None | + + + +numpy; pandas; scipy; ml-wrappers~=0.6.0; scikit-learn; packaging; interpret-core<=0.6.9,>=0.1.20; shap<=0.46.0,>=0.20.0; raiutils~=0.4.0; hdbscan; extra == "sample"; tensorflow; extra == "deep"; pyyaml; extra == "deep"; keras; extra == "deep"; lightgbm; extra == "mimic"; lime>=0.2.0.0; extra == "lime" | + + + +0.32.0 | + + + +numpy; pandas; scipy; ml-wrappers~=0.6.0; scikit-learn; packaging; interpret-core<=0.6.9,>=0.1.20; shap<=0.46.0,>=0.20.0; raiutils~=0.4.0; hdbscan; extra == "sample"; tensorflow; extra == "deep"; pyyaml; extra == "deep"; keras; extra == "deep"; lightgbm; extra == "mimic"; lime>=0.2.0.0; extra == "lime" | + + + +0.32.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| interpret-core | + + + +Dependency Package | + + + +I&S | + + + +0.5.0 | + + + +None | + + + +numpy>=1.25; pandas>=0.19.2; scikit-learn>=0.18.1; joblib>=0.11; psutil>=5.6.2; extra == "debug"; ipykernel>=4.10.0; extra == "notebook"; ipython>=5.5.0; extra == "notebook"; plotly>=3.8.1; extra == "plotly"; Xlsxwriter>=3.0.1; extra == "excel"; dotsi>=0.0.3; extra == "excel"; seaborn>=0.13.2; extra == "excel"; matplotlib>=3.9.1; extra == "excel"; lime>=0.1.1.33; extra == "lime"; SALib>=1.3.3; extra == "sensitivity"; shap>=0.28.5; extra == "shap"; dill>=0.2.5; extra == "shap"; skope-rules>=1.0.1; extra == "skoperules"; treeinterpreter>=0.2.2; extra == "treeinterpreter"; aplr>=10.6.1; extra == "aplr"; dash<3.0.0,>=2.0.0; extra == "dash"; dash-cytoscape>=0.1.1; extra == "dash"; gevent>=1.3.6; extra == "dash"; requests>=2.19.0; extra == "dash"; scipy>=0.18.1; extra == "testing"; scikit-learn>=1.0.0; extra == "testing"; pytest>=4.3.0; extra == "testing"; pytest-runner>=4.4; extra == "testing"; pytest-xdist>=1.29; extra == "testing"; nbconvert>=5.4.1; extra == "testing"; selenium>=3.141.0; extra == "testing"; pytest-cov>=2.6.1; extra == "testing"; ruff>=0.1.2; extra == "testing"; jupyter>=1.0.0; extra == "testing"; ipywidgets>=7.4.2; extra == "testing" | + + + +0.5.1, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.6.6, 0.6.7, 0.6.8, 0.6.9, 0.6.10, 0.6.11, 0.6.12 | + + + +numpy>=1.25; pandas>=0.19.2; scikit-learn>=0.18.1; joblib>=0.11; psutil>=5.6.2; extra == "debug"; ipykernel>=4.10.0; extra == "notebook"; ipython>=5.5.0; extra == "notebook"; plotly>=3.8.1; extra == "plotly"; Xlsxwriter>=3.0.1; extra == "excel"; dotsi>=0.0.3; extra == "excel"; seaborn>=0.13.2; extra == "excel"; matplotlib>=3.9.1; extra == "excel"; lime>=0.1.1.33; extra == "lime"; SALib>=1.3.3; extra == "sensitivity"; shap>=0.28.5; extra == "shap"; dill>=0.2.5; extra == "shap"; skope-rules>=1.0.1; extra == "skoperules"; treeinterpreter>=0.2.2; extra == "treeinterpreter"; aplr>=10.6.1; extra == "aplr"; dash<3.0.0,>=2.0.0; extra == "dash"; dash-cytoscape>=0.1.1; extra == "dash"; gevent>=1.3.6; extra == "dash"; requests>=2.19.0; extra == "dash"; scipy>=0.18.1; extra == "testing"; scikit-learn>=1.0.0; extra == "testing"; pytest>=4.3.0; extra == "testing"; pytest-runner>=4.4; extra == "testing"; pytest-xdist>=1.29; extra == "testing"; nbconvert>=5.4.1; extra == "testing"; selenium>=3.141.0; extra == "testing"; pytest-cov>=2.6.1; extra == "testing"; ruff>=0.1.2; extra == "testing"; jupyter>=1.0.0; extra == "testing"; ipywidgets>=7.4.2; extra == "testing" | + + + +0.6.12 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| ipywidgets | + + + +Dependency Package | + + + +I&S | + + + +8.1.5 | + + + +None | + + + +comm>=0.1.3; ipython>=6.1.0; traitlets>=4.3.1; widgetsnbextension~=4.0.14; jupyterlab_widgets~=3.0.15; jsonschema; extra == "test"; ipykernel; extra == "test"; pytest>=3.6.0; extra == "test"; pytest-cov; extra == "test"; pytz; extra == "test" | + + + +8.1.6, 8.1.7 | + + + +comm>=0.1.3; ipython>=6.1.0; traitlets>=4.3.1; widgetsnbextension~=4.0.14; jupyterlab_widgets~=3.0.15; jsonschema; extra == "test"; ipykernel; extra == "test"; pytest>=3.6.0; extra == "test"; pytest-cov; extra == "test"; pytz; extra == "test" | + + + +8.1.7 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| isort | + + + +Dependency Package | + + + +I&S | + + + +5.13.2 | + + + +None | + + + +colorama; extra == "colors"; setuptools; extra == "plugins" | + + + +6.0.0a1, 6.0.0b1, 6.0.0b2, 6.0.0, 6.0.1 | + + + +colorama; extra == "colors"; setuptools; extra == "plugins" | + + + +6.0.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| itsdangerous | + + + +Dependency Package | + + + +I&S | + + + +2.2.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 2.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jellyfish | + + + +Dependency Package | + + + +I&S | + + + +1.1.0 | + + + +None | + + + ++ + + + | 1.1.2, 1.1.3, 1.2.0 | + + + ++ + + + | 1.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jiter | + + + +Dependency Package | + + + +I&S | + + + +0.6.1 | + + + +None | + + + ++ + + + | 0.7.0, 0.7.1, 0.8.0, 0.8.2, 0.9.0, 0.9.1, 0.10.0 | + + + ++ + + + | 0.10.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jsonpatch | + + + +Dependency Package | + + + +I&S | + + + +1.33 | + + + +None | + + + +jsonpointer (>=1.9) | + + + ++ + + + | jsonpointer (>=1.9) | + + + +1.33 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| jupyterlab-widgets | + + + +Dependency Package | + + + +I&S | + + + +3.0.13 | + + + +None | + + + ++ + + + | 3.0.14, 3.0.15 | + + + ++ + + + | 3.0.15 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| keras | + + + +Dependency Package | + + + +I&S | + + + +3.5.0 | + + + +None | + + + +absl-py; numpy; rich; namex; h5py; optree; ml-dtypes; packaging | + + + +3.6.0, 3.7.0, 3.8.0, 3.9.0, 3.9.1, 3.9.2, 3.10.0 | + + + +absl-py; numpy; rich; namex; h5py; optree; ml-dtypes; packaging | + + + +3.10.0 | + + + +Yes | + + + +CVE-2025-1550, CVSS_V4, Arbitrary Code Execution via Crafted Keras Config for Model Loading, CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:A/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H, affects: >=3.0.0,<3.9.0 CVE-2024-55459, CVSS_V4, keras Path Traversal vulnerability, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0 |
+
+
+
+ Yes | + + + +3.8.0: CVE-2025-1550, CVSS_V4, Arbitrary Code Execution via Crafted Keras Config for Model Loading, CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:A/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H, affects: >=3.0.0,<3.9.0; 3.6.0: CVE-2025-1550, CVSS_V4, Arbitrary Code Execution via Crafted Keras Config for Model Loading, CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:A/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H, affects: >=3.0.0,<3.9.0 CVE-2024-55459, CVSS_V4, keras Path Traversal vulnerability, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0; 3.7.0: CVE-2025-1550, CVSS_V4, Arbitrary Code Execution via Crafted Keras Config for Model Loading, CVSS:4.0/AV:L/AC:L/AT:P/PR:L/UI:A/VC:H/VI:H/VA:H/SC:H/SI:H/SA:H, affects: >=3.0.0,<3.9.0 CVE-2024-55459, CVSS_V4, keras Path Traversal vulnerability, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:A/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0 |
+
+
+
+ 3.10.0 | + + + +{'base_package': 'keras==3.10.0', 'dependencies': ['absl-py==2.3.0', 'numpy==2.3.1', 'rich==14.0.0', 'namex==0.1.0', 'optree==0.16.0', 'ml-dtypes==0.5.1', 'packaging==25.0']} | + + + +Not Used | + + +
| keyring | + + + +Dependency Package | + + + +I&S | + + + +25.4.1 | + + + +None | + + + +pywin32-ctypes>=0.2.0; sys_platform == "win32"; SecretStorage>=3.2; sys_platform == "linux"; jeepney>=0.4.2; sys_platform == "linux"; importlib_metadata>=4.11.4; python_version < "3.12"; jaraco.classes; importlib_resources; python_version < "3.9"; jaraco.functools; jaraco.context; pytest!=8.1.*,>=6; extra == "test"; pyfakefs; extra == "test"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; pytest-checkdocs>=2.4; extra == "check"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"; pytest-cov; extra == "cover"; pytest-enabler>=2.2; extra == "enabler"; pytest-mypy; extra == "type"; pygobject-stubs; extra == "type"; shtab; extra == "type"; types-pywin32; extra == "type"; shtab>=1.1.0; extra == "completion" | + + + +25.5.0, 25.6.0 | + + + +pywin32-ctypes>=0.2.0; sys_platform == "win32"; SecretStorage>=3.2; sys_platform == "linux"; jeepney>=0.4.2; sys_platform == "linux"; importlib_metadata>=4.11.4; python_version < "3.12"; jaraco.classes; importlib_resources; python_version < "3.9"; jaraco.functools; jaraco.context; pytest!=8.1.*,>=6; extra == "test"; pyfakefs; extra == "test"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; pytest-checkdocs>=2.4; extra == "check"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"; pytest-cov; extra == "cover"; pytest-enabler>=2.2; extra == "enabler"; pytest-mypy; extra == "type"; pygobject-stubs; extra == "type"; shtab; extra == "type"; types-pywin32; extra == "type"; shtab>=1.1.0; extra == "completion" | + + + +25.6.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| langchain | + + + +Dependency Package | + + + +I&S | + + + +0.3.19 | + + + +None | + + + +langchain-core<1.0.0,>=0.3.66; langchain-text-splitters<1.0.0,>=0.3.8; langsmith>=0.1.17; pydantic<3.0.0,>=2.7.4; SQLAlchemy<3,>=1.4; requests<3,>=2; PyYAML>=5.3; async-timeout<5.0.0,>=4.0.0; python_version < "3.11"; langchain-community; extra == "community"; langchain-anthropic; extra == "anthropic"; langchain-openai; extra == "openai"; langchain-azure-ai; extra == "azure-ai"; langchain-cohere; extra == "cohere"; langchain-google-vertexai; extra == "google-vertexai"; langchain-google-genai; extra == "google-genai"; langchain-fireworks; extra == "fireworks"; langchain-ollama; extra == "ollama"; langchain-together; extra == "together"; langchain-mistralai; extra == "mistralai"; langchain-huggingface; extra == "huggingface"; langchain-groq; extra == "groq"; langchain-aws; extra == "aws"; langchain-deepseek; extra == "deepseek"; langchain-xai; extra == "xai"; langchain-perplexity; extra == "perplexity" | + + + +0.3.20, 0.3.21, 0.3.22, 0.3.23, 0.3.24, 0.3.25, 0.3.26 | + + + +langchain-core<1.0.0,>=0.3.66; langchain-text-splitters<1.0.0,>=0.3.8; langsmith>=0.1.17; pydantic<3.0.0,>=2.7.4; SQLAlchemy<3,>=1.4; requests<3,>=2; PyYAML>=5.3; async-timeout<5.0.0,>=4.0.0; python_version < "3.11"; langchain-community; extra == "community"; langchain-anthropic; extra == "anthropic"; langchain-openai; extra == "openai"; langchain-azure-ai; extra == "azure-ai"; langchain-cohere; extra == "cohere"; langchain-google-vertexai; extra == "google-vertexai"; langchain-google-genai; extra == "google-genai"; langchain-fireworks; extra == "fireworks"; langchain-ollama; extra == "ollama"; langchain-together; extra == "together"; langchain-mistralai; extra == "mistralai"; langchain-huggingface; extra == "huggingface"; langchain-groq; extra == "groq"; langchain-aws; extra == "aws"; langchain-deepseek; extra == "deepseek"; langchain-xai; extra == "xai"; langchain-perplexity; extra == "perplexity" | + + + +0.3.26 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| langchain-core | + + + +Dependency Package | + + + +I&S | + + + +0.3.40 | + + + +None | + + + +langsmith>=0.3.45; tenacity!=8.4.0,<10.0.0,>=8.1.0; jsonpatch<2.0,>=1.33; PyYAML>=5.3; packaging<25,>=23.2; typing-extensions>=4.7; pydantic>=2.7.4 | + + + +0.3.41, 0.3.42, 0.3.43, 0.3.44, 0.3.45rc1, 0.3.45, 0.3.46, 0.3.47, 0.3.48, 0.3.49, 0.3.50, 0.3.51, 0.3.52, 0.3.53, 0.3.54, 0.3.55, 0.3.56rc1, 0.3.56, 0.3.57, 0.3.58, 0.3.59, 0.3.60, 0.3.61, 0.3.62, 0.3.63, 0.3.64, 0.3.65, 0.3.66 | + + + +langsmith>=0.3.45; tenacity!=8.4.0,<10.0.0,>=8.1.0; jsonpatch<2.0,>=1.33; PyYAML>=5.3; packaging<25,>=23.2; typing-extensions>=4.7; pydantic>=2.7.4 | + + + +0.3.66 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| langchain-text-splitters | + + + +Dependency Package | + + + +I&S | + + + +0.3.6 | + + + +None | + + + +langchain-core<1.0.0,>=0.3.51 | + + + +0.3.7, 0.3.8 | + + + +langchain-core<1.0.0,>=0.3.51 | + + + +0.3.8 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| langdetect | + + + +Dependency Package | + + + +I&S | + + + +1.0.9 | + + + +None | + + + +six | + + + ++ + + + | six | + + + +1.0.9 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| langsmith | + + + +Dependency Package | + + + +I&S | + + + +0.3.11 | + + + +None | + + + +httpx<1,>=0.23.0; langsmith-pyo3<0.2.0,>=0.1.0rc2; extra == "langsmith-pyo3"; openai-agents<0.1,>=0.0.3; extra == "openai-agents"; opentelemetry-api<2.0.0,>=1.30.0; extra == "otel"; opentelemetry-exporter-otlp-proto-http<2.0.0,>=1.30.0; extra == "otel"; opentelemetry-sdk<2.0.0,>=1.30.0; extra == "otel"; orjson<4.0.0,>=3.9.14; platform_python_implementation != "PyPy"; packaging>=23.2; pydantic<3,>=1; python_full_version < "3.12.4"; pydantic<3.0.0,>=2.7.4; python_full_version >= "3.12.4"; pytest>=7.0.0; extra == "pytest"; requests<3,>=2; requests-toolbelt<2.0.0,>=1.0.0; rich<14.0.0,>=13.9.4; extra == "pytest"; zstandard<0.24.0,>=0.23.0 | + + + +0.3.12, 0.3.13, 0.3.14rc0, 0.3.14rc1, 0.3.14, 0.3.15, 0.3.16, 0.3.17, 0.3.18rc1, 0.3.18, 0.3.19, 0.3.20, 0.3.21, 0.3.22, 0.3.23, 0.3.24, 0.3.25rc1, 0.3.25rc2, 0.3.25, 0.3.26, 0.3.27rc1, 0.3.27, 0.3.28rc1, 0.3.28rc2, 0.3.28, 0.3.29rc0, 0.3.29, 0.3.30, 0.3.31, 0.3.32, 0.3.33, 0.3.34, 0.3.35, 0.3.36, 0.3.37rc0, 0.3.37, 0.3.38, 0.3.39, 0.3.40, 0.3.41, 0.3.42, 0.3.43, 0.3.44, 0.3.45, 0.4.0, 0.4.1 | + + + +httpx<1,>=0.23.0; langsmith-pyo3<0.2.0,>=0.1.0rc2; extra == "langsmith-pyo3"; openai-agents<0.1,>=0.0.3; extra == "openai-agents"; opentelemetry-api<2.0.0,>=1.30.0; extra == "otel"; opentelemetry-exporter-otlp-proto-http<2.0.0,>=1.30.0; extra == "otel"; opentelemetry-sdk<2.0.0,>=1.30.0; extra == "otel"; orjson<4.0.0,>=3.9.14; platform_python_implementation != "PyPy"; packaging>=23.2; pydantic<3,>=1; python_full_version < "3.12.4"; pydantic<3.0.0,>=2.7.4; python_full_version >= "3.12.4"; pytest>=7.0.0; extra == "pytest"; requests<3,>=2; requests-toolbelt<2.0.0,>=1.0.0; rich<14.0.0,>=13.9.4; extra == "pytest"; zstandard<0.24.0,>=0.23.0 | + + + +0.4.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| lazy-imports | + + + +Dependency Package | + + + +I&S | + + + +0.3.1 | + + + +None | + + + +black; extra == "checking"; flake8; extra == "checking"; isort; extra == "checking"; mdformat; extra == "checking"; pydocstyle; extra == "checking"; mypy; extra == "checking"; pylint; extra == "checking"; pylintfileheader; extra == "checking"; pytest; extra == "testing"; packaging; extra == "testing"; mdformat; extra == "all"; isort; extra == "all"; mypy; extra == "all"; pydocstyle; extra == "all"; pylintfileheader; extra == "all"; pytest; extra == "all"; pylint; extra == "all"; flake8; extra == "all"; packaging; extra == "all"; black; extra == "all" | + + + +0.4.0, 1.0.0 | + + + +black; extra == "checking"; flake8; extra == "checking"; isort; extra == "checking"; mdformat; extra == "checking"; pydocstyle; extra == "checking"; mypy; extra == "checking"; pylint; extra == "checking"; pylintfileheader; extra == "checking"; pytest; extra == "testing"; packaging; extra == "testing"; mdformat; extra == "all"; isort; extra == "all"; mypy; extra == "all"; pydocstyle; extra == "all"; pylintfileheader; extra == "all"; pytest; extra == "all"; pylint; extra == "all"; flake8; extra == "all"; packaging; extra == "all"; black; extra == "all" | + + + +1.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| lazy-model | + + + +Dependency Package | + + + +I&S | + + + +0.2.0 | + + + +None | + + + +pydantic>=1.9.0 | + + + +0.3.0 | + + + +pydantic>=1.9.0 | + + + +0.3.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| libclang | + + + +Dependency Package | + + + +I&S | + + + +18.1.1 | + + + +None | + + + ++ + + + | + + + + | + + + + | 18.1.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-cloud | + + + +Dependency Package | + + + +I&S | + + + +0.1.0 | + + + +None | + + + +pydantic>=1.10; httpx>=0.20.0; certifi>=2024.7.4 | + + + +0.1.1, 0.1.2, 0.1.3, 0.1.4, 0.1.5, 0.1.6, 0.1.7a1, 0.1.7, 0.1.8, 0.1.9, 0.1.10, 0.1.11, 0.1.12, 0.1.13, 0.1.14, 0.1.15, 0.1.16, 0.1.17, 0.1.18, 0.1.19, 0.1.20, 0.1.21, 0.1.22, 0.1.23, 0.1.24, 0.1.25, 0.1.26, 0.1.27, 0.1.28 | + + + +pydantic>=1.10; httpx>=0.20.0; certifi>=2024.7.4 | + + + +0.1.28 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-index | + + + +Dependency Package | + + + +I&S | + + + +0.11.14 | + + + +None | + + + +llama-index-agent-openai<0.5,>=0.4.0; llama-index-cli<0.5,>=0.4.2; llama-index-core<0.13,>=0.12.43; llama-index-embeddings-openai<0.4,>=0.3.0; llama-index-indices-managed-llama-cloud>=0.4.0; llama-index-llms-openai<0.5,>=0.4.0; llama-index-multi-modal-llms-openai<0.6,>=0.5.0; llama-index-program-openai<0.4,>=0.3.0; llama-index-question-gen-openai<0.4,>=0.3.0; llama-index-readers-file<0.5,>=0.4.0; llama-index-readers-llama-parse>=0.4.0; nltk>3.8.1 | + + + +0.11.15, 0.11.16, 0.11.17, 0.11.18, 0.11.19, 0.11.20, 0.11.21, 0.11.22, 0.11.23, 0.12.0, 0.12.1, 0.12.2, 0.12.3, 0.12.4, 0.12.5, 0.12.6, 0.12.7, 0.12.8, 0.12.9, 0.12.10, 0.12.11, 0.12.12, 0.12.13, 0.12.14, 0.12.15, 0.12.16, 0.12.17, 0.12.18, 0.12.19, 0.12.20, 0.12.21, 0.12.22, 0.12.23, 0.12.24, 0.12.25, 0.12.26, 0.12.27, 0.12.28, 0.12.29, 0.12.30, 0.12.31, 0.12.32, 0.12.33, 0.12.34, 0.12.35, 0.12.36, 0.12.37, 0.12.38, 0.12.39, 0.12.40, 0.12.41, 0.12.42, 0.12.43 | + + + +llama-index-agent-openai<0.5,>=0.4.0; llama-index-cli<0.5,>=0.4.2; llama-index-core<0.13,>=0.12.43; llama-index-embeddings-openai<0.4,>=0.3.0; llama-index-indices-managed-llama-cloud>=0.4.0; llama-index-llms-openai<0.5,>=0.4.0; llama-index-multi-modal-llms-openai<0.6,>=0.5.0; llama-index-program-openai<0.4,>=0.3.0; llama-index-question-gen-openai<0.4,>=0.3.0; llama-index-readers-file<0.5,>=0.4.0; llama-index-readers-llama-parse>=0.4.0; nltk>3.8.1 | + + + +0.12.43 | + + + +Yes | + + + +CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 |
+
+
+
+ Yes | + + + +0.12.10: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.8: CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.26: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.18: CVE-2025-1752, CVSS_V3, LlamaIndex Vulnerable to Denial of Service (DoS), CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.12.15,<0.12.21 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.19: CVE-2025-1752, CVSS_V3, LlamaIndex Vulnerable to Denial of Service (DoS), CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.12.15,<0.12.21 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.21: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.15: CVE-2025-1752, CVSS_V3, LlamaIndex Vulnerable to Denial of Service (DoS), CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.12.15,<0.12.21 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.6: CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.11.20: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.11.19: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.11.22: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.11.23: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.0: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.27: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.22: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.11.18: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.9: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.12: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.5: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.4: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.16: CVE-2025-1752, CVSS_V3, LlamaIndex Vulnerable to Denial of Service (DoS), CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.12.15,<0.12.21 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.25: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.17: CVE-2025-1752, CVSS_V3, LlamaIndex Vulnerable to Denial of Service (DoS), CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.12.15,<0.12.21 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.11.21: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.24: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.11.16: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.11.17: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.13: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.1: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.23: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.11: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.14: CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.20: CVE-2025-1752, CVSS_V3, LlamaIndex Vulnerable to Denial of Service (DoS), CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0.12.15,<0.12.21 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28; 0.12.7: CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.3: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.12.2: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9; 0.11.15: CVE-2024-12704, CVSS_V3, LlamaIndex Improper Handling of Exceptional Conditions vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.6 CVE-2024-12911, CVSS_V3, LlamaIndex vulnerable to Creation of Temporary File in Directory with Insecure Permissions, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:L/A:H, affects: >=0,<0.12.3 CVE-2024-12910, CVSS_V3, LlamaIndex Uncontrolled Resource Consumption vulnerability, CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 CVE-2025-1793, CVSS_V3, llama_index vulnerable to SQL Injection, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.12.28 CVE-2024-12910, CVSS_V3, , CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<0.12.9 |
+
+
+
+ 0.12.43 | + + + +{'base_package': 'llama-index==0.12.43', 'dependencies': ['llama-index-agent-openai==0.4.11', 'llama-index-cli==0.4.3', 'llama-index-core==0.12.43', 'llama-index-embeddings-openai==0.3.1', 'llama-index-indices-managed-llama-cloud==0.7.7', 'llama-index-llms-openai==0.4.7', 'llama-index-multi-modal-llms-openai==0.5.1', 'llama-index-program-openai==0.3.2', 'llama-index-question-gen-openai==0.3.1', 'llama-index-readers-file==0.4.9', 'llama-index-readers-llama-parse==0.4.0', 'nltk==3.9.1']} | + + + +Not Used | + + +
| llama-index-agent-openai | + + + +Dependency Package | + + + +I&S | + + + +0.3.4 | + + + +None | + + + +llama-index-core<0.13,>=0.12.41; llama-index-llms-openai<0.5,>=0.4.0; openai>=1.14.0 | + + + +0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.4.5, 0.4.6, 0.4.7, 0.4.8, 0.4.9, 0.4.10, 0.4.11 | + + + +llama-index-core<0.13,>=0.12.41; llama-index-llms-openai<0.5,>=0.4.0; openai>=1.14.0 | + + + +0.4.11 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-index-cli | + + + +Dependency Package | + + + +I&S | + + + +0.3.1 | + + + +None | + + + +llama-index-core<0.13,>=0.12.0; llama-index-embeddings-openai<0.4,>=0.3.1; llama-index-llms-openai<0.5,>=0.4.0 | + + + +0.4.0, 0.4.1, 0.4.2, 0.4.3 | + + + +llama-index-core<0.13,>=0.12.0; llama-index-embeddings-openai<0.4,>=0.3.1; llama-index-llms-openai<0.5,>=0.4.0 | + + + +0.4.3 | + + + +Yes | + + + +CVE-2025-1753, CVSS_V3, LLama-Index CLI OS command injection vulnerability, CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.4.1 | + + + +Yes | + + + +0.4.0: CVE-2025-1753, CVSS_V3, LLama-Index CLI OS command injection vulnerability, CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<0.4.1 | + + + +0.4.3 | + + + +{'base_package': 'llama-index-cli==0.4.3', 'dependencies': ['llama-index-core==0.12.43', 'llama-index-embeddings-openai==0.3.1', 'llama-index-llms-openai==0.4.7']} | + + + +Not Used | + + +
| llama-index-core | + + + +Dependency Package | + + + +I&S | + + + +0.11.14 | + + + +None | + + + +aiohttp<4,>=3.8.6; aiosqlite; banks<3,>=2.0.0; dataclasses-json; deprecated>=1.2.9.3; dirtyjson<2,>=1.0.8; eval-type-backport<0.3,>=0.2.0; python_version < "3.10"; filetype<2,>=1.2.0; fsspec>=2023.5.0; httpx; llama-index-workflows>=0.2.1; nest-asyncio<2,>=1.5.8; networkx>=3.0; nltk>3.8.1; numpy; pillow>=9.0.0; pydantic>=2.8.0; pyyaml>=6.0.1; requests>=2.31.0; setuptools>=80.9.0; sqlalchemy[asyncio]>=1.4.49; tenacity!=8.4.0,<10.0.0,>=8.2.0; tiktoken>=0.7.0; tqdm<5,>=4.66.1; typing-extensions>=4.5.0; typing-inspect>=0.8.0; wrapt | + + + +0.11.15, 0.11.16, 0.11.17, 0.11.18, 0.11.19, 0.11.20, 0.11.21, 0.11.22, 0.11.23, 0.12.0, 0.12.1, 0.12.2, 0.12.3, 0.12.4, 0.12.5, 0.12.6, 0.12.7, 0.12.8, 0.12.9, 0.12.10, 0.12.10.post1, 0.12.11, 0.12.12, 0.12.13, 0.12.14, 0.12.15, 0.12.16, 0.12.16.post1, 0.12.17, 0.12.18, 0.12.19, 0.12.20, 0.12.21, 0.12.22, 0.12.23, 0.12.23.post1, 0.12.23.post2, 0.12.24, 0.12.24.post1, 0.12.25, 0.12.26, 0.12.27a1, 0.12.27a2, 0.12.27a3, 0.12.27, 0.12.28, 0.12.29, 0.12.30, 0.12.31, 0.12.32, 0.12.33, 0.12.33.post1, 0.12.34a1, 0.12.34a2, 0.12.34a3, 0.12.34a4, 0.12.34a5, 0.12.34, 0.12.34.post1, 0.12.35, 0.12.36, 0.12.37, 0.12.38, 0.12.39, 0.12.40, 0.12.41, 0.12.42, 0.12.43 | + + + +aiohttp<4,>=3.8.6; aiosqlite; banks<3,>=2.0.0; dataclasses-json; deprecated>=1.2.9.3; dirtyjson<2,>=1.0.8; eval-type-backport<0.3,>=0.2.0; python_version < "3.10"; filetype<2,>=1.2.0; fsspec>=2023.5.0; httpx; llama-index-workflows>=0.2.1; nest-asyncio<2,>=1.5.8; networkx>=3.0; nltk>3.8.1; numpy; pillow>=9.0.0; pydantic>=2.8.0; pyyaml>=6.0.1; requests>=2.31.0; setuptools>=80.9.0; sqlalchemy[asyncio]>=1.4.49; tenacity!=8.4.0,<10.0.0,>=8.2.0; tiktoken>=0.7.0; tqdm<5,>=4.66.1; typing-extensions>=4.5.0; typing-inspect>=0.8.0; wrapt | + + + +0.12.43 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-index-embeddings-openai | + + + +Dependency Package | + + + +I&S | + + + +0.2.5 | + + + +None | + + + +openai>=1.1.0; llama-index-core<0.13.0,>=0.12.0 | + + + +0.3.0, 0.3.1 | + + + +openai>=1.1.0; llama-index-core<0.13.0,>=0.12.0 | + + + +0.3.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-index-indices-managed-llama-cloud | + + + +Dependency Package | + + + +I&S | + + + +0.4.0 | + + + +None | + + + +llama-cloud==0.1.26; llama-index-core<0.13,>=0.12.0 | + + + +0.4.1, 0.4.2, 0.5.0, 0.6.0, 0.6.1, 0.6.2, 0.6.3, 0.6.4, 0.6.5, 0.6.6, 0.6.7, 0.6.8, 0.6.9, 0.6.10, 0.6.11, 0.7.0a1, 0.7.0, 0.7.1, 0.7.2, 0.7.3, 0.7.4, 0.7.5, 0.7.6, 0.7.7 | + + + +llama-cloud==0.1.26; llama-index-core<0.13,>=0.12.0 | + + + +0.7.7 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-index-llms-azure-openai | + + + +Dependency Package | + + + +I&S | + + + +0.1.10 | + + + +None | + + + +azure-identity<2,>=1.15.0; httpx; llama-index-core<0.13,>=0.12.0; llama-index-llms-openai<0.5,>=0.4.0 | + + + +0.2.0, 0.2.1, 0.2.2, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4 | + + + +azure-identity<2,>=1.15.0; httpx; llama-index-core<0.13,>=0.12.0; llama-index-llms-openai<0.5,>=0.4.0 | + + + +0.3.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-index-llms-openai | + + + +Dependency Package | + + + +I&S | + + + +0.2.9 | + + + +None | + + + +llama-index-core<0.13,>=0.12.41; openai<2,>=1.81.0 | + + + +0.2.10, 0.2.11, 0.2.12, 0.2.13, 0.2.14, 0.2.15, 0.2.16, 0.3.0, 0.3.1, 0.3.2, 0.3.3, 0.3.4, 0.3.5, 0.3.6, 0.3.7, 0.3.8, 0.3.9, 0.3.10, 0.3.11, 0.3.12, 0.3.13, 0.3.14, 0.3.15, 0.3.16, 0.3.17, 0.3.18, 0.3.19, 0.3.20, 0.3.21, 0.3.22, 0.3.23, 0.3.24, 0.3.25, 0.3.26, 0.3.27, 0.3.28, 0.3.29, 0.3.30, 0.3.31, 0.3.32, 0.3.33, 0.3.34, 0.3.35, 0.3.36, 0.3.37, 0.3.38, 0.3.39, 0.3.40, 0.3.41, 0.3.42, 0.3.43, 0.3.44, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.4.5, 0.4.6, 0.4.7 | + + + +llama-index-core<0.13,>=0.12.41; openai<2,>=1.81.0 | + + + +0.4.7 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-index-multi-modal-llms-openai | + + + +Dependency Package | + + + +I&S | + + + +0.2.1 | + + + +None | + + + +llama-index-core<0.13,>=0.12.3; llama-index-llms-openai<0.5,>=0.4.0 | + + + +0.2.2, 0.2.3, 0.3.0, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.5.0, 0.5.1 | + + + +llama-index-core<0.13,>=0.12.3; llama-index-llms-openai<0.5,>=0.4.0 | + + + +0.5.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-index-program-openai | + + + +Dependency Package | + + + +I&S | + + + +0.2.0 | + + + +None | + + + +llama-index-agent-openai<0.5,>=0.4.0; llama-index-core<0.13,>=0.12.0; llama-index-llms-openai<0.5,>=0.4.0 | + + + +0.3.0, 0.3.1, 0.3.2 | + + + +llama-index-agent-openai<0.5,>=0.4.0; llama-index-core<0.13,>=0.12.0; llama-index-llms-openai<0.5,>=0.4.0 | + + + +0.3.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-index-question-gen-openai | + + + +Dependency Package | + + + +I&S | + + + +0.2.0 | + + + +None | + + + +llama-index-core<0.13,>=0.12.0; llama-index-llms-openai<0.5,>=0.4.0; llama-index-program-openai<0.4,>=0.3.0 | + + + +0.3.0, 0.3.1 | + + + +llama-index-core<0.13,>=0.12.0; llama-index-llms-openai<0.5,>=0.4.0; llama-index-program-openai<0.4,>=0.3.0 | + + + +0.3.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-index-readers-file | + + + +Dependency Package | + + + +I&S | + + + +0.2.2 | + + + +None | + + + +beautifulsoup4<5,>=4.12.3; llama-index-core<0.13,>=0.12.0; pandas<2.3.0; pypdf<6,>=5.1.0; striprtf<0.0.27,>=0.0.26; pymupdf<2,>=1.23.21; extra == "pymupdf" | + + + +0.3.0, 0.4.0, 0.4.1, 0.4.2, 0.4.3, 0.4.4, 0.4.5, 0.4.6, 0.4.7, 0.4.8, 0.4.9 | + + + +beautifulsoup4<5,>=4.12.3; llama-index-core<0.13,>=0.12.0; pandas<2.3.0; pypdf<6,>=5.1.0; striprtf<0.0.27,>=0.0.26; pymupdf<2,>=1.23.21; extra == "pymupdf" | + + + +0.4.9 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-index-readers-llama-parse | + + + +Dependency Package | + + + +I&S | + + + +0.3.0 | + + + +None | + + + +llama-parse>=0.5.0; llama-index-core<0.13.0,>=0.12.0 | + + + +0.4.0 | + + + +llama-parse>=0.5.0; llama-index-core<0.13.0,>=0.12.0 | + + + +0.4.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llama-parse | + + + +Dependency Package | + + + +I&S | + + + +0.5.6 | + + + +None | + + + +llama-cloud-services>=0.6.36 | + + + +0.5.7, 0.5.8, 0.5.9, 0.5.10, 0.5.11, 0.5.12, 0.5.13, 0.5.14, 0.5.15, 0.5.16, 0.5.17, 0.5.18, 0.5.19, 0.5.20, 0.6.0, 0.6.1, 0.6.2, 0.6.4, 0.6.4.post1, 0.6.9, 0.6.12, 0.6.16, 0.6.18, 0.6.20, 0.6.21, 0.6.22, 0.6.23, 0.6.24, 0.6.25, 0.6.26, 0.6.27, 0.6.28, 0.6.30, 0.6.31, 0.6.32, 0.6.33, 0.6.34, 0.6.35, 0.6.36 | + + + +llama-cloud-services>=0.6.36 | + + + +0.6.36 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| llvmlite | + + + +Dependency Package | + + + +I&S | + + + +0.43.0 | + + + +None | + + + ++ + + + | 0.44.0rc1, 0.44.0rc2, 0.44.0 | + + + ++ + + + | 0.44.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| lxml | + + + +Dependency Package | + + + +I&S | + + + +5.3.0 | + + + +None | + + + +Cython<3.1.0,>=3.0.11; extra == "source"; cssselect>=0.7; extra == "cssselect"; html5lib; extra == "html5"; BeautifulSoup4; extra == "htmlsoup"; lxml_html_clean; extra == "html-clean" | + + + +5.3.1, 5.3.2, 5.4.0 | + + + +Cython<3.1.0,>=3.0.11; extra == "source"; cssselect>=0.7; extra == "cssselect"; html5lib; extra == "html5"; BeautifulSoup4; extra == "htmlsoup"; lxml_html_clean; extra == "html-clean" | + + + +5.4.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| Mako | + + + +Dependency Package | + + + +I&S | + + + +1.3.5 | + + + +None | + + + +MarkupSafe>=0.9.2; pytest; extra == "testing"; Babel; extra == "babel"; lingua; extra == "lingua" | + + + +1.3.6, 1.3.7, 1.3.8, 1.3.9, 1.3.10 | + + + +MarkupSafe>=0.9.2; pytest; extra == "testing"; Babel; extra == "babel"; lingua; extra == "lingua" | + + + +1.3.10 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| Markdown | + + + +Dependency Package | + + + +I&S | + + + +3.7 | + + + +None | + + + +importlib-metadata>=4.4; python_version < "3.10"; coverage; extra == "testing"; pyyaml; extra == "testing"; mkdocs>=1.6; extra == "docs"; mkdocs-nature>=0.6; extra == "docs"; mdx_gh_links>=0.2; extra == "docs"; mkdocstrings[python]; extra == "docs"; mkdocs-gen-files; extra == "docs"; mkdocs-section-index; extra == "docs"; mkdocs-literate-nav; extra == "docs" | + + + +3.8, 3.8.1, 3.8.2 | + + + +importlib-metadata>=4.4; python_version < "3.10"; coverage; extra == "testing"; pyyaml; extra == "testing"; mkdocs>=1.6; extra == "docs"; mkdocs-nature>=0.6; extra == "docs"; mdx_gh_links>=0.2; extra == "docs"; mkdocstrings[python]; extra == "docs"; mkdocs-gen-files; extra == "docs"; mkdocs-section-index; extra == "docs"; mkdocs-literate-nav; extra == "docs" | + + + +3.8.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| mccabe | + + + +Dependency Package | + + + +I&S | + + + +0.7.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.7.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| ml-dtypes | + + + +Dependency Package | + + + +I&S | + + + +0.5.0 | + + + +None | + + + +numpy>=1.21; numpy>=1.21.2; python_version >= "3.10"; numpy>=1.23.3; python_version >= "3.11"; numpy>=1.26.0; python_version >= "3.12"; numpy>=2.1.0; python_version >= "3.13"; absl-py; extra == "dev"; pytest; extra == "dev"; pytest-xdist; extra == "dev"; pylint>=2.6.0; extra == "dev"; pyink; extra == "dev" | + + + +0.5.1 | + + + +numpy>=1.21; numpy>=1.21.2; python_version >= "3.10"; numpy>=1.23.3; python_version >= "3.11"; numpy>=1.26.0; python_version >= "3.12"; numpy>=2.1.0; python_version >= "3.13"; absl-py; extra == "dev"; pytest; extra == "dev"; pytest-xdist; extra == "dev"; pylint>=2.6.0; extra == "dev"; pyink; extra == "dev" | + + + +0.5.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| ml-wrappers | + + + +Dependency Package | + + + +I&S | + + + +0.5.6 | + + + +None | + + + +numpy; packaging; pandas; scipy; scikit-learn | + + + +0.6.0 | + + + +numpy; packaging; pandas; scipy; scikit-learn | + + + +0.6.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| mlflow-skinny | + + + +Dependency Package | + + + +I&S | + + + +2.15.1 | + + + +None | + + + +cachetools<7,>=5.0.0; click<9,>=7.0; cloudpickle<4; databricks-sdk<1,>=0.20.0; fastapi<1; gitpython<4,>=3.1.9; importlib_metadata!=4.7.0,<9,>=3.7.0; opentelemetry-api<3,>=1.9.0; opentelemetry-sdk<3,>=1.9.0; packaging<26; protobuf<7,>=3.12.0; pydantic<3,>=1.10.8; pyyaml<7,>=5.1; requests<3,>=2.17.3; sqlparse<1,>=0.4.0; typing-extensions<5,>=4.0.0; uvicorn<1; pyarrow; extra == "extras"; requests-auth-aws-sigv4; extra == "extras"; boto3; extra == "extras"; botocore; extra == "extras"; google-cloud-storage>=1.30.0; extra == "extras"; azureml-core>=1.2.0; extra == "extras"; pysftp; extra == "extras"; kubernetes; extra == "extras"; virtualenv; extra == "extras"; prometheus-flask-exporter; extra == "extras"; azure-storage-file-datalake>12; extra == "databricks"; google-cloud-storage>=1.30.0; extra == "databricks"; boto3>1; extra == "databricks"; botocore; extra == "databricks"; databricks-agents<2.0,>=1.0.0; extra == "databricks"; mlserver!=1.3.1,>=1.2.0; extra == "mlserver"; mlserver-mlflow!=1.3.1,>=1.2.0; extra == "mlserver"; fastapi<1; extra == "gateway"; uvicorn[standard]<1; extra == "gateway"; watchfiles<2; extra == "gateway"; aiohttp<4; extra == "gateway"; boto3<2,>=1.28.56; extra == "gateway"; tiktoken<1; extra == "gateway"; slowapi<1,>=0.1.9; extra == "gateway"; fastapi<1; extra == "genai"; uvicorn[standard]<1; extra == "genai"; watchfiles<2; extra == "genai"; aiohttp<4; extra == "genai"; boto3<2,>=1.28.56; extra == "genai"; tiktoken<1; extra == "genai"; slowapi<1,>=0.1.9; extra == "genai"; mlflow-dbstore; extra == "sqlserver"; aliyunstoreplugin; extra == "aliyun-oss"; mlflow-xethub; extra == "xethub"; mlflow-jfrog-plugin; extra == "jfrog"; langchain<=0.3.25,>=0.1.0; extra == "langchain"; Flask-WTF<2; extra == "auth" | + + + +2.16.0, 2.16.1, 2.16.2, 2.17.0rc0, 2.17.0, 2.17.1, 2.17.2, 2.18.0rc0, 2.18.0, 2.19.0rc0, 2.19.0, 2.20.0rc0, 2.20.0, 2.20.1, 2.20.2, 2.20.3, 2.20.4, 2.21.0rc0, 2.21.0, 2.21.1, 2.21.2, 2.21.3, 2.22.0rc0, 2.22.0, 2.22.1, 3.0.0rc0, 3.0.0rc1, 3.0.0rc2, 3.0.0rc3, 3.0.0, 3.0.1, 3.1.0rc0, 3.1.0, 3.1.1 | + + + +cachetools<7,>=5.0.0; click<9,>=7.0; cloudpickle<4; databricks-sdk<1,>=0.20.0; fastapi<1; gitpython<4,>=3.1.9; importlib_metadata!=4.7.0,<9,>=3.7.0; opentelemetry-api<3,>=1.9.0; opentelemetry-sdk<3,>=1.9.0; packaging<26; protobuf<7,>=3.12.0; pydantic<3,>=1.10.8; pyyaml<7,>=5.1; requests<3,>=2.17.3; sqlparse<1,>=0.4.0; typing-extensions<5,>=4.0.0; uvicorn<1; pyarrow; extra == "extras"; requests-auth-aws-sigv4; extra == "extras"; boto3; extra == "extras"; botocore; extra == "extras"; google-cloud-storage>=1.30.0; extra == "extras"; azureml-core>=1.2.0; extra == "extras"; pysftp; extra == "extras"; kubernetes; extra == "extras"; virtualenv; extra == "extras"; prometheus-flask-exporter; extra == "extras"; azure-storage-file-datalake>12; extra == "databricks"; google-cloud-storage>=1.30.0; extra == "databricks"; boto3>1; extra == "databricks"; botocore; extra == "databricks"; databricks-agents<2.0,>=1.0.0; extra == "databricks"; mlserver!=1.3.1,>=1.2.0; extra == "mlserver"; mlserver-mlflow!=1.3.1,>=1.2.0; extra == "mlserver"; fastapi<1; extra == "gateway"; uvicorn[standard]<1; extra == "gateway"; watchfiles<2; extra == "gateway"; aiohttp<4; extra == "gateway"; boto3<2,>=1.28.56; extra == "gateway"; tiktoken<1; extra == "gateway"; slowapi<1,>=0.1.9; extra == "gateway"; fastapi<1; extra == "genai"; uvicorn[standard]<1; extra == "genai"; watchfiles<2; extra == "genai"; aiohttp<4; extra == "genai"; boto3<2,>=1.28.56; extra == "genai"; tiktoken<1; extra == "genai"; slowapi<1,>=0.1.9; extra == "genai"; mlflow-dbstore; extra == "sqlserver"; aliyunstoreplugin; extra == "aliyun-oss"; mlflow-xethub; extra == "xethub"; mlflow-jfrog-plugin; extra == "jfrog"; langchain<=0.3.25,>=0.1.0; extra == "langchain"; Flask-WTF<2; extra == "auth" | + + + +3.1.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| mongomock | + + + +Dependency Package | + + + +I&S | + + + +4.1.2 | + + + +None | + + + +packaging; pytz; sentinels; pyexecjs; extra == "pyexecjs"; pymongo; extra == "pymongo" | + + + +4.2.0.post1, 4.3.0 | + + + +packaging; pytz; sentinels; pyexecjs; extra == "pyexecjs"; pymongo; extra == "pymongo" | + + + +4.3.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| motor | + + + +Dependency Package | + + + +I&S | + + + +3.6.0 | + + + +None | + + + +pymongo<5.0,>=4.9; pymongo[aws]<5,>=4.5; extra == "aws"; aiohttp; extra == "docs"; furo==2024.8.6; extra == "docs"; readthedocs-sphinx-search~=0.3; extra == "docs"; sphinx-rtd-theme<3,>=2; extra == "docs"; sphinx<8,>=5.3; extra == "docs"; tornado; extra == "docs"; pymongo[encryption]<5,>=4.5; extra == "encryption"; pymongo[gssapi]<5,>=4.5; extra == "gssapi"; pymongo[ocsp]<5,>=4.5; extra == "ocsp"; pymongo[snappy]<5,>=4.5; extra == "snappy"; aiohttp>=3.8.7; extra == "test"; cffi>=1.17.0rc1; python_version == "3.13" and extra == "test"; mockupdb; extra == "test"; pymongo[encryption]<5,>=4.5; extra == "test"; pytest-asyncio; extra == "test"; pytest>=7; extra == "test"; tornado>=5; extra == "test"; pymongo[zstd]<5,>=4.5; extra == "zstd" | + + + +3.6.1, 3.7.0, 3.7.1 | + + + +pymongo<5.0,>=4.9; pymongo[aws]<5,>=4.5; extra == "aws"; aiohttp; extra == "docs"; furo==2024.8.6; extra == "docs"; readthedocs-sphinx-search~=0.3; extra == "docs"; sphinx-rtd-theme<3,>=2; extra == "docs"; sphinx<8,>=5.3; extra == "docs"; tornado; extra == "docs"; pymongo[encryption]<5,>=4.5; extra == "encryption"; pymongo[gssapi]<5,>=4.5; extra == "gssapi"; pymongo[ocsp]<5,>=4.5; extra == "ocsp"; pymongo[snappy]<5,>=4.5; extra == "snappy"; aiohttp>=3.8.7; extra == "test"; cffi>=1.17.0rc1; python_version == "3.13" and extra == "test"; mockupdb; extra == "test"; pymongo[encryption]<5,>=4.5; extra == "test"; pytest-asyncio; extra == "test"; pytest>=7; extra == "test"; tornado>=5; extra == "test"; pymongo[zstd]<5,>=4.5; extra == "zstd" | + + + +3.7.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| mpmath | + + + +Dependency Package | + + + +I&S | + + + +1.3.0 | + + + +None | + + + +pytest (>=4.6) ; extra == 'develop'; pycodestyle ; extra == 'develop'; pytest-cov ; extra == 'develop'; codecov ; extra == 'develop'; wheel ; extra == 'develop'; sphinx ; extra == 'docs'; gmpy2 (>=2.1.0a4) ; (platform_python_implementation != "PyPy") and extra == 'gmpy'; pytest (>=4.6) ; extra == 'tests' | + + + +1.4.0a0, 1.4.0a1, 1.4.0a2, 1.4.0a3, 1.4.0a4, 1.4.0a5 | + + + +pytest (>=4.6) ; extra == 'develop'; pycodestyle ; extra == 'develop'; pytest-cov ; extra == 'develop'; codecov ; extra == 'develop'; wheel ; extra == 'develop'; sphinx ; extra == 'docs'; gmpy2 (>=2.1.0a4) ; (platform_python_implementation != "PyPy") and extra == 'gmpy'; pytest (>=4.6) ; extra == 'tests' | + + + +1.4.0a5 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| msgpack | + + + +Dependency Package | + + + +I&S | + + + +1.1.0 | + + + +None | + + + ++ + + + | 1.1.1rc1, 1.1.1 | + + + ++ + + + | 1.1.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| multiprocess | + + + +Dependency Package | + + + +I&S | + + + +0.70.16 | + + + +None | + + + +dill>=0.4.0 | + + + +0.70.17, 0.70.18 | + + + +dill>=0.4.0 | + + + +0.70.18 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| namex | + + + +Dependency Package | + + + +I&S | + + + +0.0.8 | + + + +None | + + + ++ + + + | 0.0.9, 0.1.0 | + + + ++ + + + | 0.1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| narwhals | + + + +Dependency Package | + + + +I&S | + + + +1.9.0 | + + + +None | + + + +cudf>=24.10.0; extra == "cudf"; dask[dataframe]>=2024.8; extra == "dask"; duckdb>=1.0; extra == "duckdb"; ibis-framework>=6.0.0; extra == "ibis"; packaging; extra == "ibis"; pyarrow-hotfix; extra == "ibis"; rich; extra == "ibis"; modin; extra == "modin"; pandas>=1.1.3; extra == "pandas"; polars>=0.20.3; extra == "polars"; pyarrow>=11.0.0; extra == "pyarrow"; pyspark>=3.5.0; extra == "pyspark"; pyspark[connect]>=3.5.0; extra == "pyspark-connect"; sqlframe>=3.22.0; extra == "sqlframe" | + + + +1.9.1, 1.9.2, 1.9.3, 1.9.4, 1.10.0, 1.11.0, 1.11.1, 1.12.0, 1.12.1, 1.13.1, 1.13.2, 1.13.3, 1.13.4, 1.13.5, 1.14.0, 1.14.1, 1.14.2, 1.14.3, 1.15.0, 1.15.1, 1.15.2, 1.16.0, 1.17.0, 1.18.0, 1.18.1, 1.18.2, 1.18.3, 1.18.4, 1.19.0, 1.19.1, 1.20.0, 1.20.1, 1.21.0, 1.21.1, 1.22.0, 1.23.0, 1.24.0, 1.24.1, 1.24.2, 1.25.0, 1.25.1, 1.25.2, 1.26.0, 1.27.0, 1.27.1, 1.28.0, 1.29.0, 1.29.1, 1.30.0, 1.31.0, 1.32.0, 1.33.0, 1.34.0, 1.34.1, 1.35.0, 1.36.0, 1.37.0, 1.37.1, 1.38.0, 1.38.1, 1.38.2, 1.39.0, 1.39.1, 1.40.0, 1.41.0, 1.41.1, 1.42.0, 1.42.1, 1.43.0, 1.43.1, 1.44.0 | + + + +cudf>=24.10.0; extra == "cudf"; dask[dataframe]>=2024.8; extra == "dask"; duckdb>=1.0; extra == "duckdb"; ibis-framework>=6.0.0; extra == "ibis"; packaging; extra == "ibis"; pyarrow-hotfix; extra == "ibis"; rich; extra == "ibis"; modin; extra == "modin"; pandas>=1.1.3; extra == "pandas"; polars>=0.20.3; extra == "polars"; pyarrow>=11.0.0; extra == "pyarrow"; pyspark>=3.5.0; extra == "pyspark"; pyspark[connect]>=3.5.0; extra == "pyspark-connect"; sqlframe>=3.22.0; extra == "sqlframe" | + + + +1.44.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| nh3 | + + + +Dependency Package | + + + +I&S | + + + +0.2.18 | + + + +None | + + + ++ + + + | 0.2.19, 0.2.20, 0.2.21 | + + + ++ + + + | 0.2.21 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| nodeenv | + + + +Dependency Package | + + + +I&S | + + + +1.9.1 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.9.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| nose | + + + +Dependency Package | + + + +I&S | + + + +1.3.7 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.3.7 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| num2words | + + + +Dependency Package | + + + +I&S | + + + +0.5.6 | + + + +None | + + + +docopt>=0.6.2 | + + + +0.5.7, 0.5.8, 0.5.9, 0.5.10, 0.5.11, 0.5.12, 0.5.13, 0.5.14 | + + + +docopt>=0.6.2 | + + + +0.5.14 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| numba | + + + +Dependency Package | + + + +I&S | + + + +0.60.0 | + + + +None | + + + +llvmlite<0.45,>=0.44.0dev0; numpy<2.3,>=1.24 | + + + +0.61.0rc1, 0.61.0rc2, 0.61.0, 0.61.1rc1, 0.61.2 | + + + +llvmlite<0.45,>=0.44.0dev0; numpy<2.3,>=1.24 | + + + +0.61.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| olefile | + + + +Dependency Package | + + + +I&S | + + + +0.47 | + + + +None | + + + +pytest ; extra == 'tests'; pytest-cov ; extra == 'tests' | + + + ++ + + + | pytest ; extra == 'tests'; pytest-cov ; extra == 'tests' | + + + +0.47 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| onnx | + + + +Dependency Package | + + + +I&S | + + + +1.17.0 | + + + +None | + + + +numpy>=1.22; protobuf>=4.25.1; typing_extensions>=4.7.1; google-re2; python_version < "3.13" and extra == "reference"; Pillow; extra == "reference" | + + + +1.18.0 | + + + +numpy>=1.22; protobuf>=4.25.1; typing_extensions>=4.7.1; google-re2; python_version < "3.13" and extra == "reference"; Pillow; extra == "reference" | + + + +1.18.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| openai | + + + +Dependency Package | + + + +I&S | + + + +1.51.2 | + + + +None | + + + +anyio<5,>=3.5.0; distro<2,>=1.7.0; httpx<1,>=0.23.0; jiter<1,>=0.4.0; pydantic<3,>=1.9.0; sniffio; tqdm>4; typing-extensions<5,>=4.11; aiohttp; extra == "aiohttp"; httpx-aiohttp>=0.1.6; extra == "aiohttp"; numpy>=1; extra == "datalib"; pandas-stubs>=1.1.0.11; extra == "datalib"; pandas>=1.2.3; extra == "datalib"; websockets<16,>=13; extra == "realtime"; numpy>=2.0.2; extra == "voice-helpers"; sounddevice>=0.5.1; extra == "voice-helpers" | + + + +1.52.0, 1.52.1, 1.52.2, 1.53.0, 1.53.1, 1.54.0, 1.54.1, 1.54.2, 1.54.3, 1.54.4, 1.54.5, 1.55.0, 1.55.1, 1.55.2, 1.55.3, 1.56.0, 1.56.1, 1.56.2, 1.57.0, 1.57.1, 1.57.2, 1.57.3, 1.57.4, 1.58.0, 1.58.1, 1.59.2, 1.59.3, 1.59.4, 1.59.5, 1.59.6, 1.59.7, 1.59.8, 1.59.9, 1.60.0, 1.60.1, 1.60.2, 1.61.0, 1.61.1, 1.62.0, 1.63.0, 1.63.1, 1.63.2, 1.64.0, 1.65.0, 1.65.1, 1.65.2, 1.65.3, 1.65.4, 1.65.5, 1.66.0, 1.66.1, 1.66.2, 1.66.3, 1.66.5, 1.67.0, 1.68.0, 1.68.1, 1.68.2, 1.69.0, 1.70.0, 1.71.0, 1.72.0, 1.73.0, 1.74.0, 1.74.1, 1.75.0, 1.76.0, 1.76.1, 1.76.2, 1.77.0, 1.78.0, 1.78.1, 1.79.0, 1.80.0, 1.81.0, 1.82.0, 1.82.1, 1.83.0, 1.84.0, 1.85.0, 1.86.0, 1.87.0, 1.88.0, 1.89.0, 1.90.0, 1.91.0 | + + + +anyio<5,>=3.5.0; distro<2,>=1.7.0; httpx<1,>=0.23.0; jiter<1,>=0.4.0; pydantic<3,>=1.9.0; sniffio; tqdm>4; typing-extensions<5,>=4.11; aiohttp; extra == "aiohttp"; httpx-aiohttp>=0.1.6; extra == "aiohttp"; numpy>=1; extra == "datalib"; pandas-stubs>=1.1.0.11; extra == "datalib"; pandas>=1.2.3; extra == "datalib"; websockets<16,>=13; extra == "realtime"; numpy>=2.0.2; extra == "voice-helpers"; sounddevice>=0.5.1; extra == "voice-helpers" | + + + +1.91.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| opentelemetry-api | + + + +Dependency Package | + + + +I&S | + + + +1.27.0 | + + + +None | + + + +importlib-metadata<8.8.0,>=6.0; typing-extensions>=4.5.0 | + + + +1.28.0, 1.28.1, 1.28.2, 1.29.0, 1.30.0, 1.31.0, 1.31.1, 1.32.0, 1.32.1, 1.33.0, 1.33.1, 1.34.0, 1.34.1 | + + + +importlib-metadata<8.8.0,>=6.0; typing-extensions>=4.5.0 | + + + +1.34.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| opentelemetry-sdk | + + + +Dependency Package | + + + +I&S | + + + +1.27.0 | + + + +None | + + + +opentelemetry-api==1.34.1; opentelemetry-semantic-conventions==0.55b1; typing-extensions>=4.5.0 | + + + +1.28.0, 1.28.1, 1.28.2, 1.29.0, 1.30.0, 1.31.0, 1.31.1, 1.32.0, 1.32.1, 1.33.0, 1.33.1, 1.34.0, 1.34.1 | + + + +opentelemetry-api==1.34.1; opentelemetry-semantic-conventions==0.55b1; typing-extensions>=4.5.0 | + + + +1.34.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| opentelemetry-semantic-conventions | + + + +Dependency Package | + + + +I&S | + + + +0.48b0 | + + + +None | + + + +opentelemetry-api==1.34.1; typing-extensions>=4.5.0 | + + + +0.49b0, 0.49b1, 0.49b2, 0.50b0, 0.51b0, 0.52b0, 0.52b1, 0.53b0, 0.53b1, 0.54b0, 0.54b1, 0.55b0, 0.55b1 | + + + +opentelemetry-api==1.34.1; typing-extensions>=4.5.0 | + + + +0.55b1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| opt-einsum | + + + +Dependency Package | + + + +I&S | + + + +3.4.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 3.4.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| optree | + + + +Dependency Package | + + + +I&S | + + + +0.12.1 | + + + +None | + + + +typing-extensions>=4.6.0; jax; extra == "jax"; numpy; extra == "numpy"; torch; extra == "torch"; ruff; extra == "lint"; pylint[spelling]; extra == "lint"; mypy; extra == "lint"; doc8; extra == "lint"; pyenchant; extra == "lint"; xdoctest; extra == "lint"; cpplint; extra == "lint"; pre-commit; extra == "lint"; pytest; extra == "test"; pytest-cov; extra == "test"; covdefaults; extra == "test"; rich; extra == "test"; sphinx; extra == "docs"; sphinx-autoapi; extra == "docs"; sphinx-autobuild; extra == "docs"; sphinx-copybutton; extra == "docs"; sphinx-rtd-theme; extra == "docs"; sphinxcontrib-bibtex; extra == "docs"; sphinx-autodoc-typehints; extra == "docs"; docutils; extra == "docs"; jax[cpu]; extra == "docs"; numpy; extra == "docs"; torch; extra == "docs" | + + + +0.13.0, 0.13.1, 0.14.0rc1, 0.14.0, 0.14.1, 0.15.0, 0.16.0 | + + + +typing-extensions>=4.6.0; jax; extra == "jax"; numpy; extra == "numpy"; torch; extra == "torch"; ruff; extra == "lint"; pylint[spelling]; extra == "lint"; mypy; extra == "lint"; doc8; extra == "lint"; pyenchant; extra == "lint"; xdoctest; extra == "lint"; cpplint; extra == "lint"; pre-commit; extra == "lint"; pytest; extra == "test"; pytest-cov; extra == "test"; covdefaults; extra == "test"; rich; extra == "test"; sphinx; extra == "docs"; sphinx-autoapi; extra == "docs"; sphinx-autobuild; extra == "docs"; sphinx-copybutton; extra == "docs"; sphinx-rtd-theme; extra == "docs"; sphinxcontrib-bibtex; extra == "docs"; sphinx-autodoc-typehints; extra == "docs"; docutils; extra == "docs"; jax[cpu]; extra == "docs"; numpy; extra == "docs"; torch; extra == "docs" | + + + +0.16.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| orderly-set | + + + +Dependency Package | + + + +I&S | + + + +5.2.2 | + + + +None | + + + ++ + + + | 5.2.3, 5.3.0, 5.3.1, 5.3.2, 5.4.0, 5.4.1 | + + + ++ + + + | 5.4.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| outcome | + + + +Dependency Package | + + + +I&S | + + + +1.3.0.post0 | + + + +None | + + + +attrs >=19.2.0 | + + + ++ + + + | attrs >=19.2.0 | + + + +1.3.0.post0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pbr | + + + +Dependency Package | + + + +I&S | + + + +6.1.0 | + + + +None | + + + +setuptools | + + + +6.1.1.0b1, 6.1.1 | + + + +setuptools | + + + +6.1.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pip | + + + +Dependency Package | + + + +I&S | + + + +24 | + + + +None | + + + ++ + + + | 24.1b1, 24.1b2, 24.1, 24.1.1, 24.1.2, 24.2, 24.3, 24.3.1, 25.0, 25.0.1, 25.1, 25.1.1 | + + + ++ + + + | 25.1.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| ply | + + + +Dependency Package | + + + +I&S | + + + +3.11 | + + + +None | + + + ++ + + + | + + + + | + + + + | 3.11 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pmdarima | + + + +Dependency Package | + + + +I&S | + + + +2.0.4 | + + + +None | + + + +joblib >=0.11; Cython !=0.29.18,!=0.29.31,>=0.29; numpy >=1.21.2; pandas >=0.19; scikit-learn >=0.22; scipy >=1.3.2; statsmodels >=0.13.2; urllib3; setuptools !=50.0.0,>=38.6.0; packaging >=17.1 | + + + ++ + + + | joblib >=0.11; Cython !=0.29.18,!=0.29.31,>=0.29; numpy >=1.21.2; pandas >=0.19; scikit-learn >=0.22; scipy >=1.3.2; statsmodels >=0.13.2; urllib3; setuptools !=50.0.0,>=38.6.0; packaging >=17.1 | + + + +2.0.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| poetry | + + + +Dependency Package | + + + +I&S | + + + +1.8.3 | + + + +None | + + + +build<2.0.0,>=1.2.1; cachecontrol[filecache]<0.15.0,>=0.14.0; cleo<3.0.0,>=2.1.0; dulwich<0.23.0,>=0.22.6; fastjsonschema<3.0.0,>=2.18.0; findpython<0.7.0,>=0.6.2; importlib-metadata<8.7,>=4.4; python_version < "3.10"; installer<0.8.0,>=0.7.0; keyring<26.0.0,>=25.1.0; packaging>=24.0; pbs-installer[download,install]<2026.0.0,>=2025.1.6; pkginfo<2.0,>=1.12; platformdirs<5,>=3.0.0; poetry-core==2.1.3; pyproject-hooks<2.0.0,>=1.0.0; requests<3.0,>=2.26; requests-toolbelt<2.0.0,>=1.0.0; shellingham<2.0,>=1.5; tomli<3.0.0,>=2.0.1; python_version < "3.11"; tomlkit<1.0.0,>=0.11.4; trove-classifiers>=2022.5.19; virtualenv<21.0.0,>=20.26.6; xattr<2.0.0,>=1.0.0; sys_platform == "darwin" | + + + +1.8.4, 1.8.5, 2.0.0, 2.0.1, 2.1.0, 2.1.1, 2.1.2, 2.1.3 | + + + +build<2.0.0,>=1.2.1; cachecontrol[filecache]<0.15.0,>=0.14.0; cleo<3.0.0,>=2.1.0; dulwich<0.23.0,>=0.22.6; fastjsonschema<3.0.0,>=2.18.0; findpython<0.7.0,>=0.6.2; importlib-metadata<8.7,>=4.4; python_version < "3.10"; installer<0.8.0,>=0.7.0; keyring<26.0.0,>=25.1.0; packaging>=24.0; pbs-installer[download,install]<2026.0.0,>=2025.1.6; pkginfo<2.0,>=1.12; platformdirs<5,>=3.0.0; poetry-core==2.1.3; pyproject-hooks<2.0.0,>=1.0.0; requests<3.0,>=2.26; requests-toolbelt<2.0.0,>=1.0.0; shellingham<2.0,>=1.5; tomli<3.0.0,>=2.0.1; python_version < "3.11"; tomlkit<1.0.0,>=0.11.4; trove-classifiers>=2022.5.19; virtualenv<21.0.0,>=20.26.6; xattr<2.0.0,>=1.0.0; sys_platform == "darwin" | + + + +2.1.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| poetry-core | + + + +Dependency Package | + + + +I&S | + + + +1.9.0 | + + + +None | + + + ++ + + + | 1.9.1, 2.0.0, 2.0.1, 2.1.0, 2.1.1, 2.1.2, 2.1.3 | + + + ++ + + + | 2.1.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| posthog | + + + +Dependency Package | + + + +I&S | + + + +3.6.6 | + + + +None | + + + +requests<3.0,>=2.7; six>=1.5; python-dateutil>=2.2; backoff>=1.10.0; distro>=1.5.0; langchain>=0.2.0; extra == "langchain"; django-stubs; extra == "dev"; lxml; extra == "dev"; mypy; extra == "dev"; mypy-baseline; extra == "dev"; types-mock; extra == "dev"; types-python-dateutil; extra == "dev"; types-requests; extra == "dev"; types-setuptools; extra == "dev"; types-six; extra == "dev"; pre-commit; extra == "dev"; pydantic; extra == "dev"; ruff; extra == "dev"; setuptools; extra == "dev"; packaging; extra == "dev"; wheel; extra == "dev"; twine; extra == "dev"; tomli; extra == "dev"; tomli_w; extra == "dev"; mock>=2.0.0; extra == "test"; freezegun==1.5.1; extra == "test"; coverage; extra == "test"; pytest; extra == "test"; pytest-timeout; extra == "test"; pytest-asyncio; extra == "test"; django; extra == "test"; openai; extra == "test"; anthropic; extra == "test"; langgraph>=0.4.8; extra == "test"; langchain-core>=0.3.65; extra == "test"; langchain-community>=0.3.25; extra == "test"; langchain-openai>=0.3.22; extra == "test"; langchain-anthropic>=0.3.15; extra == "test"; google-genai; extra == "test"; pydantic; extra == "test"; parameterized>=0.8.1; extra == "test" | + + + +3.7.0, 3.7.2, 3.7.3, 3.7.4, 3.7.5, 3.8.0, 3.8.1, 3.8.2, 3.8.3, 3.8.4, 3.9.0, 3.9.1, 3.9.2, 3.9.3, 3.10.0, 3.11.0, 3.12.0, 3.12.1, 3.13.0, 3.14.1, 3.14.2, 3.15.0, 3.15.1, 3.16.0, 3.17.0, 3.18.0, 3.18.1, 3.19.0, 3.19.1, 3.20.0, 3.21.0, 3.22.0, 3.23.0, 3.24.0, 3.24.1, 3.24.2, 3.24.3, 3.25.0, 4.0.0, 4.0.1, 4.1.0, 4.2.0, 4.3.2, 4.4.0, 4.4.1, 4.4.2, 4.5.0, 4.6.0, 4.6.1, 4.6.2, 4.7.0, 4.8.0, 4.9.0, 4.10.0, 5.0.0, 5.1.0, 5.2.0, 5.3.0, 5.4.0 | + + + +requests<3.0,>=2.7; six>=1.5; python-dateutil>=2.2; backoff>=1.10.0; distro>=1.5.0; langchain>=0.2.0; extra == "langchain"; django-stubs; extra == "dev"; lxml; extra == "dev"; mypy; extra == "dev"; mypy-baseline; extra == "dev"; types-mock; extra == "dev"; types-python-dateutil; extra == "dev"; types-requests; extra == "dev"; types-setuptools; extra == "dev"; types-six; extra == "dev"; pre-commit; extra == "dev"; pydantic; extra == "dev"; ruff; extra == "dev"; setuptools; extra == "dev"; packaging; extra == "dev"; wheel; extra == "dev"; twine; extra == "dev"; tomli; extra == "dev"; tomli_w; extra == "dev"; mock>=2.0.0; extra == "test"; freezegun==1.5.1; extra == "test"; coverage; extra == "test"; pytest; extra == "test"; pytest-timeout; extra == "test"; pytest-asyncio; extra == "test"; django; extra == "test"; openai; extra == "test"; anthropic; extra == "test"; langgraph>=0.4.8; extra == "test"; langchain-core>=0.3.65; extra == "test"; langchain-community>=0.3.25; extra == "test"; langchain-openai>=0.3.22; extra == "test"; langchain-anthropic>=0.3.15; extra == "test"; google-genai; extra == "test"; pydantic; extra == "test"; parameterized>=0.8.1; extra == "test" | + + + +5.4.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| prompthub-py | + + + +Dependency Package | + + + +I&S | + + + +4.0.0 | + + + +None | + + + +requests (>=2.28.2,<3.0.0); pyyaml (>=6.0,<7.0) | + + + ++ + + + | requests (>=2.28.2,<3.0.0); pyyaml (>=6.0,<7.0) | + + + +4.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| propcache | + + + +Dependency Package | + + + +I&S | + + + +0.3.0 | + + + +None | + + + ++ + + + | 0.3.1, 0.3.2 | + + + ++ + + + | 0.3.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| py | + + + +Dependency Package | + + + +I&S | + + + +1.11.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.11.0 | + + + +Yes | + + + +CVE-2022-42969, CVSS_V3, ReDoS in py library when used with subversion , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0 CVE-2022-42969, UNKNOWN, , , affects: >=0 |
+
+
+
+ No | + + + +None | + + + +None | + + + +None | + + + +Not Used | + + +
| pycodestyle | + + + +Dependency Package | + + + +I&S | + + + +2.11.1 | + + + +None | + + + ++ + + + | 2.12.0, 2.12.1, 2.13.0, 2.14.0 | + + + ++ + + + | 2.14.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pycryptodome | + + + +Dependency Package | + + + +I&S | + + + +3.20.0 | + + + +None | + + + ++ + + + | 3.21.0, 3.22.0, 3.23.0 | + + + ++ + + + | 3.23.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pydantic-settings | + + + +Dependency Package | + + + +I&S | + + + +2.2.1 | + + + +None | + + + +pydantic>=2.7.0; python-dotenv>=0.21.0; typing-inspection>=0.4.0; boto3-stubs[secretsmanager]; extra == "aws-secrets-manager"; boto3>=1.35.0; extra == "aws-secrets-manager"; azure-identity>=1.16.0; extra == "azure-key-vault"; azure-keyvault-secrets>=4.8.0; extra == "azure-key-vault"; google-cloud-secret-manager>=2.23.1; extra == "gcp-secret-manager"; tomli>=2.0.1; extra == "toml"; pyyaml>=6.0.1; extra == "yaml" | + + + +2.3.0, 2.3.1, 2.3.2, 2.3.3, 2.3.4, 2.4.0, 2.5.0, 2.5.1, 2.5.2, 2.6.0, 2.6.1, 2.7.0, 2.7.1, 2.8.0, 2.8.1, 2.9.0, 2.9.1, 2.10.0, 2.10.1 | + + + +pydantic>=2.7.0; python-dotenv>=0.21.0; typing-inspection>=0.4.0; boto3-stubs[secretsmanager]; extra == "aws-secrets-manager"; boto3>=1.35.0; extra == "aws-secrets-manager"; azure-identity>=1.16.0; extra == "azure-key-vault"; azure-keyvault-secrets>=4.8.0; extra == "azure-key-vault"; google-cloud-secret-manager>=2.23.1; extra == "gcp-secret-manager"; tomli>=2.0.1; extra == "toml"; pyyaml>=6.0.1; extra == "yaml" | + + + +2.10.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pydeck | + + + +Dependency Package | + + + +I&S | + + + +0.9.1 | + + + +None | + + + +jinja2>=2.10.1; numpy>=1.16.4; pydeck-carto; extra == "carto"; ipywidgets<8,>=7; extra == "jupyter"; traitlets>=4.3.2; extra == "jupyter"; ipython>=5.8.0; python_version < "3.4" and extra == "jupyter"; ipykernel>=5.1.2; python_version >= "3.4" and extra == "jupyter" | + + + ++ + + + | jinja2>=2.10.1; numpy>=1.16.4; pydeck-carto; extra == "carto"; ipywidgets<8,>=7; extra == "jupyter"; traitlets>=4.3.2; extra == "jupyter"; ipython>=5.8.0; python_version < "3.4" and extra == "jupyter"; ipykernel>=5.1.2; python_version >= "3.4" and extra == "jupyter" | + + + +0.9.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pyflakes | + + + +Dependency Package | + + + +I&S | + + + +3.2.0 | + + + +None | + + + ++ + + + | 3.3.0, 3.3.1, 3.3.2, 3.4.0 | + + + ++ + + + | 3.4.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pymongo | + + + +Dependency Package | + + + +I&S | + + + +4.10.1 | + + + +None | + + + +dnspython<3.0.0,>=1.16.0; pymongo-auth-aws<2.0.0,>=1.1.0; extra == "aws"; furo==2024.8.6; extra == "docs"; readthedocs-sphinx-search~=0.3; extra == "docs"; sphinx-autobuild>=2020.9.1; extra == "docs"; sphinx-rtd-theme<4,>=2; extra == "docs"; sphinx<9,>=5.3; extra == "docs"; sphinxcontrib-shellcheck<2,>=1; extra == "docs"; certifi; (os_name == "nt" or sys_platform == "darwin") and extra == "encryption"; pymongo-auth-aws<2.0.0,>=1.1.0; extra == "encryption"; pymongocrypt<2.0.0,>=1.13.0; extra == "encryption"; pykerberos; os_name != "nt" and extra == "gssapi"; winkerberos>=0.5.0; os_name == "nt" and extra == "gssapi"; certifi; (os_name == "nt" or sys_platform == "darwin") and extra == "ocsp"; cryptography>=2.5; extra == "ocsp"; pyopenssl>=17.2.0; extra == "ocsp"; requests<3.0.0; extra == "ocsp"; service-identity>=18.1.0; extra == "ocsp"; python-snappy; extra == "snappy"; pytest-asyncio>=0.24.0; extra == "test"; pytest>=8.2; extra == "test"; zstandard; extra == "zstd" | + + + +4.11, 4.11.1, 4.11.2, 4.11.3, 4.12.0, 4.12.1, 4.13.0.dev0, 4.13.0, 4.13.1, 4.13.2 | + + + +dnspython<3.0.0,>=1.16.0; pymongo-auth-aws<2.0.0,>=1.1.0; extra == "aws"; furo==2024.8.6; extra == "docs"; readthedocs-sphinx-search~=0.3; extra == "docs"; sphinx-autobuild>=2020.9.1; extra == "docs"; sphinx-rtd-theme<4,>=2; extra == "docs"; sphinx<9,>=5.3; extra == "docs"; sphinxcontrib-shellcheck<2,>=1; extra == "docs"; certifi; (os_name == "nt" or sys_platform == "darwin") and extra == "encryption"; pymongo-auth-aws<2.0.0,>=1.1.0; extra == "encryption"; pymongocrypt<2.0.0,>=1.13.0; extra == "encryption"; pykerberos; os_name != "nt" and extra == "gssapi"; winkerberos>=0.5.0; os_name == "nt" and extra == "gssapi"; certifi; (os_name == "nt" or sys_platform == "darwin") and extra == "ocsp"; cryptography>=2.5; extra == "ocsp"; pyopenssl>=17.2.0; extra == "ocsp"; requests<3.0.0; extra == "ocsp"; service-identity>=18.1.0; extra == "ocsp"; python-snappy; extra == "snappy"; pytest-asyncio>=0.24.0; extra == "test"; pytest>=8.2; extra == "test"; zstandard; extra == "zstd" | + + + +4.13.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| PyNomaly | + + + +Dependency Package | + + + +I&S | + + + +0.3.4 | + + + +None | + + + +numpy; python-utils | + + + ++ + + + | numpy; python-utils | + + + +0.3.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pypdf | + + + +Dependency Package | + + + +I&S | + + + +5.0.1 | + + + +None | + + + +typing_extensions>=4.0; python_version < "3.11"; cryptography; extra == "crypto"; PyCryptodome; extra == "cryptodome"; black; extra == "dev"; flit; extra == "dev"; pip-tools; extra == "dev"; pre-commit; extra == "dev"; pytest-cov; extra == "dev"; pytest-socket; extra == "dev"; pytest-timeout; extra == "dev"; pytest-xdist; extra == "dev"; wheel; extra == "dev"; myst_parser; extra == "docs"; sphinx; extra == "docs"; sphinx_rtd_theme; extra == "docs"; cryptography; extra == "full"; Pillow>=8.0.0; extra == "full"; Pillow>=8.0.0; extra == "image" | + + + +5.1.0, 5.2.0, 5.3.0, 5.3.1, 5.4.0, 5.5.0, 5.6.0, 5.6.1 | + + + +typing_extensions>=4.0; python_version < "3.11"; cryptography; extra == "crypto"; PyCryptodome; extra == "cryptodome"; black; extra == "dev"; flit; extra == "dev"; pip-tools; extra == "dev"; pre-commit; extra == "dev"; pytest-cov; extra == "dev"; pytest-socket; extra == "dev"; pytest-timeout; extra == "dev"; pytest-xdist; extra == "dev"; wheel; extra == "dev"; myst_parser; extra == "docs"; sphinx; extra == "docs"; sphinx_rtd_theme; extra == "docs"; cryptography; extra == "full"; Pillow>=8.0.0; extra == "full"; Pillow>=8.0.0; extra == "image" | + + + +5.6.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| pyproject-api | + + + +Dependency Package | + + + +I&S | + + + +1.8.0 | + + + +None | + + + +packaging>=25; tomli>=2.2.1; python_version < "3.11"; furo>=2024.8.6; extra == "docs"; sphinx-autodoc-typehints>=3.2; extra == "docs"; covdefaults>=2.3; extra == "testing"; pytest-cov>=6.1.1; extra == "testing"; pytest-mock>=3.14; extra == "testing"; pytest>=8.3.5; extra == "testing"; setuptools>=80.3.1; extra == "testing" | + + + +1.9.0, 1.9.1 | + + + +packaging>=25; tomli>=2.2.1; python_version < "3.11"; furo>=2024.8.6; extra == "docs"; sphinx-autodoc-typehints>=3.2; extra == "docs"; covdefaults>=2.3; extra == "testing"; pytest-cov>=6.1.1; extra == "testing"; pytest-mock>=3.14; extra == "testing"; pytest>=8.3.5; extra == "testing"; setuptools>=80.3.1; extra == "testing" | + + + +1.9.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| python-iso639 | + + + +Dependency Package | + + + +I&S | + + + +2024.4.27 | + + + +None | + + + +black==25.1.0; extra == "dev"; build==1.2.2; extra == "dev"; flake8==7.1.1; extra == "dev"; mypy==1.15.0; extra == "dev"; pytest==8.3.4; extra == "dev"; requests==2.32.3; extra == "dev"; twine==6.1.0; extra == "dev" | + + + +2024.10.22, 2025.1.27, 2025.1.28, 2025.2.8, 2025.2.18 | + + + +black==25.1.0; extra == "dev"; build==1.2.2; extra == "dev"; flake8==7.1.1; extra == "dev"; mypy==1.15.0; extra == "dev"; pytest==8.3.4; extra == "dev"; requests==2.32.3; extra == "dev"; twine==6.1.0; extra == "dev" | + + + +2025.2.18 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| python-magic | + + + +Dependency Package | + + + +I&S | + + + +0.4.27 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.4.27 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| python-oxmsg | + + + +Dependency Package | + + + +I&S | + + + +0.0.1 | + + + +None | + + + +click; olefile; typing_extensions>=4.9.0 | + + + +0.0.2 | + + + +click; olefile; typing_extensions>=4.9.0 | + + + +0.0.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| python-utils | + + + +Dependency Package | + + + +I&S | + + + +3.9.0 | + + + +None | + + + +typing_extensions>3.10.0.2; loguru; extra == "loguru"; mock; extra == "docs"; sphinx; extra == "docs"; python-utils; extra == "docs"; ruff; extra == "tests"; pyright; extra == "tests"; pytest; extra == "tests"; pytest-cov; extra == "tests"; pytest-mypy; extra == "tests"; pytest-asyncio; extra == "tests"; sphinx; extra == "tests"; types-setuptools; extra == "tests"; loguru; extra == "tests"; loguru-mypy; extra == "tests"; mypy-ipython; extra == "tests"; blessings; extra == "tests" | + + + +3.9.1 | + + + +typing_extensions>3.10.0.2; loguru; extra == "loguru"; mock; extra == "docs"; sphinx; extra == "docs"; python-utils; extra == "docs"; ruff; extra == "tests"; pyright; extra == "tests"; pytest; extra == "tests"; pytest-cov; extra == "tests"; pytest-mypy; extra == "tests"; pytest-asyncio; extra == "tests"; sphinx; extra == "tests"; types-setuptools; extra == "tests"; loguru; extra == "tests"; loguru-mypy; extra == "tests"; mypy-ipython; extra == "tests"; blessings; extra == "tests" | + + + +3.9.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| quantulum3 | + + + +Dependency Package | + + + +I&S | + + + +0.9.2 | + + + +None | + + + +inflect; num2words; numpy; extra == "classifier"; scipy; extra == "classifier"; scikit-learn; extra == "classifier"; joblib; extra == "classifier"; wikipedia; extra == "classifier"; stemming; extra == "classifier" | + + + ++ + + + | inflect; num2words; numpy; extra == "classifier"; scipy; extra == "classifier"; scikit-learn; extra == "classifier"; joblib; extra == "classifier"; wikipedia; extra == "classifier"; stemming; extra == "classifier" | + + + +0.9.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| raiutils | + + + +Dependency Package | + + + +I&S | + + + +0.4.2 | + + + +None | + + + +numpy; pandas; requests; scikit-learn; scipy | + + + ++ + + + | numpy; pandas; requests; scikit-learn; scipy | + + + +0.4.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| rank-bm25 | + + + +Dependency Package | + + + +I&S | + + + +0.2.2 | + + + +None | + + + +numpy; pytest ; extra == 'dev' | + + + ++ + + + | numpy; pytest ; extra == 'dev' | + + + +0.2.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| RapidFuzz | + + + +Dependency Package | + + + +I&S | + + + +3.10.0 | + + + +None | + + + +numpy; extra == "all" | + + + +3.10.1, 3.11.0, 3.12.1, 3.12.2, 3.13.0 | + + + +numpy; extra == "all" | + + + +3.13.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| readme-renderer | + + + +Dependency Package | + + + +I&S | + + + +44 | + + + +None | + + + +nh3>=0.2.14; docutils>=0.21.2; Pygments>=2.5.1; cmarkgfm>=0.8.0; extra == "md" | + + + ++ + + + | nh3>=0.2.14; docutils>=0.21.2; Pygments>=2.5.1; cmarkgfm>=0.8.0; extra == "md" | + + + +44.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| requests-cache | + + + +Dependency Package | + + + +I&S | + + + +0.9.8 | + + + +None | + + + +attrs>=21.2; boto3>=1.15; extra == "dynamodb" or extra == "all"; botocore>=1.18; extra == "dynamodb" or extra == "all"; bson>=0.5; extra == "bson"; cattrs>=22.2; furo<2024.0,>=2023.3; extra == "docs"; itsdangerous>=2.0; extra == "security" or extra == "all"; linkify-it-py<3.0,>=2.0; extra == "docs"; myst-parser<2.0,>=1.0; extra == "docs"; platformdirs>=2.5; pymongo>=3; extra == "mongodb" or extra == "all"; pyyaml>=6.0.1; extra == "yaml" or extra == "all"; redis>=3; extra == "redis" or extra == "all"; requests>=2.22; sphinx<6.0.0,>=5.0.2; extra == "docs"; sphinx-autodoc-typehints>=1.19; extra == "docs"; sphinx-automodapi>=0.14; extra == "docs"; sphinx-copybutton>=0.5; extra == "docs"; sphinx-design>=0.2; extra == "docs"; sphinx-notfound-page>=0.8; extra == "docs"; sphinxcontrib-apidoc>=0.3; extra == "docs"; sphinxext-opengraph>=0.9; extra == "docs"; ujson>=5.4; extra == "json" or extra == "all"; url-normalize>=1.4; urllib3>=1.25.5 | + + + +1.0.0a0, 1.0.0a1, 1.0.0a2, 1.0.0b0, 1.0.0b1, 1.0.0, 1.0.1, 1.1.0, 1.1.1, 1.2.0, 1.2.1, 1.3.0a0 | + + + +attrs>=21.2; boto3>=1.15; extra == "dynamodb" or extra == "all"; botocore>=1.18; extra == "dynamodb" or extra == "all"; bson>=0.5; extra == "bson"; cattrs>=22.2; furo<2024.0,>=2023.3; extra == "docs"; itsdangerous>=2.0; extra == "security" or extra == "all"; linkify-it-py<3.0,>=2.0; extra == "docs"; myst-parser<2.0,>=1.0; extra == "docs"; platformdirs>=2.5; pymongo>=3; extra == "mongodb" or extra == "all"; pyyaml>=6.0.1; extra == "yaml" or extra == "all"; redis>=3; extra == "redis" or extra == "all"; requests>=2.22; sphinx<6.0.0,>=5.0.2; extra == "docs"; sphinx-autodoc-typehints>=1.19; extra == "docs"; sphinx-automodapi>=0.14; extra == "docs"; sphinx-copybutton>=0.5; extra == "docs"; sphinx-design>=0.2; extra == "docs"; sphinx-notfound-page>=0.8; extra == "docs"; sphinxcontrib-apidoc>=0.3; extra == "docs"; sphinxext-opengraph>=0.9; extra == "docs"; ujson>=5.4; extra == "json" or extra == "all"; url-normalize>=1.4; urllib3>=1.25.5 | + + + +1.3.0a0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| requests-toolbelt | + + + +Dependency Package | + + + +I&S | + + + +1.0.0 | + + + +None | + + + +requests (<3.0.0,>=2.0.1) | + + + ++ + + + | requests (<3.0.0,>=2.0.1) | + + + +1.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| retrying | + + + +Dependency Package | + + + +I&S | + + + +1.3.4 | + + + +None | + + + ++ + + + | 1.3.5, 1.3.6, 1.4.0 | + + + ++ + + + | 1.4.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| rfc3986 | + + + +Dependency Package | + + + +I&S | + + + +2.0.0 | + + + +None | + + + +idna ; extra == 'idna2008' | + + + ++ + + + | idna ; extra == 'idna2008' | + + + +2.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| safetensors | + + + +Dependency Package | + + + +I&S | + + + +0.4.5 | + + + +None | + + + +numpy>=1.21.6; extra == "numpy"; safetensors[numpy]; extra == "torch"; torch>=1.10; extra == "torch"; safetensors[numpy]; extra == "tensorflow"; tensorflow>=2.11.0; extra == "tensorflow"; safetensors[numpy]; extra == "pinned-tf"; tensorflow==2.18.0; extra == "pinned-tf"; safetensors[numpy]; extra == "jax"; flax>=0.6.3; extra == "jax"; jax>=0.3.25; extra == "jax"; jaxlib>=0.3.25; extra == "jax"; mlx>=0.0.9; extra == "mlx"; safetensors[numpy]; extra == "paddlepaddle"; paddlepaddle>=2.4.1; extra == "paddlepaddle"; black==22.3; extra == "quality"; click==8.0.4; extra == "quality"; isort>=5.5.4; extra == "quality"; flake8>=3.8.3; extra == "quality"; safetensors[numpy]; extra == "testing"; h5py>=3.7.0; extra == "testing"; huggingface-hub>=0.12.1; extra == "testing"; setuptools-rust>=1.5.2; extra == "testing"; pytest>=7.2.0; extra == "testing"; pytest-benchmark>=4.0.0; extra == "testing"; hypothesis>=6.70.2; extra == "testing"; safetensors[torch]; extra == "all"; safetensors[numpy]; extra == "all"; safetensors[pinned-tf]; extra == "all"; safetensors[jax]; extra == "all"; safetensors[paddlepaddle]; extra == "all"; safetensors[quality]; extra == "all"; safetensors[testing]; extra == "all"; safetensors[all]; extra == "dev" | + + + +0.4.6.dev0, 0.5.0rc0, 0.5.0, 0.5.1, 0.5.2, 0.5.3, 0.6.0.dev0, 0.6.0rc0 | + + + +numpy>=1.21.6; extra == "numpy"; safetensors[numpy]; extra == "torch"; torch>=1.10; extra == "torch"; safetensors[numpy]; extra == "tensorflow"; tensorflow>=2.11.0; extra == "tensorflow"; safetensors[numpy]; extra == "pinned-tf"; tensorflow==2.18.0; extra == "pinned-tf"; safetensors[numpy]; extra == "jax"; flax>=0.6.3; extra == "jax"; jax>=0.3.25; extra == "jax"; jaxlib>=0.3.25; extra == "jax"; mlx>=0.0.9; extra == "mlx"; safetensors[numpy]; extra == "paddlepaddle"; paddlepaddle>=2.4.1; extra == "paddlepaddle"; black==22.3; extra == "quality"; click==8.0.4; extra == "quality"; isort>=5.5.4; extra == "quality"; flake8>=3.8.3; extra == "quality"; safetensors[numpy]; extra == "testing"; h5py>=3.7.0; extra == "testing"; huggingface-hub>=0.12.1; extra == "testing"; setuptools-rust>=1.5.2; extra == "testing"; pytest>=7.2.0; extra == "testing"; pytest-benchmark>=4.0.0; extra == "testing"; hypothesis>=6.70.2; extra == "testing"; safetensors[torch]; extra == "all"; safetensors[numpy]; extra == "all"; safetensors[pinned-tf]; extra == "all"; safetensors[jax]; extra == "all"; safetensors[paddlepaddle]; extra == "all"; safetensors[quality]; extra == "all"; safetensors[testing]; extra == "all"; safetensors[all]; extra == "dev" | + + + +0.6.0rc0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| scikit-base | + + + +Dependency Package | + + + +I&S | + + + +0.10.1 | + + + +None | + + + +numpy; extra == "all-extras"; pandas; extra == "all-extras"; scikit-learn>=0.24.0; extra == "dev"; pre-commit; extra == "dev"; pytest; extra == "dev"; pytest-cov; extra == "dev"; mypy; extra == "linters"; isort; extra == "linters"; flake8; extra == "linters"; black; extra == "linters"; pydocstyle; extra == "linters"; nbqa; extra == "linters"; flake8-bugbear; extra == "linters"; flake8-builtins; extra == "linters"; flake8-quotes; extra == "linters"; flake8-comprehensions; extra == "linters"; pandas-vet; extra == "linters"; flake8-print; extra == "linters"; pep8-naming; extra == "linters"; doc8; extra == "linters"; jupyter; extra == "binder"; jupyter; extra == "docs"; myst-parser; extra == "docs"; nbsphinx>=0.8.6; extra == "docs"; numpydoc; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx-issues<6.0.0; extra == "docs"; sphinx-gallery<0.20.0; extra == "docs"; sphinx-panels; extra == "docs"; sphinx-design<0.7.0; extra == "docs"; Sphinx!=7.2.0,<9.0.0; extra == "docs"; tabulate; extra == "docs"; pytest; extra == "test"; coverage; extra == "test"; pytest-cov; extra == "test"; safety; extra == "test"; numpy; extra == "test"; scipy; extra == "test"; pandas; extra == "test"; scikit-learn>=0.24.0; extra == "test" | + + + +0.11.0, 0.12.0, 0.12.2, 0.12.3 | + + + +numpy; extra == "all-extras"; pandas; extra == "all-extras"; scikit-learn>=0.24.0; extra == "dev"; pre-commit; extra == "dev"; pytest; extra == "dev"; pytest-cov; extra == "dev"; mypy; extra == "linters"; isort; extra == "linters"; flake8; extra == "linters"; black; extra == "linters"; pydocstyle; extra == "linters"; nbqa; extra == "linters"; flake8-bugbear; extra == "linters"; flake8-builtins; extra == "linters"; flake8-quotes; extra == "linters"; flake8-comprehensions; extra == "linters"; pandas-vet; extra == "linters"; flake8-print; extra == "linters"; pep8-naming; extra == "linters"; doc8; extra == "linters"; jupyter; extra == "binder"; jupyter; extra == "docs"; myst-parser; extra == "docs"; nbsphinx>=0.8.6; extra == "docs"; numpydoc; extra == "docs"; pydata-sphinx-theme; extra == "docs"; sphinx-issues<6.0.0; extra == "docs"; sphinx-gallery<0.20.0; extra == "docs"; sphinx-panels; extra == "docs"; sphinx-design<0.7.0; extra == "docs"; Sphinx!=7.2.0,<9.0.0; extra == "docs"; tabulate; extra == "docs"; pytest; extra == "test"; coverage; extra == "test"; pytest-cov; extra == "test"; safety; extra == "test"; numpy; extra == "test"; scipy; extra == "test"; pandas; extra == "test"; scikit-learn>=0.24.0; extra == "test" | + + + +0.12.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| sentencepiece | + + + +Dependency Package | + + + +I&S | + + + +0.2.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| sentinels | + + + +Dependency Package | + + + +I&S | + + + +1.0.1 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.0.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| setuptools | + + + +Dependency Package | + + + +I&S | + + + +75.2.0 | + + + +None | + + + +pytest!=8.1.*,>=6; extra == "test"; virtualenv>=13.0.0; extra == "test"; wheel>=0.44.0; extra == "test"; pip>=19.1; extra == "test"; packaging>=24.2; extra == "test"; jaraco.envs>=2.2; extra == "test"; pytest-xdist>=3; extra == "test"; jaraco.path>=3.7.2; extra == "test"; build[virtualenv]>=1.0.3; extra == "test"; filelock>=3.4.0; extra == "test"; ini2toml[lite]>=0.14; extra == "test"; tomli-w>=1.0.0; extra == "test"; pytest-timeout; extra == "test"; pytest-perf; sys_platform != "cygwin" and extra == "test"; jaraco.develop>=7.21; (python_version >= "3.9" and sys_platform != "cygwin") and extra == "test"; pytest-home>=0.5; extra == "test"; pytest-subprocess; extra == "test"; pyproject-hooks!=1.1; extra == "test"; jaraco.test>=5.5; extra == "test"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; pygments-github-lexers==0.0.5; extra == "doc"; sphinx-favicon; extra == "doc"; sphinx-inline-tabs; extra == "doc"; sphinx-reredirects; extra == "doc"; sphinxcontrib-towncrier; extra == "doc"; sphinx-notfound-page<2,>=1; extra == "doc"; pyproject-hooks!=1.1; extra == "doc"; towncrier<24.7; extra == "doc"; packaging>=24.2; extra == "core"; more_itertools>=8.8; extra == "core"; jaraco.text>=3.7; extra == "core"; importlib_metadata>=6; python_version < "3.10" and extra == "core"; tomli>=2.0.1; python_version < "3.11" and extra == "core"; wheel>=0.43.0; extra == "core"; platformdirs>=4.2.2; extra == "core"; jaraco.functools>=4; extra == "core"; more_itertools; extra == "core"; pytest-checkdocs>=2.4; extra == "check"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"; ruff>=0.8.0; sys_platform != "cygwin" and extra == "check"; pytest-cov; extra == "cover"; pytest-enabler>=2.2; extra == "enabler"; pytest-mypy; extra == "type"; mypy==1.14.*; extra == "type"; importlib_metadata>=7.0.2; python_version < "3.10" and extra == "type"; jaraco.develop>=7.21; sys_platform != "cygwin" and extra == "type" | + + + +75.3.0, 75.3.1, 75.3.2, 75.4.0, 75.5.0, 75.6.0, 75.7.0, 75.8.0, 75.8.1, 75.8.2, 75.9.0, 75.9.1, 76.0.0, 76.1.0, 77.0.1, 77.0.3, 78.0.1, 78.0.2, 78.1.0, 78.1.1, 79.0.0, 79.0.1, 80.0.0, 80.0.1, 80.1.0, 80.2.0, 80.3.0, 80.3.1, 80.4.0, 80.6.0, 80.7.0, 80.7.1, 80.8.0, 80.9.0 | + + + +pytest!=8.1.*,>=6; extra == "test"; virtualenv>=13.0.0; extra == "test"; wheel>=0.44.0; extra == "test"; pip>=19.1; extra == "test"; packaging>=24.2; extra == "test"; jaraco.envs>=2.2; extra == "test"; pytest-xdist>=3; extra == "test"; jaraco.path>=3.7.2; extra == "test"; build[virtualenv]>=1.0.3; extra == "test"; filelock>=3.4.0; extra == "test"; ini2toml[lite]>=0.14; extra == "test"; tomli-w>=1.0.0; extra == "test"; pytest-timeout; extra == "test"; pytest-perf; sys_platform != "cygwin" and extra == "test"; jaraco.develop>=7.21; (python_version >= "3.9" and sys_platform != "cygwin") and extra == "test"; pytest-home>=0.5; extra == "test"; pytest-subprocess; extra == "test"; pyproject-hooks!=1.1; extra == "test"; jaraco.test>=5.5; extra == "test"; sphinx>=3.5; extra == "doc"; jaraco.packaging>=9.3; extra == "doc"; rst.linker>=1.9; extra == "doc"; furo; extra == "doc"; sphinx-lint; extra == "doc"; jaraco.tidelift>=1.4; extra == "doc"; pygments-github-lexers==0.0.5; extra == "doc"; sphinx-favicon; extra == "doc"; sphinx-inline-tabs; extra == "doc"; sphinx-reredirects; extra == "doc"; sphinxcontrib-towncrier; extra == "doc"; sphinx-notfound-page<2,>=1; extra == "doc"; pyproject-hooks!=1.1; extra == "doc"; towncrier<24.7; extra == "doc"; packaging>=24.2; extra == "core"; more_itertools>=8.8; extra == "core"; jaraco.text>=3.7; extra == "core"; importlib_metadata>=6; python_version < "3.10" and extra == "core"; tomli>=2.0.1; python_version < "3.11" and extra == "core"; wheel>=0.43.0; extra == "core"; platformdirs>=4.2.2; extra == "core"; jaraco.functools>=4; extra == "core"; more_itertools; extra == "core"; pytest-checkdocs>=2.4; extra == "check"; pytest-ruff>=0.2.1; sys_platform != "cygwin" and extra == "check"; ruff>=0.8.0; sys_platform != "cygwin" and extra == "check"; pytest-cov; extra == "cover"; pytest-enabler>=2.2; extra == "enabler"; pytest-mypy; extra == "type"; mypy==1.14.*; extra == "type"; importlib_metadata>=7.0.2; python_version < "3.10" and extra == "type"; jaraco.develop>=7.21; sys_platform != "cygwin" and extra == "type" | + + + +80.9.0 | + + + +Yes | + + + +CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1 |
+
+
+
+ Yes | + + + +78.1.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.8.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.6.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.7.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.9.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.8.1: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.3.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 76.1.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.3.1: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 78.0.1: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 77.0.3: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.5.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.9.1: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.3.2: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 77.0.1: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 78.0.2: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.8.2: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 75.4.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1; 76.0.0: CVE-2025-47273, CVSS_V4, setuptools has a path traversal vulnerability in PackageIndex.download that leads to Arbitrary File Write, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N/E:P, affects: >=0,<78.1.1 CVE-2025-47273, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<78.1.1 |
+
+
+
+ Up-to-date | + + + +None | + + + +Not Used | + + +
| shap | + + + +Dependency Package | + + + +I&S | + + + +0.46.0 | + + + +None | + + + +numpy; scipy; scikit-learn; pandas; tqdm>=4.27.0; packaging>20.9; slicer==0.0.8; numba>=0.54; cloudpickle; typing-extensions; matplotlib; extra == "plots"; ipython; extra == "plots"; lime; extra == "others"; matplotlib; extra == "docs"; ipython; extra == "docs"; numpydoc; extra == "docs"; sphinx_rtd_theme; extra == "docs"; sphinx; extra == "docs"; nbsphinx; extra == "docs"; sphinx_github_changelog; extra == "docs"; myst-parser; extra == "docs"; requests; extra == "docs"; ipywidgets; extra == "docs"; pytest; extra == "test-core"; pytest-mpl; extra == "test-core"; pytest-cov; extra == "test-core"; mypy; extra == "test-core"; pytest; extra == "test"; pytest-mpl; extra == "test"; pytest-cov; extra == "test"; xgboost; extra == "test"; lightgbm; extra == "test"; catboost; python_version < "3.13" and extra == "test"; gpboost; extra == "test"; ngboost; extra == "test"; pyspark; extra == "test"; pyod; extra == "test"; transformers; python_version < "3.13" and extra == "test"; tf-keras; python_version < "3.13" and extra == "test"; protobuf==3.20.3; extra == "test"; torch; python_version < "3.13" and extra == "test"; torchvision; python_version < "3.13" and extra == "test"; tensorflow; python_version < "3.13" and extra == "test"; sentencepiece; extra == "test"; opencv-python; extra == "test"; numpy<2.0; extra == "test"; scikit-learn<=1.6.1; extra == "test"; causalml; extra == "test"; selenium; extra == "test"; jupyter; extra == "test-notebooks"; nbconvert; extra == "test-notebooks"; nbformat; extra == "test-notebooks"; nlp; extra == "test-notebooks"; transformers; extra == "test-notebooks"; datasets; extra == "test-notebooks"; keras; extra == "test-notebooks" | + + + +0.47.0, 0.47.1, 0.47.2, 0.48.0 | + + + +numpy; scipy; scikit-learn; pandas; tqdm>=4.27.0; packaging>20.9; slicer==0.0.8; numba>=0.54; cloudpickle; typing-extensions; matplotlib; extra == "plots"; ipython; extra == "plots"; lime; extra == "others"; matplotlib; extra == "docs"; ipython; extra == "docs"; numpydoc; extra == "docs"; sphinx_rtd_theme; extra == "docs"; sphinx; extra == "docs"; nbsphinx; extra == "docs"; sphinx_github_changelog; extra == "docs"; myst-parser; extra == "docs"; requests; extra == "docs"; ipywidgets; extra == "docs"; pytest; extra == "test-core"; pytest-mpl; extra == "test-core"; pytest-cov; extra == "test-core"; mypy; extra == "test-core"; pytest; extra == "test"; pytest-mpl; extra == "test"; pytest-cov; extra == "test"; xgboost; extra == "test"; lightgbm; extra == "test"; catboost; python_version < "3.13" and extra == "test"; gpboost; extra == "test"; ngboost; extra == "test"; pyspark; extra == "test"; pyod; extra == "test"; transformers; python_version < "3.13" and extra == "test"; tf-keras; python_version < "3.13" and extra == "test"; protobuf==3.20.3; extra == "test"; torch; python_version < "3.13" and extra == "test"; torchvision; python_version < "3.13" and extra == "test"; tensorflow; python_version < "3.13" and extra == "test"; sentencepiece; extra == "test"; opencv-python; extra == "test"; numpy<2.0; extra == "test"; scikit-learn<=1.6.1; extra == "test"; causalml; extra == "test"; selenium; extra == "test"; jupyter; extra == "test-notebooks"; nbconvert; extra == "test-notebooks"; nbformat; extra == "test-notebooks"; nlp; extra == "test-notebooks"; transformers; extra == "test-notebooks"; datasets; extra == "test-notebooks"; keras; extra == "test-notebooks" | + + + +0.48.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| slicer | + + + +Dependency Package | + + + +I&S | + + + +0.0.8 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.0.8 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| sortedcontainers | + + + +Dependency Package | + + + +I&S | + + + +2.4.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 2.4.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| sqlparse | + + + +Dependency Package | + + + +I&S | + + + +0.5.1 | + + + +None | + + + +build; extra == "dev"; hatch; extra == "dev"; sphinx; extra == "doc" | + + + +0.5.2, 0.5.3 | + + + +build; extra == "dev"; hatch; extra == "dev"; sphinx; extra == "doc" | + + + +0.5.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| sseclient-py | + + + +Dependency Package | + + + +I&S | + + + +1.8.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 1.8.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| stevedore | + + + +Dependency Package | + + + +I&S | + + + +5.3.0 | + + + +None | + + + +pbr>=2.0.0 | + + + +5.4.0, 5.4.1 | + + + +pbr>=2.0.0 | + + + +5.4.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| striprtf | + + + +Dependency Package | + + + +I&S | + + + +0.0.26 | + + + +None | + + + +build>=1.0.0; extra == "dev"; pytest>=7.0.0; extra == "dev" | + + + +0.0.27, 0.0.28, 0.0.29 | + + + +build>=1.0.0; extra == "dev"; pytest>=7.0.0; extra == "dev" | + + + +0.0.29 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| sympy | + + + +Dependency Package | + + + +I&S | + + + +1.13.3 | + + + +None | + + + +mpmath<1.4,>=1.1.0; pytest>=7.1.0; extra == "dev"; hypothesis>=6.70.0; extra == "dev" | + + + +1.14.0rc1, 1.14.0rc2, 1.14.0 | + + + +mpmath<1.4,>=1.1.0; pytest>=7.1.0; extra == "dev"; hypothesis>=6.70.0; extra == "dev" | + + + +1.14.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tensorboard | + + + +Dependency Package | + + + +I&S | + + + +2.16.2 | + + + +None | + + + +absl-py>=0.4; grpcio>=1.48.2; markdown>=2.6.8; numpy>=1.12.0; packaging; protobuf!=4.24.0,>=3.19.6; setuptools>=41.0.0; six>1.9; tensorboard-data-server<0.8.0,>=0.7.0; werkzeug>=1.0.1 | + + + +2.17.0, 2.17.1, 2.18.0, 2.19.0 | + + + +absl-py>=0.4; grpcio>=1.48.2; markdown>=2.6.8; numpy>=1.12.0; packaging; protobuf!=4.24.0,>=3.19.6; setuptools>=41.0.0; six>1.9; tensorboard-data-server<0.8.0,>=0.7.0; werkzeug>=1.0.1 | + + + +2.19.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tensorboard-data-server | + + + +Dependency Package | + + + +I&S | + + + +0.7.2 | + + + +None | + + + ++ + + + | + + + + | + + + + | 0.7.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| termcolor | + + + +Dependency Package | + + + +I&S | + + + +2.4.0 | + + + +None | + + + +pytest; extra == "tests"; pytest-cov; extra == "tests" | + + + +2.5.0, 3.0.0, 3.0.1, 3.1.0 | + + + +pytest; extra == "tests"; pytest-cov; extra == "tests" | + + + +3.1.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tiktoken | + + + +Dependency Package | + + + +I&S | + + + +0.7.0 | + + + +None | + + + +regex>=2022.1.18; requests>=2.26.0; blobfile>=2; extra == "blobfile" | + + + +0.8.0, 0.9.0 | + + + +regex>=2022.1.18; requests>=2.26.0; blobfile>=2; extra == "blobfile" | + + + +0.9.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tokenizers | + + + +Dependency Package | + + + +I&S | + + + +0.20.1 | + + + +None | + + + +huggingface-hub<1.0,>=0.16.4; pytest; extra == "testing"; requests; extra == "testing"; numpy; extra == "testing"; datasets; extra == "testing"; black==22.3; extra == "testing"; ruff; extra == "testing"; sphinx; extra == "docs"; sphinx-rtd-theme; extra == "docs"; setuptools-rust; extra == "docs"; tokenizers[testing]; extra == "dev" | + + + +0.20.2, 0.20.3rc0, 0.20.3, 0.20.4rc0, 0.20.4, 0.21.0rc0, 0.21.0, 0.21.1rc0, 0.21.1, 0.21.2rc0, 0.21.2 | + + + +huggingface-hub<1.0,>=0.16.4; pytest; extra == "testing"; requests; extra == "testing"; numpy; extra == "testing"; datasets; extra == "testing"; black==22.3; extra == "testing"; ruff; extra == "testing"; sphinx; extra == "docs"; sphinx-rtd-theme; extra == "docs"; setuptools-rust; extra == "docs"; tokenizers[testing]; extra == "dev" | + + + +0.21.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tomlkit | + + + +Dependency Package | + + + +I&S | + + + +0.13.2 | + + + +None | + + + ++ + + + | 0.13.3 | + + + ++ + + + | 0.13.3 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| torch | + + + +Dependency Package | + + + +I&S | + + + +2.4.0 | + + + +None | + + + +filelock; typing-extensions>=4.10.0; setuptools; python_version >= "3.12"; sympy>=1.13.3; networkx; jinja2; fsspec; nvidia-cuda-nvrtc-cu12==12.6.77; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cuda-runtime-cu12==12.6.77; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cuda-cupti-cu12==12.6.80; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cudnn-cu12==9.5.1.17; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cublas-cu12==12.6.4.1; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cufft-cu12==11.3.0.4; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-curand-cu12==10.3.7.77; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cusolver-cu12==11.7.1.2; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cusparse-cu12==12.5.4.2; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cusparselt-cu12==0.6.3; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-nccl-cu12==2.26.2; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-nvtx-cu12==12.6.77; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-nvjitlink-cu12==12.6.85; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cufile-cu12==1.11.1.6; platform_system == "Linux" and platform_machine == "x86_64"; triton==3.3.1; platform_system == "Linux" and platform_machine == "x86_64"; optree>=0.13.0; extra == "optree"; opt-einsum>=3.3; extra == "opt-einsum" | + + + +2.4.1, 2.5.0, 2.5.1, 2.6.0, 2.7.0, 2.7.1 | + + + +filelock; typing-extensions>=4.10.0; setuptools; python_version >= "3.12"; sympy>=1.13.3; networkx; jinja2; fsspec; nvidia-cuda-nvrtc-cu12==12.6.77; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cuda-runtime-cu12==12.6.77; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cuda-cupti-cu12==12.6.80; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cudnn-cu12==9.5.1.17; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cublas-cu12==12.6.4.1; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cufft-cu12==11.3.0.4; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-curand-cu12==10.3.7.77; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cusolver-cu12==11.7.1.2; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cusparse-cu12==12.5.4.2; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cusparselt-cu12==0.6.3; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-nccl-cu12==2.26.2; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-nvtx-cu12==12.6.77; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-nvjitlink-cu12==12.6.85; platform_system == "Linux" and platform_machine == "x86_64"; nvidia-cufile-cu12==1.11.1.6; platform_system == "Linux" and platform_machine == "x86_64"; triton==3.3.1; platform_system == "Linux" and platform_machine == "x86_64"; optree>=0.13.0; extra == "optree"; opt-einsum>=3.3; extra == "opt-einsum" | + + + +2.7.1 | + + + +Yes | + + + +CVE-2025-2953, CVSS_V3, PyTorch susceptible to local Denial of Service, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<2.7.1-rc1 CVE-2025-32434, CVSS_V4, PyTorch: `torch.load` with `weights_only=True` leads to remote code execution, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N, affects: >=0; >=0,<2.6.0 CVE-2025-3730, CVSS_V3, PyTorch Improper Resource Shutdown or Release vulnerability, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0 CVE-2025-32434, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<2.6.0 |
+
+
+
+ Yes | + + + +2.6.0: CVE-2025-2953, CVSS_V3, PyTorch susceptible to local Denial of Service, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<2.7.1-rc1 CVE-2025-3730, CVSS_V3, PyTorch Improper Resource Shutdown or Release vulnerability, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0; 2.4.1: CVE-2025-2953, CVSS_V3, PyTorch susceptible to local Denial of Service, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<2.7.1-rc1 CVE-2025-32434, CVSS_V4, PyTorch: `torch.load` with `weights_only=True` leads to remote code execution, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N, affects: >=0; >=0,<2.6.0 CVE-2025-3730, CVSS_V3, PyTorch Improper Resource Shutdown or Release vulnerability, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0 CVE-2025-32434, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<2.6.0; 2.5.1: CVE-2025-2953, CVSS_V3, PyTorch susceptible to local Denial of Service, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<2.7.1-rc1 CVE-2025-32434, CVSS_V4, PyTorch: `torch.load` with `weights_only=True` leads to remote code execution, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N, affects: >=0; >=0,<2.6.0 CVE-2025-3730, CVSS_V3, PyTorch Improper Resource Shutdown or Release vulnerability, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0 CVE-2025-32434, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<2.6.0; 2.7.1: CVE-2025-3730, CVSS_V3, PyTorch Improper Resource Shutdown or Release vulnerability, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0; 2.5.0: CVE-2025-2953, CVSS_V3, PyTorch susceptible to local Denial of Service, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<2.7.1-rc1 CVE-2025-32434, CVSS_V4, PyTorch: `torch.load` with `weights_only=True` leads to remote code execution, CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N, affects: >=0; >=0,<2.6.0 CVE-2025-3730, CVSS_V3, PyTorch Improper Resource Shutdown or Release vulnerability, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0 CVE-2025-32434, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H, affects: >=0,<2.6.0; 2.7.0: CVE-2025-2953, CVSS_V3, PyTorch susceptible to local Denial of Service, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<2.7.1-rc1 CVE-2025-3730, CVSS_V3, PyTorch Improper Resource Shutdown or Release vulnerability, CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:L, affects: >=0 |
+
+
+
+ Up-to-date | + + + +None | + + + +Not Used | + + +
| torchvision | + + + +Dependency Package | + + + +I&S | + + + +0.17.2 | + + + +None | + + + +numpy; torch==2.7.1; pillow!=8.3.*,>=5.3.0; gdown>=4.7.3; extra == "gdown"; scipy; extra == "scipy" | + + + +0.18.0, 0.18.1, 0.19.0, 0.19.1, 0.20.0, 0.20.1, 0.21.0, 0.22.0, 0.22.1 | + + + +numpy; torch==2.7.1; pillow!=8.3.*,>=5.3.0; gdown>=4.7.3; extra == "gdown"; scipy; extra == "scipy" | + + + +0.22.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| transformers | + + + +Dependency Package | + + + +I&S | + + + +4.46.0 | + + + +None | + + + +beautifulsoup4; extra == "dev"; filelock; huggingface-hub<1.0,>=0.30.0; numpy>=1.17; packaging>=20.0; pyyaml>=5.1; regex!=2019.12.17; requests; tokenizers<0.22,>=0.21; safetensors>=0.4.3; tqdm>=4.27; accelerate>=0.26.0; extra == "accelerate"; tensorflow<2.16,>2.9; extra == "all"; onnxconverter-common; extra == "all"; tf2onnx; extra == "all"; tensorflow-text<2.16; extra == "all"; keras-nlp<0.14.0,>=0.3.1; extra == "all"; torch<2.7,>=2.1; extra == "all"; accelerate>=0.26.0; extra == "all"; jax<=0.4.13,>=0.4.1; extra == "all"; jaxlib<=0.4.13,>=0.4.1; extra == "all"; flax<=0.7.0,>=0.4.1; extra == "all"; optax<=0.1.4,>=0.0.8; extra == "all"; scipy<1.13.0; extra == "all"; sentencepiece!=0.1.92,>=0.1.91; extra == "all"; protobuf; extra == "all"; tokenizers<0.22,>=0.21; extra == "all"; torchaudio; extra == "all"; librosa; extra == "all"; pyctcdecode>=0.4.0; extra == "all"; phonemizer; extra == "all"; kenlm; extra == "all"; Pillow<=15.0,>=10.0.1; extra == "all"; kernels<0.5,>=0.4.4; extra == "all"; optuna; extra == "all"; ray[tune]>=2.7.0; extra == "all"; sigopt; extra == "all"; timm<=1.0.11; extra == "all"; torchvision; extra == "all"; codecarbon>=2.8.1; extra == "all"; av; extra == "all"; num2words; extra == "all"; librosa; extra == "audio"; pyctcdecode>=0.4.0; extra == "audio"; phonemizer; extra == "audio"; kenlm; extra == "audio"; optimum-benchmark>=0.3.0; extra == "benchmark"; codecarbon>=2.8.1; extra == "codecarbon"; deepspeed>=0.9.3; extra == "deepspeed"; accelerate>=0.26.0; extra == "deepspeed"; deepspeed>=0.9.3; extra == "deepspeed-testing"; accelerate>=0.26.0; extra == "deepspeed-testing"; pytest>=7.2.0; extra == "deepspeed-testing"; pytest-asyncio; extra == "deepspeed-testing"; pytest-rich; extra == "deepspeed-testing"; pytest-xdist; extra == "deepspeed-testing"; pytest-order; extra == "deepspeed-testing"; pytest-rerunfailures; extra == "deepspeed-testing"; timeout-decorator; extra == "deepspeed-testing"; parameterized; extra == "deepspeed-testing"; psutil; extra == "deepspeed-testing"; datasets!=2.5.0; extra == "deepspeed-testing"; dill<0.3.5; extra == "deepspeed-testing"; evaluate>=0.2.0; extra == "deepspeed-testing"; pytest-timeout; extra == "deepspeed-testing"; ruff==0.11.2; extra == "deepspeed-testing"; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == "deepspeed-testing"; nltk<=3.8.1; extra == "deepspeed-testing"; GitPython<3.1.19; extra == "deepspeed-testing"; sacremoses; extra == "deepspeed-testing"; rjieba; extra == "deepspeed-testing"; beautifulsoup4; extra == "deepspeed-testing"; tensorboard; extra == "deepspeed-testing"; pydantic; extra == "deepspeed-testing"; sentencepiece!=0.1.92,>=0.1.91; extra == "deepspeed-testing"; sacrebleu<2.0.0,>=1.4.12; extra == "deepspeed-testing"; faiss-cpu; extra == "deepspeed-testing"; cookiecutter==1.7.3; extra == "deepspeed-testing"; optuna; extra == "deepspeed-testing"; protobuf; extra == "deepspeed-testing"; tensorflow<2.16,>2.9; extra == "dev"; onnxconverter-common; extra == "dev"; tf2onnx; extra == "dev"; tensorflow-text<2.16; extra == "dev"; keras-nlp<0.14.0,>=0.3.1; extra == "dev"; torch<2.7,>=2.1; extra == "dev"; accelerate>=0.26.0; extra == "dev"; jax<=0.4.13,>=0.4.1; extra == "dev"; jaxlib<=0.4.13,>=0.4.1; extra == "dev"; flax<=0.7.0,>=0.4.1; extra == "dev"; optax<=0.1.4,>=0.0.8; extra == "dev"; scipy<1.13.0; extra == "dev"; sentencepiece!=0.1.92,>=0.1.91; extra == "dev"; protobuf; extra == "dev"; tokenizers<0.22,>=0.21; extra == "dev"; torchaudio; extra == "dev"; librosa; extra == "dev"; pyctcdecode>=0.4.0; extra == "dev"; phonemizer; extra == "dev"; kenlm; extra == "dev"; Pillow<=15.0,>=10.0.1; extra == "dev"; kernels<0.5,>=0.4.4; extra == "dev"; optuna; extra == "dev"; ray[tune]>=2.7.0; extra == "dev"; sigopt; extra == "dev"; timm<=1.0.11; extra == "dev"; torchvision; extra == "dev"; codecarbon>=2.8.1; extra == "dev"; av; extra == "dev"; num2words; extra == "dev"; pytest>=7.2.0; extra == "dev"; pytest-asyncio; extra == "dev"; pytest-rich; extra == "dev"; pytest-xdist; extra == "dev"; pytest-order; extra == "dev"; pytest-rerunfailures; extra == "dev"; timeout-decorator; extra == "dev"; parameterized; extra == "dev"; psutil; extra == "dev"; datasets!=2.5.0; extra == "dev"; dill<0.3.5; extra == "dev"; evaluate>=0.2.0; extra == "dev"; pytest-timeout; extra == "dev"; ruff==0.11.2; extra == "dev"; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == "dev"; nltk<=3.8.1; extra == "dev"; GitPython<3.1.19; extra == "dev"; sacremoses; extra == "dev"; rjieba; extra == "dev"; tensorboard; extra == "dev"; pydantic; extra == "dev"; sacrebleu<2.0.0,>=1.4.12; extra == "dev"; faiss-cpu; extra == "dev"; cookiecutter==1.7.3; extra == "dev"; isort>=5.5.4; extra == "dev"; urllib3<2.0.0; extra == "dev"; libcst; extra == "dev"; rich; extra == "dev"; fugashi>=1.0; extra == "dev"; ipadic<2.0,>=1.0.0; extra == "dev"; unidic-lite>=1.0.7; extra == "dev"; unidic>=1.0.2; extra == "dev"; sudachipy>=0.6.6; extra == "dev"; sudachidict-core>=20220729; extra == "dev"; rhoknp<1.3.1,>=1.1.0; extra == "dev"; scikit-learn; extra == "dev"; pytest>=7.2.0; extra == "dev-tensorflow"; pytest-asyncio; extra == "dev-tensorflow"; pytest-rich; extra == "dev-tensorflow"; pytest-xdist; extra == "dev-tensorflow"; pytest-order; extra == "dev-tensorflow"; pytest-rerunfailures; extra == "dev-tensorflow"; timeout-decorator; extra == "dev-tensorflow"; parameterized; extra == "dev-tensorflow"; psutil; extra == "dev-tensorflow"; datasets!=2.5.0; extra == "dev-tensorflow"; dill<0.3.5; extra == "dev-tensorflow"; evaluate>=0.2.0; extra == "dev-tensorflow"; pytest-timeout; extra == "dev-tensorflow"; ruff==0.11.2; extra == "dev-tensorflow"; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == "dev-tensorflow"; nltk<=3.8.1; extra == "dev-tensorflow"; GitPython<3.1.19; extra == "dev-tensorflow"; sacremoses; extra == "dev-tensorflow"; rjieba; extra == "dev-tensorflow"; beautifulsoup4; extra == "dev-tensorflow"; tensorboard; extra == "dev-tensorflow"; pydantic; extra == "dev-tensorflow"; sentencepiece!=0.1.92,>=0.1.91; extra == "dev-tensorflow"; sacrebleu<2.0.0,>=1.4.12; extra == "dev-tensorflow"; faiss-cpu; extra == "dev-tensorflow"; cookiecutter==1.7.3; extra == "dev-tensorflow"; tensorflow<2.16,>2.9; extra == "dev-tensorflow"; onnxconverter-common; extra == "dev-tensorflow"; tf2onnx; extra == "dev-tensorflow"; tensorflow-text<2.16; extra == "dev-tensorflow"; keras-nlp<0.14.0,>=0.3.1; extra == "dev-tensorflow"; protobuf; extra == "dev-tensorflow"; tokenizers<0.22,>=0.21; extra == "dev-tensorflow"; Pillow<=15.0,>=10.0.1; extra == "dev-tensorflow"; isort>=5.5.4; extra == "dev-tensorflow"; urllib3<2.0.0; extra == "dev-tensorflow"; libcst; extra == "dev-tensorflow"; rich; extra == "dev-tensorflow"; scikit-learn; extra == "dev-tensorflow"; onnxruntime>=1.4.0; extra == "dev-tensorflow"; onnxruntime-tools>=1.4.2; extra == "dev-tensorflow"; librosa; extra == "dev-tensorflow"; pyctcdecode>=0.4.0; extra == "dev-tensorflow"; phonemizer; extra == "dev-tensorflow"; kenlm; extra == "dev-tensorflow"; pytest>=7.2.0; extra == "dev-torch"; pytest-asyncio; extra == "dev-torch"; pytest-rich; extra == "dev-torch"; pytest-xdist; extra == "dev-torch"; pytest-order; extra == "dev-torch"; pytest-rerunfailures; extra == "dev-torch"; timeout-decorator; extra == "dev-torch"; parameterized; extra == "dev-torch"; psutil; extra == "dev-torch"; datasets!=2.5.0; extra == "dev-torch"; dill<0.3.5; extra == "dev-torch"; evaluate>=0.2.0; extra == "dev-torch"; pytest-timeout; extra == "dev-torch"; ruff==0.11.2; extra == "dev-torch"; isort>=5.5.4; extra == "quality"; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == "dev-torch"; nltk<=3.8.1; extra == "dev-torch"; GitPython<3.1.19; extra == "dev-torch"; sacremoses; extra == "dev-torch"; rjieba; extra == "dev-torch"; beautifulsoup4; extra == "dev-torch"; tensorboard; extra == "dev-torch"; pydantic; extra == "dev-torch"; sentencepiece!=0.1.92,>=0.1.91; extra == "dev-torch"; sacrebleu<2.0.0,>=1.4.12; extra == "dev-torch"; faiss-cpu; extra == "dev-torch"; cookiecutter==1.7.3; extra == "dev-torch"; torch<2.7,>=2.1; extra == "dev-torch"; accelerate>=0.26.0; extra == "dev-torch"; protobuf; extra == "dev-torch"; tokenizers<0.22,>=0.21; extra == "dev-torch"; torchaudio; extra == "dev-torch"; librosa; extra == "dev-torch"; pyctcdecode>=0.4.0; extra == "dev-torch"; phonemizer; extra == "dev-torch"; kenlm; extra == "dev-torch"; Pillow<=15.0,>=10.0.1; extra == "dev-torch"; kernels<0.5,>=0.4.4; extra == "dev-torch"; optuna; extra == "dev-torch"; ray[tune]>=2.7.0; extra == "dev-torch"; sigopt; extra == "dev-torch"; timm<=1.0.11; extra == "dev-torch"; torchvision; extra == "dev-torch"; codecarbon>=2.8.1; extra == "dev-torch"; isort>=5.5.4; extra == "dev-torch"; urllib3<2.0.0; extra == "dev-torch"; libcst; extra == "dev-torch"; rich; extra == "dev-torch"; fugashi>=1.0; extra == "dev-torch"; ipadic<2.0,>=1.0.0; extra == "dev-torch"; unidic-lite>=1.0.7; extra == "dev-torch"; unidic>=1.0.2; extra == "dev-torch"; sudachipy>=0.6.6; extra == "dev-torch"; sudachidict-core>=20220729; extra == "dev-torch"; rhoknp<1.3.1,>=1.1.0; extra == "dev-torch"; scikit-learn; extra == "dev-torch"; onnxruntime>=1.4.0; extra == "dev-torch"; onnxruntime-tools>=1.4.2; extra == "dev-torch"; num2words; extra == "dev-torch"; jax<=0.4.13,>=0.4.1; extra == "flax"; jaxlib<=0.4.13,>=0.4.1; extra == "flax"; flax<=0.7.0,>=0.4.1; extra == "flax"; optax<=0.1.4,>=0.0.8; extra == "flax"; scipy<1.13.0; extra == "flax"; librosa; extra == "flax-speech"; pyctcdecode>=0.4.0; extra == "flax-speech"; phonemizer; extra == "flax-speech"; kenlm; extra == "flax-speech"; ftfy; extra == "ftfy"; hf-xet; extra == "hf-xet"; kernels<0.5,>=0.4.4; extra == "hub-kernels"; kernels<0.5,>=0.4.4; extra == "integrations"; optuna; extra == "integrations"; ray[tune]>=2.7.0; extra == "integrations"; sigopt; extra == "integrations"; fugashi>=1.0; extra == "ja"; ipadic<2.0,>=1.0.0; extra == "ja"; unidic-lite>=1.0.7; extra == "ja"; unidic>=1.0.2; extra == "ja"; sudachipy>=0.6.6; extra == "ja"; sudachidict-core>=20220729; extra == "ja"; rhoknp<1.3.1,>=1.1.0; extra == "ja"; cookiecutter==1.7.3; extra == "modelcreation"; natten<0.15.0,>=0.14.6; extra == "natten"; num2words; extra == "num2words"; onnxconverter-common; extra == "onnx"; tf2onnx; extra == "onnx"; onnxruntime>=1.4.0; extra == "onnx"; onnxruntime-tools>=1.4.2; extra == "onnx"; onnxruntime>=1.4.0; extra == "onnxruntime"; onnxruntime-tools>=1.4.2; extra == "onnxruntime"; optuna; extra == "optuna"; datasets!=2.5.0; extra == "quality"; ruff==0.11.2; extra == "quality"; GitPython<3.1.19; extra == "quality"; urllib3<2.0.0; extra == "quality"; libcst; extra == "quality"; rich; extra == "quality"; ray[tune]>=2.7.0; extra == "ray"; faiss-cpu; extra == "retrieval"; datasets!=2.5.0; extra == "retrieval"; ruff==0.11.2; extra == "ruff"; sagemaker>=2.31.0; extra == "sagemaker"; sentencepiece!=0.1.92,>=0.1.91; extra == "sentencepiece"; protobuf; extra == "sentencepiece"; pydantic; extra == "serving"; uvicorn; extra == "serving"; fastapi; extra == "serving"; starlette; extra == "serving"; sigopt; extra == "sigopt"; scikit-learn; extra == "sklearn"; torchaudio; extra == "speech"; librosa; extra == "speech"; pyctcdecode>=0.4.0; extra == "speech"; phonemizer; extra == "speech"; kenlm; extra == "speech"; pytest>=7.2.0; extra == "testing"; pytest-asyncio; extra == "testing"; pytest-rich; extra == "testing"; pytest-xdist; extra == "testing"; pytest-order; extra == "testing"; pytest-rerunfailures; extra == "testing"; timeout-decorator; extra == "testing"; parameterized; extra == "testing"; psutil; extra == "testing"; datasets!=2.5.0; extra == "testing"; dill<0.3.5; extra == "testing"; evaluate>=0.2.0; extra == "testing"; pytest-timeout; extra == "testing"; ruff==0.11.2; extra == "testing"; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == "testing"; nltk<=3.8.1; extra == "testing"; GitPython<3.1.19; extra == "testing"; sacremoses; extra == "testing"; rjieba; extra == "testing"; beautifulsoup4; extra == "testing"; tensorboard; extra == "testing"; pydantic; extra == "testing"; sentencepiece!=0.1.92,>=0.1.91; extra == "testing"; sacrebleu<2.0.0,>=1.4.12; extra == "testing"; faiss-cpu; extra == "testing"; cookiecutter==1.7.3; extra == "testing"; tensorflow<2.16,>2.9; extra == "tf"; onnxconverter-common; extra == "tf"; tf2onnx; extra == "tf"; tensorflow-text<2.16; extra == "tf"; keras-nlp<0.14.0,>=0.3.1; extra == "tf"; keras<2.16,>2.9; extra == "tf-cpu"; tensorflow-cpu<2.16,>2.9; extra == "tf-cpu"; onnxconverter-common; extra == "tf-cpu"; tf2onnx; extra == "tf-cpu"; tensorflow-text<2.16; extra == "tf-cpu"; keras-nlp<0.14.0,>=0.3.1; extra == "tf-cpu"; tensorflow-probability<0.24; extra == "tf-cpu"; librosa; extra == "tf-speech"; pyctcdecode>=0.4.0; extra == "tf-speech"; phonemizer; extra == "tf-speech"; kenlm; extra == "tf-speech"; tiktoken; extra == "tiktoken"; blobfile; extra == "tiktoken"; timm<=1.0.11; extra == "timm"; tokenizers<0.22,>=0.21; extra == "tokenizers"; torch<2.7,>=2.1; extra == "torch"; accelerate>=0.26.0; extra == "torch"; torchaudio; extra == "torch-speech"; librosa; extra == "torch-speech"; pyctcdecode>=0.4.0; extra == "torch-speech"; phonemizer; extra == "torch-speech"; kenlm; extra == "torch-speech"; torchvision; extra == "torch-vision"; Pillow<=15.0,>=10.0.1; extra == "torch-vision"; filelock; extra == "torchhub"; huggingface-hub<1.0,>=0.30.0; extra == "torchhub"; importlib-metadata; extra == "torchhub"; numpy>=1.17; extra == "torchhub"; packaging>=20.0; extra == "torchhub"; protobuf; extra == "torchhub"; regex!=2019.12.17; extra == "torchhub"; requests; extra == "torchhub"; sentencepiece!=0.1.92,>=0.1.91; extra == "torchhub"; torch<2.7,>=2.1; extra == "torchhub"; tokenizers<0.22,>=0.21; extra == "torchhub"; tqdm>=4.27; extra == "torchhub"; av; extra == "video"; Pillow<=15.0,>=10.0.1; extra == "vision" | + + + +4.46.1, 4.46.2, 4.46.3, 4.47.0, 4.47.1, 4.48.0, 4.48.1, 4.48.2, 4.48.3, 4.49.0, 4.50.0, 4.50.1, 4.50.2, 4.50.3, 4.51.0, 4.51.1, 4.51.2, 4.51.3, 4.52.0, 4.52.1, 4.52.2, 4.52.3, 4.52.4 | + + + +beautifulsoup4; extra == "dev"; filelock; huggingface-hub<1.0,>=0.30.0; numpy>=1.17; packaging>=20.0; pyyaml>=5.1; regex!=2019.12.17; requests; tokenizers<0.22,>=0.21; safetensors>=0.4.3; tqdm>=4.27; accelerate>=0.26.0; extra == "accelerate"; tensorflow<2.16,>2.9; extra == "all"; onnxconverter-common; extra == "all"; tf2onnx; extra == "all"; tensorflow-text<2.16; extra == "all"; keras-nlp<0.14.0,>=0.3.1; extra == "all"; torch<2.7,>=2.1; extra == "all"; accelerate>=0.26.0; extra == "all"; jax<=0.4.13,>=0.4.1; extra == "all"; jaxlib<=0.4.13,>=0.4.1; extra == "all"; flax<=0.7.0,>=0.4.1; extra == "all"; optax<=0.1.4,>=0.0.8; extra == "all"; scipy<1.13.0; extra == "all"; sentencepiece!=0.1.92,>=0.1.91; extra == "all"; protobuf; extra == "all"; tokenizers<0.22,>=0.21; extra == "all"; torchaudio; extra == "all"; librosa; extra == "all"; pyctcdecode>=0.4.0; extra == "all"; phonemizer; extra == "all"; kenlm; extra == "all"; Pillow<=15.0,>=10.0.1; extra == "all"; kernels<0.5,>=0.4.4; extra == "all"; optuna; extra == "all"; ray[tune]>=2.7.0; extra == "all"; sigopt; extra == "all"; timm<=1.0.11; extra == "all"; torchvision; extra == "all"; codecarbon>=2.8.1; extra == "all"; av; extra == "all"; num2words; extra == "all"; librosa; extra == "audio"; pyctcdecode>=0.4.0; extra == "audio"; phonemizer; extra == "audio"; kenlm; extra == "audio"; optimum-benchmark>=0.3.0; extra == "benchmark"; codecarbon>=2.8.1; extra == "codecarbon"; deepspeed>=0.9.3; extra == "deepspeed"; accelerate>=0.26.0; extra == "deepspeed"; deepspeed>=0.9.3; extra == "deepspeed-testing"; accelerate>=0.26.0; extra == "deepspeed-testing"; pytest>=7.2.0; extra == "deepspeed-testing"; pytest-asyncio; extra == "deepspeed-testing"; pytest-rich; extra == "deepspeed-testing"; pytest-xdist; extra == "deepspeed-testing"; pytest-order; extra == "deepspeed-testing"; pytest-rerunfailures; extra == "deepspeed-testing"; timeout-decorator; extra == "deepspeed-testing"; parameterized; extra == "deepspeed-testing"; psutil; extra == "deepspeed-testing"; datasets!=2.5.0; extra == "deepspeed-testing"; dill<0.3.5; extra == "deepspeed-testing"; evaluate>=0.2.0; extra == "deepspeed-testing"; pytest-timeout; extra == "deepspeed-testing"; ruff==0.11.2; extra == "deepspeed-testing"; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == "deepspeed-testing"; nltk<=3.8.1; extra == "deepspeed-testing"; GitPython<3.1.19; extra == "deepspeed-testing"; sacremoses; extra == "deepspeed-testing"; rjieba; extra == "deepspeed-testing"; beautifulsoup4; extra == "deepspeed-testing"; tensorboard; extra == "deepspeed-testing"; pydantic; extra == "deepspeed-testing"; sentencepiece!=0.1.92,>=0.1.91; extra == "deepspeed-testing"; sacrebleu<2.0.0,>=1.4.12; extra == "deepspeed-testing"; faiss-cpu; extra == "deepspeed-testing"; cookiecutter==1.7.3; extra == "deepspeed-testing"; optuna; extra == "deepspeed-testing"; protobuf; extra == "deepspeed-testing"; tensorflow<2.16,>2.9; extra == "dev"; onnxconverter-common; extra == "dev"; tf2onnx; extra == "dev"; tensorflow-text<2.16; extra == "dev"; keras-nlp<0.14.0,>=0.3.1; extra == "dev"; torch<2.7,>=2.1; extra == "dev"; accelerate>=0.26.0; extra == "dev"; jax<=0.4.13,>=0.4.1; extra == "dev"; jaxlib<=0.4.13,>=0.4.1; extra == "dev"; flax<=0.7.0,>=0.4.1; extra == "dev"; optax<=0.1.4,>=0.0.8; extra == "dev"; scipy<1.13.0; extra == "dev"; sentencepiece!=0.1.92,>=0.1.91; extra == "dev"; protobuf; extra == "dev"; tokenizers<0.22,>=0.21; extra == "dev"; torchaudio; extra == "dev"; librosa; extra == "dev"; pyctcdecode>=0.4.0; extra == "dev"; phonemizer; extra == "dev"; kenlm; extra == "dev"; Pillow<=15.0,>=10.0.1; extra == "dev"; kernels<0.5,>=0.4.4; extra == "dev"; optuna; extra == "dev"; ray[tune]>=2.7.0; extra == "dev"; sigopt; extra == "dev"; timm<=1.0.11; extra == "dev"; torchvision; extra == "dev"; codecarbon>=2.8.1; extra == "dev"; av; extra == "dev"; num2words; extra == "dev"; pytest>=7.2.0; extra == "dev"; pytest-asyncio; extra == "dev"; pytest-rich; extra == "dev"; pytest-xdist; extra == "dev"; pytest-order; extra == "dev"; pytest-rerunfailures; extra == "dev"; timeout-decorator; extra == "dev"; parameterized; extra == "dev"; psutil; extra == "dev"; datasets!=2.5.0; extra == "dev"; dill<0.3.5; extra == "dev"; evaluate>=0.2.0; extra == "dev"; pytest-timeout; extra == "dev"; ruff==0.11.2; extra == "dev"; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == "dev"; nltk<=3.8.1; extra == "dev"; GitPython<3.1.19; extra == "dev"; sacremoses; extra == "dev"; rjieba; extra == "dev"; tensorboard; extra == "dev"; pydantic; extra == "dev"; sacrebleu<2.0.0,>=1.4.12; extra == "dev"; faiss-cpu; extra == "dev"; cookiecutter==1.7.3; extra == "dev"; isort>=5.5.4; extra == "dev"; urllib3<2.0.0; extra == "dev"; libcst; extra == "dev"; rich; extra == "dev"; fugashi>=1.0; extra == "dev"; ipadic<2.0,>=1.0.0; extra == "dev"; unidic-lite>=1.0.7; extra == "dev"; unidic>=1.0.2; extra == "dev"; sudachipy>=0.6.6; extra == "dev"; sudachidict-core>=20220729; extra == "dev"; rhoknp<1.3.1,>=1.1.0; extra == "dev"; scikit-learn; extra == "dev"; pytest>=7.2.0; extra == "dev-tensorflow"; pytest-asyncio; extra == "dev-tensorflow"; pytest-rich; extra == "dev-tensorflow"; pytest-xdist; extra == "dev-tensorflow"; pytest-order; extra == "dev-tensorflow"; pytest-rerunfailures; extra == "dev-tensorflow"; timeout-decorator; extra == "dev-tensorflow"; parameterized; extra == "dev-tensorflow"; psutil; extra == "dev-tensorflow"; datasets!=2.5.0; extra == "dev-tensorflow"; dill<0.3.5; extra == "dev-tensorflow"; evaluate>=0.2.0; extra == "dev-tensorflow"; pytest-timeout; extra == "dev-tensorflow"; ruff==0.11.2; extra == "dev-tensorflow"; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == "dev-tensorflow"; nltk<=3.8.1; extra == "dev-tensorflow"; GitPython<3.1.19; extra == "dev-tensorflow"; sacremoses; extra == "dev-tensorflow"; rjieba; extra == "dev-tensorflow"; beautifulsoup4; extra == "dev-tensorflow"; tensorboard; extra == "dev-tensorflow"; pydantic; extra == "dev-tensorflow"; sentencepiece!=0.1.92,>=0.1.91; extra == "dev-tensorflow"; sacrebleu<2.0.0,>=1.4.12; extra == "dev-tensorflow"; faiss-cpu; extra == "dev-tensorflow"; cookiecutter==1.7.3; extra == "dev-tensorflow"; tensorflow<2.16,>2.9; extra == "dev-tensorflow"; onnxconverter-common; extra == "dev-tensorflow"; tf2onnx; extra == "dev-tensorflow"; tensorflow-text<2.16; extra == "dev-tensorflow"; keras-nlp<0.14.0,>=0.3.1; extra == "dev-tensorflow"; protobuf; extra == "dev-tensorflow"; tokenizers<0.22,>=0.21; extra == "dev-tensorflow"; Pillow<=15.0,>=10.0.1; extra == "dev-tensorflow"; isort>=5.5.4; extra == "dev-tensorflow"; urllib3<2.0.0; extra == "dev-tensorflow"; libcst; extra == "dev-tensorflow"; rich; extra == "dev-tensorflow"; scikit-learn; extra == "dev-tensorflow"; onnxruntime>=1.4.0; extra == "dev-tensorflow"; onnxruntime-tools>=1.4.2; extra == "dev-tensorflow"; librosa; extra == "dev-tensorflow"; pyctcdecode>=0.4.0; extra == "dev-tensorflow"; phonemizer; extra == "dev-tensorflow"; kenlm; extra == "dev-tensorflow"; pytest>=7.2.0; extra == "dev-torch"; pytest-asyncio; extra == "dev-torch"; pytest-rich; extra == "dev-torch"; pytest-xdist; extra == "dev-torch"; pytest-order; extra == "dev-torch"; pytest-rerunfailures; extra == "dev-torch"; timeout-decorator; extra == "dev-torch"; parameterized; extra == "dev-torch"; psutil; extra == "dev-torch"; datasets!=2.5.0; extra == "dev-torch"; dill<0.3.5; extra == "dev-torch"; evaluate>=0.2.0; extra == "dev-torch"; pytest-timeout; extra == "dev-torch"; ruff==0.11.2; extra == "dev-torch"; isort>=5.5.4; extra == "quality"; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == "dev-torch"; nltk<=3.8.1; extra == "dev-torch"; GitPython<3.1.19; extra == "dev-torch"; sacremoses; extra == "dev-torch"; rjieba; extra == "dev-torch"; beautifulsoup4; extra == "dev-torch"; tensorboard; extra == "dev-torch"; pydantic; extra == "dev-torch"; sentencepiece!=0.1.92,>=0.1.91; extra == "dev-torch"; sacrebleu<2.0.0,>=1.4.12; extra == "dev-torch"; faiss-cpu; extra == "dev-torch"; cookiecutter==1.7.3; extra == "dev-torch"; torch<2.7,>=2.1; extra == "dev-torch"; accelerate>=0.26.0; extra == "dev-torch"; protobuf; extra == "dev-torch"; tokenizers<0.22,>=0.21; extra == "dev-torch"; torchaudio; extra == "dev-torch"; librosa; extra == "dev-torch"; pyctcdecode>=0.4.0; extra == "dev-torch"; phonemizer; extra == "dev-torch"; kenlm; extra == "dev-torch"; Pillow<=15.0,>=10.0.1; extra == "dev-torch"; kernels<0.5,>=0.4.4; extra == "dev-torch"; optuna; extra == "dev-torch"; ray[tune]>=2.7.0; extra == "dev-torch"; sigopt; extra == "dev-torch"; timm<=1.0.11; extra == "dev-torch"; torchvision; extra == "dev-torch"; codecarbon>=2.8.1; extra == "dev-torch"; isort>=5.5.4; extra == "dev-torch"; urllib3<2.0.0; extra == "dev-torch"; libcst; extra == "dev-torch"; rich; extra == "dev-torch"; fugashi>=1.0; extra == "dev-torch"; ipadic<2.0,>=1.0.0; extra == "dev-torch"; unidic-lite>=1.0.7; extra == "dev-torch"; unidic>=1.0.2; extra == "dev-torch"; sudachipy>=0.6.6; extra == "dev-torch"; sudachidict-core>=20220729; extra == "dev-torch"; rhoknp<1.3.1,>=1.1.0; extra == "dev-torch"; scikit-learn; extra == "dev-torch"; onnxruntime>=1.4.0; extra == "dev-torch"; onnxruntime-tools>=1.4.2; extra == "dev-torch"; num2words; extra == "dev-torch"; jax<=0.4.13,>=0.4.1; extra == "flax"; jaxlib<=0.4.13,>=0.4.1; extra == "flax"; flax<=0.7.0,>=0.4.1; extra == "flax"; optax<=0.1.4,>=0.0.8; extra == "flax"; scipy<1.13.0; extra == "flax"; librosa; extra == "flax-speech"; pyctcdecode>=0.4.0; extra == "flax-speech"; phonemizer; extra == "flax-speech"; kenlm; extra == "flax-speech"; ftfy; extra == "ftfy"; hf-xet; extra == "hf-xet"; kernels<0.5,>=0.4.4; extra == "hub-kernels"; kernels<0.5,>=0.4.4; extra == "integrations"; optuna; extra == "integrations"; ray[tune]>=2.7.0; extra == "integrations"; sigopt; extra == "integrations"; fugashi>=1.0; extra == "ja"; ipadic<2.0,>=1.0.0; extra == "ja"; unidic-lite>=1.0.7; extra == "ja"; unidic>=1.0.2; extra == "ja"; sudachipy>=0.6.6; extra == "ja"; sudachidict-core>=20220729; extra == "ja"; rhoknp<1.3.1,>=1.1.0; extra == "ja"; cookiecutter==1.7.3; extra == "modelcreation"; natten<0.15.0,>=0.14.6; extra == "natten"; num2words; extra == "num2words"; onnxconverter-common; extra == "onnx"; tf2onnx; extra == "onnx"; onnxruntime>=1.4.0; extra == "onnx"; onnxruntime-tools>=1.4.2; extra == "onnx"; onnxruntime>=1.4.0; extra == "onnxruntime"; onnxruntime-tools>=1.4.2; extra == "onnxruntime"; optuna; extra == "optuna"; datasets!=2.5.0; extra == "quality"; ruff==0.11.2; extra == "quality"; GitPython<3.1.19; extra == "quality"; urllib3<2.0.0; extra == "quality"; libcst; extra == "quality"; rich; extra == "quality"; ray[tune]>=2.7.0; extra == "ray"; faiss-cpu; extra == "retrieval"; datasets!=2.5.0; extra == "retrieval"; ruff==0.11.2; extra == "ruff"; sagemaker>=2.31.0; extra == "sagemaker"; sentencepiece!=0.1.92,>=0.1.91; extra == "sentencepiece"; protobuf; extra == "sentencepiece"; pydantic; extra == "serving"; uvicorn; extra == "serving"; fastapi; extra == "serving"; starlette; extra == "serving"; sigopt; extra == "sigopt"; scikit-learn; extra == "sklearn"; torchaudio; extra == "speech"; librosa; extra == "speech"; pyctcdecode>=0.4.0; extra == "speech"; phonemizer; extra == "speech"; kenlm; extra == "speech"; pytest>=7.2.0; extra == "testing"; pytest-asyncio; extra == "testing"; pytest-rich; extra == "testing"; pytest-xdist; extra == "testing"; pytest-order; extra == "testing"; pytest-rerunfailures; extra == "testing"; timeout-decorator; extra == "testing"; parameterized; extra == "testing"; psutil; extra == "testing"; datasets!=2.5.0; extra == "testing"; dill<0.3.5; extra == "testing"; evaluate>=0.2.0; extra == "testing"; pytest-timeout; extra == "testing"; ruff==0.11.2; extra == "testing"; rouge-score!=0.0.7,!=0.0.8,!=0.1,!=0.1.1; extra == "testing"; nltk<=3.8.1; extra == "testing"; GitPython<3.1.19; extra == "testing"; sacremoses; extra == "testing"; rjieba; extra == "testing"; beautifulsoup4; extra == "testing"; tensorboard; extra == "testing"; pydantic; extra == "testing"; sentencepiece!=0.1.92,>=0.1.91; extra == "testing"; sacrebleu<2.0.0,>=1.4.12; extra == "testing"; faiss-cpu; extra == "testing"; cookiecutter==1.7.3; extra == "testing"; tensorflow<2.16,>2.9; extra == "tf"; onnxconverter-common; extra == "tf"; tf2onnx; extra == "tf"; tensorflow-text<2.16; extra == "tf"; keras-nlp<0.14.0,>=0.3.1; extra == "tf"; keras<2.16,>2.9; extra == "tf-cpu"; tensorflow-cpu<2.16,>2.9; extra == "tf-cpu"; onnxconverter-common; extra == "tf-cpu"; tf2onnx; extra == "tf-cpu"; tensorflow-text<2.16; extra == "tf-cpu"; keras-nlp<0.14.0,>=0.3.1; extra == "tf-cpu"; tensorflow-probability<0.24; extra == "tf-cpu"; librosa; extra == "tf-speech"; pyctcdecode>=0.4.0; extra == "tf-speech"; phonemizer; extra == "tf-speech"; kenlm; extra == "tf-speech"; tiktoken; extra == "tiktoken"; blobfile; extra == "tiktoken"; timm<=1.0.11; extra == "timm"; tokenizers<0.22,>=0.21; extra == "tokenizers"; torch<2.7,>=2.1; extra == "torch"; accelerate>=0.26.0; extra == "torch"; torchaudio; extra == "torch-speech"; librosa; extra == "torch-speech"; pyctcdecode>=0.4.0; extra == "torch-speech"; phonemizer; extra == "torch-speech"; kenlm; extra == "torch-speech"; torchvision; extra == "torch-vision"; Pillow<=15.0,>=10.0.1; extra == "torch-vision"; filelock; extra == "torchhub"; huggingface-hub<1.0,>=0.30.0; extra == "torchhub"; importlib-metadata; extra == "torchhub"; numpy>=1.17; extra == "torchhub"; packaging>=20.0; extra == "torchhub"; protobuf; extra == "torchhub"; regex!=2019.12.17; extra == "torchhub"; requests; extra == "torchhub"; sentencepiece!=0.1.92,>=0.1.91; extra == "torchhub"; torch<2.7,>=2.1; extra == "torchhub"; tokenizers<0.22,>=0.21; extra == "torchhub"; tqdm>=4.27; extra == "torchhub"; av; extra == "video"; Pillow<=15.0,>=10.0.1; extra == "vision" | + + + +4.52.4 | + + + +Yes | + + + +CVE-2024-12720, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.48.0 CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2024-11394, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2024-11392, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11393, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11392, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11393, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11394, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0 |
+
+
+
+ Yes | + + + +4.49.0: CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0; 4.48.2: CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0; 4.47.1: CVE-2024-12720, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.48.0 CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2024-11394, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2024-11392, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11393, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11392, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11393, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11394, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0; 4.48.1: CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0; 4.46.1: CVE-2024-12720, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.48.0 CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2024-11394, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2024-11392, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11393, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11392, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11393, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11394, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0; 4.48.3: CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0; 4.46.3: CVE-2024-12720, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.48.0 CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2024-11394, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2024-11392, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11393, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11392, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11393, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11394, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0; 4.47.0: CVE-2024-12720, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.48.0 CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2024-11394, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2024-11392, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11393, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11392, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11393, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11394, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0; 4.48.0: CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0; 4.46.2: CVE-2024-12720, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.48.0 CVE-2025-1194, CVSS_V3, Transformers Regular Expression Denial of Service (ReDoS) vulnerability, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2024-11394, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2025-2099, CVSS_V3, Hugging Face Transformers Regular Expression Denial of Service, CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L, affects: >=0,<4.50.0 CVE-2024-11392, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11393, CVSS_V3, Deserialization of Untrusted Data in Hugging Face Transformers, CVSS:3.0/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11392, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11393, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2024-11394, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H, affects: >=0,<4.48.0 CVE-2025-2099, CVSS_V3, , CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<4.49.0 |
+
+
+
+ 4.52.4 | + + + +{'base_package': 'transformers==4.52.4', 'dependencies': ['beautifulsoup4==4.13.4', 'filelock==3.18.0', 'huggingface-hub==0.33.0', 'numpy==1.26.4', 'packaging==20.9', 'pyyaml==5.4.1', 'requests==2.32.4', 'tokenizers==0.21.2', 'safetensors==0.6.0rc0', 'tqdm==4.67.1', 'accelerate==0.34.2', 'tensorflow==2.19.0', 'onnxconverter-common==1.14.0', 'tf2onnx==1.16.1', 'tensorflow-text==2.19.0', 'keras-nlp==0.21.1', 'jax==0.34.2', 'jaxlib==0.6.2', 'flax==0.6.2', 'optax==0.10.6', 'scipy==0.2.5', 'sentencepiece==1.16.0', 'protobuf==0.2.0', 'torchaudio==6.31.1', 'librosa==0.21.2', 'pyctcdecode==2.7.1', 'phonemizer==0.11.0', 'kenlm==0.5.0', 'Pillow==3.3.0', 'kernels==0.3.0', 'optuna==10.4.0', 'ray==0.6.2', 'sigopt==4.4.0', 'timm==2.47.1', 'torchvision==8.8.3', 'codecarbon==1.0.15', 'av==0.22.1', 'num2words==2.8.4', 'optimum-benchmark==14.4.0', 'deepspeed==0.5.14', 'pytest==0.11.0', 'pytest-asyncio==0.5.0', 'pytest-rich==3.3.0', 'pytest-xdist==0.3.0', 'pytest-order==0.5.0', 'pytest-rerunfailures==2.8.4', 'timeout-decorator==0.17.1', 'parameterized==0.34.2', 'psutil==0.17.1', 'datasets==0.34.2', 'dill==7.4.4', 'evaluate==1.0.0', 'pytest-timeout==0.2.0', 'ruff==3.7.0', 'rouge-score==1.3.0', 'nltk==15.1', 'GitPython==0.5.0', 'sacremoses==0.9.0', 'rjieba==7.0.0', 'tensorboard==3.6.0', 'pydantic==0.4.0', 'sacrebleu==0.4.4', 'faiss-cpu==2.4.0', 'cookiecutter==0.12.0', 'isort==0.1.2', 'libcst==3.1.44', 'rich==0.1.1', 'fugashi==0.1.13', 'ipadic==4.13.4', 'unidic-lite==2.19.0', 'unidic==2.11.7', 'sudachipy==0.2.0', 'sudachidict-core==1.5.1', 'rhoknp==1.11.0', 'onnxruntime==4.4.0', 'onnxruntime-tools==6.31.1', 'ftfy==2.19.0', 'hf-xet==1.14.0', 'natten==1.16.1', 'sagemaker==2.19.0', 'uvicorn==0.21.1', 'starlette==0.34.2', 'keras==0.6.2', 'tensorflow-cpu==0.6.2', 'tensorflow-probability==0.10.6', 'tiktoken==0.2.5', 'blobfile==1.16.0', 'importlib-metadata==0.2.0']} | + + + +Not Used | + + +
| trio | + + + +Dependency Package | + + + +I&S | + + + +0.26.2 | + + + +None | + + + +attrs>=23.2.0; sortedcontainers; idna; outcome; sniffio>=1.3.0; cffi>=1.14; os_name == "nt" and implementation_name != "pypy"; exceptiongroup; python_version < "3.11" | + + + +0.27.0, 0.28.0, 0.29.0, 0.30.0 | + + + +attrs>=23.2.0; sortedcontainers; idna; outcome; sniffio>=1.3.0; cffi>=1.14; os_name == "nt" and implementation_name != "pypy"; exceptiongroup; python_version < "3.11" | + + + +0.30.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| trio-websocket | + + + +Dependency Package | + + + +I&S | + + + +0.11.1 | + + + +None | + + + +outcome>=1.2.0; trio>=0.11; wsproto>=0.14; exceptiongroup; python_version < "3.11" | + + + +0.12.0, 0.12.1, 0.12.2 | + + + +outcome>=1.2.0; trio>=0.11; wsproto>=0.14; exceptiongroup; python_version < "3.11" | + + + +0.12.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| trove-classifiers | + + + +Dependency Package | + + + +I&S | + + + +2024.9.12 | + + + +None | + + + ++ + + + | 2024.10.11, 2024.10.12, 2024.10.13, 2024.10.16, 2024.10.21.16, 2025.1.6.15, 2025.1.7.14, 2025.1.10.15, 2025.1.15.22, 2025.2.18.16, 2025.3.3.18, 2025.3.13.13, 2025.3.19.19, 2025.4.11.15, 2025.4.28.22, 2025.5.1.12, 2025.5.7.19, 2025.5.8.13, 2025.5.8.15, 2025.5.9.12 | + + + ++ + + + | 2025.5.9.12 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tsdownsample | + + + +Dependency Package | + + + +I&S | + + + +0.1.3 | + + + +None | + + + +numpy | + + + +0.1.4, 0.1.4.1rc0, 0.1.4.1 | + + + +numpy | + + + +0.1.4.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| typeguard | + + + +Dependency Package | + + + +I&S | + + + +4.3.0 | + + + +None | + + + +importlib_metadata>=3.6; python_version < "3.10"; typing_extensions>=4.14.0 | + + + +4.4.0, 4.4.1, 4.4.2, 4.4.3, 4.4.4 | + + + +importlib_metadata>=3.6; python_version < "3.10"; typing_extensions>=4.14.0 | + + + +4.4.4 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| tzlocal | + + + +Dependency Package | + + + +I&S | + + + +5.2 | + + + +None | + + + +tzdata; platform_system == "Windows"; pytest>=4.3; extra == "devenv"; pytest-mock>=3.3; extra == "devenv"; pytest-cov; extra == "devenv"; check-manifest; extra == "devenv"; zest.releaser; extra == "devenv" | + + + +5.3, 5.3.1 | + + + +tzdata; platform_system == "Windows"; pytest>=4.3; extra == "devenv"; pytest-mock>=3.3; extra == "devenv"; pytest-cov; extra == "devenv"; check-manifest; extra == "devenv"; zest.releaser; extra == "devenv" | + + + +5.3.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| ujson | + + + +Dependency Package | + + + +I&S | + + + +5.10.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 5.10.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| unstructured-client | + + + +Dependency Package | + + + +I&S | + + + +0.25.8 | + + + +None | + + + +aiofiles>=24.1.0; cryptography>=3.1; httpx>=0.27.0; nest-asyncio>=1.6.0; pydantic>=2.11.2; pypdf>=4.0; requests-toolbelt>=1.0.0 | + + + +0.25.9, 0.26.0b1, 0.26.0b2, 0.26.0b3, 0.26.0b4, 0.26.0, 0.26.1, 0.26.2, 0.27.0, 0.28.0, 0.28.1, 0.29.0, 0.30.0b0, 0.30.0, 0.30.1, 0.30.2, 0.30.3, 0.30.4, 0.30.5, 0.30.6, 0.31.0, 0.31.1, 0.31.2, 0.31.3, 0.31.4, 0.31.5, 0.31.6, 0.32.0, 0.32.1, 0.32.2, 0.32.3, 0.32.4, 0.33.0, 0.33.1, 0.34.0, 0.35.0, 0.36.0, 0.37.1, 0.37.2 | + + + +aiofiles>=24.1.0; cryptography>=3.1; httpx>=0.27.0; nest-asyncio>=1.6.0; pydantic>=2.11.2; pypdf>=4.0; requests-toolbelt>=1.0.0 | + + + +0.37.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| url-normalize | + + + +Dependency Package | + + + +I&S | + + + +1.4.3 | + + + +None | + + + +idna>=3.3; mypy; extra == "dev"; pre-commit; extra == "dev"; pytest-cov; extra == "dev"; pytest-socket; extra == "dev"; pytest; extra == "dev"; ruff; extra == "dev" | + + + +2.0.0, 2.0.1, 2.1.0, 2.2.0, 2.2.1 | + + + +idna>=3.3; mypy; extra == "dev"; pre-commit; extra == "dev"; pytest-cov; extra == "dev"; pytest-socket; extra == "dev"; pytest; extra == "dev"; ruff; extra == "dev" | + + + +2.2.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| virtualenv | + + + +Dependency Package | + + + +I&S | + + + +20.27.0 | + + + +None | + + + +distlib<1,>=0.3.7; filelock<4,>=3.12.2; importlib-metadata>=6.6; python_version < "3.8"; platformdirs<5,>=3.9.1; furo>=2023.7.26; extra == "docs"; proselint>=0.13; extra == "docs"; sphinx!=7.3,>=7.1.2; extra == "docs"; sphinx-argparse>=0.4; extra == "docs"; sphinxcontrib-towncrier>=0.2.1a0; extra == "docs"; towncrier>=23.6; extra == "docs"; covdefaults>=2.3; extra == "test"; coverage-enable-subprocess>=1; extra == "test"; coverage>=7.2.7; extra == "test"; flaky>=3.7; extra == "test"; packaging>=23.1; extra == "test"; pytest-env>=0.8.2; extra == "test"; pytest-freezer>=0.4.8; (platform_python_implementation == "PyPy" or platform_python_implementation == "GraalVM" or (platform_python_implementation == "CPython" and sys_platform == "win32" and python_version >= "3.13")) and extra == "test"; pytest-mock>=3.11.1; extra == "test"; pytest-randomly>=3.12; extra == "test"; pytest-timeout>=2.1; extra == "test"; pytest>=7.4; extra == "test"; setuptools>=68; extra == "test"; time-machine>=2.10; platform_python_implementation == "CPython" and extra == "test" | + + + +20.27.1, 20.28.0, 20.28.1, 20.29.0, 20.29.1, 20.29.2, 20.29.3, 20.30.0, 20.31.0, 20.31.1, 20.31.2 | + + + +distlib<1,>=0.3.7; filelock<4,>=3.12.2; importlib-metadata>=6.6; python_version < "3.8"; platformdirs<5,>=3.9.1; furo>=2023.7.26; extra == "docs"; proselint>=0.13; extra == "docs"; sphinx!=7.3,>=7.1.2; extra == "docs"; sphinx-argparse>=0.4; extra == "docs"; sphinxcontrib-towncrier>=0.2.1a0; extra == "docs"; towncrier>=23.6; extra == "docs"; covdefaults>=2.3; extra == "test"; coverage-enable-subprocess>=1; extra == "test"; coverage>=7.2.7; extra == "test"; flaky>=3.7; extra == "test"; packaging>=23.1; extra == "test"; pytest-env>=0.8.2; extra == "test"; pytest-freezer>=0.4.8; (platform_python_implementation == "PyPy" or platform_python_implementation == "GraalVM" or (platform_python_implementation == "CPython" and sys_platform == "win32" and python_version >= "3.13")) and extra == "test"; pytest-mock>=3.11.1; extra == "test"; pytest-randomly>=3.12; extra == "test"; pytest-timeout>=2.1; extra == "test"; pytest>=7.4; extra == "test"; setuptools>=68; extra == "test"; time-machine>=2.10; platform_python_implementation == "CPython" and extra == "test" | + + + +20.31.2 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| Werkzeug | + + + +Dependency Package | + + + +I&S | + + + +3.0.4 | + + + +None | + + + +MarkupSafe>=2.1.1; watchdog>=2.3; extra == "watchdog" | + + + +3.0.5, 3.0.6, 3.1.0, 3.1.1, 3.1.2, 3.1.3 | + + + +MarkupSafe>=2.1.1; watchdog>=2.3; extra == "watchdog" | + + + +3.1.3 | + + + +Yes | + + + +CVE-2024-49766, CVSS_V4, Werkzeug safe_join not safe on Windows, CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N, affects: >=0,<3.0.6 CVE-2024-49767, CVSS_V3, Werkzeug possible resource exhaustion when parsing file data in forms, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<3.0.6; >=0,<0.20.0 |
+
+
+
+ Yes | + + + +3.0.5: CVE-2024-49766, CVSS_V4, Werkzeug safe_join not safe on Windows, CVSS:4.0/AV:N/AC:H/AT:N/PR:N/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N, affects: >=0,<3.0.6 CVE-2024-49767, CVSS_V3, Werkzeug possible resource exhaustion when parsing file data in forms, CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H, affects: >=0,<3.0.6; >=0,<0.20.0 |
+
+
+
+ 3.1.3 | + + + +{'base_package': 'Werkzeug==3.1.3', 'dependencies': ['MarkupSafe==2.1.5', 'watchdog==2.3.1']} | + + + +Not Used | + + +
| wheel | + + + +Dependency Package | + + + +I&S | + + + +0.44.0 | + + + +None | + + + +pytest>=6.0.0; extra == "test"; setuptools>=65; extra == "test" | + + + +0.45.0, 0.45.1, 0.46.0, 0.46.1 | + + + +pytest>=6.0.0; extra == "test"; setuptools>=65; extra == "test" | + + + +0.46.1 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| widgetsnbextension | + + + +Dependency Package | + + + +I&S | + + + +4.0.13 | + + + +None | + + + ++ + + + | 4.0.14 | + + + ++ + + + | 4.0.14 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| wsproto | + + + +Dependency Package | + + + +I&S | + + + +1.2.0 | + + + +None | + + + +h11 (<1,>=0.9.0) | + + + ++ + + + | h11 (<1,>=0.9.0) | + + + +1.2.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| xxhash | + + + +Dependency Package | + + + +I&S | + + + +3.5.0 | + + + +None | + + + ++ + + + | + + + + | + + + + | 3.5.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |
| zstandard | + + + +Dependency Package | + + + +I&S | + + + +0.23.0 | + + + +None | + + + +cffi>=1.11; platform_python_implementation == "PyPy"; cffi>=1.11; extra == "cffi" | + + + ++ + + + | cffi>=1.11; platform_python_implementation == "PyPy"; cffi>=1.11; extra == "cffi" | + + + +0.23.0 | + + + +No | + + + ++ + + + | No | + + + +None | + + + +None | + + + +None | + + + ++ + + |