Skip to main content

An extremely fast Python library to calculate the cognitive complexity of Python files, written in Rust.

Project description

complexipy

complexipy

Blazingly fast cognitive complexity analysis for Python, written in Rust.

PyPI Downloads License

InstallationQuick StartIntegrationsDocumentationComplexipy Teams

What is Cognitive Complexity?

Cognitive complexity measures how hard code is to understand by humans, not machines.

Unlike traditional metrics like cyclomatic complexity, cognitive complexity accounts for nesting depth and control flow patterns that affect human comprehension. Inspired by G. Ann Campbell's research at SonarSource, complexipy provides a fast, accurate implementation for Python.

Key benefits:

  • Human-focused - Penalizes nesting, flow breaks, and human-unfriendly logic
  • Actionable insights - Identifies genuinely hard-to-maintain code
  • Different from cyclomatic - Measures readability while cyclomatic measures structural, testing, and branch density

Common Questions

How is complexity calculated? Learn about the scoring algorithm, what each control structure contributes, and how nesting affects the final score.

How does this compare to Ruff's PLR0912? Understand the key differences between cyclomatic complexity (Ruff) and cognitive complexity (complexipy), and why you might want to use both.

Is this a SonarSource/Sonar product? No. complexipy is an independent project inspired by G. Ann Campbell's research, but it's not affiliated with or endorsed by SonarSource.

Installation

pip install complexipy
# or
uv add complexipy

Quick Start

Command Line

# Analyze current directory
complexipy .

# Analyze specific file/directory
complexipy path/to/code.py

# Analyze with custom threshold
complexipy . --max-complexity-allowed 10

# Save results to JSON/CSV
complexipy . --output-format json --output-format csv

# Show the top 5 most complex functions
complexipy . --top 5

# Show deterministic refactor suggestions for failing functions
complexipy . --failed --suggest-refactors

# Emit plain text for scripting/AI agents
complexipy . --plain

# Include module-level script complexity as <module>
complexipy . --check-script

# Write a GitLab report to a deterministic path
complexipy . --output-format gitlab --output complexipy-code-quality.json

# Compare complexity against a git reference
complexipy . --diff HEAD~1

# Fail only on threshold-breaking regressions in a diff
complexipy . --diff main --ratchet
# Analyze current directory while excluding files or directories with glob patterns
complexipy . --exclude "tests/**" --exclude "path/to/exclude.py"

# Disregard all inline ignore comments
complexipy . --no-ignore

# Report all ignored functions
complexipy . --report-ignored

Python API

from complexipy import file_complexity, code_complexity

# Analyze a file
result = file_complexity("app.py", check_script=True)
print(f"File complexity: {result.complexity}")

for func in result.functions:
    print(f"{func.name}: {func.complexity}")

# Analyze code string
snippet = """
def complex_function(data):
    if data:
        for item in data:
            if item.is_valid():
                process(item)
"""

result = code_complexity(snippet, check_script=True)
print(f"Complexity: {result.complexity}")

Integrations

🔧 GitHub Actions
- uses: rohaquinlop/complexipy-action@v2
  with:
      paths: .
      max_complexity_allowed: 10
      output_format: json
🔍 GitHub Code Scanning (SARIF)

Upload complexity violations as inline PR annotations using SARIF:

- name: Run complexipy
  run: complexipy . --output-format sarif --output complexipy-results.sarif --ignore-complexity

- name: Upload SARIF results
  uses: github/codeql-action/upload-sarif@v3
  with:
      sarif_file: complexipy-results.sarif
🦊 GitLab Code Quality

Publish complexity violations as a GitLab Code Quality artifact:

complexity:
    image: python:3.11
    script:
        - pip install complexipy
        - complexipy . --output-format gitlab --output complexipy-code-quality.json --ignore-complexity
    artifacts:
        when: always
        reports:
            codequality: complexipy-code-quality.json
🪝 Pre-commit Hook
repos:
    - repo: https://github.com/rohaquinlop/complexipy-pre-commit
      rev: v5.1.0
      hooks:
          - id: complexipy
🔌 VS Code Extension

Install from the marketplace for real-time complexity analysis with visual indicators.

Configuration

TOML Configuration Files

complexipy supports configuration via TOML files. Configuration files are loaded in this order of precedence:

  1. complexipy.toml (project-specific config)
  2. .complexipy.toml (hidden config file)
  3. pyproject.toml (under [tool.complexipy] section)

Example Configuration

# complexipy.toml or .complexipy.toml
paths = ["src", "tests"]
max-complexity-allowed = 10
snapshot-create = false
snapshot-ignore = false
quiet = false
ignore-complexity = false
failed = false
color = "auto"
sort = "asc"
exclude = []
check-script = false
no-ignore = false
report-ignored = false
output-format = ["json", "sarif"]
output = "reports/"
# pyproject.toml
[tool.complexipy]
paths = ["src", "tests"]
max-complexity-allowed = 10
snapshot-create = false
snapshot-ignore = false
quiet = false
ignore-complexity = false
failed = false
color = "auto"
sort = "asc"
exclude = []
check-script = false
no-ignore = false
report-ignored = false
output-format = ["json"]
output = "complexipy-results.json"

Legacy TOML keys such as output-json = true and CLI flags such as --output-json still work for now, but they are deprecated in favor of output-format and --output-format.

check-script is supported in TOML. --top and --plain are CLI-only flags.

CLI Options

Flag Description Default
--exclude Exclude glob patterns relative to each provided path. Use patterns like tests/** for directories or src/legacy/file.py for specific files.
--max-complexity-allowed Complexity threshold 15
--snapshot-create Save the current violations above the threshold into complexipy-snapshot.json false
--snapshot-ignore Skip comparing against the snapshot even if it exists false
--failed Show only functions above the complexity threshold false
--suggest-refactors Show deterministic Rust AST-based refactor plans in rich CLI output. Ignored by --plain false
--color <auto|yes|no> Use color auto
--sort <asc|desc|file_name> Sort results asc
--quiet Suppress output false
--ignore-complexity Don't exit with error on threshold breach false
--version Show installed complexipy version and exit -
--top <n> Show only the n most complex functions, globally sorted by complexity descending
--plain Emit plain text lines as <path> <function> <complexity>. Cannot be combined with --quiet false
--output-format <format> Select a machine-readable output format. Repeat the flag to request multiple formats (json, csv, gitlab, sarif)
--output <path> Write machine-readable output to a file or directory. Use a directory when emitting multiple formats
--diff <ref> Show a complexity diff against a git reference (e.g. HEAD~1, main)
--ratchet With --diff, fail only when a change pushes a function above --max-complexity-allowed or makes an already-over function worse false
--check-script Report module-level (script) complexity as a synthetic <module> entry false
--no-ignore Analyze every function, disregarding inline ignore comments (# complexipy: ignore, # noqa: complexipy) false
--report-ignored List every file:line where an ignore comment suppresses a function. Prints even under --quiet false
--output-json Deprecated alias for --output-format json false
--output-csv Deprecated alias for --output-format csv false
--output-gitlab Deprecated alias for --output-format gitlab false
--output-sarif Deprecated alias for --output-format sarif false

Example:

# Exclude a directory recursively under the provided root
complexipy . --exclude "tests/**"
# Exclude a specific file
complexipy . --exclude "src/legacy/old_code.py"

Refactor Suggestions

Use --suggest-refactors to print a small, ranked set of deterministic refactor plans next to rich CLI results:

complexipy . --failed --suggest-refactors

Sample output:

Refactor plans:
  • Flatten nested condition block with guard clauses (lines 3-8, estimated: 7 -> 5 (-2))
    - invert the outer condition and return early

Plans are based on the Rust AST analysis only; no AI is used and no code is rewritten automatically. Estimated reductions are approximate, ranked, and limited, so treat them as guidance rather than exact future scores. --plain --suggest-refactors keeps plain output unchanged.

Snapshot Baselines

Use snapshots to adopt complexipy in large, existing codebases without touching every legacy function at once.

# Record the current state (creates complexipy-snapshot.json in the working directory)
complexipy . --snapshot-create --max-complexity-allowed 15

# Block regressions while allowing previously-recorded functions
complexipy . --max-complexity-allowed 15

# Temporarily skip the snapshot gate
complexipy . --snapshot-ignore

The snapshot file only stores functions whose complexity exceeds the configured threshold. When a snapshot file exists, complexipy will automatically:

  • fail if a new function crosses the threshold,
  • fail if a tracked function becomes more complex, and
  • pass (and update the snapshot) when everything is stable or improved, automatically removing entries that now meet the standard.

Use --snapshot-ignore if you need to temporarily bypass the snapshot gate (for example during a refactor or while regenerating the baseline).

Complexity Diff

Compare complexity against any git reference to see at a glance whether a branch or commit made things better or worse:

# Compare the working tree against the previous commit
complexipy . --diff HEAD~1

# Compare against a named branch
complexipy . --diff main

# Fail only on threshold-breaking regressions
complexipy . --diff main --ratchet

# Combine with other flags
complexipy src/ --max-complexity-allowed 10 --diff HEAD~1

--ratchet requires --diff. It exits with code 1 only when a new or modified function breaches --max-complexity-allowed; regressions that stay within the threshold are allowed.

Sample output:

Complexity diff  (vs HEAD~1)
────────────────────────────────────────────────────────────────────────
  REGRESSED   src/api.py::handle_request                        12 → 19  (+7)
  IMPROVED    src/utils.py::flatten_tree                        22 → 14  (-8)
  NEW         src/auth.py::validate_token                       17        (new)
────────────────────────────────────────────────────────────────────────
Net: 1 regressed, 1 improved, 1 new

The diff is appended after the normal analysis output and does not affect the exit code. Requires git to be available and the analysed paths to be inside a git repository.

Script Complexity

Use --check-script when you also want to score module-level control flow, not just functions:

# Report top-level script logic as <module>
complexipy scripts/bootstrap.py --check-script

The same capability is available in the Python API via check_script=True on both file_complexity() and code_complexity().

Inline Ignores

You can explicitly ignore a known complex function inline, similar to Ruff's C901 ignores:

def legacy_adapter(x, y):  # complexipy: ignore
    if x and y:
        return x + y
    return 0

Place # complexipy: ignore on the function definition line (or the line immediately above). An optional reason can be provided in parentheses or plain text, it's ignored by the parser.

Disabling Inline Ignores

Use --no-ignore to disregard all inline ignore comments and analyze every function:

# Treat every function equally, regardless of suppression
complexipy . --no-ignore

Functions previously suppressed by # complexipy: ignore or # noqa: complexipy will be analyzed normally and may fail the threshold.

Reporting Ignored Functions

Use --report-ignored to list every location where an ignore comment suppresses a function:

# List ignored functions
complexipy . --report-ignored

# Combine with --no-ignore to report while analyzing everything
complexipy . --report-ignored --no-ignore

When --output-format json is also active, ignored locations are exported to complexipy-ignored.json. The report prints even under --quiet.

Both flags are also available in the Python API via no_ignore=True on file_complexity() and code_complexity(). To programmatically collect ignored locations, use collect_all_ignored_locations() from the complexipy package.

API Reference

# Core functions
file_complexity(path: str, check_script: bool = False, no_ignore: bool = False) -> FileComplexity
code_complexity(source: str, check_script: bool = False, no_ignore: bool = False) -> CodeComplexity
collect_all_ignored_locations(paths: List[str], exclude: List[str] = [], invocation_path: str = "") -> Tuple[List[IgnoredLocation], List[str]]

# Return types
FileComplexity:
  ├─ path: str
  ├─ file_name: str
  ├─ complexity: int
  └─ functions: List[FunctionComplexity]

FunctionComplexity:
  ├─ name: str
  ├─ complexity: int
  ├─ line_start: int
  ├─ line_end: int
  ├─ line_complexities: List[LineComplexity]
  └─ refactor_plans: List[RefactorPlan]

RefactorPlan:
  ├─ kind: str
  ├─ title: str
  ├─ line_start: int
  ├─ line_end: int
  ├─ current_complexity: int
  ├─ estimated_reduction: int
  ├─ estimated_complexity_after: int
  └─ steps: List[str]

LineComplexity:
  ├─ line: int
  └─ complexity: int

IgnoredLocation:
  ├─ path: str
  ├─ line: int
  └─ comment: str

CodeComplexity:
  ├─ complexity: int
  └─ functions: List[FunctionComplexity]

Inspired by the Cognitive Complexity research by G. Ann Campbell
complexipy is an independent project and is not affiliated with or endorsed by SonarSource

DocumentationPyPIGitHub

Built with ❤️ by @rohaquinlop and contributors

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

complexipy-5.6.0.tar.gz (356.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

complexipy-5.6.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

complexipy-5.6.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686

complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

complexipy-5.6.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

complexipy-5.6.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ i686

complexipy-5.6.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

complexipy-5.6.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

complexipy-5.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

complexipy-5.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

complexipy-5.6.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

complexipy-5.6.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

complexipy-5.6.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

complexipy-5.6.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

complexipy-5.6.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

complexipy-5.6.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

complexipy-5.6.0-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

complexipy-5.6.0-cp314-cp314-win32.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86

complexipy-5.6.0-cp314-cp314-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

complexipy-5.6.0-cp314-cp314-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

complexipy-5.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

complexipy-5.6.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

complexipy-5.6.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

complexipy-5.6.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

complexipy-5.6.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

complexipy-5.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

complexipy-5.6.0-cp314-cp314-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

complexipy-5.6.0-cp314-cp314-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

complexipy-5.6.0-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

complexipy-5.6.0-cp313-cp313-win32.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86

complexipy-5.6.0-cp313-cp313-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

complexipy-5.6.0-cp313-cp313-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

complexipy-5.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

complexipy-5.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

complexipy-5.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

complexipy-5.6.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

complexipy-5.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

complexipy-5.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

complexipy-5.6.0-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

complexipy-5.6.0-cp313-cp313-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

complexipy-5.6.0-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

complexipy-5.6.0-cp312-cp312-win32.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86

complexipy-5.6.0-cp312-cp312-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

complexipy-5.6.0-cp312-cp312-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

complexipy-5.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

complexipy-5.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

complexipy-5.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

complexipy-5.6.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

complexipy-5.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

complexipy-5.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

complexipy-5.6.0-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

complexipy-5.6.0-cp312-cp312-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

complexipy-5.6.0-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

complexipy-5.6.0-cp311-cp311-win32.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86

complexipy-5.6.0-cp311-cp311-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

complexipy-5.6.0-cp311-cp311-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

complexipy-5.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

complexipy-5.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

complexipy-5.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

complexipy-5.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

complexipy-5.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

complexipy-5.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

complexipy-5.6.0-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

complexipy-5.6.0-cp311-cp311-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

complexipy-5.6.0-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

complexipy-5.6.0-cp310-cp310-win32.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86

complexipy-5.6.0-cp310-cp310-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

complexipy-5.6.0-cp310-cp310-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

complexipy-5.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

complexipy-5.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

complexipy-5.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

complexipy-5.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

complexipy-5.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

complexipy-5.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

complexipy-5.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

complexipy-5.6.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

complexipy-5.6.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

complexipy-5.6.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

complexipy-5.6.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

complexipy-5.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

complexipy-5.6.0-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

complexipy-5.6.0-cp310-cp310-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

complexipy-5.6.0-cp39-cp39-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86-64

complexipy-5.6.0-cp39-cp39-win32.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86

complexipy-5.6.0-cp39-cp39-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

complexipy-5.6.0-cp39-cp39-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

complexipy-5.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

complexipy-5.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

complexipy-5.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

complexipy-5.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

complexipy-5.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

complexipy-5.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

complexipy-5.6.0-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

complexipy-5.6.0-cp39-cp39-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

complexipy-5.6.0-cp38-cp38-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.8Windows x86-64

complexipy-5.6.0-cp38-cp38-win32.whl (2.0 MB view details)

Uploaded CPython 3.8Windows x86

complexipy-5.6.0-cp38-cp38-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

complexipy-5.6.0-cp38-cp38-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

complexipy-5.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

complexipy-5.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

complexipy-5.6.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

complexipy-5.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

complexipy-5.6.0-cp38-cp38-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

complexipy-5.6.0-cp38-cp38-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

Details for the file complexipy-5.6.0.tar.gz.

File metadata

  • Download URL: complexipy-5.6.0.tar.gz
  • Upload date:
  • Size: 356.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for complexipy-5.6.0.tar.gz
Algorithm Hash digest
SHA256 fecd743afc3fb84f1cc4dbfd5c02167517257e9cff9b8150a6100b3b5977fbc4
MD5 53e03d5eaee95ac1b79f1f52b4a52068
BLAKE2b-256 f35da3a8eb71ef639b9a56fcc5074b53b9684392147d585b5c40f0949e9c3bd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0.tar.gz:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebea2815ae3f0e5336e8ef294a15f29ced6ef952a92b03c1761853417edb982a
MD5 905fa225b3e4b3c7f551215c9814487d
BLAKE2b-256 958c045466c55e8ca34656567d1282c0ba39b8c0e8b22472007405ab872e9077

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a123ef78e5a84c284c69dbeddc35c238677d21c81f93bd6b5f49e369dce3451c
MD5 e7170ce48ea7e37b1702ab747d70c1d0
BLAKE2b-256 a529851c3c21c0bbeeff1f3d750c5c527eac766d0b033e117f592a9d794d4db8

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4fa0f1754811d73549792aa344ce5bb8aabc72a345ef9507b7b2929cf489dd41
MD5 8dc4a0adea20ddb387288fa2e3236a5d
BLAKE2b-256 2d42f8786188a0d8c99d2f20e9b01fbc95d69a9f66d5230916570d1747ed033e

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a3ac2ce9a12c00a35900e42fff641d95d24c2ca0143eb49a719fb638aed74e7
MD5 80b14b7301c23029b8e8bd3d87420576
BLAKE2b-256 f066e3b831248bdefd364c542b9d2475d0f7217bb9af0bb88543c9af35743bd4

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7517d7b9bc5c57a03d6d4729c5d03a7ca6475e4a924724527b7dcf3abff5a568
MD5 3ebe8356c29f529ca6f18cf387ba9dcc
BLAKE2b-256 804c23321f521d52d07f64ec381791588de63d70bd4305959ecde2b8e84a3ab4

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 02ee06647018889f11b2064fc5620d8786dcc9db0ba3c7f3701abc7471ca9c7a
MD5 1121fbe8be1e6819312d7655e92401e3
BLAKE2b-256 bf38bcc033990b2c8c85c5844e558bedfcd8592921edfbba30059d987f505ad0

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f73a1af1bde2fceb20ac51593061f7d519d087ed9e5a9cad3839838129798434
MD5 4165a6f9dac9b4c54da6e407736a8e0f
BLAKE2b-256 008cc78368d5e7848284f77f68fd1951535833bcb6f8bf14e81869c2305a1e49

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dcae197f6dc8df64db4fe16c60a28a9b79858373b2ac8593d3c9ece49b24c286
MD5 5be6678a93d80e176e275ce5e0dda92b
BLAKE2b-256 c3c0850f303201bb0aa8fc0848c0ec959ee47567f20e7ce5467d17f85c5cfe80

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a351ab67cc64d201e1b470b816eba62290c6b2b870979b6a5e38b382e18607e
MD5 cbe70518763c2b0732ecfeba727a8154
BLAKE2b-256 d8ee9fb537ea9ad8fe33d64951b778e9c931e10290d960f0765e0da76e76b62b

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8e18f67f4db1be1475a736defd4bd0af6d462a66ffa92d67ec48fc857a063e21
MD5 6eeb5f439646391ba9b3645a58cdab20
BLAKE2b-256 4a4155ee1cce35dcddd144f1770402c00e7eb419de27e4a341b4804e4972b906

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0dc21b56d59b9bd94c6cfc27bb676c7ce62b12542732608ac26c66a897537084
MD5 bd2fac76ad4a1191013a5de0d6508433
BLAKE2b-256 b49a3f0350b7d726e596af6e32cd9362a364ee31e534169a9a00c525851f1bb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 23ba79e876ac74d824e01b69c210328a403061f298b0858b5e291e8f77d2cddf
MD5 b7c732c55bb5b0ce604a059e9585ed6d
BLAKE2b-256 3b7997bd1af470c4a5da4f2159f7bec2351d4d5a88b382b7a0c91c5e37d707ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6bfaee77da20606b39001b60ba5ec98a0de6e36bf3eeb90b7ec498bc4bfc6819
MD5 7c801ffa4af411ff7f84e9b9c781fac2
BLAKE2b-256 3d11e6d8d14621c39f5b1376783243d2a4c366ce11aca5e162727c267f1eac46

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd53941f72a8b6ce5eb5b2c0c6870e5f6e9e492176edc1124e55dc57520630dc
MD5 d2b0c905ed2a6ac55ca7a3ce44dc3bfe
BLAKE2b-256 69776d63fcd6a0221fff2679095528d501a5e660df2af62f1d93d9209fe3b412

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e9fe96502c601a6b76cfbb8e1a9e4fba71dc7ada150f5e8cbd6700cd5794ed7
MD5 eb4410bca5f31253b806a9d096ba331f
BLAKE2b-256 e10b57be12e56bd140f573276c68a4b9cd0961cb05fec9035aa65df3f7cd75c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 201b80ac178bee53f05520a8ce15d98b37b12d113330c1af4e6b7ea061ceb236
MD5 63e71fed9fe436d62ed8cb0546435fad
BLAKE2b-256 a9faaf69fd8fbcb4a8db98611542b6d9dfe9ad36a7bfd9bfb5c8482f6a417ebc

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6a0f0fb5ad48dc06ff78430b73b176695ed3213195ddb1b809c2cebea6d3322
MD5 beabb19aaea030e566d9ae18c738a1cc
BLAKE2b-256 1c54e2f600f544a4b4809e1933febf52879f8ef7f5ea5d94bda1e86f875ebaa4

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 38ed9e702a37751f970e5dd20b7af7dda9de9155ff0b9b48479ed409e7444b5b
MD5 998ae8a01ea07e9bd4d001cc88c87747
BLAKE2b-256 aa466d2b698af7c5eed00e8bfcdf6836ff6b71bacf5466d4dbf8a07820229cc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3f15da87aedb6626ecc9874732c27926a1a66727a43a5b4b2363d627e9a7920a
MD5 33fa13145cce8a5bd2c2f519888db6ba
BLAKE2b-256 ebdaa054777e3c374a7822436c0368c7219d930d4fd90f1a15c7c0b175a4b64f

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c1fea6e81ac55b6d0d2416c18675186cb44bac0fcdbb333f1deca8f6422e52d
MD5 94b2f231fdf21a801d499718d9e370ae
BLAKE2b-256 0696f010b959969bf01c4083616b8e89d8483cf785656dc32ce4bb53e2ed61fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: complexipy-5.6.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for complexipy-5.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 69904918a302fe506b9bc6689d94f1ec66c91fcb41e158f023dffdb80d3acf2a
MD5 278299918626b1963c715b6912060e66
BLAKE2b-256 b44f7e8ede59ec1603a1ccd0cb68ce10c77c8abd99f696e03d64289772995ff4

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314-win_amd64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: complexipy-5.6.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for complexipy-5.6.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c76ad101bd6089cb1fce89cbeb365aed4b0f08d3f644f75122e61d5a4bdbdfd3
MD5 7eb41f9f3b320c020c4b806d7ce48c99
BLAKE2b-256 3721d67ab191651ded3de05e8c70758cf217ced1dba88e70b1cc285a3d75b9b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314-win32.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4d7a469d94feafb2c164a8dc80b3f8b573ad2eb06641c72b457101d87e4febab
MD5 ea3394cd3fe4481658c6e8027aa4f6b9
BLAKE2b-256 d81cd1f870fba14188b0e5474f64d0da002342555e8db7a58576297d10cf3b98

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a88e2ce2d1650b86db6057c601f68da1ce895ed0fa8fb3ba85d98f81274f3873
MD5 80ee251d958e95b60af0cf92cbf7f48b
BLAKE2b-256 665675db68055756117de6d813f6f4614141a34c3fcb1cd04288d9ef698253a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e53bb2f05cedc6226c009b55daaa1b5de0ba7862b16a1bd4a793755af7901aea
MD5 04091dc0e64d0d6c5b589736bafbf8e0
BLAKE2b-256 d914189e5ab220c029187abedbd3a098ae1e965ea0a70808e72d4ed839a05e8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a6565b0cf9e81891fedf18c28795dfe335e36d8c7455e3a9a5e550b46c29d08
MD5 4db46cb470c081ff812944efba4f207f
BLAKE2b-256 7f01cb4484a19d031ab2cddafa5c43c2f60925c3d8f0f1e8574ac26a97989cef

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d493a9a0445692f01beffc7446e6a6023229dd6402c66ddb5df7222b184e4956
MD5 75bdbd14b6b91b8fc6f1735b9f2d2de3
BLAKE2b-256 043f2f8479fa5152a76e968b60d519c9cd4846e014b81435d50ebf6c7f2fad4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bddbd30b96b8dfa47e3e955bca92fd5aeba89263a571e826e6e8e7f1f9ac859c
MD5 8be74d7c9d135c2e0f1e5d4a6ed3a45e
BLAKE2b-256 f209a0e69c8e04ba389e48007eb1e6de335bb87828e97d389c5be9622d6be98e

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60454a9a19a6f835b6f6d2c2907a13f601fba1fb4247d7f234792a1a7cf46e96
MD5 24157a3a0b5cb34edc47a36fcc9c2e48
BLAKE2b-256 add468a4407647690828bd5e47957c6f44059a79e03cde6c1b02b39abb29e9c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10e52f1fa896c113d55c4b775a06e9c4c9bd6819475b2fd5598953362431565b
MD5 94bac31a308c1a7686a805c53110ec12
BLAKE2b-256 6712a0f09b097c76a094bd7e49adf4a93b037ec7b2cec7517169a841a3f17744

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1f8f88f3cbadb97f17eda5b6dbc112e62b7b3d935d53e2d2409a8566ccbe1ca
MD5 a0890edf0947b221fba9acdd5ba01bb7
BLAKE2b-256 e870e60c29b025c3e9eaa76f0f075ba845722229363e4968c3c07311a5675429

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e48bd3dff5f01f9e88529178e648d3ad744868e802e328df618ccfb292f4ca00
MD5 8340a3f82fa771cbd525877fbaafdb7c
BLAKE2b-256 062c75c33035cf78fdc7f7ea348ee955b01e8b19e52701087c36bd61a3a54bc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: complexipy-5.6.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for complexipy-5.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3e32d1ada5f20a25647b843ecad4b79f4bd24bda1945cf2d96b763cf83dbd710
MD5 ecb97676e34ef932cdbeeb2042156c0d
BLAKE2b-256 878a9c62e09597743cf552c52d678913df658a8551c2b5639c051b3f77dd223f

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp313-cp313-win_amd64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: complexipy-5.6.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for complexipy-5.6.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4c6c4bec29db7aa5acd0ff7130cb5e56e5969626fbc7124962a7931a5c39d2d8
MD5 a982dda3de40fb44e700efdba0c97d0e
BLAKE2b-256 c319ff5a5cf510088fe32e8bd61eced25c81c2ccfce7972428300f87f3e92e49

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp313-cp313-win32.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b6fea2da6cf6fd902ef8e1b93c93421070c78741f7a130e8c8cce1fe6ce8c09
MD5 2fade3c5c1bdd66cc9a4e53e68f74b2e
BLAKE2b-256 863e0bbc8e0bc4cb5e876e79eb775ff6bf8e2dca78585f8242e3a3de77b07ab7

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bf49506fb7c63302d95ce9b15c535b60e404ca73f862a238b4ff24fe9e065307
MD5 7b6deffe7c1da91ea1a1377ce493e34f
BLAKE2b-256 62a5e3da2b49243debf3fe188ff4b328ba9e9807b7fdc855a58e5743a1e6f4c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cda723625b8cc771fd9fb4072291cab9d462ec0c4de1298702fdefdc5c173033
MD5 b097206912197cf4e24bfdb3d48b8d51
BLAKE2b-256 c5900d6413171e104d15f226f8f74e6cf1efde42c09a4076306f7a8fd0ff4975

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9ff9830f378cfa168a0b5cfc2199474a955f871f2cf27679bbcd56108f30419
MD5 f7d837f7f611a32e20d8711c26472fba
BLAKE2b-256 d32bfa3475f19332e3e2af9aaf66043c8994e3990a2866d39daedf5ea2312afa

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 635abcdde8599f8c5229a495b7a9d57ceb700092ebd654de899eec5a0f2eaa1a
MD5 424b7500ff1cfcdf59f796c05b8b0b61
BLAKE2b-256 313e1e09f2aed347e30e1b705307122aa0f01d74fdb3b1dbf2cfa1bf216269dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f2900b33baba985d50a3aafe19391bfa9dff998800871caeb75fce65825650da
MD5 7d777129483995ede7c50298955285b7
BLAKE2b-256 589781d7badd847e49f23b0a9de7234eb01e4f3dc3031e08c968edf01fb10f7b

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7eed7f4f7832489a1de5fe7eee779bb58821f57f566fdac22900f3613fdc321d
MD5 0cb27974c2c6ec0b9489f9e4a1035e8e
BLAKE2b-256 8743b69e6b3eb30aeb3cdfe633636e4375cfa4bb05c7d912a5bf7f79db73b0a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a8bb30dc31f893006d0f043868d2b3b5901dbac54a06aea755a8ba2747d3e26
MD5 278bc77476df4db28420c66c3677a3e2
BLAKE2b-256 a27bd9f23fb2ef311d2ec14a50330a92105f4a8dbe78a233a19f733faa644823

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d0e7c6a09d6c0cab17ba1dce289f23d4bbce3aa668e09a0095c71a550156460
MD5 86536122cfe2fd5a80953e3dac43e49f
BLAKE2b-256 f8c84952f5e06d14c0837d0ac2bc78ea82c52e234ec3043e5cad0b66b918a2da

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b6876f6f5cf0fbfb7fa675d04a777664109c9b823deb80d9d7e291ed66e9b60c
MD5 1d1e483fda4e1c32236eb344a5a0ab6e
BLAKE2b-256 4ee0027a2d4c59bf6301116d117f1cf1df0ca56c5c3dcfefed5c8e345f7f2207

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: complexipy-5.6.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for complexipy-5.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c647001ad6c72247e3ecffcfaf0c9f82651b71f86bf4092b0dc6c5bdb877825d
MD5 d24cbcbe57577324cef3de9f7296fb83
BLAKE2b-256 76d9c750027d61d4f6292dfcd9ac10fffe62012a0810fd6aba87bcaa2bc404d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp312-cp312-win_amd64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: complexipy-5.6.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for complexipy-5.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 67f60706796922c4a189ddbd8cdcb5ea92a0f25fd8ca0912e55e6eaf5da1bd95
MD5 5ede036e1ceb3377ee219f3a74ceaed9
BLAKE2b-256 b01f25100150343e169fe81cc45d89745e05c150513bfd029a4c0506b5a179a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp312-cp312-win32.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4cb2aa950ebcd7d4689e12562a752bcc1f2d4ef2ef8ffe3a66e5e13184742af0
MD5 3f4794f1af880aa15c1f78eb9a07277f
BLAKE2b-256 54d83d7928dc8a038f29053984551892bea15b84fc1ff92da947918d8c7cf724

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a4f54d9bdfc28299b18b1ee8466fe724b97dfa536217e5ebc55f18d0d445d936
MD5 f9c0c6bec73b09dedb06e86d2382d80e
BLAKE2b-256 6ce2f91b4967a6d70e9ba3452c59e700377a646fd45fc16080f3b9d23be087b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 818736eeb59b9f70d8f71fb78178290bc46be0d46bec75c0ac028e4058b91124
MD5 8d7d2cdb92b8aaa6c30a4af4f78f68a1
BLAKE2b-256 ac9a9edaa5d1859d525c159bfeaf7485b3c663b918be5ade8dd56f7f1cd9b12c

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 29a17b368524878536b2f4cd760f0478e2ff9436ac92905062b3e1a91b4bbe50
MD5 88387270538bc81a29309aa22c72ba1d
BLAKE2b-256 1fdf8deba02bf1c2f13f17df15627f785cb066244c912cb13490bb6075dd1d23

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 26b9776d6c74cd2a92bb1df793329cf207f7e34aeb1aa36519c688b5b865a9ad
MD5 c26a7e6ddd8eacffe8213cc2f3d4ee1e
BLAKE2b-256 8a9a139146baf30c0fbf2306d5b50a647169249511bcd22e58cebee6b953031f

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0537db5b33b364a3b11e05b46083df8b2a1ddffe128994d54fb725309a130ef2
MD5 f19f851f6cd2e5ff8072e64119e85834
BLAKE2b-256 6e1c3c9e70fe1610b465c499c3972821c5c15eea416c0251ef157eb1c96cea76

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9cfb01764caba11605b526bf31ddf44bd4fe9c1037d54ed35128d7fcc1004577
MD5 70981d3de1ce146e7f59c089572d4134
BLAKE2b-256 9c0fe84ef72e896d7dfbea42dac8ef784cf581dffb0a8bd9f98b68abdb20ff8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 07c03d479a7f16e76d0cdfdae75b550fe242af6c1341e098d95efa1321ccdf89
MD5 f5e5b98a663430fddf75404d4c463c6c
BLAKE2b-256 95363dbdeb69abd4aa6ffa3acf63084445faf6d3f7b5ebd736a953ebe5d57cd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcf1aa8b66431f7b306b0192cbe52d48f596fd5bbc3b15d016887201684566b8
MD5 faada9c7e7051ce9c65ca180824a803a
BLAKE2b-256 ffd9c2e5ba75121e01f44be8de2be84b97dccb8c06b895c2a4048514acd280f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d7fd2ff7340056957c232378d5711abe8b3d59c8d900e2446a2abcd295bf70d
MD5 43515598048b2d2117028b161cd56f92
BLAKE2b-256 4b6c5cdf27f58507eb7e77655ef470aca8cd24897a97869196dbedb3288da55d

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: complexipy-5.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for complexipy-5.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8404e6adf8e9b8d3555158148545130af0ff4940c843aec99677f7e06024406e
MD5 f6628c4294e1f1513edde9d0aaf7b559
BLAKE2b-256 8f4a99a6e231d60446936ef0cb49cc6830e406e52f473e405e82a9e6b228bd54

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp311-cp311-win_amd64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: complexipy-5.6.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for complexipy-5.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 771ca06e5e7ef20a9644943549903d8ee44fde4cfc006b22b0faae38a4f7294b
MD5 926eec10ad1fcc1e0873c9229c4330fb
BLAKE2b-256 99a79a01339936476e16dd97b2bdc1e2758e90a2284c25508df578515bc1141a

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp311-cp311-win32.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d1eb1c904dcb6973747116c6cdfe20977baf6637ed298b0a101bf7c60129eb34
MD5 0371d422433aae403991821616fd4446
BLAKE2b-256 bb31a63ce74161dfbfd1d563b0cd2c9d4d79f27c191906ba845e7328a027ed1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a5eefc6008030c68ae245e5e581b07063cc1bf4467d663474c0cb1779b8f747
MD5 8633413d1a78ca83d0eed59fb578dd74
BLAKE2b-256 493c1ce5499b40f08f92242ce2b6b212c7d8f2b81f5c4812a34532564ccd0150

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 264e4145078844cc58d0b8ef0dee33849df8d535c015fd080f618516535e65c2
MD5 16c63dfe1ad3d60ef87b4b76725d0064
BLAKE2b-256 fc8248f3a5053694724dc953db8f6fe061a2d568eb241cf0689ffad87dcdf0c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 afdb00dd8a01cdb2622d85f7fdc5e89a97c515db3337f644b0c96425cade0889
MD5 1add85a0ccfa627cb235d981b851418d
BLAKE2b-256 280b16c8b18e8a7b62419e8d63959a52153b09ebdf9289100a9a4fdedfc1ce49

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 374b450c69c7e2b452dba7f79e912396571d92cc1717ffa0b42e1b421428c439
MD5 9d48cc5444a1ea3ebd01be1d55e83652
BLAKE2b-256 19f73613a0ba9ee9850990437cabbb70f3fc39afd276f58cb82c7ccb35bca164

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d5f90c26d13aa574ff409939d3263e914232321f971a6589f58b9c993ac18e88
MD5 0b64f997aa14091c10f8ad690f9b8ccd
BLAKE2b-256 85d42235366abd8c9190495a3baf1b19f34b4f75b8ec60252d011df00f6fb042

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d01cc9c5c4d15575e4d3cb3dc1e4a0caa1372913de91fc999f36f37b5a2e7343
MD5 9523c8962c34dc3365435842a159d428
BLAKE2b-256 bd45ed86ddc24fab4a37c4afba069d9ee0ff132246a51a9d3818282676c3b967

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c734de82794cf72f968c6c11c39c9032f58a039d7eee98cc7f4f94ea562fd9ed
MD5 21b02c26a0d2f004baed5470a9dfc6e2
BLAKE2b-256 218bdc59c73691f496b748e18dae4988dc85df8455b8a81f4887dec95eeea5e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bc4a8dc085ecea38168041fd10db36a5ac53507193ef6c58fe0eeb92907df6b
MD5 d10e68b96051c66cf2a5d88051210cd0
BLAKE2b-256 1b56e4b3b01ab18a63ffe3784b42b0994a8a9550fb925f453d57237a2973e445

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9481e7c6cace9d6388826eb12be03b58bdf8731c86b9aaea1129427ace8cba0f
MD5 e26b38ba24f7e292093b9af6f93313a8
BLAKE2b-256 0662eaec921ad19b49f069299aac6c39dfd48643380593f3c57b69413f51d098

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: complexipy-5.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e5f51d74cf9b2286fbfe259a02ae67e9d401bea314302b0c64a6a5f7c0b1c3f4
MD5 b2ddd4b9cf93bf9f94c59b6b50d0cbd5
BLAKE2b-256 a03257383df7025d52a9df0bbb66dcb7c303648a8b7616e05741f04479414b9d

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp310-cp310-win_amd64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: complexipy-5.6.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8f0dc6204ed819184eb224bdd63d6a65ed8ebdd6582804ae4e42faf19e764843
MD5 3f90bf7d1ba1e49bd4f596675b1e1fbc
BLAKE2b-256 c3926fa7569c14f0d706204e8d96a255719be50ee7bad06661a50b2abf20da48

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp310-cp310-win32.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e765124217544f8a0d4652e02d793f1e0f20537bb99e87e7129d0852d6ec0c2
MD5 580e00e967a2db241732480e3b77cef9
BLAKE2b-256 861b968d3c18b29bd3bb63dfca269f7797d20cb058ccd3324693ec213b085992

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e1a500b6cac6f15dea6f3ff4cdd7664ca09c9630a4aa7496ee86f8baf80898e
MD5 98b1934655a8b09342448595f6c83397
BLAKE2b-256 fdc41caf40e5198423485cf3a37e1f9a1eaf1877193f75f968f50c8d13902737

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 315f22863f0d5527bdf82a61db02559b152545bb8f2835bdc427fd4165fd84c0
MD5 c44403469a62fbda7f7c6ccff61f200a
BLAKE2b-256 9d7a906ae26fa7d3df6bf822d78268a1fcb5ab7406c1e1a6c95ad37c75a8c662

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1d6e899f78e1e03c9200e03d79526b1aaeee249cde0b8ec6485ac344eabb75a3
MD5 266efe12ec4b984da321c19a67cd0c01
BLAKE2b-256 a34d21740f0c90b6efe870c7ef1dc41bff3f41a3c741782874766f11133f9ee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 af750ab11eb1d1efbce830d9b38b47208b443fdbcf88d4dc38723ab4bae1576c
MD5 f0d9bfdd63535567a91f08c732c46841
BLAKE2b-256 a8ea4cc1a056bfcbe9e155dfd6a281c59247242d4036557fd66ef10f7e05e161

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ffeed5a6c40999eedf4f47a33e16124ac72873325b4c52fc9fce90a95ceb2be5
MD5 76ebd3cff398593422521ff1e964ffd0
BLAKE2b-256 7b715cc200bd7ba5a97bca283944aed0ca22008878c1ecfdeaa91a185000f023

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 906c12c50aae917adff1d32b1fb62b73170c152ad6be5c5bb1c15f563adff563
MD5 79f1f7385d0f7ffc892cba4fc7c7aa76
BLAKE2b-256 adb5e973af0d4eb5e0b6e8f26d9b903ac6e849df963a50478c907c9b5d6601f9

See more details on using hashes here.

File details

Details for the file complexipy-5.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2ee6dd0ebd22c295c374292e2b5f06f0056ca6f070661441651810df3bb1ee0
MD5 5e004716cc475c081c942eb9acf83354
BLAKE2b-256 5564b546fc05130172f3c0d92319b864e9a7281a908f76e362cef39b19aa91d0

See more details on using hashes here.

File details

Details for the file complexipy-5.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3fd52a77aceaec95ff1f51fa1b2cfa5062fe96fbe2edad247f7d5caff5822e19
MD5 10f66bde8df8da5ec6c3c4687e70c4a7
BLAKE2b-256 e69dff5f5bc8e112ed1583304fd5af2919fb921078ef359bc5b97896347ecff5

See more details on using hashes here.

File details

Details for the file complexipy-5.6.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl
Algorithm Hash digest
SHA256 cc5011d2901065077d7e5a77883c4a1b95bf05cdadcecbef91c4c1c8464bded4
MD5 7a92964f23ea6a0714a4ecdc07f81309
BLAKE2b-256 bf41c229b4d42c649fe418e06236391cb8ed5d566010b0c76bba16283a1fe29a

See more details on using hashes here.

File details

Details for the file complexipy-5.6.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
Algorithm Hash digest
SHA256 f85a24fd23a3ffebc799e7fc58ddeea2ec3dfee959858da86166deb604ddc6eb
MD5 3feecd5402c570e1c2fbca30953e02d7
BLAKE2b-256 b1f9fb9868bca038b89dd05105e6bd68d62d86975eb747aecc72b7c4c4143912

See more details on using hashes here.

File details

Details for the file complexipy-5.6.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-manylinux2014_i686.manylinux_2_17_i686.whl
Algorithm Hash digest
SHA256 e68d831881e701b7f48670a975a26db06633d24ad4f8d66da8798b3c9c312ba2
MD5 3ab6f071c96de598acd7dfdd8b84a345
BLAKE2b-256 3c4606f8f4c70cfd471a2f3c69dcc200749f6345f770411d203190f7e3034c5c

See more details on using hashes here.

File details

Details for the file complexipy-5.6.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
Algorithm Hash digest
SHA256 5e4c50da512a4a7f116286e5bd6f373ef26abcde42eccc8a4d4823d88f5ad90d
MD5 2877cda8cab4a8e9120755ba63312608
BLAKE2b-256 3c8e364b1786f9fe2b1346a95117ba16803019beec3a07fdaa2314ceaeccac03

See more details on using hashes here.

File details

Details for the file complexipy-5.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 a0490b11046b016491b27e53328da4a5bf310e6cb3aafc7ab8c29ce19f6aba55
MD5 0703d110c45cc8643446ac356a2add32
BLAKE2b-256 a7edb7113bd2cfd85b4e61a74d235f03042092110b3a5e5d3b6d41cb550937e0

See more details on using hashes here.

File details

Details for the file complexipy-5.6.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5797446b0313b34b89527f78fe6893c4cefabb851dbbc78ad3501e4e7d6e3bb
MD5 0410d884842056f1a8c441c688b5a61e
BLAKE2b-256 e68ed62a5a2d1e00ba24b55a2287913f7082db4a5ef22def80ddb6cbd82ff65f

See more details on using hashes here.

File details

Details for the file complexipy-5.6.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 da267b1d1ac11294af2afa9e01f69f41f470c21b5d4510f4220138aee05b4a63
MD5 f5f7ee2bcb830f986e18f32466e44884
BLAKE2b-256 5eaaf617daa14d92e4cf2e602b559404d28e9f576699e9c564c6746d409e83e9

See more details on using hashes here.

File details

Details for the file complexipy-5.6.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: complexipy-5.6.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for complexipy-5.6.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2db974bc7b472f2bc37c8985bb9cc565a09e2daeb879ab1f98cdab187a42ccdd
MD5 2e6d347803c7af5c93c24a93fe1f4940
BLAKE2b-256 cb73fa2738a4eac3042665af9c00fe07a286de085486b68eff873dc36305b563

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp39-cp39-win_amd64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: complexipy-5.6.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for complexipy-5.6.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 fec340760fb807993b55e0ee4490715646389a784c582d567d25d5d7692adcce
MD5 07ddaf3ce39cb48f85077dc6db0bad6e
BLAKE2b-256 8062ae14859f2cc7452ef53ed309e45928dbcf37919c89dbafb1e16a32128876

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp39-cp39-win32.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed9a29511618c0dd99a00c86247b93d74fc642b94af335cf4826c71e7eef8c58
MD5 747ab3f290c6b2dc3cc72b23e7a9c74e
BLAKE2b-256 d27c0943da46f0449469b01083510de1904b4e3a0f95fb8894726b9af455e28a

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4f88abfa219a1e6412435e32add6ba816ea54c1ec0d488bd6b9ee021bb22fa9d
MD5 70599c582231c49660c00562b9b197d1
BLAKE2b-256 46deb80dd53dc7356fd7bec0640c1d739fd071ab922acf85156760bc71646e20

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp39-cp39-musllinux_1_2_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3bf254b3aabcac823981b48fd7d750a69411f2e80e4264adbce87aeb987d23f
MD5 e016b4177174e2d0697a492bc5fa54e4
BLAKE2b-256 347647a92bfd75d073a4f424c3af1dbc80b9d721195676e3f9d60653fb4c08f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f1b7c345861414c59db0eb2ed4f167b285bfbed719e5260574fafeae8b627ac
MD5 98cf12c9f41e9d2a51075b6a2db1fa53
BLAKE2b-256 5774a19ed967168b5dce282f5c96b22c5f49c53390071f3c627ebea67e85a281

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a66e2ebfc6d15d0b91b22c129e14b1e92fcc618ec49a266fba77b24f24139d16
MD5 b133b87c28e366de4b499181dc6f13c5
BLAKE2b-256 e841e97f7b5fff910f812ec5ac83c53ff8480847d3b3c627fe2527e3b8adbfb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6f4be1a22017a00fc7eed477d5da1ec8f4d472e7a5cafe7cb0c7b9e9379715a8
MD5 fc7782a784bb308c047799f4bce46dcf
BLAKE2b-256 6e536c4f1d1af7d73b2ffa7dba7bbd18e4052d6f6fb7b43aa4e094bfced51189

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3416ad95ffdc6373a923189854dc6cb32eb55b91a753751aee3fc363c35d2428
MD5 eebbf5422fa9f4b260e1770b0c36cabb
BLAKE2b-256 7a5bb4d5684d51b6024ad9d944e9848eecfd62ddcf79b700d2b0aca9cab9792b

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ada5194c51f4ca741525221d49be9f88e54f3c7d1cbfb9c20b48514abcaff18f
MD5 a81734a0e2b92179fa8371d8e51d1e27
BLAKE2b-256 665d7d91dac4db084e940567f998429a446db08080015f6e134d4ec9a00186fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9dd31986bc465f7645ca6ba2e9eee88327f9ccf5045e8055338e61980fa8038c
MD5 69e4ffdf0efad884b5f4acb03b048f95
BLAKE2b-256 b2d4cc044992c81e4411f3ec01197c44dcd53b61e6097dfe7b863671d3e5130f

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 21b00a0b84f0a4977d7ad3ce2a907dddb3bc7c9b042ea5becf82645ee2e58286
MD5 0b1515ea31cd17ddd460c14b4670e9f8
BLAKE2b-256 77fdcd9990d8fbf2a115c60e599dc4c87a2cebbec84b66bc1f3eb92c2b88f7e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: complexipy-5.6.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for complexipy-5.6.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 85ef0e54e4b86a4ff747cd8cf6a817ace5c06c849ab8ea44cdf1c10e637f6758
MD5 06d2076b4277c463656d593bfa28010a
BLAKE2b-256 a077960f8cbe83c6d8e608271dac67403052c315e3d27ab2ac57e1c8b1cf841c

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp38-cp38-win_amd64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: complexipy-5.6.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for complexipy-5.6.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 4932f03e50debf9d5c0fbf82fe927c1474a915b0ba431ac22032d0a4a2f2c166
MD5 2a69a6520f0624435026fb010113a775
BLAKE2b-256 bc8538d4e38a9ce597e61465b029eb3973ccc361cf413d7a4b642c151aec24bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp38-cp38-win32.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d0dccfa16698f5c20d697be9c8685f8487ccd82ee4327d9056fd76511414b1d
MD5 961e9621f0001029ebe285e9985d79b1
BLAKE2b-256 fd4399bb90ec3af7e1b8d44c68b7d53f8a5800ab102e8f919d40aa71bea80ace

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5e3136c47d7adb46c38821fcad861e19faaa128b355fee729bc9e2990490ce9f
MD5 016b91409e10bddc8e0ccba79ede22ec
BLAKE2b-256 d88ba6e71303214da541d007168e6f74078b91bdd0f7c1db46cd2b893ba71ebb

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp38-cp38-musllinux_1_2_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc531b2f01c2978f1a3e8b9a0fa535a84ef69503ac3ec2b2c7848c78be7c54cb
MD5 f91196e805fe8911d55a19f5d58400fd
BLAKE2b-256 7dacafd5fd69ac8ae7815530d138dedda8f3c0acd2d9a3f7e7390907b054b5be

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2f67accb9cbe0c927af1939dd135c8f74741cfaf01b7b7c587dfc53040dcf554
MD5 393ed1ac3960628aa93bc73c20796893
BLAKE2b-256 2cefec93c5c7b6643a80042e5dc55ca527077f7136a2fca417623a4ae4457234

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 13b6f8b62e0c31c3003d3e65c9dc0eb9f8879ae35fa40e0b616c509dde3cb202
MD5 95b776c197a70a0246f2a290d1b20b4c
BLAKE2b-256 52d2f38599f011bbe09587dc62c76ab6601dba1ed546d8cb2240361e661d418d

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c69abdf4deceeec8d80b25dbc42999ab3c7c495813cbf90db5d541542e662347
MD5 1eb8b0b3f8867d53dd248763a4dc2cf7
BLAKE2b-256 e062e85f33bd6446ba1373d5d78d7b77a14040993731717b4adfacb9479b3e69

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3bdabfc5a1c60efdcdabb63f3f2951cad9bc10135a47db1b07499378a8f2ad32
MD5 488ebfcd7ad6f6301f212662ca96fa6d
BLAKE2b-256 a644884320c9007e8f12d4321f4c5452ca2ec19b9b59de3d8546a9aaf7b8b06b

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file complexipy-5.6.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9c291fe6c9150d0100bef32f81a3d4b6dc8a0b1e10d2d56ff2156f0281bd683
MD5 e9a49c89570f58fc05214a194d940416
BLAKE2b-256 db4541d93652c590e86463e9fc6bfd8eb82acf2b36b834e70382362f930961dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.0-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: release.yml on rohaquinlop/complexipy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page