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.6.0.tar.gz (6.4 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.6.0-cp314-cp314t-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.14tWindows x86-64

opengris_scaler-2.6.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.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

opengris_scaler-2.6.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.6.0-cp314-cp314t-manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ ARM64

opengris_scaler-2.6.0-cp314-cp314t-macosx_15_0_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

opengris_scaler-2.6.0-cp314-cp314t-macosx_15_0_arm64.whl (8.2 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

opengris_scaler-2.6.0-cp314-cp314-win_amd64.whl (5.3 MB view details)

Uploaded CPython 3.14Windows x86-64

opengris_scaler-2.6.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (781.9 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

opengris_scaler-2.6.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.6.0-cp314-cp314-musllinux_1_2_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

opengris_scaler-2.6.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.6.0-cp314-cp314-manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

opengris_scaler-2.6.0-cp314-cp314-macosx_15_0_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

opengris_scaler-2.6.0-cp314-cp314-macosx_15_0_arm64.whl (8.2 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

opengris_scaler-2.6.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.6.0-cp313-cp313-musllinux_1_2_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

opengris_scaler-2.6.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.6.0-cp313-cp313-manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

opengris_scaler-2.6.0-cp313-cp313-macosx_15_0_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

opengris_scaler-2.6.0-cp313-cp313-macosx_15_0_arm64.whl (8.2 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

opengris_scaler-2.6.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.6.0-cp312-cp312-musllinux_1_2_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

opengris_scaler-2.6.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.6.0-cp312-cp312-manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

opengris_scaler-2.6.0-cp312-cp312-macosx_15_0_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

opengris_scaler-2.6.0-cp312-cp312-macosx_15_0_arm64.whl (8.2 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

opengris_scaler-2.6.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.6.0-cp311-cp311-musllinux_1_2_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

opengris_scaler-2.6.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.6.0-cp311-cp311-manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

opengris_scaler-2.6.0-cp311-cp311-macosx_15_0_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

opengris_scaler-2.6.0-cp311-cp311-macosx_15_0_arm64.whl (8.2 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

opengris_scaler-2.6.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.6.0-cp310-cp310-musllinux_1_2_aarch64.whl (8.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

opengris_scaler-2.6.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.6.0-cp310-cp310-manylinux_2_28_aarch64.whl (9.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

opengris_scaler-2.6.0-cp310-cp310-macosx_15_0_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.10macOS 15.0+ x86-64

opengris_scaler-2.6.0-cp310-cp310-macosx_15_0_arm64.whl (8.2 MB view details)

Uploaded CPython 3.10macOS 15.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for opengris_scaler-2.6.0.tar.gz
Algorithm Hash digest
SHA256 4518812e4ce2ab07ecd6e024077624e8d541a35d766521010feb775baa5f9c09
MD5 9c30a288dbbebc8a176122b69be65ffa
BLAKE2b-256 a23a8b46b5b12574dad7bbe00f5db728c7b5b51ca90f61250fe65082fd08eece

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0c48f12b63ca177d6ba9677ef68ee75cd4e6fb42717cd2eb65ea588db8c61be4
MD5 bd17ac972c6464c7f0b3ecfaf649a398
BLAKE2b-256 3d871d7e20f3a804f0379840f147c2a18a394d54e4c14d4519804f022c37a6d0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 775e784169e704251474d08f16268f18b6e5fe1cda613886642017f3703c21b9
MD5 e0286d56e626357959e2eb04bf33772f
BLAKE2b-256 fdde2d4b46a505750627e64dae3bb9f8323b4d44ba55738a0a30686b3528920d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 862bb97649aceaec334803b5f07898c5955ac858d9fc9ed8e5b8f01add92f8fd
MD5 37482f8701d6bb2e589f59754793453d
BLAKE2b-256 267ecb8c969ae99fb5330166c9ad7dc81495e5cc813dbac8044bac98adc27527

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp314-cp314t-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp314-cp314t-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 017bebd183b9026a4b7197b2a0815ff321fc39aa67a1b0ba990ed715ed294474
MD5 0ed4a17f14920c9bc252dc65884f62be
BLAKE2b-256 7205e580478de49933f9fd94fe9eca6f39e7fdcf9f8d6a447d02ab295ce1b859

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp314-cp314t-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp314-cp314t-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 53eef5500cf323c442951066b61b0b945b5bfb30ac044e24bafac17d76986ab2
MD5 820f7247a0280ef0ede2f8426ded9788
BLAKE2b-256 e53dd1e4d943357baf31ab12ef858395e6dc6757b3fd85ed015947e4500cbea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 468093a6be1f7b59e95353df46263b9f06e82eae379491f897056eab3a65a760
MD5 fb09299020c4934c5fee02f75ece3876
BLAKE2b-256 e13eb8ff19f29c80eeb5c2da83fb76ae711fdf1d709f2fb0a70c9be80b95cce8

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 d7cefe61a95251207ad93234d92015f60be9a6b6324bfaa2f95fc8235657b603
MD5 5f38aac1959f036e54adb3c0362449c6
BLAKE2b-256 30fe84d427fb5436bae19172c4b1bdf9b6e6b9970950f8a23be306d8db5f8e66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3bebac510c4d130163e0097071de358675bb66ca242e8f6b00001896e728f134
MD5 4f77f319db530f8778cb513a4fcdf433
BLAKE2b-256 45121ef72edfbae01a46299c5e27385f682feba387e699cff3891a57d0d19b17

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 f64f77e0f4ae963d544445a3b0a7b4e87ca17fa8456972ffbf2a1c706fbd591c
MD5 a80be32fa44eb6c10b3cb6c43c481e51
BLAKE2b-256 52c039b7e3afc515fe2496c8271de269dd69fbe1f38a03c3a874e262b161160c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d87908080325ff1a53a82548ca1957d3a53120db0a6b37bd9fb30b35f44d5c15
MD5 be25df1aa042a278e88647eed54da5bc
BLAKE2b-256 b0fdab184b1803dfbd230733a5361338da6cb8b92a2c3360eeb48086f1850a12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4213997fe463ec637f393a62e352ea9bb9df6e9ed582d228ed2d2415da48f66f
MD5 e47e6c8f20aebd7ff2124f495014d880
BLAKE2b-256 5d84dba497dee1cd8a660ce170b0d2c22e0ac5cae5c12381f202469feb2aee36

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5b1c2dd786fb9a053f25d3eff688af86fe5b0a4113c2203cd425d4ff1457e43a
MD5 4f00ae535d9d4ba3ea1b04074b7c5298
BLAKE2b-256 6f150074301ef730157bafb32e98fa78b79c3b1503e45eeb28eefa7b57fe15cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2fc96b8cf1928710da1f66b69c149f2810f49879f56f7da72cead66f5f1f1c5b
MD5 6e94c387e488391f1262a58ff02a0663
BLAKE2b-256 f0b94f829ab60dfed86c38dc9d6ed65f0f5286b7941ff33d1109af894e817540

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 fc8ec9c6a8fd5127b37cb1efd81bb72d9fc2161750268d8f706c2897962421e9
MD5 104d9151c86484dd0007c49a7fdca711
BLAKE2b-256 be646b94fd87819ff1a27f2936fdfee2c9bfafdac2f73027768f2fbb1274eeb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 1782b19ebe010616c9db59ba9f6e74ff4df33f70946d62aa07359883a795adc0
MD5 106a4792d2d9ac7376fe430cf07962c7
BLAKE2b-256 1463dcd03c4be057d8c8b324ee31c8bbfdc711e48ad418d27355e269da9dd0a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 54fb2501499be4fe1ec2676a0dd03ef9bdd4c544a5dd79f4b5aee799c6f887e2
MD5 1f72c3885831fbca12040b72dc190bc6
BLAKE2b-256 534fe32d0d18f058226e0a2dea312dbc6eecc08885eec9bc6dee79b7ff60893a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 511167386d99c64bb16a4323c189817c3a8153d244ffd13ba020b90db7e72445
MD5 8f59a7a41ec43babb48bb957e88af12b
BLAKE2b-256 b0f53c3ab00b34a561a0989dd6b5c40dc30c705e11e5e7465bf8e5a89c209a20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 41261d2e9326ce7a139675b36e345e76a4abf047e2a1aa3d384da35de5f33446
MD5 faff29b6c83fbc9027fc632fb79de700
BLAKE2b-256 3364ec8175f0dae59f1182524803ebbc01cc8ec08986e431f06d6151a39bbaab

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5aef0530ba79d31e71771418ac1abc5dda1578e9c63fcbc67182887b6d4971f5
MD5 b0063ba82abdd9edbaa172d4171b744d
BLAKE2b-256 f0060fe0cf3eed06642d8268bcbf6a612a50b908041f0546ce744b9ff0f8db40

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f27d690d4cf6d5aa1f665d191c36c4e01b26f71466fc307f803727845e194514
MD5 62aa7a3886fad28e0ae93b1489d23cce
BLAKE2b-256 b962c5c73c339ef66fa9377e4fe637d3cff9526f20160e4a2420d0f2cd7121f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1a66bdc3732c25a7167c45810f2a5b8ab145e8644e126755c2f2b15836ed5b62
MD5 a1b8fa1a631a5819d41a05e25b344c37
BLAKE2b-256 3f5db088610c9f23adfd542048e25678f90a6b2c258a2cdd61868a9f33a65627

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 90cf250798e1dacc1cffc819bdfd665e893ecde13a886b1ed1c5d19673890717
MD5 5680171e91e2b8222bbe81e2beec61dd
BLAKE2b-256 e6bc42b23ce0e234ff1928e1266d4d9154a8f9763ee5ea63f63922fa6b013dfd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fbeb0046c03ad01a7a8b4e8757ea38cf71f4e233be1fc88082bfc97787493db6
MD5 565155e09ffb3aed0d49b3e728535667
BLAKE2b-256 213fa29dc16c00126b34a0220bb39fc62ba231d7c9e425d44ac6e40bfbccb0b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3f5a9f46b057bf6339f3b53ccdd6c035fa44cd7abca4e7e15f57c16a6e462f66
MD5 9b06da6010551882ed686dc357dc1daa
BLAKE2b-256 f826e1fbee57c19109665f04d948a1c7c77e6ae915914fd8601d554861a50764

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6f743d6ca4bdc10775d7d2583c030076bbf230c9fd9f2d831e54304e6c1a6ffb
MD5 c9a176d2acb5ec44a9acc6a6df493e8e
BLAKE2b-256 c71b9e2f66857b9cbad332f12c29c402515f2953029d18e0ce462948093cd27f

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 785aac4dcf1acc134b3f54e7675e8f8991e130d2c6e37d6aca78d1b0108be146
MD5 0e188fabd95af6aa8a62f057754a65e1
BLAKE2b-256 e7d45b7ac8827ebd8a7d5403f1c2c015e21353a6395b25df80d16860681f3a3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80c03af7730a77b9709b591b11631b189ff10bcf9fe937306e643be5fb64b8b4
MD5 6301ca2e078030b267b78e283a880f66
BLAKE2b-256 ba6ffa0e89c1c60bcafa99993d449d2d27b0196359132c461058ec4d0fbf6100

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1518d790af07444f59afb127f55fc6e2c48f6619d424ad7e3ad3f6b61516ed90
MD5 d28a4fd135893c6cde557681c204124a
BLAKE2b-256 b82dcd001fd18394f4cfb255993c984e22a2a1e178a546ecb278d19421948922

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 5fd8379b8470f42535c1763d123dcc7893ff30df7b79c08c5ac48c0807d48ffb
MD5 78427c4e2cf0d22372710a4a6f2ef91b
BLAKE2b-256 6c5e05049395d62ef79f0cb5ee2e099499f66987a3e96ef65ab694bc953b60bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a4661e42137d0151e7de19f6f9519165bc526d1d80a825c7f55384f46b86715a
MD5 d6d6663c21abeeeaf159dd5a292a549f
BLAKE2b-256 166edc655edf6a172ff3cc20e3cb38818235f623bfc519bd6572db8527bf6ed3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4b6458cb0bde371003b50c96d412dea96288ea46939fdeceac1a66dc1bfd87f
MD5 bdb245e722ab06cc67a4e2a1f5b70c83
BLAKE2b-256 8612160c53827d7f657b4eb18a3752a40624c0fc26e628733a0642c518dddd49

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff41c4e081c1c91296899417773248098d2d66bfca096ba285c9cbf2449974ff
MD5 d06da4b970ee9ac6c6ea2b700ddb6e80
BLAKE2b-256 d76470a4272d3cf0371d2ea04655aaacefa2c868e5497f07829278a0a23ae01a

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d582a1bfc98d017b3b895353805756f9dcc416b69a3cf1f6799b403bdb26a1d3
MD5 92cc878d009c6003f0144de947e3c7d9
BLAKE2b-256 3688124f17d7774f3ad48ffc681a899805235c0660d3965adab020d1c9f40ca8

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c59083967e48228f97371e158e10aa626b83d5760e915ab94a70fb8cabace93c
MD5 5a2b72db03cf29c0fa245294804f1472
BLAKE2b-256 5817cce9ade38aebb7580236b3ed917e23aa8358c5b415137f48ea3ee0923350

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 fe60893d89dc42c6d5eb94788fad2176b5dfdd9e6d0dfb9283499f095f6b751e
MD5 58782c7f9c3774425cfb7dbfd455f340
BLAKE2b-256 9cd8548c04e642f918c303ff05c724b5f78e2673592f7f338efda62fdc78cd36

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 f3703b9c6a3302bd6761d8cddb477f1c2f638cde7b9015bfa8621d79698441c0
MD5 afd8ba5cd533e6a6fecc1c6cb393b724
BLAKE2b-256 1ceebf2fb8d28a7dd9a3557813bae69354d17773d008ed519dd6b376890b2aa1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 53bc9115b546080047f8bc5638a80edb52bd2f3296f01cf5b9079ad756285a83
MD5 db26f0f2ae3f1eec02cec5ba9d254f7a
BLAKE2b-256 988f51e85f4d27745f68aecbdc6ec7b3987c9707863b14cdfa81837d8309f72c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad42a2e97eb75613389020a7b0da094bb9b0b5fe7831dac823a58cd0193abccc
MD5 b8812a7bf23e005a10abb3a2bc4abd2c
BLAKE2b-256 be013a77489bbe8e4b945a47d26c2f2a19c4ca0a0ecb55faf94941baecd0a11e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 623fb96eb241e32ca85bf666bc731d10bff44c4317e815eff5f249db43052333
MD5 ef208ea3f49934932bfd7a32cbf99aae
BLAKE2b-256 d5219d02fa52ffcf0bd7028495e628bf34e76d42d8231d535f79bb620319f7fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 790d4fc33a55b7c2fe73828295c5deb5b5230dde339813918cb14610f16beea5
MD5 a183e16e917a500a8cbbd3d5e586bc14
BLAKE2b-256 2bcb1de35618be075950e9692d4eb9b825e4aa22066cafd8568cf99cfb61b5dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5a16c5b0d0ce1e6dda38ce7a79f3b8a73ec85a3a19960695fa7f41be48bef4bb
MD5 52342559a399c81be292a0a2cb58cd6c
BLAKE2b-256 6b4a15b4254243f821196557a76134e04624bb4ac9536bb9caf57239005175d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp310-cp310-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp310-cp310-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 67a975a8578a515ddb060879474dab2b2b9a7ff7c5446125e0be5dc1f1beca43
MD5 57b83829086da86a7cda3c1dc7c63d37
BLAKE2b-256 7877e930c41f99fec8f1c9a26ab51c0f120cf9c869596b148b166108fd800370

See more details on using hashes here.

Provenance

The following attestation bundles were made for opengris_scaler-2.6.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.6.0-cp310-cp310-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for opengris_scaler-2.6.0-cp310-cp310-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 c7fbcc7da5777869e064be341a349fc60dda83aef172c0a473f5921a46fb8746
MD5 a927dd538ddd66236746830aee008d6b
BLAKE2b-256 2b5adaba3ea21ee59f7397dd992bfc390401b3c35960b98f2b3b845f0bc11f52

See more details on using hashes here.

Provenance

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

2.7.0

58 files

This release

2.6.0 This release

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