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.6.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.6-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.6-cp314-cp314t-musllinux_1_2_aarch64.whl (29.5 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

hillclimber-0.1.6-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.6-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.6-cp314-cp314t-macosx_15_0_x86_64.whl (9.6 MB view details)

Uploaded CPython 3.14tmacOS 15.0+ x86-64

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

Uploaded CPython 3.14tmacOS 15.0+ ARM64

hillclimber-0.1.6-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.6-cp314-cp314-musllinux_1_2_aarch64.whl (28.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

hillclimber-0.1.6-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.6-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.6-cp314-cp314-macosx_15_0_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.14macOS 15.0+ x86-64

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

Uploaded CPython 3.14macOS 15.0+ ARM64

hillclimber-0.1.6-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.6-cp313-cp313-musllinux_1_2_aarch64.whl (26.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

hillclimber-0.1.6-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.6-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.6-cp313-cp313-macosx_15_0_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.13macOS 15.0+ x86-64

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

Uploaded CPython 3.13macOS 15.0+ ARM64

hillclimber-0.1.6-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.6-cp312-cp312-musllinux_1_2_aarch64.whl (25.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

hillclimber-0.1.6-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.6-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.6-cp312-cp312-macosx_15_0_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.12macOS 15.0+ x86-64

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

Uploaded CPython 3.12macOS 15.0+ ARM64

hillclimber-0.1.6-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.6-cp311-cp311-musllinux_1_2_aarch64.whl (23.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

hillclimber-0.1.6-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.6-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.6-cp311-cp311-macosx_15_0_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.11macOS 15.0+ x86-64

hillclimber-0.1.6-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.6.tar.gz.

File metadata

  • Download URL: hillclimber-0.1.6.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.6.tar.gz
Algorithm Hash digest
SHA256 fab202505df39c2c6d154b3a11eb666f314c8815bc58b1a384f445b01fb55732
MD5 9a405a21048055f0d7a1b5639674d73a
BLAKE2b-256 ee33d0daa7cbebca34d67cac0565cefc889db258489ddd4d53ab1b255054d9e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6.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.6-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 398d619085864a7aabb491022c37ace6cd8167bf8d659b7087d72e7ebe9c0343
MD5 2ebc06f96fcfa5388616a0c9b669b428
BLAKE2b-256 5eaa9e0f4af1e77b801d4ab0bfc772b748616eb8890dbfb308e5051bc171b6bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0080552f269c1d1a3641ef67133ba12d962bd2d889a15572e62ef59b44e01f1d
MD5 3b40bb3f522bf1d1985f05f6b21d422f
BLAKE2b-256 fb33474f61d532f9133e01925db27720dbe485cc43016222ce64f5bafacea636

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e7d7e02b908b5f14980a6ba2413e9ce4bdfb122afeaedd5451b9e179e35ea706
MD5 0eafc8066158e24db058a22c79bf0a6e
BLAKE2b-256 d4b39ab1ba8a8128099f4fd690fc9814e6880280bb7cb3b35c6d0e0038f77b2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 208c9f7507953ec48c72ce243ce8ebf05c2bb78cdbdcde13733b9fa360736286
MD5 e07900fb39bd74d9b968b16fb0264084
BLAKE2b-256 2c31b4e8be4864771df67a800df3897021f882d9a3d5a48606e86a3a6c4ae526

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp314-cp314t-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp314-cp314t-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 21c058dd69d179a731450e11f124438920e13c0d83e3eb47c13defca520573d9
MD5 f1226376ead644a4c5a7ec6166e10cea
BLAKE2b-256 7593bb7f8fd64ed4339d15c93962a43b062ec314685a95bfafe9b52e6f085dc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp314-cp314t-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp314-cp314t-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 b8907f68859e717d056f5cc1c375f00509ba1d29d0e5e91cb12375d00fb5bcc0
MD5 c2d1c42696258c202db214e19ff49081
BLAKE2b-256 fcc9f89796c6899e96cc347de73fed88cb38aa3d54f64ea41fc7b56288838d4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 713f400634f0706464a4dbbe57b914526a7b9dc49b73fbdd1be0972b8f0e19dc
MD5 330d22b3e86c1ff60f11954e33744340
BLAKE2b-256 d2b3e381cc3dc04f3256df2769a191b8c1c1bcf38f11af6645d45c4b6ef6df89

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c156d554686706b3ae5aa448cb6cedb5f53f91c7702b914bda26dcc500f67f9d
MD5 83b4fd2c1ce9103306862d1180953d3a
BLAKE2b-256 6a13ac9d90be8f2171e2880652265ce0b845434347b0abb1f3706fda18ffad83

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75f02c3f4c332807c895b14b11469b5398758aaf4ca4a53ce5485d510242625a
MD5 7f2c94b9b9695efa79a0250f7d97f646
BLAKE2b-256 972263b6ffd5560904480f3d1284901e7d53eb4daeb8042466d1bc88ba90f64d

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c66639e389ace61bbe53ea6af7995ee680ae8fe0a6ae8d853f960e510ba3894
MD5 834b92c95a8181e6efdfa1c5d5148377
BLAKE2b-256 75279f218d83212b8c386c8c20568fb3a77354c537ec3421a46fa6a6e34beb3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp314-cp314-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp314-cp314-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 1462676f774261d5fc5119f259727b25cec62c1e8c7bed94bdd8daa72bdd704a
MD5 7aa4bb8416a57eaa1b65d3b58c3e3bc8
BLAKE2b-256 9b826331573f292319b5b9113df404a050a3d990218c2699e05f3ab00c532fce

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp314-cp314-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp314-cp314-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 fbbe9bd954f0be49e0bee207401dae1bb0c1c85707f9e8ab11da1e7a5c5a3e82
MD5 67ad724978f22433bb1751ef8bf9e173
BLAKE2b-256 bec21a9323955d3b040742680f99604a7396a1081ef03e5ab84385ef3cd98a14

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87db7f0de37fe2266fc4940eb328de058636fe279083cbe5d6e5cdb4b640b43c
MD5 7bd6ef1115c644dd00e7f69ffd074385
BLAKE2b-256 c8add02da7f293709847440525b6eb3f537e8226872baf5ee9cddca6815d34c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 485e917d73d36cb514b455e586142984befe59fe6a4bb2e83f13bb4dd000eb76
MD5 c049d460e0212e3cb2833f2d7a09da91
BLAKE2b-256 a745ad97e47ee7d00e78481c1cb52cefe7437b92cd23c45c98216e5953fb596e

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9bf7ba26cc70bbcecd467793b7cef1ef9841307bca459041a592c3a3ad082d72
MD5 f81c16f9368cb79d86d90ac00104f554
BLAKE2b-256 3ee4488300832b37b19f12e6d31532851efac6b264bbf13f121a3d4fe82b77e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b77e286404217f6b5cdf4ad1a0b61fe41502470904adbd8e589e5df6c4ca408f
MD5 9654aa747f6321bdbe06e150069e3307
BLAKE2b-256 855c0198148a38f3b67d1041e13bb8575c65262ab6ed0a2a61e77e98b37a3fdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp313-cp313-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp313-cp313-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 7e6a18255efc77baed1bc42aa1b40917e67d5e67847f98edba6227c5533cf7a1
MD5 201babdc3f644a5817e42adfbaab07eb
BLAKE2b-256 e706d63a73f2e74d4723346c1927bf1151722861c8ac26b61ca1b539a95698b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp313-cp313-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp313-cp313-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 8a80cbb37e5acd67bc29c4c96ec2853678e8e2aeb7602dc8149c5f2781d93068
MD5 aef55e1222e7d54b84d21a331ac1ca67
BLAKE2b-256 0abf65b1ffd28daf3fe0c2f04fb1f4d5f98798e4779762b5757c4158147b6ba4

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bdd0a93e2fc390a497d07d15f1aac819c2fbf0012a8975532ad4d68bee91a7a7
MD5 55a25e56ed8c8e920b2ce4bf9d3159e4
BLAKE2b-256 6daa7f125b1711bea3c6ec6c3eea06faa7020b33b251c520cb9be9e852de0a19

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f836b3bfc58f782f88d494979a1e1f8400044adce1b9aa6cd8ec625766472f8
MD5 39f24104661a19db39508bb1b132c4ab
BLAKE2b-256 9bfe98fed89444c4dfda4e19c07eefd08fa26b512dbdaf69994c12b191161f63

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7036e00057c3d720383e9792cdb809d013b1aaca1ae6cf72fbebe0c60ef9206a
MD5 f08f5ffa559a40a6b23a043af52ad940
BLAKE2b-256 ed5ac7c202c11259d4a887d5cf693e36eec3f7fc832c8d61e94962bffa0cfd30

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 04476de07fbe60db19c3200581c155d9ef530e1046cb2faab6003090e2d2c43c
MD5 ed6f2d82ff47fa2562e3d1427859e60d
BLAKE2b-256 7e7103698773bea032b79d8950873afc36772191d03fb173584f54ed0fdda03b

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp312-cp312-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp312-cp312-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 625f3fdd5c8f6cef72ebfdd493d34134e4a3af9fddc870decd832b6db72e5171
MD5 76dd2aff119f913199b5861eb22be70b
BLAKE2b-256 39b6fe69ec3c58915741120ecd9cd6e8c595f6819644c2e12339dc73f07b68e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp312-cp312-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp312-cp312-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 42bc400a3078bcc26e76f8a8fc4fdacee09c5bae3056765e478a5c3e3db0d3f8
MD5 a5e7bacf190bb48b94fcc9eb750e7c5b
BLAKE2b-256 e3292f0c5876116c93355c07682719ac1e0ec46c582126788e8ae91471513954

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3047cc448694da4a8bc9469dafcd09edfaf7e26a8e14d913164e26027e0d48e9
MD5 e09f17cf497612abde1db6911b8cce5c
BLAKE2b-256 d7e835113cc38cc670c2a0cabea67a0840ab340ebfd9bfc117d2e2a5589a9be8

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81ecd9b390c28fa3690e2786706ffb6e27e6f824a4ecd1531e42769780204da9
MD5 223b21bdfb15cfccabe16fa0cd7c2173
BLAKE2b-256 32fcf4a505200c5c1f8a3e391ca8c29196d76aaa5e058295d8612a2d499097ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 10151f857abedbb96e01cc388d0041066d3d9f6a4a3e3951b47f5458e2c42b5f
MD5 d0018bb4fac89acc61ed998820dada28
BLAKE2b-256 7e1e0658a22424465cf9c6813b4e51e747b33df03fe137ee125bab3af2c7f513

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2ba73917665be6dfa323ca3de1e74020a37eb8b05bf5d433ebbe3a7ae0dec20c
MD5 b22e98910fb02e42f8b2c754ffaeeb4c
BLAKE2b-256 f7244c5e869c266f02758b75cf35022bff163bcb9a78084dd019c8f43fd90eda

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp311-cp311-macosx_15_0_x86_64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp311-cp311-macosx_15_0_x86_64.whl
Algorithm Hash digest
SHA256 8b3b3f2cee4ff1b7ec448dd56f9e7278fe92947e5baee9724262902f717abc7f
MD5 00823207f1f5cec8a501df1dec3f4178
BLAKE2b-256 813aa16bc8e8746217826e6ecd9d3ba61132bd6c1783a00ffc68becbc9fe1c50

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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.6-cp311-cp311-macosx_15_0_arm64.whl.

File metadata

File hashes

Hashes for hillclimber-0.1.6-cp311-cp311-macosx_15_0_arm64.whl
Algorithm Hash digest
SHA256 a3c9b7c2de4b7647ae8de828da6a917a868234e82ee1bec4379e2d395eb9018a
MD5 c7b3a07ddfd70a389c4a881b0899a43f
BLAKE2b-256 aa4094c88b60c1a78ace5541d7d905b477bd8cc9f81f6f5f630656db8acbe521

See more details on using hashes here.

Provenance

The following attestation bundles were made for hillclimber-0.1.6-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