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-6.0.1.tar.gz (352.3 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

complexipy-6.0.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-6.0.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ i686

complexipy-6.0.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-6.0.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl (2.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

complexipy-6.0.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-6.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

complexipy-6.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

complexipy-6.0.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-6.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

complexipy-6.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

complexipy-6.0.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-6.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

complexipy-6.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

complexipy-6.0.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-6.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

complexipy-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

complexipy-6.0.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-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

complexipy-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

complexipy-6.0.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-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

complexipy-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

complexipy-6.0.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-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ i686

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

complexipy-6.0.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-6.0.1.tar.gz.

File metadata

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

File hashes

Hashes for complexipy-6.0.1.tar.gz
Algorithm Hash digest
SHA256 ab0ab0c38962a3f58062a16badfb30b88c4a68029040fc5333e1d644b41dc744
MD5 0c644ef5c9ca7963843c8981621fa84e
BLAKE2b-256 b35b8ad2d572e42e222d8127b37cad8595d6b7bb1d1d8e0a5bd3cb378f0f1d2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 523245310a7527ce2a01b03f1deb8fa058cb46dae5d94285df4ad6369d4d5695
MD5 2dc4bcddb3c483697b69495e104e0559
BLAKE2b-256 b2c673f3bd64c8968bcf672f0a2feada1f495a041cfcd61a5f777ff681560e3e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d972b20df55e777a704d8ec2715b3a455b1912a3b81e993ee1d22e498e5b83f2
MD5 c76d198539cf4a37a30726034ebfd0a3
BLAKE2b-256 8a908ba43f44d19ba77021718e1d0ae068899de7d8262d6c3f5dd907c35a2341

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81b0303c21800eb5d6bebcc13c10db30ac1b63387df727c9a51bf2f9ef0715ef
MD5 e64642f5d2d44952639109da2e23ebe6
BLAKE2b-256 705e2b19ee2ee2a0d0ef863ea8f221d0c79a2ffb971c110e0ab5fe7a19502847

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc5619f415511beaed28ee1c8066b48eb599a9a7e1b64e308ded88f9bfecc928
MD5 2f339c01d419bfa5157716680b5952e1
BLAKE2b-256 172263a8facec56d648ec0ae7c50409e376192dd58a9e818286ea73c2a82b3b3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9583ec5923fe955e82db81f64c2cbd7a01e68b3ea0b09f198d31dd53cf78ded4
MD5 8e8ded58de9eafd97ad74bb69a262c4d
BLAKE2b-256 92f19bf5d43760ab3d3cdbb58feeb2947c7d276a867cc295001aa2c8b76d9e8b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73356775f48e29ce69d7a4f60000e12c2287afd5d99563f070f9a53f0557318d
MD5 cc577fc0cb9bddb25bb02a4cf0af0a7b
BLAKE2b-256 7f826753d99a3e84198cc6f3f6147e81a53fdf22b35d37e22f5f9c42b6e6f91b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55029935fa6df27f612f1711a06fae54cb199b9c3446ef570dd96db1271892a5
MD5 f70ec1aa681a2c7147a8cff13e171f14
BLAKE2b-256 e9a69583d15fb284c57ac80c73ee93fa6ddc6aee190ec0534b34ba417da723f2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13b8982ea24ad7dc67d19b98c69830ca64da835453a587444b94fd47c5bb1adf
MD5 798eacdc217eee408862cc2ee5596bab
BLAKE2b-256 6d6184294c68e5ccaf518ee754912193635fba03b95842029ce3f57dff739936

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 393aa190df961a17cf7ef582b652a07c4b8402cc00a40f06098bf119eaa764b0
MD5 a00051649d3cf3b5fef35bab64228c7b
BLAKE2b-256 dab1695c48cbb030235e1bf7b93e98ae37535da533a7de49fd81a5230673e3bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb94e4d203eb2a3a5c5b9588d911450b76d817e04bf81900d225a72a53a17b48
MD5 220d4c83d1dbb6625a7f88a90f94d32d
BLAKE2b-256 ae144ff4defe8517d33db6eecdb55d418678dac0f3b03e805ce3a2565e2323a5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78ca8529285881e2deddd72e245e4ff1daa3a9e72eec0371112e4146364dfbd8
MD5 378b9252b5c52ce05ba56f41aa497785
BLAKE2b-256 5f65629a909a351d4690a52e435630d527f143b319b181eb2cce20c47fa6e0e2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6e49e032cc28d194f44cff1e9eb6660385007eebdfde9e5b748a7a6c70878dbb
MD5 d6e507e8c1c59908d0e2dbbbc2a1066d
BLAKE2b-256 bbd0746d70761b0d8b06ecd0ef8e1343a173c15c09135142ffe26f528063dfee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3c57db8b2b4150cf5ee6738d2048f4cee0d674f18ff1d124f063cdba6ae4ac67
MD5 c39ccf6994b61f659900def4b4aabd22
BLAKE2b-256 df274d1ad63f222d218f8513cd5bf88baf2388a4cdc00488d0b4f22e461fe57e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9232716d9314f12165b32b5ef533af0526b2ee64fd768dd7c816e3bc020a385
MD5 6e2b684ad6129324f1d6f7e1b2ec7f58
BLAKE2b-256 c8a01aad33f322c7f25f0bfa168c19ee0df9e95423c01827c7f4f9b89666c9bf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a15c2167caa2d187c060869dc20b9cacb2bcfccd557cced4326b4696ad2941a
MD5 aa5c60a256a91335c3e65b4ec9cd5360
BLAKE2b-256 06f358e50e2b4031be7b0ca09a44d013d7b367888a4d5e74fc16daa3b09b49fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 87a19d4baac23883198867e48f3f84af8bb5d87b3e0a6d67e34e328576a7aafe
MD5 4ce0229aa46ca7123f94294a5998372b
BLAKE2b-256 563c44d0191e59f6f65477b5c7f8940cecc498574b2f34067fbc83be08452df5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be35712c7d5ebdcc91fcfc8c986540f40c22c7fe08d8233df5406e91a08b5918
MD5 1b0194016f628b7918ce436c2de8ca3b
BLAKE2b-256 53d6ea382f6f43f79a25264813de5ba90f20edd654063403123fe5b8013afd1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1a69df4a46b79dce380979e07d4c6e87d0aaf7943669c20672635d45c612e7bf
MD5 79d2e462687d21b605ad92146347bfe3
BLAKE2b-256 962acd42a9a4d7b6c488fa1bf1f0f030da87931fb770a3ea0aef13d5cd614839

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92697f7536418244c4d0286c0cf4aa76c86b37835aea438a530956e5fc53c7ec
MD5 2d81669d45ee290e2a542e4d8131b28c
BLAKE2b-256 eb705021c3f8dd6645e00ff8b6f9da549ab3f1d75dd036b1517acb790cf2b261

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 635bc9fe5aa26ab07599872ce529da7770af1870417712f8954e0ca7e08a2de5
MD5 8eed208b24375a5d593d0eb4b33329a8
BLAKE2b-256 c8f7a00bad292745623d1b16fcdc3f5b933fda31b1f69ff8c2bdc5c3922cf996

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.0.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-6.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d5e31cc445a9fc787a47b438f495069a303072b03608e649900b4c0865f4f6c4
MD5 431bb0e5ab5a5f21aa3eed26b0b4920e
BLAKE2b-256 fae9d474bcc4de54bc972088069c66a20be78ea0bd080d2b0b971897dfd77a3b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.0.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-6.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f50d2b62383715f88e6e9a28705ce341e6c8b4d80ec699a823c6b079a8c7ca03
MD5 4b42d8b33df0543862b337d841017da6
BLAKE2b-256 0634e5bcd00f0581430f7ff10a5a0b21e7bee5ee385a2bc6c19fdbf1404075a7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4cee67c6fb1e98bbc30ba44dceff10f64822449d7ee46d71aaa4239f381e6825
MD5 a042f9b60746c69239f8e7beaf4f477c
BLAKE2b-256 450b2f23cf237eb8b948494e1cf323c3d8b25ff570aede04d0ddbb4465dda604

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fac0f09da5c831ead52c060c49b0cfdfa9f59b9f7d76648f00d8aa320cd598da
MD5 977e5c23ef181526b9ca230b43380b2d
BLAKE2b-256 5b39fb86363098388a4c93bedbe4fa1e1ccb250e8f3d3ca3dd5aae0b1e147ed4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f7fa5e803bcece8e95f98570e03a11455c889ab780c6b43108aee0c48340191
MD5 d8a248425f19b934a8fad58199a640c1
BLAKE2b-256 d56b635c0291acb531cb15ce138d976c8ecc021c9d8c84286da4efa66e4f68d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3d4903b4cf14bce2e5b51e417c1875cd64b72d03c1886dd959da00ce69772fee
MD5 2ddced47bbb93b011412631469e73cde
BLAKE2b-256 92b950d536bf67323e0abe2ae5ac929750402ea48dc0275ef826e604230a4356

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf4602eb9896cd21145fd6dbe40c101dfd45b9d55a316e93dca256b2939738cc
MD5 b31bcf984b96ef8ef32c351e7fbf176c
BLAKE2b-256 8d57c363a9a6b3efd98b775fb9bf138dfdc5cc035edc15f501f2865f189aa0cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cf32d9bde0fe90b7c0c36c56fcb8adf7810d4b0eda0ee1d37019ff31ced33c3a
MD5 ac308c75ba209d9779dba2daddae8b28
BLAKE2b-256 c4d7cf08b7155f38fda311aef87b67ed6f47bb74f56f878bf1af7635e074f6db

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cbad719a6a74db3cb952abed96c5ea172ffb78416a143271e2736c3660b3e354
MD5 1d511bf8682a5d2d7f758f0a13ecff08
BLAKE2b-256 7fd6da63d7b1557546c14294a47ee7617838b5d35508738c5cf65b37b38e0df1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83c790634d70faaaa90f01124e305ed0db6f30668e260fb578d7db3c35a106e0
MD5 f88aa9a81b3c500c569c04d222661954
BLAKE2b-256 4334ad2b796d21b05f0b9ae2507c9c4cf57a3abbe4c4806c856f5f12e1bda274

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd7656fe1c3e6bd5ea2ad3e042e2de4e26c2fb60e6f8ec1871ed75d9d1adef7d
MD5 f54aeb407f87d10b0eb9ed0af5101930
BLAKE2b-256 b42e84ebf2c02f65d9e518a364f58779c46e118ca8b2ad8a39f342cee932811b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9cdd4b30b7f2151a16f5827dae20ac4be8544c13ced4a9fdb4daf37bd38c7b82
MD5 000a4293a19beb06305ef29d6caacc64
BLAKE2b-256 8d15819f85bc6598b3228461e3e0870300fe93b989ad02d59a25a7e647af0203

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.0.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-6.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 914da63e59780fd28f29ad84d51473ddfb4d35cfa600d9231eb92f1ccc3c83d5
MD5 d9c95afc8d50966be908f78fb9b1b762
BLAKE2b-256 2eeda4a55b9cefec4f8e5b0630614e0fdd6f854d96ad2afe5fd6a5c67cad10da

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.0.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-6.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3ad75ba1918af0b88dee5aa5e35c99d3aae705e0fb55b9c518dffbd9bbf5cab1
MD5 c14ed8221da3db57ea7a43cbf4c6882e
BLAKE2b-256 b6a4f4b756595968ddf76c70219a253271eaab83ddedc7000296b7410dbb090b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d86e41ca6264778344fc7bf9ad101de740d94ec0e51bc1c7d5eb06b29d62f56
MD5 9b3d369cb6f914607fd77ccbed973430
BLAKE2b-256 d1e4b338966c3106344e49cd9abe650840f67969a8abf5d6445e185e1019bc84

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9ad6516ede6ba71d8b68cee1b8f670d6ac6d9de88cebd82951d2f893587f4ae5
MD5 8cdf65f45886b304a5f44e1562dcfcef
BLAKE2b-256 573a9bd04f1985686f926ee146a78749e08363ba2a7c6d101d49d4a358f719c0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4199549e08ba3e8d40877da74225efcad39caf7eb35f07ff3cc4ba8a6bbcc00
MD5 5db172df1c92302a77e7072b4b6be556
BLAKE2b-256 e25510689195791286c69a6dc5d15e75675d4dd5aa3682f330b7239bbd63c182

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71549e2b14a3fbdc73c3d87f2b8afea86a196d727ac0d9b07c0c3edf92b6afef
MD5 816add41f459027a2447c2ddac7e92bf
BLAKE2b-256 d333158945d9fec78d854c15147b2cf1ecd8ea6f6410ff75ca2aa0d8e79f2784

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 13c51a3ee518011a554624ded5bb8665eac3c9080636c3cc08efd7282eb718b2
MD5 d3ce89aac200710a0f34b5f09ab11e9e
BLAKE2b-256 f060bec4001c8f384d636aa8489309278d59e1699c8864bef321703238f2d872

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a9b65d9673d15e372629f9b564fbb4ce46f9293cba721c9be3def490aa8b1eb7
MD5 ba37e1178826c60b31278381bc4da43d
BLAKE2b-256 a472b8d11386924ee291f86d60a58bc5e9cae50c739a569b9abab3be23d6e477

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f300897b20ab75c8bb5c26aafc69a6feff022355be0af59d8c8314b1d408a4e3
MD5 80ae53fec1a8f522a8913725a1ffce21
BLAKE2b-256 91d0ca2b5d3d0e7ea098c8171ca4c14e791a5d47e3cca2fa1067b4bce83c0610

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01970de229707df12d78e2b0dcd4227e863d8224790ed0cb43a5501821736a6a
MD5 c8b4b7281a579e3659bc17b4d31555cd
BLAKE2b-256 32b23621279ba8ffe008dd7d6ab77132a4a9d9c7f5558eecbdb9c06f689a1cb4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7b2c57c166fc72d8f5fcd2f84b2577201ec3546b2c95c2a637b074d2e462c14
MD5 d8f374554bc665d043e1f7a7f7d069dc
BLAKE2b-256 f0a478dda753999d5706a05489ed37fc11f1140fce93ea6db993a4ec738bd7ed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b51ef6cc39fb678d417a2145a65596ad5904a4e87137089e32d409ec38e13eff
MD5 29f27d2115f45bdaf1a0048a3a251b89
BLAKE2b-256 97b58cbadf95c24c08c784ecb6c965d6fda10f332cddf7ba6a5221af1c835a33

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.0.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-6.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0ba9cf20affaa91979cc9a664d833f29fc0c02c44b91a889930c434e4c3e8f65
MD5 f45433a47d5baf982aaed9a881959aa3
BLAKE2b-256 cd8eea9b294b9fca952076a1edd826f6ff964913f36b28654f757587a7207273

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.0.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-6.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3513b6b6afe73f71ca8c1ff52c5b1a8d1aaebb9934d2279bd002e9fc4b6fbf8b
MD5 16801932e2b6a270581294cdbb27de8a
BLAKE2b-256 69dc94feddb3cc37c6bdcc445b37e7ee1e99151644511a07bdd03c98fc8103d5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7e89d0f286c3d327e257b2e874c646e9726f9e09caa59b903a9f9f15b46d962
MD5 25626add3464f45c10444328772f3eac
BLAKE2b-256 3647f5fa4218d0acd80f1a17fb4dca64c8c7a278bcef40755c8340a68e546e9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 15bdef5eff10cd801f5fa44243b5e110bc4f44d194f62b80c196245e798a896c
MD5 7b9e4c0b13a452179f273adc993a1e9b
BLAKE2b-256 59c8438b45da13ed43a44135da34abdb9e48ba8d3332ee1166bd58c59cd03675

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3aa9b1efec9dd32714a40af3ff545bd6024def2dcef37940c91643fc35486f4
MD5 7c52a9882b0d1e8060216ed4e8dde7ba
BLAKE2b-256 623981423ffe22709d8f4c3918f03cbf9e3d7e0dffaf73cc1c167769bc08a06e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7df5faeb40b1d3b9020fb42acb29370571661715d3cb853f98aa5d6a242d545a
MD5 cfce4dca1f0aebe8ed77b3260c991a18
BLAKE2b-256 a38c19f4a3ca2cf4245fefb681a872ebca4a52ab2ebb1d94893da97c1bad684d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cbfa2957ea052d3749bed14b0ef78b93c8b443b2fd558a1cb585f574d2f68e3c
MD5 23b3fcb71168d26404dcf4955d2e06ef
BLAKE2b-256 b3011686158d43bd8397171a3c2f0e7a7938b861fc822c6346b02bb72e305dd8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e7a4b4058b19b832a43ca4bf370ce8c618489fa3bc5354c247a4d9a9f7593e37
MD5 800c3cfbc5f50075c0928aa29565a76d
BLAKE2b-256 e321fca14853331bd5ce966db33bbda982a6c0b640d14f53c0281e1c81f72cdd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 02d4045421fc5f1fb5cfb04ba3a7dac705be76fd45e80da5c699a98735d0b3fe
MD5 6bce0512fbd8e8e3d31ca8eb59b1a0ff
BLAKE2b-256 aea7a6c2c0d28da6caa292a44ffe6bb99bc8217c5222511fdb773de60c6e70e8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc2fd8ed07086b9f1d669da6f901733984721800854807ecead2bdc79414bfac
MD5 6d878d097d2f2fec2f72bb5705080999
BLAKE2b-256 9d1e5b869db5eb6213623b9d6f8e0a97c7f53bec0963d8ea2a66ac4ce63b772b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a4a6158431bbccfc5d033c46cafe683b204090a7d62e2d708fc3e7ff0009c09
MD5 e2341d35e636fb9b521291115dde8179
BLAKE2b-256 744207aba6c0fcf8db82027d3f915d121c52cdf6927722489bc2c8f81ee31f5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a00a018244c5e6f0b6e145517ff59f40c8455775cf0be1337e47d8ba8fc08478
MD5 da023b6c03bfe9b589f06abb37751488
BLAKE2b-256 d5a8ee7a6bfe3d54a62f604918b2de7e66f342a33414aa38d0584531762b3286

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.0.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-6.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7bead6b127f666c17d4e616bc26581728258c0e16b9870db0538c5945cf97fd8
MD5 b82c1d922e74c3c1e324bc41e623a34d
BLAKE2b-256 f50d88ff8980fd1f716f096feaa54d7c4d2cf98e4a631f1a98abb0ed599c9b89

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.0.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-6.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4581ccc28103732d0fb158f0da320c33391f846b7592572cb2c9706dde5107bf
MD5 57d68e8868d5af1ebed59e89893d013c
BLAKE2b-256 b72f4f85b091e968f9c370555c01455bda6ae858e17c609299477427b6653404

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 412fc1c2021a762360752dcbccad88dfafa3d709e8961ca504114797db1aec90
MD5 381e593ce9e86c7804d65a65faf60206
BLAKE2b-256 0f469ffabed97ccd80fce83247c52a7c5e7962a79b6016a9d354ef76f756fef3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cbbb6d8a7f31e9f4fc0e83fdc9c02dec87cf4f1dcdd1b639ede75d9fbc3e5c51
MD5 5efbc8f19afddf186c5cfba74a2ebc6d
BLAKE2b-256 781759f40d19853cfa1d10eb743969b8e759ef02a7feb27289c155a5e7ad4132

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 94905dc2f21eef657fdca8478126ccc995f2d0492539efef580a5a89837aa8fd
MD5 0d36c43dc315a5defbd48d46ce55bf04
BLAKE2b-256 dbac96b45d993895e3f1ebd8d4b9275e4a9b33d8da251c58b78fa74fd519707b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1415508e7b7f1a44f5fdc30a827d725ee591985b374039409b18f405bd075746
MD5 4cc2bb954e50ef1c005d3bae76e0bd0b
BLAKE2b-256 c085ab0fd546b63076ea51a4cdb6eb39a0b572bd06d60a9be0b04bf2fc266ca8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c207d4aab6ac6d956dfa75fb17a9398942dcdaf4f340c6865eb2f40340a7193
MD5 94578bb7bdf718739137a5edeab96c1c
BLAKE2b-256 fa873f59b76b918067f37f275c2e633a7330c000f97ab911f1eae82245bfcfe5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb5c5859e2c2eb602973bacd1615efba498345642a0f27d5535b790b7a538dbf
MD5 2d58268b12f07bdbdf477b742d3ab8b9
BLAKE2b-256 6d60bdc6f23b0d6271553e4a7c6a38632f70fb5a10332e05d70846215264a3e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 564ca9ed04ff6607d213c225aac3e887dd8da813a4455d80e88817f08293938f
MD5 fe273922ae7eac3efb3c2c033fc0f0cd
BLAKE2b-256 09a03229dd4d9b186dbe389e350a3879ec7a761059580ebf64b25ccf891e45c3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f75836f1b1ff50440ed11fc66e0831382fe9084a0f9ed7c526b87345246a69c
MD5 b752825018971406e2d5ba4e1c828138
BLAKE2b-256 21d44481ca0dcd37ffeccf85f4f6754ee6e36b6e5439b09828f9de514b478e8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d443e4d13d7e602484f4e72d60fd7a35fba4f7dbf48ae31d25789ec2d112878
MD5 2b44685e5c803bcd1d72103894c038fa
BLAKE2b-256 beeb26d3bf2ac0d523a348b002a45029d329c8cc23171148c3026247fc4e9ad7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db4485c45f2d58e8c8e0271a558df456e30b5845215c8931083d7bdd4ca1db46
MD5 0da21917f6f246333f768c0b8a585353
BLAKE2b-256 2c8e0e4fa7911073db04a1cc3bf1e9acccdc66a212750f4c8a07ecc4ae15d62b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.0.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-6.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bca7a707f58df55ae38696acb6a97ccfb4d09eea9c9ef920183bdc5f83dbe347
MD5 387419f75a6539538cc44af80addc5c5
BLAKE2b-256 d7e939ab66dac4a0086888f43030c6398d377e48d94e8b85d1a616f8f6d2c6df

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.0.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-6.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 47534accd56142835ebde5cd5250b76cff59fb1d41a98985735622cfb66c80e4
MD5 9addd346b2e81441beb6f4e5a1914c51
BLAKE2b-256 1e45eb5379016d2b16ed1f1561a2d0161e8133736bdab8951037da1daae42d52

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80f3bf76fa9ffe7a8b0dde2d18bef377ef1a27d31f91f8c7c751fbaf0b71cafc
MD5 a7fd426a355bcf14e02b4165ec348c55
BLAKE2b-256 3d759adf51d2a1bd1e118bd1946effbe4286d007362b9c91864cbfc4b88a9bd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07f8f2920c5b9f692c69b19da8e5a53970c2a248ee0ef40149be7e8c8381c499
MD5 57d81a07b5aaedf44a1bb0972ead59c9
BLAKE2b-256 9f0894ebfd1c21987532e6a346ddd9708761e44b820d15859184208f6bbc7ceb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4bcf4f2587567531133856bd2798a9f0ff071b3f74966512da6f323dac533858
MD5 6335f7bf1e4c4253d8071cc3297a1394
BLAKE2b-256 186732c4be77158396928dd260363dbfce1f09e0a5bc5da15fd43ca356326af1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c240b74d3d3a02bb9e6b8872fccf06db0a7fef7066be5693d261cf5a164efb41
MD5 534e0c4c1ca3c61cd34839e03ad3ede5
BLAKE2b-256 1d16c8091938edefa2f10deddb10ad3fee5434d6564f6ba023cd09c8af9ca656

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90617f1738799d109294bd6e765e16789931b77dc8d24f9431c8d4f861f11566
MD5 bdc511a1bc543798e8c809fddd4c20f5
BLAKE2b-256 219a7bba38697fc37ba872b81d9a0eb62113e398dad0e92fc8cadbf483d83522

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d97d0cbb37114a5c6f646eb09c6d19f2ef8724876df6b9a6fe1654e02e37a7ff
MD5 6ff5836f88075d7862d75b8381a2be0b
BLAKE2b-256 28ce33b5a3d08ccf567b33287fb54e50fe962c8ddbc632eb81833f47064bdbab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 90ee49e83910382937f5b847193e5de7b2f6da40313d2ad56bf49e9fa412b665
MD5 1f4bc58b9e7cae886786007eb28e240a
BLAKE2b-256 7efc3b367e7c0a28ede6b69b9bbba84c8149bea999b92973cffc070071547ffb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2e7a8f27c286ae32e51291ce84550b18566c03fae0f53f31feb14f2182a7571
MD5 5d14a5356d91663a2cca3bb9746d0c3c
BLAKE2b-256 748f91dce12a3939ebcce30145eff4cbed4c6cc15fc8f1f21d1a38d7f52ce855

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 320e313c519a775871e9e9862fcbb9ad3ed01dca4a990658c13df9dbcefe88f0
MD5 73fdfd5c9147e1977212c8ed1b7cd8d4
BLAKE2b-256 8f1823c2afc31beee7a52d3b2ceaf908614e2a555a7fc97e3a2f2ad0d6dfa7bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 50258eea7f88da2b3ead49efad2ccf5d3c3a254b3dc6645c3d94c71bbb1055a7
MD5 ff32f6b259c8f86b0574838dbbd3b2ce
BLAKE2b-256 fe6ca903b942a7fbab8c468f383d7b0afd15c8d7e52105d05fa95d63218ceb8e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.0.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-6.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 744433945cb608e919f9a705ffabac3d9308d7d087d00b0efc18709ebd14f116
MD5 86bc1a8b3dc1a44f6438a2aed54a6938
BLAKE2b-256 a8dcd765db7bd0d5679d338ef4956b17fe4f99838ab6acdfe97310ab66fe15bd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.0.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-6.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 34156fcfc9cdb3d4203d93b81a9bc4f44dea7d209d7593c51a3928da625db3a1
MD5 2f491aedf1cc5f29fe7cb141bfd7c685
BLAKE2b-256 2fb6fdf9267c67ce4cc66e27e92fe7f8f7f318dfad8c60804c8117ff0ea2f0ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ab4241899cce4f0a86d76d22a32078dfc4ceb6a35c68a429762a768ff40b614b
MD5 c5f9daf86b7141173105f4b61cb6d579
BLAKE2b-256 00b62cdc7e760b17c2dd1fad38751b5c4c017a2ae13b2d16c53aec15488293a3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05644c1307e21684d1af0e142b94f4fde3aed2c872de51f8dea7dd59e570b746
MD5 5cd33d936e324782429ff5046b5b9d59
BLAKE2b-256 845ddb4b7c44d709adef17c788d18c18ec03c18adfa024ca6055abc611234066

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2b33fb3b176c7e4dd4e8ee1ceab8caeedb383dd75866252f74559c11980d8e5a
MD5 c21b0fef049732c1e274c1f1602972d4
BLAKE2b-256 94343790fc170793e7b73a773a0e514684a00bd3bb559a6217cdabe585bcceef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8af3de21e48808d38b1274593308f5ef5921b9fc051a53682d969ebec3aa00c5
MD5 5ce4a9a221e785210ddd7e406e4ce8f6
BLAKE2b-256 ae7cba88e99b0ae43b8843a87e2aed9c698435ae755ac14ea41026f9d0357a50

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 233fbb916ec5606bc53999c6ccb7df649243d52779c923dbf52ad902d8a73be7
MD5 7542fe7e9c908ac8774400d15f6fe560
BLAKE2b-256 a8ef6ed05a4c829a6911407f5d436ddc2d05a8ac03b11f354b4f8dd50f126d4d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3831f50d9627c0cf43ba1665b15c73d569f676b5c06f90ff1c32fec92241c3f5
MD5 ef3d7d5f1e5e3239689fcd3877b6a2fe
BLAKE2b-256 053ca793ef598f43fceddbf3650126f8a49d4645e5e593267bcf642918172a41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b88cd9d8137c47208b1a45e155387ea6cc9fdfa4ed1d799ead2219f221c9805a
MD5 b01fbafe4b4fa4f04dbdade060578d23
BLAKE2b-256 83b0164a8cbcae1a2ba74d57856cec2ee53ca3888188235ff2d7e2c70ece2cec

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c99618935f413fe267cace99b2c6fa7fb17f5b6f439b8929f9efecc0aec7a58
MD5 e57da77648f5a7c633a57c7b9db93682
BLAKE2b-256 599c38d70e7eb6141e8fc90e03feeaffec2857733baf7a8f041019b4ccf0d1ac

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bec2d5935ccbaf7e67052b85345cda1c7f6555ff9a6920b39fd1b496fe6958f9
MD5 206052e0114ab40b0f5ae7f7775d1897
BLAKE2b-256 b57c13ede789213e9e31a036a21861ce4dd080f64288d6d8db72511c62532ec9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 98274e870a04a0b839e6e3628429b06a2c43a355132f263fd8fa88f6b38fadcd
MD5 48ab48239739263846d325f77d8dcc5e
BLAKE2b-256 d9676b190f76ecc9a1220b12535ee8215a523445dee33941db8b3d90db4f3cf3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.0.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-6.0.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5e4be5f97c17e7293dd0e471bb55f7785abd00a6cc2c311229e0d35c1fa46e32
MD5 a234f7b73ec2c39d1a90eba1e0f60c97
BLAKE2b-256 bd0bf0abd81bc03a312f37a8d976032bbc757959e9554f929b956af9d1755c33

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.0.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-6.0.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 40047c03ef84e5a6a4d54b547d36575d28e7a9ead560d92e5d7ba29685bc1e92
MD5 5fdf68c9dea86e7351c34cfbbb7f3d06
BLAKE2b-256 5098aae96ea15c9888a280e1c0d357f1f05b7c2e2f7f4daa3e0aa952d8fbd59a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ebb835fcffb9b62c422f15daeb4f7d3f8254aa2202dac78d01071963305d760c
MD5 f25ca83256325f37bae7da01f328a7a5
BLAKE2b-256 8efce34e3b705fa7f7bf0fbc946f57663a52029d8c973d79a679939ab5436491

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae01fc585034a11f6f287edeefb38869224746086a6af61eb3f58b7394dc2589
MD5 8d2b5f736232c6a18e0cb39ed369786b
BLAKE2b-256 3df91ffd02f3d175ca3afd713461015a540d680bd2aec2db5e5983b1ff7918f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9cc45224ac5a4fed92df6ae2e0edeba4da0001d17794d673a8787ea04e1b8d63
MD5 9efd74d5dffe415fd59b184e41f01b89
BLAKE2b-256 645356e4305f570d16d6d0c77b03db6e862279e34d3129e099c6d244a84c5eaa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f6082ef64370a4cb740940355f2aa4525fbb38309946fa9234334901d8ddcbed
MD5 971484d3fc22b6093fd213fcdde9fc7a
BLAKE2b-256 b982b5a6c9fa799a9545cd0784e5e69e23e05abeb49504e1eb40ad36164ad7a4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 034e81291df2282d94408dc9ce719efa4748bd28c2cd256a46a816b0e4334775
MD5 a9cd84a1020928fd63369d919d7b2455
BLAKE2b-256 d1c48a493365d685a5cf08be203744d708b0e9b86d9cd924a92233016c6d9ae9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a5dac566e016d695c178622f466595581d0c4a3208fb0c1b6c9ff59c58227b6
MD5 9b63da5bd7b5ae0586ebf34543cd36e5
BLAKE2b-256 60b5bcebc8fb80472a88ce85600997f9dfe2dee62497c7eda4b07850deedcac6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2f6ce3b1bd8c88149216d28fca30c9ea826ca6b37b28e71f0e0b2f2ecd770a0
MD5 4fda39ce5dadeb109a7067a8da4ddf27
BLAKE2b-256 69c1e3fcb11ea6353f5f4f50650c9a99a832a4e2c5ca4bea8b6f6831136b7fc8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a2d437940e86947e4291edee99d2a29dabce83d3e48de09471f3156330bdbd22
MD5 51164c33024601da778cfcec86a5b277
BLAKE2b-256 d889f047d58ebdfd7d105c74cc079723db0b21f80317a100425b9f099aae95b7

See more details on using hashes here.

Provenance

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