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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

complexipy-6.0.0-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.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

complexipy-6.0.0-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.0-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.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: complexipy-6.0.0.tar.gz
  • Upload date:
  • Size: 352.2 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.0.tar.gz
Algorithm Hash digest
SHA256 b8a1797cecba2a3f44ccf8a5eb5b080f43ca576100d4d56cc806eb364da00224
MD5 f5d2a74cd28359878e391f2f018d4131
BLAKE2b-256 1a042f6763931b09c89b33f58b8562ecb37ee3ec0683b3e8f6e3435cf1d8fbef

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5943bd86da4525cf40bc351f166f62c48c049fb1137bc6ae10b9d0c476655537
MD5 aa2f3b8718ad2144e0ee5da6fc6edaf9
BLAKE2b-256 9a11dc752964b8001e7adedf9ba92a6efa6a0d253162831dbc39b865bd64f69d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6b7541967d7d034b2db97aa87d94b8f5de33aecf2b8902aad758d637d1d44f9b
MD5 873d5491014e2bc1654224e4c7904f13
BLAKE2b-256 8b8ab9374eb2496a5f240d41a18369464c89ed0e1bdf3b7ea85c3aa21877f60e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ca60d8d33bafef28265d91f8af71c24b866131e1d828cd303179df78a99087e
MD5 98ccbc3a86cd0ce57fd24f8696922c29
BLAKE2b-256 600405cc4ef5deefc607d1c6a25a94c6d70250da73e4e8e36c47392dc89f14ca

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c776d0db38f392e8ba928d166b65d1c7f07a708234eec2bc9d5a0311cf151f83
MD5 56df16949c93ed07f2e4c39b0c3db06f
BLAKE2b-256 da6fb8c4d741a44e896c63e5eb5a3a4f5035355444d9337679aa8bbf24a58f70

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d7559a61bcb203e848db2397f349f3b5292c1c45d1071c928c466ceec966710
MD5 92a3cc69ebcac07244c30cfa21e4a553
BLAKE2b-256 2742c14c50ea960f116d375272ce2dade72fa08363cc0d1cc48870cf33d24eae

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3215995c5c14273d905406e45196136536777e166b9673e0b44184d5101bb454
MD5 5fb53180972bff775a1ded6a48fb2537
BLAKE2b-256 0fe7b5b697e816aac36cf208775260e73806b83474b869946fbc1fb74901ed6c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba49e2667508207ce5be98f54949fabcefad8238ecd56b80c580c65d6cdef03e
MD5 41bb828f810cc417525ed25fb5a3f872
BLAKE2b-256 b833b56f453926d2017859ac02f9e495558a52abc068474432577c983e1eff83

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11f5d6e2815cfd3749db0221bb8628170bb8cbcf6e21033376efc8f3f389dc51
MD5 e3372f88a25e15ff9dbd5ca7ac9936d7
BLAKE2b-256 6d1710aa8295ce19c65728d95971046f13739befc6b0f15ff68d4c75615102b2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 975340f50683d7047680a0ded036306a2e098c50a72bf3e3ca11c1e0a1ba3315
MD5 35dbdcf05d5d03540629bdd86e9a9f92
BLAKE2b-256 e300fa2cf32da5702fcf462b88d405ea3842e70579d61f9a5a9bd4beba3bc033

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c57abc9706ad0a96bc8979a6b04e37075ec3eced9a949344370da398ffa6cec0
MD5 89d73cabbfc9a993a33a84da0896246f
BLAKE2b-256 10d1a5ea773f3bf77e0d6b436bc9544fc28cf146f42123468254e4b6ec47012f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd99e401033e06eb1028fc64582e45ab26b20ba62172156b9b2df98844273ef0
MD5 1ae170c8817991f3998bd20507cf7d3a
BLAKE2b-256 6386902f397c6713b32aa26c9a45aed9483219e835f0d34e60ee70751f9ba372

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ae060afa16576db02b751581090c9a067ebfdb9f60c9ab2192ea4290091ba6c7
MD5 1cbf824eec8bab4950a8b758c41d500a
BLAKE2b-256 d3391e90bef2211f180cb14f2df6e63b422c50457291545c9476a9b5702d13fa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d397b65ac058983753ac4b168a05847eab63ef8098a227e02deed0f693e45b9
MD5 05b91d4611466161a23f09b202fccc05
BLAKE2b-256 65d375f2076e7e2a2f467eeee81582bf7fc469628a5ee36231baaf8173a33793

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0b5e2740d220b0d30c62146d8922713032e2dd970dfd68c75aa5fef63aad1be1
MD5 567ff9c5e0b498c161092de6ffcc6aca
BLAKE2b-256 5c566a159d83a2311299bc647b637d679f7a5b044408ec908b2b3e866558375f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dad7934ad3f26048860fe40fec6d19cc7a3a672fd39fa612b0046320d43ae34d
MD5 39fe0c1867df8fee823ca64c71bb47b8
BLAKE2b-256 4d2c6751c897fe28c0c35ed1d46e911447c40609560c0a374b39dc70aac7d65d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 908db0568d8206f8297a6c35815db558c5373341d619b0b7237772ed88e137b4
MD5 748410b3173ef81bbee69695972cce00
BLAKE2b-256 26a4914862a47d46df6624179afe99d549a57bc6373e1be34bb3c394060a574d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f13adaf927fb89076c6ab8bfd7fe6f5357ba6971010c36c42a6028a8b3bd5575
MD5 e72be87417a1e5d8e337d11fff7cc237
BLAKE2b-256 30f8a6db45359e6dfe085cfa2c5f6543f9a5f260bf82b1c505ace1bfade67906

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c42d83bf580fe94a6c03c6416b824c8ae0d5ee5adadd5ce9bbe3d4a2dde4e453
MD5 5ac5de698d4adc82888887bb4849cda8
BLAKE2b-256 65a1342d704b242afacb81a0e1d757fc0d975e6514e11b43f4b6b1c45e8f3d63

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1822aa5c7687ce0f7c28be3b585ac7d41bf8a3c7f7a0faacdb9d1e8c4498fef3
MD5 df6286ec24863edebbb16d54ca1eaf2b
BLAKE2b-256 e1af1056f696a13831d5478f265156a2970b0568c228adf4902bcd7d2df23acf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46507fdcba82de9f99e060de400a0d1262903f762fbcc31319b2c3c28dc57ce1
MD5 6b882da2b558d8747f91585d10fe082c
BLAKE2b-256 48bdd748456c30b2b91111555d8281480938a6911e1679bf73622646e612bbc6

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

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

File hashes

Hashes for complexipy-6.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f633bd905ac2525d22eed5f6562159925157ff8f29098989f85f4c207e39bc89
MD5 02d9d0003e4f4a1fc40e670fda708356
BLAKE2b-256 f5e4342572d6124b2a621f0d795c870bb56ec68ceba58594f98d7ed582a4aafa

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

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

File hashes

Hashes for complexipy-6.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d60f0ab5a97e2f0e90bde40f00cca94ecaa9d2c2aa5932e390cc245205d3637d
MD5 0e356cf70ccd99f4a5f84fc8f0e53ade
BLAKE2b-256 1f111120c854d6baed175e6222786515ebffef178f65f21a17093892953e28a3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 27f06383023ef1ebcb7f589078aae2bc0b1d0548b53940e2f77e88b38022a566
MD5 b23f6c14af594681b5be10f7391482fa
BLAKE2b-256 3cc4172aa80e24ce12216dda9574a3c0c291fa6e1b329b468f8f115b59b018c7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08809b985e62d420914625ab457e8a08d2ab3b7abba911204745c109b44e9378
MD5 8d2dc4f3926e4051fb3a3d3f71112a97
BLAKE2b-256 14d965b603f6396efd48a470414dd59be047d5ef05d1cc61a2f22d4e73ca2dc2

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e07e03c9fdc392a0cb7cf1173e77b230e1680679de4dc6f19e56546c299d89f0
MD5 9918de41fdb205c801c2fa29a26ecfdd
BLAKE2b-256 2e15e81ca129fd35e4b9fe31edbd2d44e6192694f19e8a10ea5b51308f7e78af

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 26cb2fc2f9773e18f893236e451d15af50e3f2afb63368dc831f1ff6e63a9ae6
MD5 b2fddde3b4d525f1188d8150a86fd8fe
BLAKE2b-256 0f685769aa10ae3b54c4c7c9836824f9145cf09600c6dd1145e29d7fdc0c6ee3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 67a2888ad16d3d6ab6c0e829b384ffc61ebd2e8451854dc03ce9b2c091fb5fb6
MD5 5ce878cfa577480e38c8b28e96753e93
BLAKE2b-256 0cee92304640b66d68c3bdb21420608837b35b07b021af47ef1977146aec7691

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1e96f9d9f92e2d0db534154fa3dd89b7cea78ae880190ddab78c1411c4a09988
MD5 75c0cc12e8ec0609a67927a0fddd01de
BLAKE2b-256 c118e96a1cf00fb81137456ec27ae5cd0ffe674bab1bbda81eae1823f00b9b60

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aea6ceae272a0712810193332cba68868d5884d0be880e67499f156d986bfcc2
MD5 77db202fd4fbfc88cfc7f3ec53cfab7e
BLAKE2b-256 c78f952659c358e0fd06cbce62323cbd0223ebebd120f22c1499cd755ed0c39b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20831a6cc1e34b087508c09cb084548f0e1c4fe8d377f19e808b2bfdbb89fc64
MD5 f89460929b1a149e03253d5b904050e9
BLAKE2b-256 438b68dd27fb76cafc96ca239bb0bdd33469ad89390c69482b597ea55ee5c77d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d69423a41ea491ef7518089a0e06b0bce4271a0b048f99d3d5ba0243d298920
MD5 e2c6b7915addfd1210807cc7ff62d24b
BLAKE2b-256 dae3161d9cabfc954d98e18dec71e397022e646118fcf5bac0591628d15dc303

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b8576da1b69486719a8fd3ab6532feb998489c3eeccbd39348d2875bb1da6d73
MD5 73e6856442d927f6b3a44c985c1b7dd3
BLAKE2b-256 0477192836d5730ea5011004636fdd2b2bf85ab1c4b36cc8cbdf312ec445dac8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

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

File hashes

Hashes for complexipy-6.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1f0823305fbae10bda55e02353c69e983a86d8735f6367f2e8831de8642a51bc
MD5 d1bd831cc69a8fda5f672e05ba60aba8
BLAKE2b-256 ab6d330bd13defd7e581ecd3b9f7e08abeae394642aecca02afe7ad4befcd020

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

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

File hashes

Hashes for complexipy-6.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6e248bd6123d48274368a89ff37c0fafcf1d8be7d1643edbd024a99c5c868a1d
MD5 6878a1ccf4e68b844582addda212254d
BLAKE2b-256 a0e9083fe8da2133fc1e155185681059cc09c1e95700ec2f101ba170d78e0b0e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 496d19ac94bdc3ea7f61b998c10dcb6841ebb3c15c2b9a125c2e9ed4ae8834cc
MD5 39d7432e0c056bf7a11c3a603db5a658
BLAKE2b-256 ba8d4384a2acacd78f0fa2e01741c2331a90ab407be4553823021fa96144446c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd6d9746a376df09d7fce6c88147067e4ec4f3b93c2338ae5d92f31f1475870e
MD5 922324170dd011c83ab71ad3cc393b1b
BLAKE2b-256 d532d0641a9c5a7dac54586b4f71c921ae15cd2b73230dd429a7d4fa440e63b8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0acbaf5a4156459cb3126d36f4e0dc91ee70fab3a0a30eea42a93bc957954444
MD5 4935c1da37490ce5bb95d296e2c6bda9
BLAKE2b-256 ea6f5c01ec1af861113dc42db070830c384df5371183ecd2200ab0a294bd8a94

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d62af0072479ef0b9656e4f2428a16ee1d5ef9771fe0895af13b1fbd0a89d44b
MD5 14c224c6934daba9fd3729c2964d81cf
BLAKE2b-256 40afd972f64d2acb340abcf47eea09835f253777b76fb19609ebbdcf393c3b0f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c227c62edb4e57f4f5c8e944e0ffe318576678dcc7ef7d6791d607e0c2ce779a
MD5 1df3446105cf635635ee5451da2a7e77
BLAKE2b-256 5e4fdd83c579ad5033ba641ff4af7adf5a11529d4e265a0c4c997558c22164f8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b191fa3aba9f5108983397f1fac8510563d8b2248e7c5ede87d11949ab9a50f9
MD5 56117ea1691c6c2ab7c55febdafd0f15
BLAKE2b-256 13d324e432d3ae45d6b6eb66a9ccef2089a5712f474d93084db445946cad0f7d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0cf7bb0f1eb4d6a8f1d5157421c224c7316be960fb37ded9d0b23f579a9c088d
MD5 b84d18e6c2a52dcbec26bc3cf0e307d1
BLAKE2b-256 caac71700a3dcc63b9ff0ca9be9db8e0d9d933b1ad375dc997725c33210fdd5d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8022ce76649ea62268de1825d47c1450cfe4e56efbca8eda959bf7967981c2cf
MD5 5f1f6bf40bbcc06398c28688a7cee156
BLAKE2b-256 8302e765c59ede1c49372363eae40f4ef11494da8807b57bf91c747d7079503e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 156d354ff5cea8bb8402738f04822e8dd3cce84b96966124269276271b62680b
MD5 b13d242e6b3c7779b9dc0cdd99005bbc
BLAKE2b-256 c5c654a336b8d137243849e35851a848a684c4f8564f6237a16980223fe95553

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3f49230e3b1ec3ebd377f5da5cd925474c0f81571dfa8a1ff4363285796c04b7
MD5 abda8295fd83cff6f9be0798d0a0de2e
BLAKE2b-256 8d8b4f72e60152690ae2f5125958ce1c3d55733be44e7994d5cbceb0086e46fc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

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

File hashes

Hashes for complexipy-6.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 07bf7ef9cc2951818527468aba04f55000c2f61f33d5a1fc605df0a40d9f7858
MD5 4f2fc82451cb5292b20441d23b030764
BLAKE2b-256 01a8e7f8744d3a1b78378ae368ee510e525f2f6dc1f3cd49b166910a09b274e8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

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

File hashes

Hashes for complexipy-6.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 58115283778e9b17240579109c18109c59302a96a5685c341407de5fe25dd0bb
MD5 6133d19667edaae7bccb2c6aa4852bb6
BLAKE2b-256 4fe85d5d2d75205f669f372e8f6e77d513d775622a254e20e313fe77cb7c837b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18dedbe4e1d29372bb2a56f947c597624815ed3782b1be345829c1d6a00542c1
MD5 49453c7c7d50395e391b0891b11dae61
BLAKE2b-256 d9d61c76e492ebd38b023c424d87523deca05896bef24da2975994952e27cf15

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e5e254c616bbfee51652a4db894f85223bd6a08d04030cedcd59fec429f9a41
MD5 16c99dc59d534efabc0f34201aebb90d
BLAKE2b-256 73af44700d1c1ecd8251f0b365ef0ab66db67a5534547b3a2bfd53064a9fb31b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de951bbc174d5403507e21c0499d53dd365b1eb471d4db0d9df14f4b39155874
MD5 2af60f83c6f07491f8ebea01e1a6cd41
BLAKE2b-256 443073cd829832bdc25a011b36ce016d8a848714181b590b7b3fa708ea86074c

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3e0ef1ddec08dedf2577a92e761519ec947998e43f19660891ae74001374b702
MD5 edaa139d5a56d9e7613d02c4ea956c13
BLAKE2b-256 0a00249424308ae2129b7d6fa660fe98417d4c1f8a969c0cd0c8866e8ad939b3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 61c6ac48f1706beee7bf1a6a2def1b904e37b163425ec4e60448063797ef4728
MD5 f73d8e7b362328f8919a2a346bd7ae1f
BLAKE2b-256 4a1561447323ea0a4f87a3eb20e63c0bda9fc1c16d7e65dbea0665864181a05b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8fde6f56f1e3bcd066d82affea2f5396c52432dd7bad2d1c788b022748dbd88d
MD5 72ab8ae41ef5977446b54151647a6248
BLAKE2b-256 273ce8415d235a9b4c09e0521f91bae25d88a53d5ceecfc8cd8b4d87526319bf

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b36aaecfb199cf3a4e7dfb1f86e85005b44e667e454a2df1e8516c9c1b10cee3
MD5 305e7c19312757c0983a5295ba0d26ad
BLAKE2b-256 e620c79be2b36df4e80afb947bc679966eb606c8e49766d840047fc26bdd0746

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5212ac8464a24a33467ce378333f4edc77d86fcbed0ac6e878b878862b44399a
MD5 33310bf0258a387aeed8196cadb41c84
BLAKE2b-256 47a34a3f6345d084733189bfaf749806ba9d1a2ad3b74ae19996b243c300e437

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eaa602bd9995585e9439bc069455581261fda7904d919356f211e1dc48552e96
MD5 b211b56325e85cae1c1f5375d9b16ed7
BLAKE2b-256 4499fe69ffbc26de61723942580d41ed9499976d6c0b7604043ee36d4303bc09

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4e95e7199f1b3f3f4fa7981767295aab1ee730cd1affc622744553aa03282129
MD5 9ec1b9497959940d6d981788bd0be152
BLAKE2b-256 08d971ea6005aa68f803763135641a8a667f033415ca100c4de4c7a419ab0547

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

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

File hashes

Hashes for complexipy-6.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 705964511acb82fbb0d6c21f6f54d3814963b97712269a3c2fc00f46fb319610
MD5 6f358721ec8e6519f518e67e53a2ba68
BLAKE2b-256 62434bb143a1106281d2abf410c981b63df00bff46712cf5d3a2b513de2f44a8

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

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

File hashes

Hashes for complexipy-6.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 bd783ec19352957ef830e088201f309249ecb30721001db2e31ff13e349cf6c9
MD5 846a3614821741402ffc9d36124b63d0
BLAKE2b-256 4361854db6f90b958d4807cdd0173495159b62abaf4b5393dc1552be4a9c4597

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8df0025388f44b5ac3d17a41d79fa3a81c400fed57592348d84ccd7507abb39b
MD5 4bb1ffea137830b3c7f95f155026d2f4
BLAKE2b-256 a383826bd2eb50c78048c512b61b7b06f47a5e0ceacb38c7ab702a04d9e70fe4

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 170a7be619f30b9f0c57fd1a3a89e91200cbfc4dbba73723bc5f097f5d180d6b
MD5 2044413f7811809e5c305e963a7f15b3
BLAKE2b-256 0ce92bbf53bb0c6946ff17a37b301bc5f7ca0657b1eda28c3be67ec35d264668

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ad925c7a9235e06ceca2438906cee719bc68e709091468e55b5762d00438ddc0
MD5 be4b12b6b99375b863194735687337fd
BLAKE2b-256 06a84e5190e35f95fba24199bb910e93515603a18e65519b2f2e620d0841b91e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c3ef596a832e3bd94293d4fc6dfec9b7f0bf754ada3dee8542f1d759078170b
MD5 30ef9f40f9ea35bcd2a6ac0f9990282f
BLAKE2b-256 688c019fe399710ad386ffc6c9494c2d7fc47f302e9045f29e1438fd7c873401

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9a88ff75a4f3732a846346d779dc30cd35f600f632c1f85084730db73f47683e
MD5 40fb2c0c7d5f8e0f3e660db10b5f6f98
BLAKE2b-256 feff70f61e5911c6dff5b2189738269856cb3cf9646a70dfdc855ed32c5a5cc1

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8106a5432fb79214b8e2e3729cdc689274c8f74228b9d8ed7e5401b650c70c74
MD5 ddb56a13853bc75649d806c50bd494cd
BLAKE2b-256 a7832f352fa32f4a9f847f4e240625d6aae9869e9896758e6f523234ba751e1f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bbbf774a8bb7fae3562f49e68d6e0861dba8ce1552f99ce6007e700fc23ff6b4
MD5 6ad79b5da1654e259d44f19ee0b1fef8
BLAKE2b-256 10bf18effec95c943fc7bd5097f3cffd46ea9e6917209b9a10eafc273b273116

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 933776e197bdc6a08f5e6ea67c6b3a3ef9f2fc3bbd9a2f5dbd73bd4705258080
MD5 aed5212e4547b5b6a109101e44d6952f
BLAKE2b-256 99ddb82b37ee1bf2f7226a39fd395e0c026666bb455825a549d2db7842fff12a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7335c540d44e1746a055d51bb914d5cb631cadb5d43b291af51a45f468e339f7
MD5 56cee897761aa0360761ef161835ece5
BLAKE2b-256 5a3a83c699a65e1a4f2aaa81d87013b8c9fcc89116878575dcc9d69c0fb522b3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cabc0dd668c027d2d5b9dfba60d50b9da6397f0f63954f449bdea363dac5afa6
MD5 5be655a377b94760ce75902c653d539d
BLAKE2b-256 9e74890d932d4f0f671355ded70edba85d9a38b0c265e62d22034ae7a0acae9f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

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

File hashes

Hashes for complexipy-6.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9e948dec28d5d067119915d6560e5dc73f96d9805c2f0a90e92accc772da6d53
MD5 91fc6f8bc15ba1ea503a0a56ef1f6f84
BLAKE2b-256 2c922e76489c155fc7e7b2d138699eb69f01426cb3aae7df6ad6cf36946eaefd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

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

File hashes

Hashes for complexipy-6.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 02c19b9be14319a718aa4edaee92b075bde87ccd738d9deaf7a8418504bb5558
MD5 8d2555c21024f69e1e8b20d5e186f37f
BLAKE2b-256 292c1cb50b71d1152931f18b812f81a21b4119fdd85448e691d1915e5a2e3fba

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 97442164a121f25a248eae735b575ecaccc5f24361579685fc1a8a445a5f1902
MD5 51361872ef7789a40b16563e1431dd75
BLAKE2b-256 821a63e6c150ee1f1b43a25ce650cb3ee839ad7724b1133275d26909c25a0462

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 839249a3037ec683e1b5fe7ce50fef847ca7e33a51299bea3e1b28386cb367f8
MD5 31c3c16e8ce75f248d6e08644e8c24d9
BLAKE2b-256 1f70e8aaffc34049892c73689a06317b99b8c364c2838216ac5f869df91cad5f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 544dbbda76aa9a312004bdae88c9e90e34ccb0ad4c91494f58f6c30e77b29ea0
MD5 c01d4884370c22812511f197998443e1
BLAKE2b-256 1f36c1056e788359e07995dc4963089cc84cd6275865af09fcb22acd0cbf4681

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3aedfc9cd4d5936c025df19e56aa1e3f5ab040ed89ccf14b958db4e5d28a01ba
MD5 2052bfa51bd9ccba4cfdd8bedbbb44cc
BLAKE2b-256 f309e694d52b57890b9a48749b6af9c12c84a84ab8fbc93854b0bf737b02ab14

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4501a575212c7e2f629f40375dd98d8949cc92411a3e0e7cbc8fcd52ff9ef49f
MD5 7ebe077ff199ce6a07a5e7dd6e326308
BLAKE2b-256 79b86539d4428c06532b005a4867d2960cc75c79a6c21a0b42a57ce8a9342a5f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0d8b95af890c787106fd5ed99e7529220260a07e5da1fc6ea423b9a3bf847363
MD5 c005dedf1014317c8ba3665c66d5b02f
BLAKE2b-256 dfe81446df561ca2e8b0cf726011e6fa1a2eb6e1a2f56b516a1bc57bac6b2462

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6a65f1ca5c32c7f630700b71cc120ea571a3bf8fa8f6ed6ecb267aee8edc7c8b
MD5 2e70b7b78f234564aa42af77795cbc62
BLAKE2b-256 e092c0ce9fdf58f2b9bfaa67ece066b6afa83f5a720969ca022362ea70fb7e96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be7fe7d5fd723912ff604a2f03b17d1f8103c6ccc2b668076b74fd002e84d3b6
MD5 3e5ea97f99b81a52d1843273b277706c
BLAKE2b-256 98738ea53f02f2fe6dee7c6e61e6114ffb0e18853479e40e8befcaa6af476d77

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ea1ee0eeae6d372a921f3436f53ead0c8e350d029c662e402903dec5fb1de10
MD5 b2cb1a490d5aa96e42f0b8da5ff3f6aa
BLAKE2b-256 e887999138c7992e28c9797d1553db35c031b34c94aae0ec7b50f3075e7a42bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2fff703555dd8c7f69ea58381fa173c5a9f8f4f4f3da14545cf44d84df1e55ed
MD5 1624be30f6d6ee88725eac7585ba0490
BLAKE2b-256 a0da541c31fe383a42201f782043b98cd71eb1365d421932f4874f24295b32bc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for complexipy-6.0.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 bcf0d2ab9afb96f21e68c58ac039b4d7fccb1374e3e465d349e02efc06558623
MD5 b6fe44f6dedcf37f10ebd5bf18e6f12c
BLAKE2b-256 56c0663a77f259ab0e1166ef12edeca2c43b6b3eb42411b115f0884a69950a08

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

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

File hashes

Hashes for complexipy-6.0.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 b89b0b4469c1e522d98ed26c1520cf1e3ab4c6958692d90630ebd178a75cef49
MD5 55a2ee2c0994908064caf49c1fa9b37e
BLAKE2b-256 92a9d2104a8c88d7b72eee7589b8122474b593d9274b2df6b8cf28511c83df2d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e17e1059e815dce91dd6aebc2553aa27128faa8bcbe86f7cc32421a27c74d080
MD5 ac9fae6893ab38e8464653b60b2a4584
BLAKE2b-256 5d6bc03bab643165488d40e38b005085dc9d83b719ad940a6b4fddc788a0f2dc

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ea7cbeb97915e8159c1fdc341356c96496b925a0a3a401d7a4f5482e2f86372
MD5 25ba36b469054680296979b75892ef80
BLAKE2b-256 85509f0f88e2a4c948fd133089dadc168a90fa44790a92a17ef14c3ecf5b3e22

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b6423e5e2a74d945ef61938c8a977cd84db98992a45bf7aecd4b255a9213bed
MD5 bb978f413f61f0eea38a942073a6eab9
BLAKE2b-256 5f0db7e55fc15f57cd6a2e6924c6bd2fe94d94aa4cf83648745155471441d49a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f3086fe2e566912c505e324b0804f6c849cd92291f81ab655549f2c7ebdf10ce
MD5 f72c4dd92012e8ec0892ce882a6b7f7f
BLAKE2b-256 256137e9850dbe367356a0f298065cdca37184eef4f654b4ce5661cba3026d4b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7507441f3cd61b0930906b04f4fa32d781361541ff92fd69c8616b481f73dbec
MD5 f83387d3e1ca303188c8e859049cf715
BLAKE2b-256 6714dc6a28b1e7ff126dcbcc87d59e351e87d47b36a8737cd7c453b88b7c5558

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 64f11a001396884d13717e2353d7b0ed281e695c6b34111ac4b395c54f7f7bfc
MD5 08390cbe957e4e5040ed091bef97f171
BLAKE2b-256 b60089f1864e416ed3286aebd3c067733e5a4cd72b07a35b0b7293b4dcd68cab

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7955ed1cde4510ca3bab77a85a6357f54fbe0ff32cef5aade8346d75f07e605f
MD5 08b8f4a19ff905888ff41ef3738dc003
BLAKE2b-256 b961ecdff42e7d219a6cc1240c9d1efb5c8a7cc1a3665d91150f1ee7797eebe3

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1cacc5637ba354ae76b9856e380114a01b1a9c9c18a240da7d3e7095d715b764
MD5 d456e7fed9d72e265806e4b07ad83b9a
BLAKE2b-256 104ded503052651557e87be9e01267c5ddd21a8edc327f84a5ad15d9762c5cbd

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51b6b5a00efea320c10433b7f3be7020c7ea567927191bf1d4858e2f9c22bee8
MD5 c5527f0aebbf8d72d1d46253ea2b19e5
BLAKE2b-256 ac652565aff024e8cf7004f8118d6ac4e2f59c48f0eb0cdff3128d5dda41c227

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e2fbd165a7dd3164828dbb47a4bcf8487f27abb517822b25d5c10203dd306e05
MD5 9ff008c7324a1adfb5772361d007cf2b
BLAKE2b-256 87a1560d42489dcda59bdaf69bd11f48dd3230443aac8c7ecf06eb47dd5f32d7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

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

File hashes

Hashes for complexipy-6.0.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5a1e78602609530cd9b08c2f9e3d58c74c5a52aaeeda40902cec52d1b129d086
MD5 cc3c68e232ca0f3dadffa51a018f5738
BLAKE2b-256 2dfae357b796650c9d75e84971fc2828f9a255cad3673ae5e26fa2c39dfe697f

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

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

File hashes

Hashes for complexipy-6.0.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 27b0cf44f3e58f355d26d3f60fb8714837dce289f88710c2a0a2b205a0a851c2
MD5 69961f8254d749699f9d9ff0acd668ae
BLAKE2b-256 1eed5d67ba2b15cfa9e11bc1f706cceeb5b32697bec57219cf8f382c5ff38a0d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7ce942290f0ec9a1b48458b5ae11f2d12523615c39265b39765deb31ddaf5cf2
MD5 0483b405bd125de7104701adfa8323f4
BLAKE2b-256 41f5dce3afbd72fc46dc42887777dc6d304c261e3fc269d6c4ad632c12128f32

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aab16fa30f2059d528fcdef68dcbe43e75d0c9b29f802d26b0b9d8b3505f4d8d
MD5 a577670d650d265781b89f124e7edf28
BLAKE2b-256 a8439e30febd1ed43acbcdb751bf43c854e6c64f1725296c29cbf59d58334add

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11213177d008c4aabfef41e2b8d210f6ba27dd500e6d93ac3f6663692efb4c2d
MD5 59dfc2451cce069deecf8790c61c177d
BLAKE2b-256 1419cb94f4b79c3eb840edf720b5beb472ffd78e690200409bed581db0fe3ff7

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 056fb139b95dc20df36134b6f4e95a8750adc629d42a9877f74022d9032a5a32
MD5 5df62588e817b9741276b1e83968145e
BLAKE2b-256 cd118f3eb12be2d95f8e6553f06d3d0527cd9923f6f7cc4c3534a0fffe04951b

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 16087785abb9987619a4822baa5aac6c6c7325d90940900f5b341a4d6c0d937e
MD5 f31bca7412f8b8f2a6e2ffa72d630af4
BLAKE2b-256 f874dd4943500f055b19b179320259495d7f347bc52d871706ee93990f65a86e

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f4b051e985ba7c6aab294b8270d6d2fa6928af08109f5d25a943e980b44d236
MD5 0b169667bbb71854cb895f79acb12427
BLAKE2b-256 31fb4a7ac01c2c8c30bf04fb3f81394a9c176abf862d6f393856cfaa9061a261

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 038aa22d6d1773582444e25459fdd0bf921e3567fe1963023ef4324baa01be71
MD5 4d0b351a1cd03b145bee359ace02aa5e
BLAKE2b-256 ea7e97c7ab0d87ede0edab965dcd6da22c72ce55a01565cc09dbeaf8ddc2f58d

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

File details

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

File metadata

File hashes

Hashes for complexipy-6.0.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 751f6cc412f8c5ec7f7ff1869ace3710ccdec10c2719ffac868fe05451a41975
MD5 b24c49b11842a3ad69a4ccb17145cfdb
BLAKE2b-256 6a80242da76306c6cc924ea771edeb93285dcc3ed1e8bc5fdd566b112e6c9512

See more details on using hashes here.

Provenance

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

Publisher: release.yml on rohaquinlop/complexipy

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

Supported by

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