Skip to main content

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
# 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 and enforce the threshold. Fails on regressions above --max-complexity-allowed (see Complexity Diff)
--diff-only <ref> Show a complexity diff visually without affecting the exit code (see Complexity Diff)
--ratchet, -R Deprecated. Use --diff instead, which now enforces by default 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 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

By default --diff enforces the complexity threshold: the run exits with code 1 only when a change breaches the contract relative to --max-complexity-allowed:

  • A new function is introduced above the threshold, or
  • an existing function's complexity increases and ends above the threshold (already-over functions getting worse also fail).

Functions that regress but stay at or below the threshold (e.g. 3 → 4 with -mx 15) are not flagged — the threshold is still the main contract, and --diff only catches regressions that actually break it.

To see the diff visually without affecting the exit code, use --diff-only instead:

complexipy . --diff-only HEAD~1

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

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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ s390x

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

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

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

Uploaded PyPymanylinux: glibc 2.17+ i686

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

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

complexipy-6.1.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.1.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.1.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.1.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.1.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.1.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.1.0-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

complexipy-6.1.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.1.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.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

complexipy-6.1.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.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8macOS 11.0+ ARM64

complexipy-6.1.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.1.0.tar.gz.

File metadata

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

File hashes

Hashes for complexipy-6.1.0.tar.gz
Algorithm Hash digest
SHA256 2e95b556e1d1c5e6bebce84918df4e1f491230dd7753ef6a93057fa0009763b6
MD5 21e0adcbd378e01bda163d349740f968
BLAKE2b-256 d8fddfaa263faf6f866552ae34c7ad475c79dde8e8a2d10c8a45483bd9bf5c0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf3116bf7345d888eadd932ffd67a7e6b2ce01d83b742561104fb5a83bbb69c2
MD5 9ab70b0c05aed06c8dd164196c02cf16
BLAKE2b-256 7a85522ec3cabeea5118126f08ab716e839ee1d864de272742c6bb9e03012b7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a0d51f816bf83617288a21f5d7bed64b9b7b10d0cb2cef5f9ef080aa295e21a9
MD5 0b2accb3de4cdd9797e1fe2cf0bc1dc3
BLAKE2b-256 23dabe6e3582b6775772f6544441289ab990be19659ca8e1137fbbab5d223179

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0bb39162eb2fa0a26877a2432d0300c6e9d8fbbfc1809eb519dfcc62b566b162
MD5 a5785975c31f6d2ce400425542819b00
BLAKE2b-256 22b5db2d356dce2971b5b0eab75481bdeb7c12f23bc7d71785c4223b4bf8f3c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a1ade4758f448d35aea9911da1dd3fc4359225614cd5b222087d9ef256936e01
MD5 43758efc38bb6a2326b1eb86643b95b2
BLAKE2b-256 9078fd1a349962a9cf25cedae77ad5fca4fa123a0e98fe8d1d666969ce45cc46

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ec7c471de442fcbbd92ecc3ffa336baf42af478ed26f29c8ab18685d8be18f5
MD5 cffd36916566708974789537e52b0a41
BLAKE2b-256 06d7184b311dba0dde14fbf58ca1447b3db1af08d272ab5879b7556be84a81a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b2b13e11b1e48b69cde0590ba4e72d01aa1501ee842ac2610dec2e9de207ba4
MD5 d18c9d9ed12ddb5e9aa13bcef4ca86c9
BLAKE2b-256 c68bed693e31cb5cb6193719838db3ee1c9bf240189641085411687173088149

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 12cc9c21f71ab4c7353397d9f302625b1b93542dba656e3055add91b052eafeb
MD5 7ab86dfe4c1996767bf51c7bdb08deeb
BLAKE2b-256 5aa53dcf1b3d3a80f08301a9012077003162cf15baf42f40f2cdccc553e74b3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c64f8ce17782a893fdea9e3c4c34ceaaefb5ef8e4395cbdf9d6611e96c01df52
MD5 c8e9494cba2ff49ce97b7708766049d9
BLAKE2b-256 521a354d3c8a6778ed496c205ca67b973cdfc515a248b9b753a2d683ca75a4e6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3de307dd785ce9dcd39f960f5eaff1bc9eecd323470ef194494e048b67f3afd9
MD5 99ab960f6c75155e7b1e1e22f297eb8d
BLAKE2b-256 ab8a61b12a070493e6b5373153c4153725cd825dec1287b801b0d7190ce3980a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp315-cp315t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ccc154bcd76c5eb436a868e6ede5b1561a7e13f94f0b040b4b34116a073c80c1
MD5 def84ab085c34a1a8bf1d379031c6ac7
BLAKE2b-256 ecb96c6100e27961fcbc710edf6c076b40642cd19cd4c561d1eeedb60d185bd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 851180e730f0054508b05e507b842a2d20715afa05b48cc4f59f815c2b584917
MD5 b518b3ab33732eeb1ea9b2e3e5591c8d
BLAKE2b-256 746e1830b8e96091aff250bd94b2d37f3f6188c51c86f698f2a11a77813663dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp315-cp315-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d4091f1b9ac2b99c0d894644a2d64e915ef9a3588d2ac441f1731e06ce353d1
MD5 6ee541e3d0faa726d7877f688693d015
BLAKE2b-256 1a641d260d98d07627254ce0525eca76d95dc3ee37fae1b44d366982f467900c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e1446a8b876e845968b645f05250594cb63b4b8ad27b0030a5f01032d4f3c00
MD5 5aadda4053347e696efa179f302a3841
BLAKE2b-256 852269751ccd6656ff9de548a80e68804593a615716d0330f223ae18f3cd4cba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3115d7203281ea570253d8a5932ef3f07c66acd4c7aeb67abb232ee797e110ee
MD5 11602baf20724ecba0ccdb0bbe3805ac
BLAKE2b-256 64c4251ec38a540a816ec320859c2d60db48d6b30580f1e40824552f574ea3c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60b0ddff8887f30e8e6682dec0c8f373f174154a3a44906d68a37c445b535844
MD5 0b7b897c87f032ef37129a6468a23973
BLAKE2b-256 590228ea1db20f0cecbc9cf3a6b13e93bf0343800b21ee95ec5f31057ac96d9f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a96dd22b228794d3082bdf26490da9dfdc9488a8cd5d21f2860544b8e36dbd1
MD5 6f06db75a105170d4091a10dce51cb6a
BLAKE2b-256 2ee56d4d92e5d7cfd2618aa9f30aadccaeeefdeaaf40ee505f28b18f9b526c2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 483e47bd472372a85aad6267274b3ecddd3be9703e36073b000f927f56352e61
MD5 54cc6972e726f6c74cc815c4467e33b4
BLAKE2b-256 a82f36e8218470716499f6a31bd8b0284f786cffe6dd8f8b9432a8a06643a6f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314t-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3721dd671add7b6d41b1c83351b976c7aac502a4b3b0729055ddb17ab6109418
MD5 aadcdacd9821a404c2a06f9ba9f7040b
BLAKE2b-256 e3262a46992b3fa5fbd483dd91a56ac511ec415e4f6840ceab843bfe4a54cf75

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 24b08a5b5b26904f6fa982ad42ae57dbcf7f692a8d80a6e221fbf6dfa267c584
MD5 205ee91a3c982b715dbae70123bb7c7d
BLAKE2b-256 f3c6afb6206734e6ff5509feaedb6a7fa3edfd0f2576e7373a1bbaffb18b03ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a08d342306ce67cbf4b65b71fd2bcc087d56af52f6480a1dced96e80c51fea8f
MD5 05eb5877181d1d280f252cbbce08b818
BLAKE2b-256 17d8675d5ae757b9d88f2f33cc75a2781d0508e0787e582538e37f2c61b05994

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.1.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.14

File hashes

Hashes for complexipy-6.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 949f047448dcc159d04c5813ffa053d95e3a5d045eea76e91dac2422e18c6a95
MD5 deda4e8a851eee4f885da373d51effaf
BLAKE2b-256 76ab676e1ebd572b149c22527dc07fef8525851ae43d53aef618fdd8d335d5ac

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.1.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.14

File hashes

Hashes for complexipy-6.1.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7d46197068bc95a998f59bd903124f94679ed147c2e101d517526d3d12f662c6
MD5 f0aa41829abe70a62fc312c1ebb96170
BLAKE2b-256 8d89ae4ebaef5abd469a486a7b0abf96b1df8fe9507222c202589c12888345ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a2742bca1bd77bd8caee878c0601230d790a27a944d5faffca16d34e318426f
MD5 d7a9637bdc4f6d60765ef9eea9f49407
BLAKE2b-256 231a483d5f2296cb816e3cfd58cbf09298bd3e06afaa5eaac27b0ffe069f88cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 413a5c24ed46c371d0762e7a1975eb1ac90b9fd21634f836cba036012efc7c6f
MD5 31af15af52f94befa2c58180b1665ee5
BLAKE2b-256 69d87112ae66ed24c06afd3a68e91c7eeb951239e18491cf8002a870b27f6b88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ab7e640286d3738066600e558b4bdbb652c2257e8baa25f1f38ceadf7dfa4ab
MD5 229ac325ef6eb5ece92b7270714764e4
BLAKE2b-256 5c9809aa4df7322e76c8ced1e6fe1d1dcd6e058f3ec2979572bbc2e648cf782c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 220df95844618357994c83c09c3ad5f5544101f0d845e77ad1e179d8f01b2206
MD5 779c981afa39b67b4ec3d99de5377999
BLAKE2b-256 ed02f0dd1444e186d422f3d7625df6e573b01a1b52e416ce1ba99dafd0b77b99

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7fb45db5a1e72d84d8feca67f420c6a5d1f3e09bcf4104e231e447f8882e32f8
MD5 c50f111686881bb5a58636693a571853
BLAKE2b-256 913a1c962d210d841cea19a4c80b6c2a01611e30c41e7b9e39c48088e2e7e48b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 7614b78da92160ec2bc4c88e91ebbd6eaa4b2bab50854964cca1ccf3bf582b27
MD5 fd943ca5088ac0ecc6f8d23845e0ed6a
BLAKE2b-256 9f29ab0fc34bafe62ab8c824c472875b09af2e6f236aeb8728b33cbafc4177ea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 35c632b53dbfbd51f2918cc54f97e142c44179c7bb19884bad8b9f4ac329a746
MD5 bb4e8533f0be47c1e30f5f56a75e6271
BLAKE2b-256 165639fe7a786cf8f976ad950b6576b707190fc9a36ee79fc535972f33496601

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b8577f3668b9cf102592619ad34051f9ffdf70c5184564effa2816da1b81b46
MD5 2e82c72348cf0131c76e8883af0b5720
BLAKE2b-256 1c70709045f46d3bdc51b68778847a16c0bdafaaeaaf38a884ab5812ff6ce061

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ff37e5599071b5429220a1f0a367e4707e0709b2e39a4d6d3d6568c5c022c8c
MD5 a8266e66f6ce086db3ee238227bc364f
BLAKE2b-256 1813d0b143a6bca9ba5196fa3bbed2ba4c703f4f9265e3bf252da5e2079ad7f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6db0fbbde68e6765606b74dc5d9a3d2e436a06d0162ba3ae23e49d5024d77423
MD5 51d054d74b7a31a0c2cb5958dbc20b9b
BLAKE2b-256 ff0198eae3cfffc18eebf6acb309eb5d3162eb9df03ac1cffe52c3c726f8d8fa

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.1.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.14

File hashes

Hashes for complexipy-6.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2a764e69fb3af86c5af966083fd3f182bd7b611229e0c14041817941b4d88104
MD5 3a0a749a450cb9accc0304f833f5ca30
BLAKE2b-256 2d893ceb15bb33d3424c97deb5be8c10a927436df96cd4ae6b7edd849ea80f74

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.1.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.14

File hashes

Hashes for complexipy-6.1.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 723b505b8a29e9a168f6fed9f4ff72b6c9442e7f5242b65245b2587af3d75c5d
MD5 63665f11a10511a91f4f6e620c378cdd
BLAKE2b-256 878412a41b0d3ee4c0cd063687e493d4773ece1c3f9227185ad0f1302ba37295

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0b9acb8d2e9ff6991d3c2a5323c4f93c8dead654ccf233d4bdf9642ad0d7919e
MD5 9d37705f736d437f512de47ccf78a39e
BLAKE2b-256 8fafb0ca0b3d8ce5d2f5f39eac16774b5efcf3655070daba1e06d151621c3efc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 23586c2d4fb6b6ab55ed91acfdf541b6984f037ea1b5e30e85a5d9f8e34df029
MD5 832bfcbc8e35d3e0f9ce2e25de266e24
BLAKE2b-256 4ea5b6aad3edb95763e9532c8ba50a7d892720fea11a6755c8016cd1355d8c25

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42f9d640b4d32a4b8890538c1a926542cb5863a872789e4b87000b0fd143fa16
MD5 203a49de3ebbd9fc889ffae47427fe76
BLAKE2b-256 764dae43187c7e14a92f71a79a053f2373d4ea1e441474eab4348c3e85a3af56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 979ae781453ab4aedfb80005215a33c7f686dbc0cca2fbbc73f7cd661bd395e9
MD5 b2387faab862444bac6f7523f2b9f4a0
BLAKE2b-256 5060954e14049dfe1fa40c404da84fa1ea31470217ae16ad8eb23f4dfd87e57c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2b8548df29ccbfa5faa280ba90a53412867e361406d8450fabe0ec0de3b565e
MD5 fdb1ca7dfbcf5d696cdcbc5472b7479e
BLAKE2b-256 1e56a1200b84deaf74a23b891d0b079d56efde80c1eaa3efd5e81a80025c7d95

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 31a0f75eb9352356576c46cc291ff838f877be88d0e674d0c33e64057076e513
MD5 0b58371140d7026c2e97ac046c5117d6
BLAKE2b-256 d618df45eff4f8888e502f638560f426d2f1f9401cf49a2186a0486284794dd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a8f0b2a4a78639ebce52f4539781b7462359aec00168d174070e0cb9fe441bb
MD5 a2406467fdb84019d9fa29cce547503e
BLAKE2b-256 f7aca4bf72c9f8b0d8708de47bac2aaa25dc8e0a177ee34f0b8bfe3efe7f3840

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53a503610a8ebef922fa4f5a54255514e7d9be4a9f0cc696d65d37fd6454b21f
MD5 05d829683337d2fb258903b30e251789
BLAKE2b-256 1547d4f5387d51684854f6d5efd1c5cd8978ede18736f1781c051210621426b9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 945a6bd6d4d12072da33463dbde5e1c535e7f110007aca2d27cb0c9ef7355e11
MD5 09d4fdcf43f642c61604ec0aac42243b
BLAKE2b-256 81762d5fa2554df3ef38cafa1e0744126e4c6aa419a6f1f907cbe068b3b06618

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 32474dd260fd4de9f447e5d78ebd9e31ff80f8bff97b697fd999f07c307fd0bf
MD5 d2c8b8f7176e741fc489e3564c0ca205
BLAKE2b-256 2f641f26fd7fcc5f360b71dbb2824870856cc87446f5116907145b49ee5a56a1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.1.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.14

File hashes

Hashes for complexipy-6.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8695daf039d4bb13ed0acba2dd5d5cd94a247e84ff9a9f632a8c136f3ebe2154
MD5 fc140c33f0c7d61f51a8cc94c545536c
BLAKE2b-256 5d2406c765985735c38f34d537cb94fc5ecf0a49102db9e62e8db7516e352add

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.1.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.14

File hashes

Hashes for complexipy-6.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 727868a526e9b6e523b51f382c0da106c91be1f418a3eef33651ae63c6601ee2
MD5 40e5d03d2d46003022302207b18cbac9
BLAKE2b-256 a7cf5cda5d4d85ef805e7417f6171447fbf2300849fd6d5a44363b9be6b09940

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a8fbb647981341c333c3c5eb8f8d196827113c50556a8b11e7c9516de94050b
MD5 9df91c0984a743fbc04f35ec7467b1d9
BLAKE2b-256 273663506e1e20a406bb920460497a2d08a6b6b69046d2d385271b982963e838

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 145985d41fc6228d1ee8d32fac482d616389b83589607167d5432645077252d8
MD5 1814599c48ddc8580a2a46a6fcaa6e8b
BLAKE2b-256 bc8b50719500a3a029db1e5b8eb7c850ebda0d1c88ae02a7b875fc57a30ea9e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da550255d1e98410d1c9a4b7fbc317c55a6d01e0abd00a39a4a987440e29eac0
MD5 c5f6e23d8761992b3c946031054033b0
BLAKE2b-256 2e81e911ac8ef33bbe9488c1a8b8672be221239ca654753cc65532647c4e9e79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cbbca8d21be855d96922182567a7f960d3e43261624c4bf3d75e681caefd3a52
MD5 81651a3450356bd4f5509aaee581eea4
BLAKE2b-256 f31b3c3ad1f0975ef37a01983f0f4c2b7d97683dde0b05eaa4a5266d1a6d606a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 60971fa1af9d733dde5e3b74f5754601cfbd0a80a8a79ed6ad611d9cdbbc8ebd
MD5 2776e079f95021faf3ac15f278370bad
BLAKE2b-256 ab629a69dde479f84e60eea8e25c86f85b9f739149e182e360014c0cbdbd10ee

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 25841eebeae79a9bece43b4a0fc6122daf2754ae38c1592ec40cfdd79abf06a1
MD5 50bfa89aaf17390f2d11fcbe198bddd5
BLAKE2b-256 5b9f14ab20e6dd5ab373a7eed7b05bdbb7115227578f84547fe34cb7c20f2e4f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d0d99cbe66827c6a65e5e87ac9c8c1c0c59b6341664e14dbae28347fb583ffd
MD5 7faedf55c6135570c791369ffc3dbe18
BLAKE2b-256 e6515ddfd26ad1ea17ae18394cae2a26fb855d5dc76cdab02a9b69978a177e18

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ca54e08c608ac2bdf193f2964810885a94e8d635162c797f4181e3f02616fe8b
MD5 d21c09ca25b5eb5babeb999590a12fe3
BLAKE2b-256 e3d024af023a8dc52186197f8267c5388b87d1cd23bf0fd5bf200a95d444c42e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 005bb5cf503085ed4c6eb71f05b382955cff04da3ca82e6ae5a4cec8931a2684
MD5 a6c1c0360ebb586ea620ebed0d250052
BLAKE2b-256 e292fa707ac54354781f40acb90a0be05609a943947346ef90a8c62a7a0fc302

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7049f7b863c64dff197cb61a9b4f5a811131f7342b02f0bef85dd2f756cbdfa0
MD5 89e93fc9cb0e42ea999e1ef343f7428c
BLAKE2b-256 cce3e3b635c9d7a6ce7a3306a0e054c305f41d693968addef683fe1bd4873ada

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.1.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.14

File hashes

Hashes for complexipy-6.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 839120b4ca623b333ccd870be8615b29e191512139208009d841c9a2119ddbbc
MD5 145255f05f6ac23f122cd353173a7482
BLAKE2b-256 a3a7c15db11299a29cfbc57ea5d23064fd2ed19f6a4cc85bc97203bd28ce73e0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.1.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.14

File hashes

Hashes for complexipy-6.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0b26c5d8996173638ab7f6c1c24d853037aa868bd5dcd31dead6c06ba945de5c
MD5 733ac4e02bc40e08e7c0ac28d2132056
BLAKE2b-256 1d0610bd96aa2eab67b1da603e32cf198cb682f70fccc0b096702216fac3b612

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad2b6f1c66740b6d22f4aab50c2ce632b8adfb27696ccb7f013127dd8e392d2b
MD5 9b8eafb8c3f14440d46a12620bbbf625
BLAKE2b-256 7cc4561d63b6932b011ad37e16daca0b521193d2bb599de5188fcc2f2cc8ee08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62e87fbb39a4d3f8cecd15566b9b72ca8c7dba49669d10c9735ae46399fb5507
MD5 4989c9b6475fc6894717587662d123ff
BLAKE2b-256 a35602d5c2bed94920b88be369bff7447307ac4aa7e7d1c4d7950fff4b6c2f22

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59b06e40f0cde9537612d680efc7261a9fef2361a16042d07564dcb015648349
MD5 c4d44d1e37aeee3a98197c1cefc14718
BLAKE2b-256 ce8eca1c5450babc85e5229dd167f61f95ce066a5e6970327d27b917cb2e9eba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a7a3c26a80cd3596c43e21bad4e70a9c3539a3b2074ac5fa59aa27fc78526b7c
MD5 e67e1377d5964a768e9fcbe46b6b5ff0
BLAKE2b-256 781c3581b78f37f8e265f6959439cf5f5bfe24ed3a1d4c2bb3ea4318a0ba7b93

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 151aa0c93face042cceacdc796ea8245ef6680e87c5fc6b7aa2806338ffb054f
MD5 38bc263646d439499f2b5337b5c5d4d1
BLAKE2b-256 c141dcd6a3bde786d8e23c7c5957cd3e89f9e1d43ba4ec7dd01c77dfaacb458c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ed4d2bfb2530108a2c989ac10025fb14c7ba061a9d145b30df3c35011dec4e75
MD5 00521f05d4f8a7c673e69f05ed5416e0
BLAKE2b-256 817e8ba7c591098aa8e8a8d807a17198d099383d58407624ebb603792417b022

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f0a18dd788f7d6ecd7a7c60e3d13caf1654ac09671457b5324982abfa2740b14
MD5 b412f83a730dc662ac96e3cd19bcd678
BLAKE2b-256 2e3d14e783483f67d39c9fe81cadf64071b762a180727090ba18905cd82e6bbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c9234b0d55b08cf741698d42aaa4795dcaf0c62363c6e99dc96f174a34c4825e
MD5 6bf80214bbc5db780caee722ea6186b6
BLAKE2b-256 4a49c310a7335323801c0e65582c169fb602b543b95e2eae890b02edf9dc5118

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e445d5b72a2158d298f1bab629ca9f0f86f0177cea99607b60770109e5b673e2
MD5 6cf836fcc54fb628c03b6827335c131b
BLAKE2b-256 88d2e36a07617f18c350d8016025f2d65e534e36606ba0401224506c5c75656a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7cc1e04299dcf84799c96531cc31499f963194130d32d9d397fa01114f58bf65
MD5 7f7d7ec69f3a8a96453c1d02c3ce71fd
BLAKE2b-256 772196083b64f58a545dc103fc7b2846ae9f5207980f770c299609b948972ea5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.1.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.14

File hashes

Hashes for complexipy-6.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5c88d994295b78aaeb9bb13fff69b8357b7f97560ecbcba07b096f2bb702aed0
MD5 864ffcb5bb807795e07cf3ec68daef53
BLAKE2b-256 332fb643cda4f779d55d09b64facd358c45d33914587a26a2ad00c5fead1f92f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.1.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.14

File hashes

Hashes for complexipy-6.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2f75e310e6122d4c73e94dc90b7fb319bd8e3d21bb5fef3dadeb18581cd46ff0
MD5 d3b8e1e028090e988c9d1807c035cf8e
BLAKE2b-256 6c50a586a1c03fb3700de989fe6c0c4d16ae003938367309b6b1bac75347582d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c550ef6525bbe6636df4918e911599535a2e226a97392e12fc11d6123ba40d54
MD5 96b25ce7f27c82bce5ada5f8f157d361
BLAKE2b-256 64339e2e9947a1496b10ec80b33cb666f404d2c0f84099dffc028e0474bd2627

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d96ba3e198baae62c08cb0df18593a71849c0e3f60a203c668eb91662926d819
MD5 70d2806a227b724977fa52470025e74d
BLAKE2b-256 f9a24d0735eb7822bb04ada06c056e8a3afd50b7ff6e8b65991165bf2c98847d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0039c24a3dbc654ce4339f4a0347eb57c72da6eba319b54479dae53525f4617
MD5 20eab9d04b39ecab4c690adc5dc38967
BLAKE2b-256 c5515dbcd9efd465c50d8325c2cf2c159ea37aaea94de1c8433b4bfd1de74a2d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8eaa8488516c3a3d74cceb88ea678cfc4a031a9f4cb6f6334aa845bd9740d139
MD5 091c33373cd76f5b58b9d37920e8602c
BLAKE2b-256 86c06af2136629ccbb2dd34f759111df7afc7d4856955b217180633a638b794f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 671b15d12fed9eafb1a20719200f080073e053e74ea9ea6905b12313e62f38e6
MD5 31b61f856f4120fe92d825c9298919d4
BLAKE2b-256 81bc084111dcfce1cc5c1afab3169df69ae030062c627f8421034ed6fb6b6e53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 44ca2062d5383cb815fe4cbc7821610d8373f312708a9933d189e50ebc572b94
MD5 4ede4b6778a23d19a70d4175d37c360c
BLAKE2b-256 0d2e2c22a5acd50d7cb93bdef01c28f8f628170595598fdd290033a8bac6081a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 31fb157216a65bfb3f02cc73e14550fff57cb60a9c045a7e00ddad0cdc9becbb
MD5 42cf4ff31b6581ef9fbec05c731113c3
BLAKE2b-256 9befd7e553cc974244e2dca522d788c3f05c4dbed16f3b35356f121ba8effca6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a1ab33fe422717efdf3f70431ae6c66fd9e6f914636df6b588580b41782ac2c
MD5 ddda06a96d0c593e83642b1df2cd7112
BLAKE2b-256 dd49520c09e3cef9c34faf94d649d103631c4d7b9d1d5c2792fc2b438ae53d41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c91fa95eacd8327a7b3a47d478a897539676e6013f82dcf1a4ae31923d053d69
MD5 239b71dbf782899fffaeb37048f98f0d
BLAKE2b-256 eb3a9069ee7d3757f5bee54379486926611b046ae4f55764b8b83b505134562c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1bb44443b6220bb50e3785d54c6f35f7059b1f938487fdaeb1c14bb4c8321393
MD5 b0449eb64931ba620e582174c3b5b740
BLAKE2b-256 3b667ce39347bc4ee76a23ec12977ac3879b609e22ab9c17b2926ee4ba427c62

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.1.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.14

File hashes

Hashes for complexipy-6.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 59b7ce97e9af3658a409f09a5a07fcc8800b703beaf1785f6e0e868968fd0fbb
MD5 5ea341a83923a4899df2b57890f652f4
BLAKE2b-256 6065312a16eb1855f16719de590923e5bbfeb8a93ce2e19d7499ec7dabc7613e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.1.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.14

File hashes

Hashes for complexipy-6.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 70251bccfe65a1e1e85cc128f3dc031b17f5b969ea8558e04f045bcce216ec4e
MD5 d888d1ee6829e527d01f625381eda49a
BLAKE2b-256 b2d856f2f4321eeec33ae107389d596dfa3686edfcb3d578ac8f9c601b462716

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e08deb3f68990b0f5f7d155e83e84321443dfa89776f93b3681b9c9859d1f118
MD5 439f8101d6b074e798dbc2b862ef2d3f
BLAKE2b-256 855f53516b7f0a153f16ce8f6a7d32a68f6a1447af1c3d1b3da678c2e63e5719

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e3a6fa34d3e179716152d941be27bbc09a3dd6efa01b93e9c2ec5cc0f33e884
MD5 8ff9e034b1616f79abee53249d282184
BLAKE2b-256 94bbc0bc911158350120d01c21d61472ae8113fd71db64bae579f23bec238657

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1676fa9d02b1596a83b7df93d2f29a9fd77cfa4480cdd5f58f69f0537c2c05d7
MD5 1b2de5546b048b34198de531e560e518
BLAKE2b-256 6c515acbe67d467fb40c1d0b58997d4f84e96b29ec01d0781dedc04a81be2a3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c68516d55424b9b0a71afe34666baafcd00ac23b77b3871c996ba7be9d219f2e
MD5 4e7ca2780019cbb5e22d699de9659fca
BLAKE2b-256 64f24c336bd2d2601dee60a6785a8903912afc178752988fbbe810c43d1e4e5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a738d994e06114e3ff1a233140b9c29f8d9209f26a0f6c65ca02cca56093aae
MD5 06cd44c6929aedd4664ce56e60436d91
BLAKE2b-256 f232f3e207d956b411a1baf7eb162eed9cbf72cd427cd5617b8110fbd2e9ca2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6c5328df71accdd711aff1d7562436f98792b119f9472feadb4a260b9519b6fa
MD5 6efd673376b56dab6aeba29ac80a5f34
BLAKE2b-256 1d18149e4698da193780b5fcc86173f56bb050d160704d8b948ef4d93e64538f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3804d1fa56f5af3c1b1d110306b9a9271b63ec0c6080e2e05d43cab51e2eb661
MD5 7dbe9308548d14723165fd88f684b2d5
BLAKE2b-256 80e280733aebef7495dc60c3cfa31da4733bab8245a2a9405d6493dc7ace4764

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d25c642a6cc332f093ec5c306276fd5d9afc351832297afa1d1ece9cca8d242d
MD5 249392eddad022e9a6a1fcd9d5b84974
BLAKE2b-256 c8e97ce70eae843dc8567e2f895a5862dec9191bb55edb58b9cd9824f4b6be33

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a47bb4baed1954b439f90774135bda19452e3786e28bb161e2516e3e24610342
MD5 d0c18f00d983a44c93dcece490400892
BLAKE2b-256 4fe96bbd26026383f7d735ad861ee272c2bcef98c8762073bdb20e458b599964

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 71f9e49c33aa6367bef6039c6f58e437384ed282b1cd989b8a49e21c30e8466a
MD5 a7efcabcfe8d901018f055eb36415765
BLAKE2b-256 65d60cd2b59af90a362afd2e743570aaa2d520880b5d075f928c76c553049c9f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.1.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.14

File hashes

Hashes for complexipy-6.1.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e1584f056975fbb75acc4736fe38edb6b6a8323d19e27754f25340d3b4fff5f6
MD5 ef7a4a6f882a371f1ce3aec65dc28583
BLAKE2b-256 2dcbc7d286c9a70d0be62b9f3840b6c3cade139b8eb1920dee263daf4e8ac8a5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: complexipy-6.1.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.14

File hashes

Hashes for complexipy-6.1.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 5019b2775164a999816cd56be25eefaccf08d87944c4fa938f0a927079a5cb8d
MD5 4047e0ea0a9cfe1ded647db58f551f17
BLAKE2b-256 de849d1ed64ee41b14a540c05db40a2ca6833bcc0542dbe8217309b247ba591a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae7fe63df9a72e8e4db3cc63840e542e0721bea1208c90d6682b269bb770c8fc
MD5 960e88aee45bbf0805c537bc2d00b67c
BLAKE2b-256 74c30a7b8e1ed09c451df2c5e1b1828fa4d676a9a068e825220fda12ca9cb187

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 753d4f13d9d83894344e1ba7d6d261f8056002336e24afa245d835cba6a12d10
MD5 2f8fe380425026a21d697c9164774d16
BLAKE2b-256 55cd24e01f406e7921cb97ed0d464e10782012260929e831012a5bcb07b89876

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ece4704b8a4c99dcb47eeb2d403d691c50a7fd3e436e1e473ac9e47e0d5fc365
MD5 725b87d7970a146a8ce0ffb9f8295743
BLAKE2b-256 2cfa7f6df1006bdda5d4337a1010606da74c39312b83fc03630ba56d7749be53

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ecdf42f142b9a454f7b7c0348006be1d03cb820256c02fc32e3221a81745d5d
MD5 81aa07e552553ec4b10accb267e5381e
BLAKE2b-256 b08affccba3c5782ef9b40ebf876754984d0d1c6ae6157310449fb73dfa1d590

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7270c768b49c501b216acd7e0d4b6fd3b22921a2faa0cb3fdf2c5644faf51f70
MD5 e28e88d9c3c38f5ff0908bb5aac0f3cd
BLAKE2b-256 0045c887e8f3c3a000ecf9dc57dcd9c7d7ab4f179f019607c12351a61f8bf670

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec8c6865fe692920f9d6588db8556f266965d50dd887263f4828fb184ffb723e
MD5 63e48eafb6a3b1e6497eb292157dd686
BLAKE2b-256 f9ffbab1c553e15edf936bed742090e87c5d6a9956b1e314c37bf69d14f296d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 083d0323a3cd37afbadadba683460b329041779f93977436dfba9d81d0aa0faf
MD5 3bc84f09e5607aedf70f2d2348692574
BLAKE2b-256 c73e53eed9c1da0fed88a6bcf1224e84bd1e4f48e118f06c3db0cf8d53d808df

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for complexipy-6.1.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5bf0a5ca91723c2a0858e5cd2855902a8b2a58637c5775f10580f130a4437419
MD5 00085f99ed1875481379bdf1d3a769ae
BLAKE2b-256 1d404132a228d9770ad3d369bfe5734f338efbb5e323707679b86f86e4175ab0

See more details on using hashes here.

Provenance

The following attestation bundles were made for complexipy-6.1.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 Sentry Error logging StatusPage Status page