Skip to main content

Python interfaces for the plumed library with enhanced sampling.

Project description

Ask DeepWiki

hillclimber

hillclimber is a Python framework for enhanced sampling with PLUMED. It provides high-level, Pythonic interfaces for configuring metadynamics simulations, making it easy to explore rare events and climb energy barriers in molecular dynamics simulations.

Installation

uv add hillclimber

Or with pip:

pip install hillclimber

Units

hillclimber uses ASE units throughout the package:

  • Distances: Ångström / Å
  • Energies: electronvolt / eV
  • Time: femtoseconds / fs
  • Temperature: Kelvin / K

Python Collective Variables (PyCV)

hillclimber supports custom Python-based collective variables through PLUMED's PYCVINTERFACE. This allows you to define arbitrary CVs in Python with full access to atomic coordinates and gradients.

Defining a PyCV

Create a subclass of PyCV with a compute method:

# cv.py
import numpy as np
from ase import Atoms
from hillclimber.pycv import PyCV


class DistanceCV(PyCV):
    """Custom distance CV between two atoms."""

    atoms: list[int]  # Atom indices to use

    def compute(self, atoms: Atoms) -> tuple[float, np.ndarray]:
        """Compute CV value and gradients.

        Parameters
        ----------
        atoms : Atoms
            ASE Atoms object with current positions.

        Returns
        -------
        tuple[float, np.ndarray]
            CV value and gradients array of shape (n_atoms, 3).
        """
        positions = atoms.get_positions()
        diff = positions[self.atoms[1]] - positions[self.atoms[0]]
        distance = float(np.linalg.norm(diff))

        # Compute gradients
        grad = np.zeros((len(atoms), 3))
        grad[self.atoms[0]] = -diff / distance
        grad[self.atoms[1]] = diff / distance

        return distance, grad

Using PyCV with ZnTrack

PyCV integrates seamlessly with ZnTrack workflows:

# main.py
import zntrack
import ipsuite as ips
import hillclimber as hc
from cv import DistanceCV  # Import from standalone module


# Define your model (e.g., MACE, LJ, etc.)
class MyModel(zntrack.Node):
    def get_calculator(self, **kwargs):
        # Return your ASE calculator
        ...


project = zntrack.Project()

with project:
    data = ...  # Your data node providing atoms

    # Create the PyCV
    cv = DistanceCV(atoms=[0, 1], prefix="dist")

    # Configure the bias
    bias = hc.MetadBias(
        cv=cv,
        sigma=0.1,
        grid_min=2.0,
        grid_max=6.0,
        grid_bin=100,
    )

    # Configure metadynamics
    config = hc.MetaDynamicsConfig(
        height=0.01,
        pace=10,
        temp=300.0,
    )

    # Create the biased model
    metad = hc.MetaDynamicsModel(
        config=config,
        data=data.frames,
        bias_cvs=[bias],
        model=MyModel(),
    )

    # Run MD with ipsuite
    md = ips.ASEMD(
        data=data.frames,
        data_ids=-1,
        model=metad,
        thermostat=ips.LangevinThermostat(
            temperature=300.0,
            friction=0.01,
            time_step=1.0,
        ),
        steps=1000,
        sampling_rate=10,
    )

project.repro()

Important: The PyCV class should be defined in a standalone module (not __main__) that can be imported by PLUMED's Python interface. The module should only import what's necessary for the CV computation to avoid import issues in the PLUMED subprocess.

Documentation

Currently, there is no documentation available. Please refer to /examples for usage examples.

Project details


Download files

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

Source Distribution

hillclimber-0.1.7.tar.gz (4.4 MB view details)

Uploaded Source

Built Distributions

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

hillclimber-0.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl (30.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

hillclimber-0.1.7-cp314-cp314t-musllinux_1_2_aarch64.whl (29.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

hillclimber-0.1.7-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (29.6 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

hillclimber-0.1.7-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (29.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

hillclimber-0.1.7-cp314-cp314t-macosx_15_0_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

hillclimber-0.1.7-cp314-cp314t-macosx_15_0_arm64.whl (8.9 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ ARM64

hillclimber-0.1.7-cp314-cp314-musllinux_1_2_x86_64.whl (28.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

hillclimber-0.1.7-cp314-cp314-musllinux_1_2_aarch64.whl (28.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

hillclimber-0.1.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (28.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

hillclimber-0.1.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (27.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

hillclimber-0.1.7-cp314-cp314-macosx_15_0_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

hillclimber-0.1.7-cp314-cp314-macosx_15_0_arm64.whl (8.6 MB view details)

Uploaded CPython 3.14macOS 15.0+ ARM64

hillclimber-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl (27.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

hillclimber-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl (26.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hillclimber-0.1.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (26.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

hillclimber-0.1.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (26.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

hillclimber-0.1.7-cp313-cp313-macosx_15_0_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

hillclimber-0.1.7-cp313-cp313-macosx_15_0_arm64.whl (8.3 MB view details)

Uploaded CPython 3.13macOS 15.0+ ARM64

hillclimber-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl (25.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

hillclimber-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl (25.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hillclimber-0.1.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

hillclimber-0.1.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (24.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

hillclimber-0.1.7-cp312-cp312-macosx_15_0_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

hillclimber-0.1.7-cp312-cp312-macosx_15_0_arm64.whl (8.0 MB view details)

Uploaded CPython 3.12macOS 15.0+ ARM64

hillclimber-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl (24.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

hillclimber-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl (23.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hillclimber-0.1.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (23.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

hillclimber-0.1.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (23.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

hillclimber-0.1.7-cp311-cp311-macosx_15_0_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

hillclimber-0.1.7-cp311-cp311-macosx_15_0_arm64.whl (7.7 MB view details)

Uploaded CPython 3.11macOS 15.0+ ARM64

File details

Details for the file hillclimber-0.1.7.tar.gz.

File metadata

  • Download URL: hillclimber-0.1.7.tar.gz
  • Upload date:
  • Size: 4.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for hillclimber-0.1.7.tar.gz
Algorithm Hash digest
SHA256 dfcc7b0b051a93b973bb1a9d0038185961d4362f3bd508e765af3a0b90f90467
MD5 63580d534ca3c2e56af4677b6078290b
BLAKE2b-256 cc3b2c0b86d724ee379d62620856428ee7a93aa3046b1670ed10e9ffa173324f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7.tar.gz:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 04b9e59657356fbf054cde9b467f8cbf4d71b892f62fc9dfbbcb970374bffb9b
MD5 2b1dd39b54fa51cd0c47684415042e4f
BLAKE2b-256 09df63130edd1aabd7963a25026aceef943b91391d4eda95187cd3fbe1a08e80

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9dd84c1ede7cae3546a8b42ba378faedea86cb3c8e472ae256399634faf0b98
MD5 a5ad6cd3088a538bc6a02bf8558b29b0
BLAKE2b-256 5b84e53149647ad679ef91fbc73011a4be81a61e7fbcfa0e9380c5d1da3bc8fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 88a9ff347c381eca842ca55c3d2f9ae50bb0eacba94de77815367b4f6b3ac7a6
MD5 e3bd936e2bdb524090e717c7255a1247
BLAKE2b-256 89ffc4fb9d3faa520a7729ce189f47a2a808bb36a433d1974b190ecf3407b48a

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 09f2c8e7a7d13cf64253d9a362e9dfc6aacd8c266ddc3ed699d39e1fe2d88207
MD5 94cee217e8f5ab69e665bf53aba74734
BLAKE2b-256 b1182b0acc991811e2bba25d4f3c8b8e2a1c87e3e539c750265a6fa86aed74e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 383f4071cb25181f0a963d98332f32d84b01488ad199702822517154e8f0e946
MD5 8e45f29ddec862751e0166e400975f60
BLAKE2b-256 6e44661e2a002cad3c27de4dc8f6fd7706327fe838ec4353ea047b304ebfb18b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp314-cp314t-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 14be08968ee164e4dd3a08366c4d937bb7337162733163b299b61af1112eb586
MD5 672d9186efe76faa88971f1cd4503bc3
BLAKE2b-256 bdad3b8e82e08de66364d71bcb82e7404fe05a3c0769d8c8f2f9f606d0357bbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp314-cp314t-macosx_15_0_arm64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9785953a7eefa4f0e0ec717660cc1ed6307540125928d4c58b318dc748e2b5ce
MD5 f30dc175d636cdaed0268b1f9285e885
BLAKE2b-256 5099253898c555f07c4fef421e11652ba648f593a6a57343d4fe02cd6ddd571d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bb80ff46384c036741063e2423d5ad47f182dbbd1c954f7cb021f16294efdd2
MD5 409090487d22b9c463dbc9cbcc5a6da3
BLAKE2b-256 2d9225dcc80e1a043ed687c5807fd3c8d99dee1e8384e0e0e942ee94232604ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 78e7794cd693947e3a0acf2c23373a2ad28d391bcb5036f8f6f0a27d24c38110
MD5 7b219d8fc381f9952c921f7f5ae4ba94
BLAKE2b-256 f20e410681b0cc2defbe9c92338d57c2e7c8286c12275432d31f2dd7d97ccfde

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c12c1764bbf0ca47ced82630f93964fb3b767cb2761b7a55f0548bdbdd23cb18
MD5 78e33728588f7710a27b4a8de3bf2b86
BLAKE2b-256 72726071844701247a07a18053861cddadc8acce50e0c7bf10007cfb04de6afb

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 d8a33aebc8bc5c176ed24bc945832e45784dedec101791f6b960755b31dbf43c
MD5 339c08f5cced58cdc003ecaaba7342ea
BLAKE2b-256 e35928f4549a2f57468173aa3107dcbb3b2ba6eecc5504b3903a933be2a0512f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp314-cp314-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 7dfa8734aea07ee5dc65dbf7bf8a9e4ae6b74dce23de978cf0a8c1926fa222a4
MD5 c698e07bbcafcce04512aa6538a195c7
BLAKE2b-256 4eb4c3d6ee4266e4681ef89dac1b366d1da44a202c036519c3a4e12ea0010e79

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp314-cp314-macosx_15_0_arm64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 98ee71f80119342d8a8f6e64880bf41fb1d32308ea639061e136b26ce15286ae
MD5 a339e848df4fef9de56aa8c43123f39d
BLAKE2b-256 e3320421ab93e3d0675abee4ac29691b93874829042eba348750cdc115b866e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aead31ceb812da84ba04ab6fccdcb5a14a0f880dbe8e93811997da0cb2fe8ed2
MD5 e413ea7c3186f0c0bf0a3d5be7a5d72a
BLAKE2b-256 552f3e093ac0ea87182f9ae09bc9b51dd97e884810ad40020532635914fcc930

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9c6e210d0c810b50091c19f45e7e5aafb3914461725d10dfdee5515acadb25d0
MD5 57114b0c2f8fcc6f01bae6e507ad1bf8
BLAKE2b-256 7b04ff9ff086a2a7b3b0eb8cc8b6a80978761c23a136a1dfe00b6c3ff2f290ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dcf00acb9da92e37a1d068968872d5a7031b73c0fc3b8420214f4851c5398437
MD5 7ff3765e64b53230990765f8985c6255
BLAKE2b-256 c9495e99acbd3d320a508481a7d8bfcd9d5b4e3a25ac31732bb83eb297a47ddb

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 709a4be2420eb5a83e0275e3360973c1b66b24b801dc8dad7e2d5c4d352aea8b
MD5 14e1a91cfca80004c7a88d8b8efc5baf
BLAKE2b-256 d4fb5f573030d7727063c8f00c646a7f7a775090a8f6deb46eabcb42b297e556

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp313-cp313-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b8cd57bc09ad470a12c6dc5710122e1190953a4d77b1cd4a228c8affcbb7c56c
MD5 042ba956e2f1ea20a61a0a8d93c44423
BLAKE2b-256 a2e7cc0516611ccdc7e7c212c378599f3b66e624b8e5a132e03e9460821479a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp313-cp313-macosx_15_0_arm64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cea04685c61c79934ae83a7fe1182fa1b466489ad848cc51330241b56b700043
MD5 8ea4d348af011248b1355cfd9c0454aa
BLAKE2b-256 f4c87c51cb9e346ef3a77063451984d1967f7f65a06c2aaff2cdbc716251cf60

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1a6fc0ce518177709351e397477899b8230a0104f7e4dca4ee20d21e63c7697
MD5 032d2afc4f8510dbadd3f333d9b4135c
BLAKE2b-256 a9e2ad146f81e7688af6c4b45d01bd0493373049e8b6ea992e19238960bcde00

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 680b31cf250ec9b2903f2e30c899e360796528a1786843d1ad9408cb33cc1ee7
MD5 9403b8171b17c3336292f998e520503e
BLAKE2b-256 12a73cdf0194af78d86a91b224f01a0d4f4b41ce4f8bdc77f80ae15d4dee9fb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8d11aaadc9a14c628f401128b6730817ca6a2fd073f4da9951f9cdc153c2622b
MD5 2b268af5933741923ab3e0888893f179
BLAKE2b-256 d264655fb1e2d278ab67d56c947ce3e414655595d0b70903f2514d671dc37ac6

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 c97ea771c28685035a2623d12ddcbe5edd28d0f0377c7dc09cf057b13c1ae980
MD5 2de645e69f969da0ac62f76fcfefe9b3
BLAKE2b-256 66623caaf3c11d72dbf424aa39afe06e5d2356bf2f8c4d0e4fe57835f374a324

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp312-cp312-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a68d4186798ac5739cd6d60eaa33269f7d232d9aa480e576d9dd47503afd5944
MD5 e546471e4af5bf0dac593b513216a0ba
BLAKE2b-256 867ccad9fe3e6d8bffc77a713a922d7992c5989774d1a98d372c4b393f487366

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp312-cp312-macosx_15_0_arm64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb967e132e62f62a37df9ddacfa0f6af27eebfa90e61cc99a85632335594ef84
MD5 e14ff43cf1ca828869dcd74943461d65
BLAKE2b-256 c3a3d508bd7f211a84c93b76e187d5f7b09ad5f0ed71f311f765e1d2f028e7d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c3d1b20c7fb8273a8a6484e37ace6b72539cb39ba3cede589a7b0faabc0d8ce4
MD5 3fa364c7065ec1edc91cdc0ce7df293e
BLAKE2b-256 538731c8bb74089cdb00a7d30cf53bc815f57398355ee0ff7544651096c23903

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c952f7673e16d2eb3415d1c446c1003e72e5f2c969f6216a3fe2ada684c5558
MD5 ce57b28bc5a99547890003abfd0410b0
BLAKE2b-256 4dd3e4658944ed6cf6eff24801e690a3d892a703ba4c8adf5357b3c1d395ba68

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7abf5ef3885857769480dcfbf431541eea79a0b0fef05416be5ef76aacbcceab
MD5 5b8c1e4fb61fa827909ef37e7460d0ca
BLAKE2b-256 0297bf87373d90d79a1eb17216d6850eb3cc2d353e0d4264f1bba2c2e59e65c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 44ad21575ecf36eaed8da93e574e6e4d99f89ae1e743ee7ee0c7b85b44a393dd
MD5 ae025cfa6e3629838b705b15b3f6c7ba
BLAKE2b-256 12162faebb7162e0f85093e248cb5e6587eafc25b816664f92dcbe0d22ec5940

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp311-cp311-macosx_15_0_x86_64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

File details

Details for the file hillclimber-0.1.7-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.7-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 0535d90e60aca96b5b11ac946c936d842c58505c778a88fab4907ef4752b2a1c
MD5 74875ac53c70fbcc5b11d5ea4b735da3
BLAKE2b-256 aa2f1e2da61fd5b6646fa0f8843218de4176b11af3998f4bd1f5c5a898616c40

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.7-cp311-cp311-macosx_15_0_arm64.whl:

Publisher: build-wheels.yaml on zincware/hillclimber

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

Supported by

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