Skip to main content

An open-source multi-purpose N-body code

Project description

Version PyPI GPL Docs Binder

Welcome to REBOUND

REBOUND Examples

REBOUND is an N-body integrator, i.e. a software package that can integrate the motion of particles under the influence of gravity. The particles can represent stars, planets, moons, ring or dust particles. REBOUND is very flexible and can be customized to accurately and efficiently solve many problems in astrophysics.

Features

  • No dependencies on external libraries.
  • Runs natively on Linux, MacOS, and Windows.
  • Symplectic integrators WHFast, SEI, LEAPFROG, EOS.
  • Hybrid symplectic integrators for planetary dynamics with close encounters MERCURIUS
  • Hybrid reversible integrators for planetary dynamics with arbitrary close encounters TRACE
  • High order symplectic integrators for integrating planetary systems SABA, WH Kernel methods.
  • High accuracy non-symplectic integrator with adaptive time-stepping IAS15.
  • Can integrate arbitrary user-defined ODEs that are coupled to N-body dynamics for tides, spin, etc
  • Support for collisional/granular dynamics, various collision detection routines
  • The computationally intensive parts of the code are written entirely in C, conforming to the ISO standard C99, and can be used as a thread-safe shared library
  • Easy-to-use Python module, installation in 3 words: pip install rebound
  • Real-time, 3D visualization, for both C and Python.
  • Extensive set of example problems for both C and Python. You can run examples directly from your browser without the need to download or install anything.
  • Parallelized WHFast512 integrator for super fast integrations of planetary systems with SIMD AVX512 instructions
  • Parallelized with OpenMP (for shared memory systems)
  • Parallelized with MPI is supported for some special use cases only (using an essential tree for gravity and collisions)
  • The code is 100% open-source. All features are included in the public repository on github.

Try out REBOUND

You can try out REBOUND without installing it. Simply head over to the documentation. All the C examples have been compiled with emscripten and can run directly in your browser.

One minute installation

You can install REBOUND with pip if you want to only use the python version of REBOUND:

pip install rebound

Then, you can run a simple REBOUND simulation such as

import rebound
sim = rebound.Simulation()
sim.add(m=1.0)
sim.add(m=1.0e-3, a=1.0)
sim.integrate(1000.)
sim.status()

If you want to use the C version of REBOUND simply copy and paste this line into your terminal (it won't do anything bad, we promise):

git clone https://github.com/hannorein/rebound && cd rebound/examples/shearing_sheet && make && ./rebound

Documentation

The full documentation with many examples, changelogs and tutorials can be found at

https://rebound.hanno-rein.de

If you have trouble installing or using REBOUND, please open an issue on github and we'll try to help as much as we can.

There are also short YouTube videos describing various aspects of REBOUND available at https://www.youtube.com/channel/UCNmrCzxcmWVTBwtDPPLxkkw .

Related projects

Additional physics

To easily incorporate additional physics modules such as migration forces, GR effects and spin into your REBOUND simulations, see REBOUNDx at https://github.com/dtamayo/reboundx

Analytical and semianalytical tools

If you're interested in comparing numerical simulations to analytical and semianalytical tools for celestial mechanics, see Celmech at https://github.com/shadden/celmech

Ephemeris-quality integrations of test particles

To generate ephemeris-quality integrations of test particles in the Solar System with a precision on par with JPL's small body integrator, see ASSIST at https://github.com/matthewholman/assist

Papers

There are several papers describing the functionality of REBOUND.

  1. Rein & Liu 2012 (Astronomy and Astrophysics, Volume 537, A128) describes the code structure and the main feature including the gravity and collision routines for many particle systems. http://adsabs.harvard.edu/abs/2012A%26A...537A.128R

  2. Rein & Tremaine 2011 (Monthly Notices of the Royal Astronomical Society, Volume 415, Issue 4, pp. 3168-3176) describes the Symplectic Epicycle integrator for shearing sheet simulations. https://ui.adsabs.harvard.edu/abs/2011MNRAS.415.3168R

  3. Rein & Spiegel 2015 (Monthly Notices of the Royal Astronomical Society, Volume 446, Issue 2, p.1424-1437) describes the versatile high order integrator IAS15 which is now part of REBOUND. http://adsabs.harvard.edu/abs/2015MNRAS.446.1424R

  4. Rein & Tamayo 2015 (Monthly Notices of the Royal Astronomical Society, Volume 452, Issue 1, p.376-388) describes WHFast, the fast and unbiased implementation of a symplectic Wisdom-Holman integrator for long term gravitational simulations. http://adsabs.harvard.edu/abs/2015MNRAS.452..376R

  5. Rein & Tamayo 2016 (Monthly Notices of the Royal Astronomical Society, Volume 459, Issue 3, p.2275-2285) develop the framework for second order variational equations. https://ui.adsabs.harvard.edu/abs/2016MNRAS.459.2275R

  6. Rein & Tamayo 2017 (Monthly Notices of the Royal Astronomical Society, Volume 467, Issue 2, p.2377-2383) describes the Simulationarchive for exact reproducibility of N-body simulations. https://ui.adsabs.harvard.edu/abs/2017MNRAS.467.2377R

  7. Rein & Tamayo 2018 (Monthly Notices of the Royal Astronomical Society, Volume 473, Issue 3, p.3351–3357) describes the integer based JANUS integrator. https://ui.adsabs.harvard.edu/abs/2018MNRAS.473.3351R

  8. Rein, Hernandez, Tamayo, Brown, Eckels, Holmes, Lau, Leblanc & Silburt 2019 (Monthly Notices of the Royal Astronomical Society, Volume 485, Issue 4, p.5490-5497) describes the hybrid symplectic integrator MERCURIUS. https://ui.adsabs.harvard.edu/abs/2019MNRAS.485.5490R

  9. Rein, Tamayo & Brown 2019 (Monthly Notices of the Royal Astronomical Society, Volume 489, Issue 4, November 2019, Pages 4632-4640) describes the implementation of the high order symplectic integrators SABA, SABAC, SABACL, WHCKL, WHCKM, and WHCKC. https://ui.adsabs.harvard.edu/abs/2019MNRAS.489.4632R/

Acknowledgments

If you use this code or parts of this code for results presented in a scientific publication, we would greatly appreciate a citation. The simplest way to find the citations relevant to the specific setup of your REBOUND simulation is:

sim = rebound.Simulation()
-your setup-
sim.cite()

AI/LLM policy

REBOUND is a labour of love, created by people.

Please refrain from submitting issues or pull requests that have been generated by an LLM or other fully-automated tools. Submission that are in violation of this policy will be closed, and the submitter may be blocked from this repository. You may of course use AI assistants for your own work with REBOUND. Just don't submit any AI generated code.

The rationale behind this policy is that automated contributions are a waste of the maintainers' time. Humans spend their time and brainpower reviewing every submission. Issues or pull requests generated by automation tools create an imbalance of effort between the submitter and the reviewer. Nobody learns anything when a maintainer reviews code written by an LLM.

Additionally, AI-generated code conflicts with this project's license, since you cannot truly release code for use if you didn't author it yourself.

License

REBOUND is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

REBOUND is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with REBOUND. If not, see http://www.gnu.org/licenses/.

Project details


Release history Release notifications | RSS feed

This version

5.0.1

Download files

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

Source Distribution

rebound-5.0.1.tar.gz (374.4 kB view details)

Uploaded Source

Built Distributions

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

rebound-5.0.1-pp310-pypy310_pp73-win_amd64.whl (428.8 kB view details)

Uploaded PyPyWindows x86-64

rebound-5.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (456.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rebound-5.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (432.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-5.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (381.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rebound-5.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (409.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

rebound-5.0.1-pp39-pypy39_pp73-win_amd64.whl (428.8 kB view details)

Uploaded PyPyWindows x86-64

rebound-5.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (456.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rebound-5.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (432.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-5.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (381.7 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rebound-5.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (409.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

rebound-5.0.1-cp312-cp312-win_amd64.whl (428.8 kB view details)

Uploaded CPython 3.12Windows x86-64

rebound-5.0.1-cp312-cp312-win32.whl (381.0 kB view details)

Uploaded CPython 3.12Windows x86

rebound-5.0.1-cp312-cp312-musllinux_1_1_x86_64.whl (875.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

rebound-5.0.1-cp312-cp312-musllinux_1_1_i686.whl (801.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

rebound-5.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (907.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rebound-5.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (836.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-5.0.1-cp312-cp312-macosx_11_0_arm64.whl (389.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rebound-5.0.1-cp312-cp312-macosx_10_9_x86_64.whl (417.1 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

rebound-5.0.1-cp311-cp311-win_amd64.whl (428.8 kB view details)

Uploaded CPython 3.11Windows x86-64

rebound-5.0.1-cp311-cp311-win32.whl (381.0 kB view details)

Uploaded CPython 3.11Windows x86

rebound-5.0.1-cp311-cp311-musllinux_1_1_x86_64.whl (875.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

rebound-5.0.1-cp311-cp311-musllinux_1_1_i686.whl (801.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

rebound-5.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (907.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rebound-5.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (836.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-5.0.1-cp311-cp311-macosx_11_0_arm64.whl (389.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rebound-5.0.1-cp311-cp311-macosx_10_9_x86_64.whl (416.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rebound-5.0.1-cp310-cp310-win_amd64.whl (428.8 kB view details)

Uploaded CPython 3.10Windows x86-64

rebound-5.0.1-cp310-cp310-win32.whl (381.0 kB view details)

Uploaded CPython 3.10Windows x86

rebound-5.0.1-cp310-cp310-musllinux_1_1_x86_64.whl (875.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

rebound-5.0.1-cp310-cp310-musllinux_1_1_i686.whl (801.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

rebound-5.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (907.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rebound-5.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (836.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-5.0.1-cp310-cp310-macosx_11_0_arm64.whl (389.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rebound-5.0.1-cp310-cp310-macosx_10_9_x86_64.whl (416.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rebound-5.0.1-cp39-cp39-win_amd64.whl (428.8 kB view details)

Uploaded CPython 3.9Windows x86-64

rebound-5.0.1-cp39-cp39-win32.whl (381.0 kB view details)

Uploaded CPython 3.9Windows x86

rebound-5.0.1-cp39-cp39-musllinux_1_1_x86_64.whl (875.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

rebound-5.0.1-cp39-cp39-musllinux_1_1_i686.whl (801.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

rebound-5.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (907.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rebound-5.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (836.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-5.0.1-cp39-cp39-macosx_11_0_arm64.whl (389.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rebound-5.0.1-cp39-cp39-macosx_10_9_x86_64.whl (416.4 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file rebound-5.0.1.tar.gz.

File metadata

  • Download URL: rebound-5.0.1.tar.gz
  • Upload date:
  • Size: 374.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rebound-5.0.1.tar.gz
Algorithm Hash digest
SHA256 0ddf41cfe48153c60bc97c7c7232a558bc31c98861a3506d12aef8c161b26fc5
MD5 5ef89ca719fd1051dff62b86352e9154
BLAKE2b-256 e20ef5e57dae583c2553eceb40498d0ae7409145107319d603cff634707c844a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1.tar.gz:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e73f5ac9086bd39421c567eed94971e73a1ebd9828e7a607c190803ba7aa2f48
MD5 57412dc6037bb152513614aea9129647
BLAKE2b-256 897b912fd1d9d46d50b3d278a9d7f4119467e56a33e24c648a609073dd7aa37e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-pp310-pypy310_pp73-win_amd64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 584c968f582fd092d300b6e6be7865e7958d7e352b75c0acd01e4eb40e7099be
MD5 f399c9b26a36329d969fbd930af86526
BLAKE2b-256 9f1d74aa93fd18e12f7deff8d910dd1f4f3825680c24d0631022e259d8aa4dcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3eb88b7e7653b9973c341c13c4cc82aec248d158027adc99b17ed827b64aefbb
MD5 469a483ba96a13864d2db3d35219e9e1
BLAKE2b-256 681ccdd5e2a9cbeeb7093f6f05d6904a8fcc4906d0d022af2da36c9843d496a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6193cb21d9a99a39deef458d33defd9ca74ac65da9af88765dbc6daa0116028c
MD5 cc636d809de1b3af9451e1ef408f125f
BLAKE2b-256 47203056796ee782af49af71508fc212301ea5be311aa6da8ce4a12cf2d6a454

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8b8c19ae5477aed1d0313dc834b876cc5e4917a87761c6cdfa17c54ba9fd0166
MD5 1cc7b9b2ded5b8156b3751fd16396fa2
BLAKE2b-256 81d79cfafb4e96727f2f6d4823919cdc15ed37fcc79727bc520f63a8b2e431b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-pp310-pypy310_pp73-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8e0f0f0f9ed7dadc966c8cf924f55d95efa8f6b0c054608f93c6a4e3e9645341
MD5 23e75928feec0deb96682ca4045c4485
BLAKE2b-256 ec25aea52f0cd5579c3c2d189bd537286cf9f020801b010a2730d1978e597f9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-pp39-pypy39_pp73-win_amd64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86ae72aa97bb7751067b51b0a6a558ea193a8a51c52981da28031b5829b933cc
MD5 b4d8b57ac8d5d2649513f5721c5bd1e5
BLAKE2b-256 ee9735a42612ee267758fe477068be6101dc89e1a6648ce2d2bd87606fe2caa0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 270ee1b8de808c327b669bd05b922362a009b9b95cd58b5f386f1cd43032c1e0
MD5 ac2abd2fcefaa6587b221e5bbe7bf692
BLAKE2b-256 aec9768f4dade4efdb4198004dfd9977677b364a74a6ab853f9ff9ed044a14c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd5ab8c554342b6b702f985a9031ef93eaaf88a0702ceff58d4f8bb62bf3722c
MD5 6bb5b37806cc96bdac24d61941e5f9c8
BLAKE2b-256 0997d5eef8e792169efaf52a8b96279ae0bdf28b78cd77f9c12f3b7701be58f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e723bdd9841b1a87e8d50fa70e33485e35d241850e221ceecb2df399dd613401
MD5 fe48c5e130ad03c67bc1b959aabf12b2
BLAKE2b-256 dca69754e6e4caca75bb7eb1d1eb2866bac6b0ab115487394b3f1069b17233a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-pp39-pypy39_pp73-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rebound-5.0.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 428.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rebound-5.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b64b784d0dadff746324bbce76a76f6ffd80b92536b6cf017e7323a8c3441ff0
MD5 8d93ab5a1638353cd36dfad7b57bdfc7
BLAKE2b-256 24756cc3862a61cba414678b5086c6a782284ff4f182fa3fc45d476d99fef9d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp312-cp312-win32.whl.

File metadata

  • Download URL: rebound-5.0.1-cp312-cp312-win32.whl
  • Upload date:
  • Size: 381.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rebound-5.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 121506154a6f2cb35c94750d020ca49c658da7450c0af0254c1cf2e035006f89
MD5 caaeaf00ae9526140ba5009d4f51d497
BLAKE2b-256 5a0959fdeb68ee2d7705795a555a3bbad5c62c0531ee08ef9cc90da60c7dbc49

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp312-cp312-win32.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f37505d5f0d9e18dda9cf9ad572d9f23235e5f12798ea2cecea80e37fd67d40d
MD5 59cd5e7ab07443a150ddc74202aac266
BLAKE2b-256 34ac62a9bf2f3981193175bc16420f9bea216d1e97b2c3ec93b361c653b21852

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e4c3bffa2c7ea3a781de19de20d299ee6fd4b263bd71609fe283c443276fb728
MD5 608a828107639707493aa3ee2891ccb5
BLAKE2b-256 73f6faf04cce9273e7bb3dc7e34e1504f76e3feb141a1fefedcc403e805bb7c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp312-cp312-musllinux_1_1_i686.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88cd270e25808638939a0df787f2acdd7d9baf89ffc4d8b3010c405073821578
MD5 ea12f0261fd3eaf29850434d36e51c98
BLAKE2b-256 469af3faa0740798eb2a1cb40ff91b61517589182b9899995a87349e296798e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f82d6ad7b22d22a5d0f449e46d6bafb29ba5815f7fb8efbc8c6a96194f7e32fb
MD5 47809c96475d9467bedf30f702692125
BLAKE2b-256 db15b39f3221892b38254eecbca130595840bc7dc4bab40059d59d53484f81c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0eaac913dc52eafe3a0bb63195cefc366b72df60c2ce2d8eb0bb09b30a0cd42c
MD5 3202351e2bc65ff1f667476b6f45a95d
BLAKE2b-256 abf6e5487f9e227f203a9b3dfc79e1a015197bd695803462369982fb081c515d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5be33eaee5de29a1c87dbef42e188f2d6ec29394bb931422df87b0a1c0cdcc17
MD5 8d312dee5e4ba8c4905d8e5cfed4468c
BLAKE2b-256 7f347deb4e80759bab635223e55a0b3c698e61f5212833386edf5bc3be213230

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp312-cp312-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rebound-5.0.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 428.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rebound-5.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 80eda10f05ebcb67a54d6363b48b1ca50407a723e445466bbbd364302f2019f5
MD5 af190004d0849f9b36939b6966d7ffdc
BLAKE2b-256 e57c3b345adf02b424827986045b41f2286c065e8fc35a5068d26093633f2564

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp311-cp311-win_amd64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp311-cp311-win32.whl.

File metadata

  • Download URL: rebound-5.0.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 381.0 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rebound-5.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c152b008b91042d85abe5b02da58dacd4475a28d082bffa11e06d4f95dc0a150
MD5 733be8536926fd065c8d7f185d47af59
BLAKE2b-256 3620f194c59b57576c015462289c0ed7c69abb6dd72bd22ddede4673adab0ff5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp311-cp311-win32.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 af8ccb68102a3b9e581bd0394650a5fedb2df3ae7c43bf2f1d56a9753c831132
MD5 7924dfa5ca5a415d5638a80682f289bc
BLAKE2b-256 b47c57ca3a6f548376f0b8985b495fa5d4507886c1bc1566c639f51b5714a8f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 d3fc7c2fda28d118babe805fa99fe28061b86888337788f22876c58d299cf5bf
MD5 8371695e9c0f243251d14183858d308d
BLAKE2b-256 80bbf057e55beac3a10a1b3de2d4fb17e4c7e78ab01689b0d32f0a40477034f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp311-cp311-musllinux_1_1_i686.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 071f2010a29ac992e1aeb99d319d31a02bf19674cb3e9e87ef097bcd6ed84c1e
MD5 4b216033b76058f104781a110b9ca5c2
BLAKE2b-256 b4a5e5710692ae4d42fa03958bf45bd87b4d43a845ccd0ac9617f61c8e1baed7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f5e58eda4eff157aa456f8a4cbcf25f3b8d2a0960cef9281d63880273ed59622
MD5 5513fddfa1f872d0031695b6474f81f8
BLAKE2b-256 8f7cccfaa671ebf064db56b8326b5db39852f9aa263f1b11b77ab731c91dc42f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ae2bac0ed931a277c08138a02a2e75cb89f581d4f100a77197a717453baf02a
MD5 132c1a579474140ef8f81aac7b4b1871
BLAKE2b-256 65e170d6e63ebd77145d89c16a6999f562a7e5e785b7b45374d0a085739d5947

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f0b9430b9bb4a08718b900f170af73fee161a59ce62eefccb8d770ae36367b27
MD5 879c773353953ec32383b760f596494a
BLAKE2b-256 2606f081247088c63837d6f92a73054489d7918b4eb45d9f5c80ee8aa12c2942

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rebound-5.0.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 428.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rebound-5.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5d58dfe8493d3d356c5a0ed00397c564ee871491e3e44237e1311d94f21540a9
MD5 e3fc0b7340293189cdbaeffd99a9ef34
BLAKE2b-256 75396205d1743c553303791923d5396fe7825b8ef3d5de1efb93aa7c045f4860

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp310-cp310-win_amd64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: rebound-5.0.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 381.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rebound-5.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2c07eba562cb1eb8ac990b87842243cd3e272cc53d2a947cbf9ab522649325bd
MD5 5443cd7dc567935a1e805191e8fc6e80
BLAKE2b-256 16626ad6604b5bd4ec01f2e852e3b7db3dad7c648cda02c32a5f79a7a2593045

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp310-cp310-win32.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9502577d27491d9d0ac484bea2ccb7d4be42fe44edc8c89b9df09900bbe99a9e
MD5 cb6df838a6db5fee4916669e617e5c67
BLAKE2b-256 c78533db0bf043e16dad6c7ad4f3f22369eb92a09d6dfc5b0e9a443749d33217

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2667d1742f5faaa7d2959955545bbb662788337010ec38ef00bd0c8b02400dd1
MD5 b4749d443296a027b04c879dacc49e3f
BLAKE2b-256 20345dc13cf8027342a1910377ba9eaa34e920e170f0f90b35b702e62c9adc5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp310-cp310-musllinux_1_1_i686.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 138419f8b79b9d2b28f8f1d60ff4f6566aaf589160a9f262089abded08a902f2
MD5 6fc0f5c1b51a0070d30ee6eb63f71e15
BLAKE2b-256 45f8b498016a47825b84d3366fe2fda26766c8ebe3e701d29562b1beac22c480

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 049bfd1e658a679f4cedac3ccf4578fe60fe2f53e5d9201a7ab03160b328a06b
MD5 06c2c86613d1270bf0f4507f882ea981
BLAKE2b-256 00394833cf67a2bfe905b420820a91228066cfd8ad1acb73ba42092a282dd95e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3195759e8367013488c8adbdd4078eada1c0dede3cfb93edfd9c7f9ce439d6a8
MD5 e7529f748a47c29ccd5b664ddf63e600
BLAKE2b-256 c4e0cd3f4cddd58ced68a8bd3402fd60baba10e0b6435f16efcde5e66c437e38

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e752d287867671c5b092e9eabe5be066f4535bda5974165d817883d1dd03c11
MD5 85b56a8d34725b256854f89fd164aa43
BLAKE2b-256 621057a66ffcec4f4609494d346e4e40195c7df601e8be355eebdc0879e8afaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rebound-5.0.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 428.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rebound-5.0.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2b9f89c786562d904fad85437aa33cbc924129211c2ca989c36b4c41c6dd6f67
MD5 210e3e34296467e08dee23ebc1924c1b
BLAKE2b-256 2ac546a3152540f584a3efc3f5d4c61e73087581972f14ca40465e8d7bda84ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp39-cp39-win_amd64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: rebound-5.0.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 381.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for rebound-5.0.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 75ff2d12be327edbb3cc9ab311972d393c986aa7b1ee46e11df4bdc49136e0b0
MD5 44bc6203f1d71e7fc2b2242674beebe2
BLAKE2b-256 5da7fb2ab28e7f6e278bcdd907525a27f7444a6d0bfcbc35962e0a00f1e30106

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp39-cp39-win32.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c527de8594d4cf5b6eb2ee87813643b631d0c090cd7a18d63efb341ec24f4035
MD5 ac753c8d40f63f7432ad7685dd05b5bd
BLAKE2b-256 d70bb2f4c74c8aaf8b0606f4b2bf0d86b508ebe69078076c9bd432539d2db52c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ce91d11579274d74b8c88c858a8cf90d69137c5617842eba4032bb283a236537
MD5 e093417803b4f0476fc602078614f7c8
BLAKE2b-256 4256a4f762994789c738e256332bba186cfa060ca7d904bf860dd6a65aee0d08

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp39-cp39-musllinux_1_1_i686.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b309c39f773bb6c20659c8a6457b782d6ca699460e626135eff34055c162ae67
MD5 338ae3af52a1390918a5e6ed9fbb0047
BLAKE2b-256 0feb671815b9fb5e61d7010487769eb4bfa85b286a69e3d8273e7643f23aa0e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8dd64099191b2d0c0d763b233ee1b572fd3fbc05a145c6de691f7a623f47c19b
MD5 e3a364fb4daebd3a1f141be593a443f7
BLAKE2b-256 cadbfe55211764be5eb60e21670e0d99acfd2abb39ae7e79296425590ef4ac83

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed80cd4121ed0ccf8639b451363581c85aa943d5367729305e760b683c913d50
MD5 b2d52d333a6e7065c370c517cdbbb8d2
BLAKE2b-256 689fb7b16ce86c1cad323b5b22d80c507092dc6001bf94f3986e905254428e2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.0.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 056783b8f88392ec112aa61cdc8ab84eb31268096cad73542cf6b2d28b483dee
MD5 28feed04d94271395d527c2947e68149
BLAKE2b-256 a073597d5606c6e34a5633339744093143548153b5933b6bf07cd84bbaa4e560

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.1-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build_wheels.yml on hannorein/rebound

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