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.1.tar.gz (351.6 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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (2.7 MB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

complexipy-5.6.1-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.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

complexipy-5.6.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

complexipy-5.6.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

complexipy-5.6.1-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.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

complexipy-5.6.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

complexipy-5.6.1-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.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

complexipy-5.6.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

complexipy-5.6.1-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.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

complexipy-5.6.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

complexipy-5.6.1-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.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

complexipy-5.6.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

complexipy-5.6.1-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.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

complexipy-5.6.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

complexipy-5.6.1-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.1-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.1-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.1-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.1-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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

complexipy-5.6.1-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

complexipy-5.6.1-cp310-cp310-macosx_10_12_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

complexipy-5.6.1-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.1-cp39-cp39-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

complexipy-5.6.1-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.1-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.1-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.1-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.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

complexipy-5.6.1-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.1-cp38-cp38-musllinux_1_2_aarch64.whl (2.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

complexipy-5.6.1-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.1-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.1-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.1-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.1-cp38-cp38-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

complexipy-5.6.1-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.1.tar.gz.

File metadata

  • Download URL: complexipy-5.6.1.tar.gz
  • Upload date:
  • Size: 351.6 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.1.tar.gz
Algorithm Hash digest
SHA256 c87e931e648eddab5f4b9eb1fcbbc7cf6de5840f7d8d65b6ae49364b0d9b561d
MD5 89384b5956269f69724e9288a660ba1a
BLAKE2b-256 73eb05793bd709220b0d12508e8d7b7fc8b0d7c020ce443588af3724aa494a4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1.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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fcd1bd19747b1d37dea4eec4d860570ddad37fa9c5ef06a8dca7762fee7d0b60
MD5 6ad45a92e8c147edf9c8bda65098bcab
BLAKE2b-256 d6a903b7e91fa27448d533d264aa847c107e1026ee68d849ac28ee1b2484c20e

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea32ce675b7ada735e30f89bb34406c17041d71abd9ae8733c0baa83b59af5e6
MD5 17844662905d04a9e85d5a08ad18a594
BLAKE2b-256 e187da3cfceb416201c97fa66789fd1384f5f680e9762cf84c4caa2d8c8b3fc4

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 baca843c439b8137512f6bc9b397cbe4ba70e36f2c5c4bb49431751850045b68
MD5 8b9f1e015d5f69fcdecd3655adf39a47
BLAKE2b-256 520b692df241bac80b403ef26e473240a2f814afe4b44b76ea3360d67c387fb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7c58985608c698f2667105309453be3d0c554f601949fa0caf0d863eb03b4d1b
MD5 6c0fcc63b7875c58ba747f742863c632
BLAKE2b-256 2f75b6e75216054076dd3bb8ae1a27acf2aa79975a845a1a2e7bd95e5c060a29

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 085dee4d4e4790975d2c5e05a7c015a6578fcba8935f41eef1d8bfe19855c8af
MD5 dd588dfcf021654c30e9ec66f381a3da
BLAKE2b-256 36753c29dda6ae2b03935836af91d07585707390ce5924b7d6667e7d96b24d4b

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 43386858a56b6a87c4aa26860e4fcb891879638cecfb11f751cc02dad1c88dd4
MD5 eb880f3bf7b4d4f9268d8a29e4810d06
BLAKE2b-256 8ed0079cde1c91500cadd87ccda32c63cc654d2d7d60fd329bc61d536a0e3f69

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ae65452a19af650cdc6d13db26c735af9a64c69d82284db00397ce079574c75
MD5 d488b4355d33dbdacfd844a50535ce49
BLAKE2b-256 3757eb385d77a23459966f92ff0d485f5d4d58704ab381e8328261ada166ad56

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57ccb0ba8861119dda8b7d43c0f012a326f6111281f740cea4c85dabad82b621
MD5 598ee2bf4aed8ed7b889362ddbe9d61d
BLAKE2b-256 493c889d4153264b3d932c633e8b61836c2698637d2e5efeb0806ff8745bfc5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9a1ab58ad3dd28b8c0e015e3777d8d0cdae6f1e047e64186272be62ca03c135c
MD5 a1c7d83aac2a8c010759e731b067f464
BLAKE2b-256 6621a881f11fe11295d651da54355376a3630b6505522911a4fbd5202a5b393d

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dc81a83e0de9b5621f9d39bba5950bc4410d966e33f39e24938145d607252bca
MD5 10a4e35e0bd08de630539892595a9e75
BLAKE2b-256 7b7e9f4f47c12b3a6f15fc6e05434662d3b3a5b51eb174ffd8dcbeb9655da8cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48e7c40022d82050f0751813f38c5df62f176d7ae29d2768a08b08a4903714e6
MD5 ec7a4084426f9a67f33c1cef4ab419ea
BLAKE2b-256 51ca178de697abc9fbd7ced7f8f604cacfddafd599ea2df955d00786218fd77f

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d028a14436f41a774d15cfa2104834542802337beed7da94f6f58475be3edc72
MD5 43c516a52e107f0971a366d0a0ee31c1
BLAKE2b-256 5721de26b13ef3073601d2a9a75de1143c46867928a582bc1ce0b3af0fb030b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fcb3181e0c4887486465c37907366b54bb3ffaa7a4bf6ebcf814df75a8773c45
MD5 6c09fd4d7b7a05c14cc2c4ba03395b42
BLAKE2b-256 947b09cb4a7abd4c628cd80c6b72a8df15f344b541ecb76beb070b6decd0e729

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78033fb47f9cbb65a101dc4794df877da6b2b0012c4d0201f253313c197e9dd2
MD5 7ad0900f3488118bc820f09ffa7edf9b
BLAKE2b-256 5a71a21b829f0a72e4ba94c51ee70f4e688c8d9a19f5e8015a0acfc829329d1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85a16cb1eb1dc759742663082b5fce4bf4fb89f016c145064ac2c5ecc6bddd8b
MD5 652f9146945c388707b1d4d298afa309
BLAKE2b-256 7a1e34cb550d29b34aaaf25c30bf53f593a2f93af62710bf0e2749c71fe48ec9

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3111a61cab06e7165dd758d1d8214a7d13b361d026df4879f23275687c7fedec
MD5 e58bda3aff1ed746f77731dc7a96d079
BLAKE2b-256 40e831468ead513e62ffc11e7560fd1051a42becbe32f3652dc5b92d345cf10c

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d450c6903f4242dea4a3036b34ee5c1d16449025676bdaf99b21780426fe3a9b
MD5 15edf3eb355af46477a7fb2e9f925f13
BLAKE2b-256 eea4439836b43e60fcb428e954da20db3270fffc0fbf9c6fd838f42e27fe9bcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 82db8a861d2a347a7549bf37dbaadb845b93cc60eee259020a3cb31827b2ef28
MD5 2e6c3c533d51298cdb35c836c924d183
BLAKE2b-256 b9467e67b5d4be537500a5b5f7a212bb3c0e7cff5591d05e7eae41e78b3390ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a6bf7095add83cee9a1f0f36e95132f4384db8a1a2bd8a26fe680f5fcc018b7d
MD5 8ad213f5c517dbb271ad71a6b1821fe6
BLAKE2b-256 852ae09d3e046c9cd6cb94af2bce78cbc9ac1f0795f6292c4d7233d275c6c312

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bdd2da5704e43d285870b8fb4665e0441e7986fb52d2ce447fc2e81f1e8fef60
MD5 3ea9fc2b43d1778a99f963f60b103270
BLAKE2b-256 7931e0db7b5d72d099e4fcff7e47d8f52eafadeab1c8564463007d339c3c9a9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: complexipy-5.6.1-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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 fed55f0e58a3d232f4cda44405b3036fa744a2c6e5ff39bc756b050f8187cb02
MD5 a4b180cb8789c69a5b8aced675b739a5
BLAKE2b-256 9faae9a97bfde6164671fb072540bedde9a0d01dedfa60f53278701c87329526

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: complexipy-5.6.1-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.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 db8c378b2b79c63c3ab05a5824ddffdf5cf6d0df075cc5e7dc6dcb410f560f84
MD5 069f4fc59924c6d2ce7423798758ed57
BLAKE2b-256 59250ff066509d78ac4281f9dfd790c7a6c4220d0b7e93f51e194cfc4eed2a7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c443fbf310b86897ac22c6895d8bfb3e936cc96603667e20bfa79136b5e3bf31
MD5 42345a6e6a365ed99bdb8e4c0b042f90
BLAKE2b-256 84e6c70ef71dc4f7380a71757c86f226b8d149ad9638ef61e169c0a250df6b81

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bef7953fb9b823465ea883b1cc80c5e598977553ed3d28b091b06f9a4a6e437b
MD5 e9b80f547ffc055f4019a90c15dfba19
BLAKE2b-256 085d3a97e6d36ca4bcb1fc88ac7068d2d4c7878247e879d7229e1f39b33ee3ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a4f3559a74df2b7ed0738a1bdf2c64ffb1d020f11bacb96973ab7c1a53a3ff0
MD5 2fdfb7de08eab5a54dcb756df3d6260c
BLAKE2b-256 6c5746c8ae2a2265929be87c1fcf7576435303268a8ee1ac4040dfd059945a94

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d2a12d0beef432cec4c8cbf2321f92209aefa6837a7517538e9aef71bddaca2f
MD5 15e3efdaead4a3ceb5ac3f8f2841c79a
BLAKE2b-256 f987f0d3d165c9a34c4bbf9f560dcfbc492fa3bfaeb888b78c279fb791ab29a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 173ccadf3fe7dbe373a69d2c896848512f2aa3533f5282bb5514d20234a51cf8
MD5 c631ff5e6e24773ac42c091f526f53aa
BLAKE2b-256 1f2ab0213a8f5216034ff7f5244dd3563766c1c1b5fc9860c4eae0d49acd27ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae127e5854ab7c883818fc9bb6d9074e2949f5a52fa4e64182c4e917b19aacd6
MD5 db59eb4ab377df07b439d36a135d4b4a
BLAKE2b-256 44c9e16642e6858125b999bb7c177ef807a79f335967f9fca978c3e790013b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c728f128101f1b94cf1d23868a074d19e0c4996fd196d52fbd68f34df849156
MD5 06a609cd27a176bb9abcf3eab6ded3f3
BLAKE2b-256 ee1c30b110becf97c81ffc3c1c243d447b4b9c4d6ce129faf8ee5e065c8311ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89769c502c4a4df8b6b535d3ee234755f14337589b0559b28fc27b9029331ad8
MD5 55e31c398c5b3a02411955dca1e6ded4
BLAKE2b-256 49c29480ae4e3ab9ddb239fea7d0dfd500f11c1fe08001e672a0e541be029336

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5af3feb5d7d43736cad13265d0225f79aea22012d19f18e3cb09aa9bb480c924
MD5 d693f3474df5e2192f4ec75319de6385
BLAKE2b-256 0bb0dd1240297c7eda8e718e15343d16461a40f2d26a8b38a095406e443dc1e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 28b09a319b679a5d12c2886f3f02ad2f33a6bcabadd4bb5277dc74f2b72f78e8
MD5 2238941d4c8059c213c848170c0cd36e
BLAKE2b-256 abc561148f045f24a5da714142df14744598fe0aed9d1a655a32f3641ab00af6

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: complexipy-5.6.1-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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 600ed75e2e38b58b46d9c0237a726fb23bb0036011d1fa5493eec4aa3639a5dc
MD5 180b6ed16eea8619dcadc23e589005cf
BLAKE2b-256 f8e5b9cb8609b20832d15747054cac1080c8cefac3e3019d37862037d002a0e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp313-cp313-win32.whl.

File metadata

  • Download URL: complexipy-5.6.1-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.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b3ad3631cc911e6c58dbee2aac7ccff36dfe141810a87041b6cf834ad23f9198
MD5 ce8b02e7de5e3e394a933f8b98a40269
BLAKE2b-256 b2cb6b1e830753b20f03b0229dc99fefbd8af77199f7bd6e363b50513464eae0

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c34e7be0c1106f0bd6015ff9ed44530254892f5d5f3cd85ccb1f41132a7a1e3a
MD5 075180c1ee8d87631362e950f5107ccf
BLAKE2b-256 8d66930386a4ec43e02fadf0b30106c2a3501c1a6c2035ef20f0cf2777cf9090

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08eaaa0306584a79841c5933b375729912def8510d72ac6ebbf1338e3ce22bcd
MD5 65728e00e6ea1dc9be698419b1b0ba4d
BLAKE2b-256 fee3eccb2cc5a6396495aace775c5feec966e3a613be1e1af0e31365a126b128

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb0507914054a9b4b06cc7db3aa169198ba0a33f794598e1c92e43088989cdf3
MD5 657c02a3e6c63ce9b982c0a5783234fe
BLAKE2b-256 b67cedb909b45fdfea46d2c4b1d7bbaece3490571ea00b400d2e8977785f1f00

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7d80af8f812d80c0e02c95d827bbb5eef9525ba4d563b97d86668ab9c6422f9e
MD5 1165984c5ea3bb02491bff0e17cf79fd
BLAKE2b-256 8ea668f7dfe8f4fcdd9cc87b15e9a3302b6ea5be547e829365d7ff47d0547ac2

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f59b757c86629433dc1ca4e925193660f76a5b2c55ad64b8fdaa5327f53f45a4
MD5 980e5843394327c711610d24002a1f4d
BLAKE2b-256 5ec928d33afa53b960ece55c420cb86abbada33cce69e0bc9f43ca1c6d2db812

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bcb67f54db7760a7d30ce37c9b7994553a2ff47b0f70a7b32d1bf078edfd1e95
MD5 0476a0478ab77b7ea46d0b6fb769ca3a
BLAKE2b-256 60cd709103bdbeab8b84a9348f5fa84cbc4dbb9d76165934220ddd817bbde6a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 85369a9ee250eda48960fff0c6d5e3f5ecabc78e67623d1059d54eb45ddf7b81
MD5 86affc15fe8343702aee7a5e8b65a42d
BLAKE2b-256 50e5b354290199f00b741e8b155f2e3bfbd3849116663b877e32b76f11a0d360

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1c01cfed97ba72e4f1e0d6e264cd5b5aeef85e27bf5e33e8f2479be6094481c0
MD5 c79cec5c7716424f6d4e59f1334869cf
BLAKE2b-256 1681e40516ca63c966a2bbc1c98bfe66d978d8619874c1a98718eddcb41d811b

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f9d62c7ba7741bf6cface8909233a7b2327feca8b216e804ff8208f9a887a8e
MD5 ae4693cbf2b920332ec9e8c686ebee9a
BLAKE2b-256 b46ceeb78a9d1a51f2afbd6c608da2e60d7ca3d07082c206c23c5fb058ac2047

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ada152ea84939c73eeda354b25ea705f48b26dcd53723a67ffc57101efb60669
MD5 0e9a8168ed129df6f6762205663c2108
BLAKE2b-256 33e8b0db58966138a228678ed0786d0d39d110bd2f82d002ef8265f234b8a147

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: complexipy-5.6.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 137b728fad70d406cdb4648f9f0b0f76d0be36e58aafd2c95d33df0101a32476
MD5 e23264935c63bcb0f761f14109d985eb
BLAKE2b-256 2040268ee2fecdbae9d8f11981055b871f0dcf0f4fb7cc85088f26229adb8a79

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: complexipy-5.6.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a2d5fd3b70f2656522197ff9c6503ef0a30709b90ec35c533685856941312f60
MD5 79ebad2e858ccf9171342b9720510959
BLAKE2b-256 a89ac451aedb8b35070570fb201050e0084588e7565471816d420809a836678e

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4f17a5473453da257823b25fc4277a903ea3806906bc97caa56595cf86ccc749
MD5 478bdffd8efa5870dc5dfcebbb212aa1
BLAKE2b-256 af0d89d3df43f73867172269ceccfc0ed6b75ec584efdf4bbe62d66541634527

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e049f7dffb69f89544be5c91e97ae128f44844b75d8012f97a628ee2ad6b4ce6
MD5 81ab22c2082c0df5c29ed61d8e34ed5c
BLAKE2b-256 e2f0d175eca1e6fceb7ac6808b134b5e53a1acfbff0afd09ed24963147c5acaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 642343d24e0a12dce0fef4ec7eccc9c26703514e7318a8143c0b00e37a909d9f
MD5 425694593f54bc171651b1325b2a41f9
BLAKE2b-256 a89d1b3d1434e3f27cc2524fddff5ef546d3a8d2d84f5a93c2ff5e06f863ab40

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 61b6367fd94e40715a749ff3288d9b2e0e5418d71d26aa95a220ecf85e324561
MD5 69e7bbeb6cb4b147dc8f34df9cfe4e6a
BLAKE2b-256 6dcccf5219ab0e6a694c3e5f1dda29cea2ed18cb1c798e19e9b494f77a4649ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4b84713d51619bb7c9bdc67b17ab23688c83444a39c04f4a7c65fb8de17079bf
MD5 2659599acfc00e8ada4bd14e6a1d522c
BLAKE2b-256 d63a745d0783a05ddaac160d470b1cd19b0ea943fcb3baab1401d966b9367b15

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 051e59ddd7db5b3336d5eca905825f9edbf0b1e8360694b79a3cb2def0ac49f6
MD5 994dd13fed64a304972ae7f243021f77
BLAKE2b-256 934392410b8a9b78087375d1ab511cff7027b29a4b129c343c1ff8f7af394028

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e6e39eca5d48eb0cc4a5cf1327dde3ee5c940edc815c98113888be98bff04f6
MD5 de0c94aeb938147be020c370417c720f
BLAKE2b-256 b7ae94793b90decd3d946edb6f301b9b62bdb3f98909857bae8aa8169d922f9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35751bd6dc8e9ca5205a8f4863d090eb1c267ebd53c8bf0fbba1a4992612363d
MD5 65f8cc4882d0736b3429d3784cfac95b
BLAKE2b-256 33bfe3defcc178dcb8079f7d562e35a734f076b2a82d822ac86f875912433494

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7aa4ae292c8149ee28f9b3ae778000a405482ec78b21f487b486bfa5b92d5118
MD5 47f2e957dd35b2e5841cead7231688d8
BLAKE2b-256 9f4610397005f309a11369c34a6bce66c3bcffef0a02ceaf3026f167ff947487

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bab111bc6a99a05d0a6eef1117c6ca6c708098f81d16cc3b0feeb4981648fdd4
MD5 116bb00f8331a2206b7706415598fb01
BLAKE2b-256 d14b5926e05a8cb01d93b127cb13e56cd3b5def3a6ae26766129e19d0fa3c332

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: complexipy-5.6.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a1347bac0ca9a01c3b4783b1f13e4d2f31616253e5ed6c370cf939469a86ca57
MD5 1c39ec9a91204043647109ec86fa1e94
BLAKE2b-256 d2d54850a48a9bf9322e0c3463fbb8f8496ce6d1a83df500f4c7a1da4e1a12c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: complexipy-5.6.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f79bc4492075d77d126028fe3a458fe6878af0aa57bae098b8fdcf7e96c676ac
MD5 0c091d85f83d4ed022231ba8ea223c80
BLAKE2b-256 5d46d461b13dd6aee053bca6d9088b4305a79fbb9376c200fdeb459eac15698c

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64660cde4c8c290e3845981461ef365b800cec8721010ffe454d39fb8942fcd8
MD5 be32c1594d82083e35abf9ecf761768d
BLAKE2b-256 16dc4939c672b0e8fdeb6a522fb309cb5644adefab73101dd0875ac5a89efaec

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aa82a1f4da18a28a4890164ec3f9ec0b102ed151bb19ffb4604434959473ef5e
MD5 b8b7bdf0da3d49ee670108b88c3ee3b7
BLAKE2b-256 9112db078eef5f2bac8cec9e9e33552e4a2e52894610d0089b57c30413a5a7f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0379abd32964f526a251efb4b3755b0baaf4db595c3979d25bed3d78cc836c91
MD5 65b469e700c0a67762f81106224f5b75
BLAKE2b-256 43d7b269ad212a6a2cfd878b95636e9d516eacde780000ef5469fff5d69a2d26

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5c847a07dd31455514768c28f9c37ab6642a84084ee0a28d047f38260ca9d96c
MD5 4fb42f8a21b56d5f57ea7b8cb223dbdc
BLAKE2b-256 c11c91207d19e2271e40a23596df016c2b5bf526fbb12372e97d928717d56243

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 baf9340b8e6a568c1e51c94eeceb4ad5e1dd4e74fd10919d07bfba7c0e5ee6cc
MD5 31cabb41692a4a0cc5b96edf9eb4dab9
BLAKE2b-256 dd560f2dfa10aaa4815dd3c6516dcd916921582dda06b4eb9125bcc20c5ded84

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a8f9fad259e6fb4dfbcd3bdda247e7f5a378e982831d3fc0140cc0a807208a3e
MD5 67720e805aed243a578c66dee9e6f6bd
BLAKE2b-256 686ec0dee2b2473ac2e7aaa382d15f9417a301e0213b9563801d74ee489f3010

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3b526f58a82afb1325d693f4e9067a5378ef384cba0d5a8988fd583688550c0a
MD5 c8a3b7505b427a5e13e30e92c0b6c6ed
BLAKE2b-256 4f0b66103e6b227fec440497cb4912ed1f4473ff5c475bfd7af07aa5c938e6b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 638b5949b8aad1679f99b8fb7e3ecabba0379b7379d7c5d63cea11de4dc2b6aa
MD5 f4054c830d832e52596f8c2d5f4d2544
BLAKE2b-256 a552daa8025317f8037bea1821f5ee9b391804b884cc319971635961b46ee488

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd0bcadd6added84e97a73e99f844f2f451ef005f09a58808672a0cc38178770
MD5 7142970ae1395d32ab14117fe09e349a
BLAKE2b-256 e3bd4de0168945ef33154b4c953caac35464208abba86bb5824447e42ff5afac

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 337b1b7133e3826e47dd8ea90ad56dfc74901f369e0df9b03dd1593cd15c0111
MD5 f0f60ba38f968085800fee7c2272698e
BLAKE2b-256 84fb4089bb50575e1513dcc835b26282f2554f8dfde50f7a5f0d04e8d89f9957

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: complexipy-5.6.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f9b73626c3ae1e26843279cb63ff7c98532d60978f22190c4d6a61d2a3241ecc
MD5 244920e89a703d7647a8882532b746a9
BLAKE2b-256 d4604e948cc940a5eb0486cf45b6365da57edf00bd4c9d188b5f75ec00987a51

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: complexipy-5.6.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b28e6c33913465d29eb931811d633faad7aec767355ccc72989b7fef3cfdcd57
MD5 4d28da581b98bf8306b5adc2935b4613
BLAKE2b-256 97574e4122247b360b2b0b8b23e99e9c40a26c80be80f77fba1f62eb5e84dd96

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7056bdc9432e38f4827b7d61374a5c77a6d1379fdb02e8bc6d03c6489b9eaa0
MD5 33e541a79bb2daed35984732d46f0984
BLAKE2b-256 42a51064546b10b9dbb3900c3d2f9af5af9bc6f09fc7eecdac4bc86960974abe

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cc88d1e2508af829410f0e78b47a734455a490072970f8fd28e0e4556b52bdc0
MD5 a0180fbfdfa57ebca36238a1ae386c3f
BLAKE2b-256 a5063c9ba9c67b36b0814f9efaab3ee077099d21726eb008324bd7c661576b05

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08e2b21d7700e7cd11e00cd481f500413a50078b1f8f2cffbfcadc4c0b278e8a
MD5 b2ca66c7a6a63a18826b94f14a374acf
BLAKE2b-256 532ed1b408f3408d997eea340777eadf6b84e0fcf6096909aed35e296a3dfb38

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b7f4960910b4032a398bd335d2fbaa2cdebfdc1978783c071c1de78b9eefece8
MD5 b02c9fe9e7cb7e4c0d9097e09d813c1a
BLAKE2b-256 a7017d5ea4a44bf2f3a92ba9ede3d23011dd5f7e3e05260c01732d630d8ca169

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 773f06952309baa4389d8804b8082664b04f919b73a4ac32c25ef15602185acc
MD5 2a15da9005f0487b99e50a14e723d3de
BLAKE2b-256 c84569cfd5c4243ce20875e0d1bb767bef000199abd54f9db433b2cffe798dbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c4266139d1a69b61dd2bee0aee6d81f4a1b46bba02ac0d1d4bfaae58ec70f7a6
MD5 08765b7d14e6edf3c6deba68a0685a49
BLAKE2b-256 d738019ae5cd37c1d684c7007140481b86e4179bc166b0c4731f2ee91afadfd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ac912e18c619101d4fc9f10d3145a63fed291f79e074524cb6821b82da46788b
MD5 96b54069795e0be437d1697adcdc0a7f
BLAKE2b-256 38b104c7e454a8ccf6c28b6bd8ae5c47143a99ef87edddd3fcb8750591d79601

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-cp310-cp310-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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bec4a76017fac9cda9701722eb5f8046e64afe356d9f1083e89fdf39cb97a9cb
MD5 df42a6768979c7f6cf4f8d16d1ee6658
BLAKE2b-256 c3d52dad37765b85b74355737128b55d738257c73e5f2121260d6723b154af71

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-cp310-cp310-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.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ca59a36e56fac0df6047f0150ecc7b41ecce468dbc9ceef177a93a245b85044
MD5 bcbcf8f676208e6c8eb560375108676a
BLAKE2b-256 2b7b5445d1e1ccd573738f08f612968f8ba55f267f009535f9b778d335c1f7be

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-cp310-cp310-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.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c07cb6167517b0329a5d52363cf7cb20ae8424ac9ca7f703813a7fbf126d31dc
MD5 4e1509b6cbc34db5fd2406b19a51e90b
BLAKE2b-256 20e2b973f639105732ebebee93c14ad412072e70501896071d6e2e462e729f62

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-cp310-cp310-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.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: complexipy-5.6.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b5b0b59b48186e77c1e8dcf789d595fbd0f403cbdfeecd33fa514afcfe3fc2ab
MD5 4465a423cd0090b43babddce4da521e5
BLAKE2b-256 64ab435e7932bbbededb17e9ecafb8bed23fb8a6a186de46989fa86b671c482c

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: complexipy-5.6.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d336b2229477766bc66e168ad9aebe55f1183c0470cfb9a2f13934a2dd4d06f4
MD5 fd7de172e3514db11336d3ec63c18911
BLAKE2b-256 a468b5134b2f455c3ce847abecfaa962d80725640eacfc06b2a960baf602db7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f56c78d55907975b4c1286fd1aa10b8f932bfaeca1ee717e1aa29866299bacb1
MD5 da5f59b251cbf9611c7c223a918e989d
BLAKE2b-256 a242fc2a6dcfebcafa9aa075c1a3c290041ccd109ef92c09ad2623ff6200c2f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 73b484fc39d27c32f2b29fa5fbd6d9414475d72fa7abb6e4da0355e8fbcb2734
MD5 073b6b352db71395d31e26cd3c30925b
BLAKE2b-256 976a9f1e80fac01aa0ae6365e7ba7ee50a239cd39ac587d1970e92013b42e7b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e998dd750e8f1c77df0aa0a05e8e3d512eacb6751474ca29ceb99e1be39d5f6e
MD5 d98887453c8eb8777046e3e8d1b3b8e6
BLAKE2b-256 4fe82ccf3f59786c7f0729c04112036e0fc4069bcae79acda92597241698bc3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf7a28e2c5bf96f4aae667dfe176c6bfb4b30b53361fe1f7a5a033385f3e769c
MD5 0939410df1e1bf54d3b45fc0fff524da
BLAKE2b-256 1478dfc784d5832c03bba2019c33069c0ad54fc8dbf3d3757825c286a3d66599

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f0bb5820570096ecd94fa91904a15dadd9933b16ec0a260eeab872a88cb6530
MD5 8a4c00d8630a6bc55858e86d43910354
BLAKE2b-256 cc003c3dc53a331f7b62e7757000e44f19d0f1926b998cada892e3391ebbfe00

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 17ce3e1fe8b1c8b8311b4fe542608f3fe6da390751199213681972e9a9c9f456
MD5 4dc9721e4f8d3b4f654162bbf7dc7cae
BLAKE2b-256 f89d647cee8d6b404bf84a15a80bd395f5b4930f63021a0fb69f2bd975325ec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2abf8ac6b174623d60cb6fcff05eefe9394c17406fade6fb66bb424e768ab327
MD5 a5240f53ae16782937b56bcc99f13e2e
BLAKE2b-256 f906acc16a607bd9a67bf20b787aafda92c4f291d42d8ab68a5dd65fee0a8655

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60d22c97bcb44c79c9444a21c2d6df3c5af0e0a4f419623faf282a0034c425c8
MD5 edc168707534c772e0928ef709ff84fd
BLAKE2b-256 b8a51311d57bd7d42fc1f7d8b9b9149a9a8a07d047bb04457a73fe09d1c80784

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10cc5b6df090b8d6d200cf90ef8ea4a7476a9bd93b47981b555d2c0cac13d771
MD5 419001a1dbd8a736fa71fda0718cd546
BLAKE2b-256 ee5d5b47d1f0e1b9565c738cee52a14e5ddb2b81fd98853d8fc662b5f0b00783

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 29f4a931cb45f383b63e950330acd5df1f69621025a53b34b7fb78e4c24444d5
MD5 ed9d6b6d3c823a176a4fe8162ce1e863
BLAKE2b-256 0fb3ae6eb01ccdd02cbc74d83f648170ce330d9137c13c713424238406d962b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: complexipy-5.6.1-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.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 a8f461b7ce6f3bce1c68bf44b1b0538d7368bd6086b49595cc7cac85b8a5429c
MD5 8bc0b55997c538d79538f91764cbb335
BLAKE2b-256 2c5ef6dfe8f9844c1a8b30c0845e664945c0cc02ea9bc47626b8afbe90c06408

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: complexipy-5.6.1-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.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 e7cd97574bdf021a8e742e3704c47005eb7076b6ba1f6c108609a8cf4d4e6687
MD5 0cdebb5de0137905f090d17596311ee3
BLAKE2b-256 408d5ecc6793ccb9bcd1169017c7cce8c47a07aaf7738ac332f1384d2c6ec67d

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e252ac3b8051a4f1a403220170ea7e50caec6d7c73e04fd28ec341956dc0b9c5
MD5 4daf1a0989a605fe0db0874dcd936f36
BLAKE2b-256 9e5c6fc7c33f99b2a94b892d682029caa5da995226e26c6dbdc8f14095edf707

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4e418450f8e4cd969b62c343c222e41a9ca7c82664cbaf52e9bdb1109430e27b
MD5 4fe6a81a2880cadf04d013b3a338ac13
BLAKE2b-256 c511510ed9cdd1a99b19224144df80b3825b9c9c89fe673fdba7839085eca90d

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b5ca646e4f3ccd95e01621be9498817d649c669ddfff0b3a77001536ccbd5ef
MD5 a063dc5b225eba6bb50d83563e6504a0
BLAKE2b-256 35172338f854156542876b44988ab16ff65efe74a5eb890769130c3fa9165194

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36d2e49ca0240be10c1e3966f7a1de08cad690999252179b2455f54ccc0fb644
MD5 4e84a73cfd912e8b64e82e7681d00059
BLAKE2b-256 9bbe6c56994c39a5f409a8bfd4a7369ac0e33c16b9dc6e9a447904af7ff0d7a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47636bcd236f825e815bc4b4d37993c744f1e969ab5153bceff222e1b50d52b9
MD5 46cc76e1bf9ac00202d6a2bcb34dac5c
BLAKE2b-256 6c02856b9691fd07fa3cad864e63dd5209edcfed03484c85609487679d9ee2e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5ff1493a13297eb82eb97aaff051735f5ddce7393e37b04a0667f9a5dacb7dc
MD5 6c9adf5c4d881fcaf8df8d792de5581f
BLAKE2b-256 9fc908e8049730e6f2ce5a0068ac143c9d7c1c2afdb280ef8ac8e065e1b25035

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a302132f0ed5857354a1443487eb6c982f944853e78d4843ed9edf422dfc32d3
MD5 c65d67985ea32da59d3696fde2eaaf30
BLAKE2b-256 53a7e7d88cc55887fa9dcd5523d8054adbb1160ec5997021823af0f9257b9422

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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.1-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for complexipy-5.6.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 13fd45bfe1c7e0532f392c411da89f8b940b9700037dfc5e6d144f19a9b0219b
MD5 f0c6fc6581d695f4153e2b121984ac4d
BLAKE2b-256 445e8a8dc0f001291093f6010f951c742f0fc50d080acdf2c0c534bbf3359a91

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-5.6.1-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