Skip to main content
OpenGRIS Scaler

Efficient, lightweight, and reliable distributed computation.

FINOS Incubating Documentation License PyPI OpenSSF Scorecard

Documentation: https://finos.github.io/opengris-scaler/

Start there for installation options, command reference, worker manager guides, scaling policies, and examples.

What Is Scaler?

OpenGRIS Scaler is a distributed computing framework for running Python tasks across local machines or remote infrastructure.

It provides:

  • A Python client API similar to multiprocessing patterns such as submit(), map(), and starmap().
  • A centralized scheduler that dispatches work and balances load across workers.
  • Worker managers for local execution and cloud-backed capacity.
  • Support for graph/DAG execution, monitoring, and task recovery.

Architecture

Scaler architecture

  • Clients submit tasks to a scheduler.
  • The scheduler tracks state, applies scaling/allocation policies, and dispatches work.
  • Worker managers provision workers locally or on external infrastructure.
  • Workers execute tasks and return results.
  • An object storage service stores task inputs and outputs used by the cluster.

Local Quickstart

Install the package:

pip install opengris-scaler

Create config.toml:

[object_storage_server]
bind_address = "tcp://127.0.0.1:8517"

[scheduler]
bind_address = "tcp://127.0.0.1:8516"
object_storage_address = "tcp://127.0.0.1:8517"

[[worker_manager]]
type = "baremetal_native"
scheduler_address = "tcp://127.0.0.1:8516"
worker_manager_id = "wm-native"

Start a fully local stack:

scaler config.toml

Submit tasks from Python:

from scaler import Client


def square(value: int) -> int:
    return value * value


with Client(address="tcp://127.0.0.1:8516") as client:
    results = client.map(square, range(10))

print(results)

Learn More

Download files

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

Source Distribution

opengris_scaler-2.7.0.tar.gz (6.5 MB view details)

Uploaded Source

Built Distributions

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

opengris_scaler-2.7.0-cp315-cp315t-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.15tWindows x86-64

opengris_scaler-2.7.0-cp315-cp315t-musllinux_1_2_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

opengris_scaler-2.7.0-cp315-cp315t-musllinux_1_2_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

opengris_scaler-2.7.0-cp315-cp315t-manylinux_2_28_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64

opengris_scaler-2.7.0-cp315-cp315t-manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ ARM64

opengris_scaler-2.7.0-cp315-cp315t-macosx_15_0_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.15tmacOS 15.0+ x86-64

opengris_scaler-2.7.0-cp315-cp315t-macosx_15_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.15tmacOS 15.0+ ARM64

opengris_scaler-2.7.0-cp315-cp315-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.15Windows x86-64

opengris_scaler-2.7.0-cp315-cp315-musllinux_1_2_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

opengris_scaler-2.7.0-cp315-cp315-musllinux_1_2_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

opengris_scaler-2.7.0-cp315-cp315-manylinux_2_28_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64

opengris_scaler-2.7.0-cp315-cp315-manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ ARM64

opengris_scaler-2.7.0-cp315-cp315-macosx_15_0_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.15macOS 15.0+ x86-64

opengris_scaler-2.7.0-cp315-cp315-macosx_15_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.15macOS 15.0+ ARM64

opengris_scaler-2.7.0-cp314-cp314t-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

opengris_scaler-2.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

opengris_scaler-2.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

opengris_scaler-2.7.0-cp314-cp314t-manylinux_2_28_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64

opengris_scaler-2.7.0-cp314-cp314t-manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

opengris_scaler-2.7.0-cp314-cp314t-macosx_15_0_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

opengris_scaler-2.7.0-cp314-cp314t-macosx_15_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

opengris_scaler-2.7.0-cp314-cp314-win_amd64.whl (5.4 MB view details)

Uploaded CPython 3.14Windows x86-64

opengris_scaler-2.7.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (810.0 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

opengris_scaler-2.7.0-cp314-cp314-musllinux_1_2_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

opengris_scaler-2.7.0-cp314-cp314-musllinux_1_2_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

opengris_scaler-2.7.0-cp314-cp314-manylinux_2_28_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

opengris_scaler-2.7.0-cp314-cp314-manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

opengris_scaler-2.7.0-cp314-cp314-macosx_15_0_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

opengris_scaler-2.7.0-cp314-cp314-macosx_15_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

opengris_scaler-2.7.0-cp313-cp313-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.13Windows x86-64

opengris_scaler-2.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

opengris_scaler-2.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

opengris_scaler-2.7.0-cp313-cp313-manylinux_2_28_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

opengris_scaler-2.7.0-cp313-cp313-manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

opengris_scaler-2.7.0-cp313-cp313-macosx_15_0_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

opengris_scaler-2.7.0-cp313-cp313-macosx_15_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

opengris_scaler-2.7.0-cp312-cp312-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.12Windows x86-64

opengris_scaler-2.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

opengris_scaler-2.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

opengris_scaler-2.7.0-cp312-cp312-manylinux_2_28_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

opengris_scaler-2.7.0-cp312-cp312-manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

opengris_scaler-2.7.0-cp312-cp312-macosx_15_0_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

opengris_scaler-2.7.0-cp312-cp312-macosx_15_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

opengris_scaler-2.7.0-cp311-cp311-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.11Windows x86-64

opengris_scaler-2.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

opengris_scaler-2.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

opengris_scaler-2.7.0-cp311-cp311-manylinux_2_28_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

opengris_scaler-2.7.0-cp311-cp311-manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

opengris_scaler-2.7.0-cp311-cp311-macosx_15_0_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

opengris_scaler-2.7.0-cp311-cp311-macosx_15_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

opengris_scaler-2.7.0-cp310-cp310-win_amd64.whl (5.2 MB view details)

Uploaded CPython 3.10Windows x86-64

opengris_scaler-2.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

opengris_scaler-2.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

opengris_scaler-2.7.0-cp310-cp310-manylinux_2_28_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

opengris_scaler-2.7.0-cp310-cp310-manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

opengris_scaler-2.7.0-cp310-cp310-macosx_15_0_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

opengris_scaler-2.7.0-cp310-cp310-macosx_15_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

File details

Details for the file opengris_scaler-2.7.0.tar.gz.

File metadata

  • Download URL: opengris_scaler-2.7.0.tar.gz
  • Upload date:
  • Size: 6.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for opengris_scaler-2.7.0.tar.gz
Algorithm Hash digest
SHA256 eacc994c02cb3892d95bdc6feb8d8c4c28436b31b0a47b5918550ca8793b2e7f
MD5 2380662a7a8df586f1baf7d3b75c6ad8
BLAKE2b-256 fa8385e1197771c9b951c112410f59a0e65777fa5f175dd8a27b0b8f711e9153

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0.tar.gz:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 e0bf05e00475c101f0b2942fce1a5515f47ad552f999961d66bc575ef2eb38bf
MD5 845a5fa12faf82a65dfe1356fc644203
BLAKE2b-256 29fd54a9b62d1eb1e9ad018596759fa6ad5acc6117a8601d6e5ed208d768a8c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp315-cp315t-win_amd64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc18f12ebc2263ace232967b2fefd16eb3883d0aa6ea67d247412b7b54906e24
MD5 6bdd9d9c09a4bc6395de101099f0afa4
BLAKE2b-256 bc5a2bf11f62578bcae5989d4411d1be46947603f5fb04cc751fcc06af53b6a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7f31579db4aa15f2206c5bec7915aae8cb1167dcab854c970e897067c0e4a030
MD5 496fafed3655ad112dcbdd3e693158b5
BLAKE2b-256 2953d30beb18c311b11a93c2955a3a89ad97bcb1c700247a10b7c1e9b14d0c81

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp315-cp315t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp315-cp315t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7c2434435b1a32936fc60ab48ff13c36210d5c55e925d09e72cab52db4e73374
MD5 43398bbc7f7c8791617f4c1d18067eff
BLAKE2b-256 37c6f39b94041998389d27b63e5f2d586642a53fa31c4d6b2a92daa9e46e26e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp315-cp315t-manylinux_2_28_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp315-cp315t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp315-cp315t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da909f1ca96467ea531829f3570d449ecb9c8073b31688cf97805fe7beca5027
MD5 03ae16448d1d0122ae10302f584894d3
BLAKE2b-256 8eb3e954d85ff38c4f01de721df74687c5822fd08f830c3d27340d2243a48f51

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp315-cp315t-manylinux_2_28_aarch64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp315-cp315t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp315-cp315t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 f5d9d2ebc8131a004897cc797e2c592faa17b341cad019282e4d44864e8b0d18
MD5 a2ded6bf14e2d6bd31c065051ced5d2d
BLAKE2b-256 4843ef184b58d2bf619ca3b7f1cca3c931026bbb8d0a2bf18ad01b9868e74946

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp315-cp315t-macosx_15_0_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp315-cp315t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp315-cp315t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 eadd6be1a788bd3709b93d841c0b6e468dd01577158439aaaefaeddb65064d52
MD5 96c7890fd31f2308c9115cd84e62fdfd
BLAKE2b-256 8b6c6732f587bbb16e8553be3edf716283070b44e1732018c2825bad46246995

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp315-cp315t-macosx_15_0_arm64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 4248acd3457f42ad0ab7dda6292f04a435f9c4fae4b920d9d2a4d5faa86a1e82
MD5 a1e1e85f9c787a84eb02c5e3f72540eb
BLAKE2b-256 e7cb2479e9193e5ef35f79262ef5c1c68813e98e70b4e01851d219d5065e5a35

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp315-cp315-win_amd64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e7681efeff96318161cdafbc6c5df9dee89ea06440f3afcf9cd4ba2e2a292e0
MD5 904f13e13fd6a78bd8eecc3623666ba8
BLAKE2b-256 2f9ba19a8bd0f11793d185e9df747e739fb2d3a63acd8f2d49e1de72766e8c81

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b834de9a94beec79479513e5297c58e5290f50f25899623dea0371580e539789
MD5 1f176b60fba46dcd0b22328a14c2ad1d
BLAKE2b-256 561373472c429a4fa37e9cbde168e208f9cc6ee326bf764d0a268bf0338c048c

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp315-cp315-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp315-cp315-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c70ccb3b4364947c378242060de8d1f03788f040b75e0553e5d7d4ccdd721d75
MD5 6b87558261e53860c72b6799eefc6cc3
BLAKE2b-256 a353ef3c34e2ab2f352caade38b69f519df08996c3b479a75fea1c2d64f946c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp315-cp315-manylinux_2_28_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp315-cp315-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp315-cp315-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f017ee233f292d4d37c24a56a50518de1bacc18d8e5be9227a2d16c1ecb04715
MD5 97a7ddb33bddb8051d997f0b33cc781a
BLAKE2b-256 ef3118e6ecc4425f23fedc112143d630e386808c5239c732eb3b7fbd31a6bc1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp315-cp315-manylinux_2_28_aarch64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp315-cp315-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp315-cp315-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 776f69a01a7eb877407b4b3ce27bc9ec344ec428cc4e946ce50a6a1631fff8da
MD5 e7f76c53007684e82e4dd7ab49312f4c
BLAKE2b-256 17c3dc063a6d7f9845253d0043511097f94cb872329066910aeb1be716b77c40

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp315-cp315-macosx_15_0_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp315-cp315-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp315-cp315-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 4791ef387b826500c61405f642933af3fe882b8ef63e49b51ef3fc1ee03b221f
MD5 fe88891299d56574ab0a3043588d2434
BLAKE2b-256 d370eb8c2b8dbbf92a57b0837bc44995ee2fd464aad4b0b3d7d9efef5033ada7

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp315-cp315-macosx_15_0_arm64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 bbb53a583831d702f8e0f2e02ac24d384f98c2f859444801baebc45195aac8fc
MD5 48a8ac005574fb9ccc82447c4056b054
BLAKE2b-256 417593d2f544f90389c91a571223203532b4094cd1b9d7d3a90faf8e16a3adc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp314-cp314t-win_amd64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7848a186d0149dae8091d2c7ed9ef3c4357f274bf358ac303677a94e830c823
MD5 723f6c278e2eea4f33fc2f979fe249a6
BLAKE2b-256 0431359c3082996987460560e17f14f6e764592fe3aa75523b9ea1e50f72d06f

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3bfbf89bb039a102fdda0a11bb1d96ed096cfc84b0fbfd3460813a621ee406a8
MD5 22d0c6ac908fd66fb7e5b0fc47e66e1b
BLAKE2b-256 52b048164901943f4718c0aef4bfee5d3068eed9bfe5b2a9f46e0f1a424569f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a21b06cc4d1cd6bc19123b2696748f17d7ef658e1a039dca0a4199a297dc2c9f
MD5 6dee49555219cbf83757581a2bcd9943
BLAKE2b-256 55ac165b1d8a3b203ab39ccca07c07c90ded5d39db789f9b7404bb97d19a9ca5

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp314-cp314t-manylinux_2_28_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eeba8d8cf64b7c5f23b4e57b6c6913b947a12a730ec4e84ea2d82ef04565a19c
MD5 e19b05ecdaafdb4704287631d26b8c6d
BLAKE2b-256 8cfa2363cd2e7234d2356ccf8c31ca5a1c0dafa55807bfd000aa61b6bbfca4ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp314-cp314t-manylinux_2_28_aarch64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 bef01522efb218e4dcf64ec412ed31349542ecd32903a7a1e154657fe4b8703e
MD5 840a42f12655e6ae9e9f552e163a9fdc
BLAKE2b-256 61e06a8bbccc618e0d17f1744061355b183d539e3f39a15a1c806b8cec53bb76

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp314-cp314t-macosx_15_0_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 622440db3b739debec7fe43270393ecd5bcb7e18b93fa6e756a3af3a0bfd4a3e
MD5 39418746392336660a72d1f41297c644
BLAKE2b-256 51c8e7168704031e8767e526f8f1913aff6d043ac211e7af4a08b125ee011a32

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp314-cp314t-macosx_15_0_arm64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e8acb33b5433b563d8e30affc3cefb0ab959c81dfbdbb43111e61306a78d38a3
MD5 b60537575c17db01cd24751a199298bb
BLAKE2b-256 1b2ccb400f6c871e5597a06d1db8afbc37636ad0b0d9245bdc2aed509132a65c

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp314-cp314-win_amd64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 fff3ce4f783d36c2ed1104965ac781c5295c025761473c30e4c8ac65b2cf8707
MD5 908ca1050011a5fcd95391b13599901c
BLAKE2b-256 251c3aa409ad4dbf847ba8dae6d22646fe6eef327893a595faf1a00e8f023032

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b9b378ae12efdf149fd91e018d69fdaae0d9fe54592a4765e10610fdff380dcc
MD5 b7c23e9daf705eca51a57ecdb7042447
BLAKE2b-256 99e164dd7888e7ff29727d126703237f0f61ca75cbee893d3756e79f81abd0e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 09fcbcb7ba1e4836d4371385f0281e1c8668bd136f36b4a9c10ff44cae0e616f
MD5 38b12c22478ad29fc0d8f8751185c8bd
BLAKE2b-256 3fd4d10a3c7aed6fc0a917d722a014ddf34d3da31dd0cee834b171155c683e1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 176fa282b1261f20d428421403b1ce26804e86c220f052e2c21a25a451c62860
MD5 33170415b4644f606d272a10819c82ec
BLAKE2b-256 bb90fe303d204189a8fa5cf78e2c0a940b8749f3107047358119e67d430f0c73

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp314-cp314-manylinux_2_28_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 427d6d11abc62912003e41699a7136d6fc2e1432fcfeead9971e20e56f19228a
MD5 d2b4e6bcce435062405893e5b57402d4
BLAKE2b-256 98ebc5c77299e2cd39e99ef2413f8bab3c87a830ff17d54777c7056fe8944a05

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp314-cp314-manylinux_2_28_aarch64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 065c72009316b9803b56586e5dc743e20eb477ca1c74e4869b2248ab83b1272d
MD5 da47754ffaa600311af335beb1dc1720
BLAKE2b-256 5b5a7a6cafe24e46dd4e16cb6f73c3a15073103e8a4fb5c0fefbb972d0a616d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp314-cp314-macosx_15_0_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 3cfa78764de1bd2c400dcd32c7734f5f4286d65012e1bd6b453afe2f779e8ddd
MD5 f5d71ba5f5cef6660ae03a5a02b2d0c1
BLAKE2b-256 8acd27908f30c9009ae0d4ed05a623c23f31206528faaecf13420fea924931de

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp314-cp314-macosx_15_0_arm64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 64acd75a7e38afe6d35ff3561f28c18d1a53195a9d6cb911eea313f1aed0cd79
MD5 30ff8d3b382da047e53e15df0c21221c
BLAKE2b-256 442e1703eaf368b676dbb605b05b28c3f69144b3253790d906aeae1c07cef52e

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp313-cp313-win_amd64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 170f582c7067998667d7bee93eb0a903f5610b43091c29ec22c150cda55effe3
MD5 9d4bb483bd8c5859c71dddb92c512d16
BLAKE2b-256 07b99bd9692b23abdfbbb373f60a3bdf682f465ad27136385a0c2a53ada1b548

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f0c0d7c3b3e5f974c7bdfceac49dac33654b0e716dc86dcaf455a926e762f13
MD5 ed60b4c766ffd9c35560eb64d11a3814
BLAKE2b-256 097b969ca4f249bc492bac7087e8a7a29f958830dcac7053f41f7df3a745bf32

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 103e869718e95573d020935dd7bcaa4ce5e91af56d74722d5b73e0b5239d7165
MD5 b5a1a3df50671677388335ad76c4bd40
BLAKE2b-256 4d747d7936234278597aeaf8db178a91766f921e7e1d7f656df2f334baa93720

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp313-cp313-manylinux_2_28_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c5591ad1a7feac2f67569d4c005c763202477ea5cb2067c381b0833121897439
MD5 f255199b0d692394b89274fdd1fe3ebf
BLAKE2b-256 2eb67e01bb1858b91960f38540b2c9437772eb1f10995a2066793db11c99dad5

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp313-cp313-manylinux_2_28_aarch64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 fd575c12cb00295f9d77793cbcc4120e27c1175e519c4695e83b6a378ad34048
MD5 d1f0ff211031bea437dabd8ea6994184
BLAKE2b-256 83e19b11424d6e6d449c6d71a0a45291291790076aa464fe9affe5b926edc408

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f8dab3c1f002965aaa892b8b6a7e95a0dd0a824174fdb8e95fa779db58e3fe8c
MD5 97d4932b304d6748617e5be4de289006
BLAKE2b-256 a73db6e273d862a14c37a3bd1ddddf2fe17c7b5f33c80cac9371ddb45158e4ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 43a2be6e0ad64980abb808b11a1062942bc872c1310442d04ba069ea764d4d7e
MD5 e6b64ad81432f19a65d2061e8687f49b
BLAKE2b-256 308691f14cbfe82e8ce2fd9f71fa15f34b5b0df31a16015ce1c6a5370a252f24

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp312-cp312-win_amd64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0aa4b8f58506dd3bbba6bab55f6b56aa34d3a4a6b188f336a10fb7737b51a0c7
MD5 6c11d226484ca2be677b652d14df76c0
BLAKE2b-256 e971222c80e02467ff13b777e8502fad9db11fe2ef457cbe1447cc386643b81b

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9286c2fa852f3bdfad0af1588d81ab14956b76fe5bb51f0df8e7fa2fc77963e
MD5 3f152bc392b9ce9a26ad2947627b528c
BLAKE2b-256 448b0415f1d1cb37a547ae4bf132fce769163c3676fc9fc9817bb927af336ea9

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 584bb631f08ccbe659291adc23640e56e4be8b3ede07df8b1266111db5326992
MD5 39753129c77e310a00a7a0fa9c6e849c
BLAKE2b-256 d25eb4ef9f19762095833052dbdec7f7dc6819a3adc3f2219a7d620ba9edd059

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp312-cp312-manylinux_2_28_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 854d28ad887effa469b89adb0124a53e0cd34f060413d594f9143c8b7ba4089e
MD5 f92d8ec5363ecea3aba0d0c27b5aed23
BLAKE2b-256 1455c0c5091c554f1d4348f1b1682fdc91ea78c83584414eba5e5d6f8ce4ee58

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp312-cp312-manylinux_2_28_aarch64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 13e2798f06cf2c313d264fadfc787549177dcd5f3f488648b19a68b685ed7120
MD5 a15049ba84001328a3add1ff328a5fd0
BLAKE2b-256 f66e53a870fda83772a51b0262bb31de06814e7415a94e3022961824bfddc858

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 9026290332750f6c28cb53659c4bf744b5f2fc4725d96b50a67aa431741a9f96
MD5 ef943890e9a1a041e6be0baff25d927b
BLAKE2b-256 af4567afd31929c48ce84e5176ece4bcddba84a00fa9d10012f730ba3980ccd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b1712d6e32e789224f45508730819ca69bc9d762a8022ba57f2173ab4f012094
MD5 92adfe31db4fb8190e9f305724a0fc25
BLAKE2b-256 fc6a0c0e4b976feaf2872a67212390a4536180e401a67f02cb25d08277cae5a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp311-cp311-win_amd64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7643e42edff71703ece0ec78a911f336005da6df0a07f3a45158e2c72788d366
MD5 23cfc452792da4448d64b21547f1979f
BLAKE2b-256 d1a04a5e92cef7ccacaedf3d93bfa68edd1943cd7c8bb4c9e22db3584c16a871

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed51537cb9c42d0784405412e9b84ec8cf9e723f15127b053ea816c03f949817
MD5 b0ccd8342ad9ca6277bb832fbc0e5950
BLAKE2b-256 10fa3d06434af332f5cb93ee3749be050fe53aca6271bbbf71f252f0f9f20e13

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 44ef82ed8abe9572edf1105a18dd61ef9936b5ffd496ea819571ccc9d842d217
MD5 e5adffb093a45896a22f0a2c54f9ab2e
BLAKE2b-256 8c04c951e7cab9cb96fa47160f22f5b83b376be39853efc6c20b2f44866aa507

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp311-cp311-manylinux_2_28_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1597cd1da4821634df65f16eeaa51493674cf8045347e71623a57a7a490e7c29
MD5 0df116db72df20710b4492652478d00c
BLAKE2b-256 10f177e29d80f39e6039a6fbac889725f404fe99f7c0a1981841855633e642af

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp311-cp311-manylinux_2_28_aarch64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 646965a68b187dcaa743bd9475396cccf636c9096c401ab95157641b2e2f29c6
MD5 63a4c72f1aa0a04de0b09af5d7bb4590
BLAKE2b-256 290f39d3e8ed52de6a9f38eb331745db540ede9e59a9e52e97145669ac2264ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 aa1ade3f8d09b8f7084d578037d248657672991f84fd7bc7316c734cfb0cd537
MD5 88298f420b52d79035d4929aef59456d
BLAKE2b-256 67424605d16ca9dc0cfa881b8ee153b54df83a771d0bd698eaff9f37f7b7bdb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 793d9914b4be5fd64b62a2a08dda5a7a928ebb89f27ada39b8515193c0634fe2
MD5 05ebf464619e8ec22093efba88290532
BLAKE2b-256 6d1f9a816eb23fd6a98e847d4029a29cfca26df72f7d0727c07cd803e3aea475

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp310-cp310-win_amd64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7a606d55ea2028ab382c9fc53076a8fa6235159d11b12da91c0b13b793d1442
MD5 3dcf77934e269b00b02d359bab094e66
BLAKE2b-256 21c91bcf7d483c30d136fb1e1bb4c4e42e1865781cbe4e4e4bf1d1cc03aded8f

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c2f3671bbb65d3038dfb1ce9f491abd48dba112bf959542ac69918b9c8dd0d19
MD5 2d9865081e8dbf090618c830e18e9161
BLAKE2b-256 c5aa05af60f0f8ca236369bf569c4b289a2f81e5d9e2f2be6b5de6b989ea415f

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 11ba0c22177a9896da7658d7d39748cc8296ef3abd0150a6a83fe3b722034f81
MD5 418f352a60f31382786200c81741b2ea
BLAKE2b-256 2fd5b04682c90a8dd5c2c7a430534cc481478702732875baa292be5f98d884f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp310-cp310-manylinux_2_28_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 816fae118bf5c2a2cfb9c60887ed51000c45b0f904f8394bde82b4d0c1257c01
MD5 8e0c6d279c004e0196204165b827f02b
BLAKE2b-256 17b7269ae99eb06d18e333870dc19c451b4bd70b2bbc7aa64bb0240a221fa32b

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp310-cp310-manylinux_2_28_aarch64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 81822609c0c50e567861c05cda490d8da1842212af3c3e81fc39bf388e5b8df1
MD5 49328ae75f0cfbce05b96dbf8460b33f
BLAKE2b-256 7be592c2dc4e9cfbfeedc08e6d20c08a2684b61278e1cf0fb7a327965e5319de

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp310-cp310-macosx_15_0_x86_64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

File details

Details for the file opengris_scaler-2.7.0-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.7.0-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 30290b956ef4987af271703d7be3b61ad46016fa2cd887ed25340ad50338a28e
MD5 c9d92b4deecacc83691efd9d1fdaacb6
BLAKE2b-256 99f88dbae8e78f679f182532b75aef24e52e980b19696460a3717788bfcdfd55

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.7.0-cp310-cp310-macosx_15_0_arm64.whl:

Publisher: publish-artifact.yml on finos/opengris-scaler

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

Release history Release notifications | RSS feed

This release

2.7.0 This release

58 files

2.6.0

44 files

2.5.5

44 files

2.5.0

43 files

2.4.6

43 files

2.4.5

43 files

2.4.3

43 files

2.4.2

43 files

2.4.0

31 files

2.3.5

31 files

2.3.3

31 files

2.3.1

31 files

2.3.0

31 files

2.2.0

31 files

2.1.10

31 files

2.1.8

31 files

2.1.7

31 files

2.1.6

35 files

2.1.5

35 files

2.1.4

29 files

2.1.2

29 files

2.0.20

29 files

2.0.19

29 files

2.0.16

29 files

2.0.14

29 files

2.0.12

29 files

2.0.9

29 files

2.0.7

29 files

2.0.4

18 files

2.0.2

11 files

2.0.1

11 files

2.0.0

11 files

1.27.2

11 files

1.27.1

11 files

1.26.6

11 files

1.26.4

11 files

1.26.3

11 files

1.26.2

11 files

1.26.1

11 files

1.26.0

11 files

1.24.6

11 files

1.24.0

11 files

1.15.0

11 files

1.14.4

11 files

1.14.2

11 files

1.12.43

11 files

1.12.41

11 files

1.12.37

11 files

1.12.33

11 files

1.12.31

11 files

1.12.28

11 files

1.12.25

11 files

1.12.20

11 files

1.12.13

11 files

1.12.12

11 files

1.12.11

11 files

1.12.9

11 files

1.12.8

11 files

1.12.7

11 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page