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

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.0.tar.gz (374.7 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.0-pp310-pypy310_pp73-win_amd64.whl (436.0 kB view details)

Uploaded PyPyWindows x86-64

rebound-5.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (456.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rebound-5.0.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (433.2 kB view details)

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

rebound-5.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (381.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rebound-5.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (410.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

rebound-5.0.0-pp39-pypy39_pp73-win_amd64.whl (436.0 kB view details)

Uploaded PyPyWindows x86-64

rebound-5.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (456.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rebound-5.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (433.2 kB view details)

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

rebound-5.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (381.0 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rebound-5.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (410.6 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

rebound-5.0.0-cp312-cp312-win_amd64.whl (436.0 kB view details)

Uploaded CPython 3.12Windows x86-64

rebound-5.0.0-cp312-cp312-win32.whl (384.9 kB view details)

Uploaded CPython 3.12Windows x86

rebound-5.0.0-cp312-cp312-musllinux_1_1_x86_64.whl (876.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

rebound-5.0.0-cp312-cp312-musllinux_1_1_i686.whl (802.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

rebound-5.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (908.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rebound-5.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (837.1 kB view details)

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

rebound-5.0.0-cp312-cp312-macosx_11_0_arm64.whl (388.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rebound-5.0.0-cp312-cp312-macosx_10_9_x86_64.whl (418.3 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

rebound-5.0.0-cp311-cp311-win_amd64.whl (436.0 kB view details)

Uploaded CPython 3.11Windows x86-64

rebound-5.0.0-cp311-cp311-win32.whl (384.9 kB view details)

Uploaded CPython 3.11Windows x86

rebound-5.0.0-cp311-cp311-musllinux_1_1_x86_64.whl (876.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

rebound-5.0.0-cp311-cp311-musllinux_1_1_i686.whl (802.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

rebound-5.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (908.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rebound-5.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (837.0 kB view details)

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

rebound-5.0.0-cp311-cp311-macosx_11_0_arm64.whl (388.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rebound-5.0.0-cp311-cp311-macosx_10_9_x86_64.whl (418.3 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rebound-5.0.0-cp310-cp310-win_amd64.whl (436.0 kB view details)

Uploaded CPython 3.10Windows x86-64

rebound-5.0.0-cp310-cp310-win32.whl (384.9 kB view details)

Uploaded CPython 3.10Windows x86

rebound-5.0.0-cp310-cp310-musllinux_1_1_x86_64.whl (876.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

rebound-5.0.0-cp310-cp310-musllinux_1_1_i686.whl (802.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

rebound-5.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (908.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rebound-5.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (837.0 kB view details)

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

rebound-5.0.0-cp310-cp310-macosx_11_0_arm64.whl (388.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rebound-5.0.0-cp310-cp310-macosx_10_9_x86_64.whl (418.3 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rebound-5.0.0-cp39-cp39-win_amd64.whl (436.0 kB view details)

Uploaded CPython 3.9Windows x86-64

rebound-5.0.0-cp39-cp39-win32.whl (384.9 kB view details)

Uploaded CPython 3.9Windows x86

rebound-5.0.0-cp39-cp39-musllinux_1_1_x86_64.whl (876.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

rebound-5.0.0-cp39-cp39-musllinux_1_1_i686.whl (802.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

rebound-5.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (908.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rebound-5.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (837.0 kB view details)

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

rebound-5.0.0-cp39-cp39-macosx_11_0_arm64.whl (388.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rebound-5.0.0-cp39-cp39-macosx_10_9_x86_64.whl (418.3 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: rebound-5.0.0.tar.gz
  • Upload date:
  • Size: 374.7 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.0.tar.gz
Algorithm Hash digest
SHA256 9012bc4ceac42da8c1344f54e72b64da4720149875dc069d8e0dd1be0285dc04
MD5 c8eb0a69709407207394f69c951c7480
BLAKE2b-256 c8f4769f7099f8a0588a6e34617e1eb6a2decd4bdb601841ebeedb5e330d3b07

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0.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.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7817ab52c7ae83f599c44a4bdc16fb142d130c246eee1138334756d91c82d78c
MD5 a9c0ba8df4edaa8cf6ee18dff0330b9b
BLAKE2b-256 791d6d73bbf86bee7e7370e367999914d743a027e50b4f356d65315011303e13

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84b314f0d1788a734c5cd19f9b6519d5200d01ed8f4eb8c45436063934275394
MD5 94a339530952fa28d4de002e73caad65
BLAKE2b-256 b878cc0070fd93d2facf9f9bffe182e64b8341cc84dc3af02296d86fa3d5ca33

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-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.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 754f991fbc2db9b43500411bdb895ffe9a22d164adb9ac6f7077e0f69bb1b90b
MD5 da1c4efc093f80f4c188a12657c8415d
BLAKE2b-256 48a616ebed45e8681309b0b1b71f55507ada09aaea18c66eb403925832453478

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5fcafd35b4e5efc4e068ff894aa5234ea489dda8fcd8d5dbcc08b9652819692
MD5 3874d422e44f7648047fa290d6c1a8a9
BLAKE2b-256 99305ec2fd7eaee7937a70757bd82f70599bdca98471f5ca1848df5ebc6ce0b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 acb5a692d758b6535423d3c5c73faa75945af2db9f9f7f2fa1bf3a0e12087be1
MD5 15cad205c1f63876faa8f57c3a42b995
BLAKE2b-256 75f36becda9185cffbc64941d7a23e7480ef393cdc5a6eaf0725d34b20436c26

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1b02a1244b894cef5f0d4b77d3c3aed1eb551f8ccc2b5d1ed81cb1297b6283f0
MD5 ad8322209fc3dbf013c9a77d28d7ecdf
BLAKE2b-256 d78782528a4e9c297f3a8a56d7d6c168b701f15f24f9d52b83b4fe9f603e97f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b125b6dfd031f88acb2730cc68ba0a313732b578bda894a3a50f7ad7dafbffa
MD5 7078570929a31de6b5453b1e9892ba53
BLAKE2b-256 6266078b19da0f3a290208be7d4be8838764e41a741ffac0944dc9add035e9b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-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.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 79813edcf4e17562f59fd9897d1845bb63aaf8d70ada063f308f58fed63b1e5b
MD5 112d456a2bd906b42a20444bb4563bc6
BLAKE2b-256 9f3e97f38aa7cbd86efab01c09306500b0e69c669201351800fd2ec5b39fe0f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2b8a2b846e348e4de7cb675a5bec7c7dd46faff9dc4b52fc0ff22f48ba50656
MD5 4a0aed6fe6b1787ae470284fbaaa8764
BLAKE2b-256 bc624ef94394ed3c7cb1faa9a890535df589b6e26bb91e466abda73c317f383e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 28962799510e3eece6128e83850a541ada860204b179ffb786628fd72231e982
MD5 0be3650e5eb65c3160c03ff9ed4f7845
BLAKE2b-256 32063c58f6f62affffaf3eb8d095c4e7aa5f2f2a82947263f0de71f727aa3d80

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rebound-5.0.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 436.0 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.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 75d5aed79f560ac50fc33bb898a59d61a0feef7791805548156afeaf8e563ee4
MD5 023cd58a214b64e7dee539c9d9ca1fe1
BLAKE2b-256 71851b8a5f7939a5d4392288fc7cddcf30ad575266e0fffb5da0f93082953858

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: rebound-5.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 384.9 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.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e137e83bc3f51af1271bbfe88f5c171f3c8477326731cc5ee7ac52b4ca2c107e
MD5 091d35d9090d2fe74ce6488298e39974
BLAKE2b-256 5f3037783ef1e3a3001fa8641f551e4519993507a3525e5d0d5a6ecbdc9febe7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f483347a0bde56729daa0093b26e3995e169f2a94fdb5c2f82ad5d889d873364
MD5 ad8113ec88f2e71d4b9ee400ee88fa50
BLAKE2b-256 6643df8c4562fbe7e17e81276d4557e7064f5a7cc30099154b2404f26c6ab671

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp312-cp312-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1fca4f67912403a7afd95754f6a1a920063dbace6803b66f1e0bcd254fdd1913
MD5 41327f42dd5c5ba893bead235dcb7c77
BLAKE2b-256 afd3a45e82728648b4ac9714db9579419cf8e450a0cd4989c9b4f454f1fd939f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3dad1d3ff1aa1412290615ed18d583dca52ca18df2ac277fb068d55cf8a82a59
MD5 df808a29f5d897f47b6ce3ea57a944a4
BLAKE2b-256 64d0d9acec824d948af01f7fef2a5a64bfbb3f736734320e7871510bd4122aac

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6846dfad671090f5404bfc1f33bca135d9abbb3e8f38c0dee248bd84b2874412
MD5 ec5bf3ad383c6aeb77a44352122f88b8
BLAKE2b-256 0b62c9d495a2ae05ce57446983650f2de2adac1a97ed0f1cf8a84903df786fd3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36ebfbd6c069055bbe8e81b675bfa23f0ab78565548a8f7bb205f6a8e8fe9752
MD5 fde07c604c752b00c427c9c5c520df08
BLAKE2b-256 6d58bbf7bd78237133d13833d3ee95767c6d71c8c3db3e4209fa72152bbf4845

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp312-cp312-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 be728a7c499ec4b3aac8947a365a07388dd7c5c3a58e8ecef0aadd8e362a9a49
MD5 5aad3182863f5aca6e94aa1f82931eb5
BLAKE2b-256 8fc626b3e3ff0bdc693f51c0159d79394358d131cf10b5f520cdefb21b0516c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: rebound-5.0.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 436.0 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.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3449ba43c0dc826a88a778aea90602ca6bc93369461f3be5789c34808574b93f
MD5 2b806f8ff5345ea8957ce9e2353b7968
BLAKE2b-256 098aa949f87d213b98a6b46ed8146b49e87283eb4d121770a72c750b80aa5e23

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: rebound-5.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 384.9 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.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 09b902c179fd02db45389eb43fbee10945900f2f9fc579a7e7ac24ecc35a4d20
MD5 66319cc88cfd80196dd5c26bffcd0096
BLAKE2b-256 2b666bd88927116b0625f6c67cb84e9f41b74f98b38a3d228e523a6499d52111

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7bac71f3cbd10ca663745e4450a24d29660e9b9e8ae3a5db9d8c3804b9615736
MD5 e7ee14189840060ab83e8b7c12cc83a8
BLAKE2b-256 f6468a89f3fb235a933745a1b4d8fb3a71be6f2f1511c0ba4c323b90cde697e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 b8ff9e741ac4ea168495417a7f052839486c1c86d2590122973c3d4d80e2a59f
MD5 2a7227936dd0abc158794cae9c6c253f
BLAKE2b-256 0fc6873327d6a8644422b93dd3ed36ed3f199da0a31248a93aea1fac63cd78a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e502f515f27950bb1b3878e61316fa6342fb0237239708e979519f9500c02d98
MD5 669520a81e2cd18462f68adbce46271d
BLAKE2b-256 881647dee182f2132d5b60189d5fa4889c3fb4764e965451dd6fc72a8238217b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 6ef5d095bdb19b4247594e68ce0f3c18d77a712a76b4c6f14eb81a37fbcc1beb
MD5 3bf9a347bc6d89fd7e076765d0e43eee
BLAKE2b-256 7d45dcfd2b207b5a550699703affc6b54cb2a16853f8779110368ba00b8bb74e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0306cada23452987dde8a9e5eaa59a0fac3efb412658a85510454253eeee81d9
MD5 37109debdef2eea80f4c7926a47c5129
BLAKE2b-256 a07968cb3b04ae33a259d808a35ef2c174689d53b3c012944553b744ff45ca3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e6fd464613efdc43c9c3c54b3161039b19565b7a857abb7711352b51680aca85
MD5 2cd6f22d88fe712e0d59d3ef3ed74c43
BLAKE2b-256 a0365286cb43ec8a4784ca230666ef8ece56bc651af30768ea9c6e3eca51baa9

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: rebound-5.0.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 436.0 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.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9e0158b2833addf5d96709bf390030481cafc6e3c0acca504e078e245d7faabc
MD5 91f3a49c8e98068534eb4273847156aa
BLAKE2b-256 8df89ef96225616b707a25d4091e35136c155ea288745c417eb62dcc5db1b1d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: rebound-5.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 384.9 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.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ccb621f6f2d0b990cb5babd6fb11e7c6d8805f1683410eaf6f812305db461d38
MD5 e09d8bcbc2cbddb5a7be18eb38b3a7e6
BLAKE2b-256 5fc33a48eae202d75b9fab87c41e76068ec863684628e0e9b1841a7b275e14fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 38f5e5859e154bef31c468e495b22f0d281a9ddbaf203158edd06fd7034395a2
MD5 3bb1674830ce1fa568dd9935b5c8f315
BLAKE2b-256 e93dff913aa49bfe820cfd4b909cd9fdc29550924832ce8d59ff3be8799aa24a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 fafa7e7b5b802445045de7db67c07e6c0ddcfd1ad90ba56dc00277952a6b3182
MD5 8d9af7843c29be989f5969cc7c2a450c
BLAKE2b-256 a07ffb1b18b4a254379baeb0b3b85a396314324d0032dada850217b343b43d5a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aff2feaec45d6fc38e73112d1eff0e495416a144513a25ccbbf3fab019da9a86
MD5 70c0869915dbcae60620f6faeaa8ee5b
BLAKE2b-256 5c5ee8aa8b246a631149c7b333243ea50d43ebd78514a62abdcc466972fcaa94

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2badd2cb9d58394ba64498c444a183f86accdb8c546bf5210148f24d9897d974
MD5 1fcae897a3c6fca72241770410b13773
BLAKE2b-256 47e87c78f3a66e63621a7b07ed212cf201f19816d86c9e81d823f2684ce74267

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88af91de412b26eb470f31e062cc9b1d11352e428e56b3a0feb9b5e9b7fd6962
MD5 77ee7be019509daa51a45d0961bb0189
BLAKE2b-256 90e28112268045266f82a98091531868b4fac6700748cd265edce69dbb88a30c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 78126eb1c069c181faa687c34e1baebc5d3258ebd4d7e12908c352c9b4d45ebc
MD5 887cf66af4aa5f41206c174cc37752e2
BLAKE2b-256 89443e8bafd5e0b7a0aac4b9f85419f80e7f424a5ab200edfb45be00fe82e04f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: rebound-5.0.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 436.0 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.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 91381dd89704a629a4689b7d16030fea30170f23f173f77c168ab3192ee6621d
MD5 af8997e048f8a7574cc9f07127c0b28b
BLAKE2b-256 57f7884b009041a20a233137c75e20a608129feac389e76298668c5b51d405c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: rebound-5.0.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 384.9 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.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0c9422ebc83ef822893ffa6c10fbd2c5a255b209a22838e07ecc724d5104f820
MD5 826f0813d3464f94a32ac31e9505df09
BLAKE2b-256 802796084407a96634cb4c9dab7bf4996f84dbc2a373e354bf26bb8d94a52128

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a672ea53bbbc05f3dfb6b4b996d54794320708b3b02e5a509635cd1e2b10ae84
MD5 01f257b2d0d7a7eb442804c14283d99d
BLAKE2b-256 1c4c07801c439caeb7bb76ca4664605186a79a43d7af1b624c217bf51daba82b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 87bc584edb73a2e2d27d86573b6df3eaee40c45825c954db27b07c493ae50f1a
MD5 3bfe583587dba85bad0c657c01a78600
BLAKE2b-256 7d6bf721d0fd3c5e3a9d513cd661e9d2839f078f4ee3ccc6f9fe2e4de103fc95

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b30a6b6bfd41455446cebb8358edfdca7d9b6d4c1dc31138f1e21cd223f8aa37
MD5 cc10653e17971d451ed7a78142db094a
BLAKE2b-256 53c2e0253e6e30a20c649e86989ccd6d84a0962c53a9d29ec0e3eedb110ba008

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8640118bbda25c713df13f9abb7e8b6b794c605e10046b2c98a9fa5a981703eb
MD5 9f853acb4bd42791d136ac624f42b790
BLAKE2b-256 425bb10fe4165897685d616c58230920971a747094259127cb1eb1ff59a81145

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd138db03c7314769960906177c63385852429067c699c06660a0188c2fbb272
MD5 836685789fe0be5bf728c989cced57f2
BLAKE2b-256 aa31aa18306ea88cf41bb3dd43108d88cf3195b79e8f538231cb9df4d6a78cdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.0.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 dcd1ffeca3a2975f6ee8c04272e627da368a008093a0e4fb291474f8df64fa60
MD5 d6ae6afffd76745d136cbc55908237cd
BLAKE2b-256 f7aa676959cf1925375c749c8a7ac927a700582186e720d75d2f354c9f81a12b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.0.0-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