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.1.0.tar.gz (374.3 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.1.0-pp310-pypy310_pp73-win_amd64.whl (444.4 kB view details)

Uploaded PyPyWindows x86-64

rebound-5.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (482.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rebound-5.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (441.8 kB view details)

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

rebound-5.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (382.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rebound-5.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (419.4 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

rebound-5.1.0-pp39-pypy39_pp73-win_amd64.whl (444.3 kB view details)

Uploaded PyPyWindows x86-64

rebound-5.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (482.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rebound-5.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (441.8 kB view details)

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

rebound-5.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (382.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rebound-5.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (419.4 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

rebound-5.1.0-cp312-cp312-win_amd64.whl (444.3 kB view details)

Uploaded CPython 3.12Windows x86-64

rebound-5.1.0-cp312-cp312-win32.whl (381.6 kB view details)

Uploaded CPython 3.12Windows x86

rebound-5.1.0-cp312-cp312-musllinux_1_1_x86_64.whl (910.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

rebound-5.1.0-cp312-cp312-musllinux_1_1_i686.whl (819.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

rebound-5.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (942.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rebound-5.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (853.7 kB view details)

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

rebound-5.1.0-cp312-cp312-macosx_11_0_arm64.whl (389.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rebound-5.1.0-cp312-cp312-macosx_10_9_x86_64.whl (427.2 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

rebound-5.1.0-cp311-cp311-win_amd64.whl (444.3 kB view details)

Uploaded CPython 3.11Windows x86-64

rebound-5.1.0-cp311-cp311-win32.whl (381.6 kB view details)

Uploaded CPython 3.11Windows x86

rebound-5.1.0-cp311-cp311-musllinux_1_1_x86_64.whl (910.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

rebound-5.1.0-cp311-cp311-musllinux_1_1_i686.whl (819.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

rebound-5.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (942.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rebound-5.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (853.6 kB view details)

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

rebound-5.1.0-cp311-cp311-macosx_11_0_arm64.whl (389.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rebound-5.1.0-cp311-cp311-macosx_10_9_x86_64.whl (426.5 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rebound-5.1.0-cp310-cp310-win_amd64.whl (444.3 kB view details)

Uploaded CPython 3.10Windows x86-64

rebound-5.1.0-cp310-cp310-win32.whl (381.6 kB view details)

Uploaded CPython 3.10Windows x86

rebound-5.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (910.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

rebound-5.1.0-cp310-cp310-musllinux_1_1_i686.whl (819.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

rebound-5.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (942.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rebound-5.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (853.6 kB view details)

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

rebound-5.1.0-cp310-cp310-macosx_11_0_arm64.whl (389.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rebound-5.1.0-cp310-cp310-macosx_10_9_x86_64.whl (426.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rebound-5.1.0-cp39-cp39-win_amd64.whl (444.3 kB view details)

Uploaded CPython 3.9Windows x86-64

rebound-5.1.0-cp39-cp39-win32.whl (381.6 kB view details)

Uploaded CPython 3.9Windows x86

rebound-5.1.0-cp39-cp39-musllinux_1_1_x86_64.whl (910.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

rebound-5.1.0-cp39-cp39-musllinux_1_1_i686.whl (819.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

rebound-5.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (942.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rebound-5.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (853.6 kB view details)

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

rebound-5.1.0-cp39-cp39-macosx_11_0_arm64.whl (389.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rebound-5.1.0-cp39-cp39-macosx_10_9_x86_64.whl (426.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rebound-5.1.0.tar.gz
Algorithm Hash digest
SHA256 55457bbd9f48617eca9359d360d88448b11c9e5e8f0c1d2e62c8fc71031145fb
MD5 ac6ca2651e046dfbffbfbdd531ac16ac
BLAKE2b-256 4e94363f94302dff76538bbf5b72200e51bf24756a23ac15f0161932696339c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 50dfc50ea2085f586c2fd56b40cc8f0d78def17474ce28e7a6aa501bf95f3880
MD5 b77e5b79f271c59ea6f011d3aff9bc75
BLAKE2b-256 31edadc31b1dfd828b4e4cf10a411de2ca6f9f9236082c276808c94924c3f9e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa11aacfffdf7d980450483db3c39eb0c402def075faf3933ebe0b1a81a876a4
MD5 7979c51f14d5cd66be0036a196a3aefa
BLAKE2b-256 43745df7276bf8ffdf16cc685e1bf64a77dd6e4c16a23f5647e07c664914e512

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.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.1.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.1.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 45e7c7e1255ef65276ce6d326103db0513387cd3884271dba29f8b46d814c437
MD5 c90a91154881d0206ba124cf197aaae1
BLAKE2b-256 ce7d912579144a9fa5b95fe5c176d22e0e15d09254ebf6af49cb1ec653855856

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bba6edef6f3f8e89935cecdfdfc610b11bd5abfbb4f1a9d10d8362382887a22
MD5 0c1b25aa1e961ae777123acd16221e91
BLAKE2b-256 57195585eb8e6238af6ca3f6b12843aaef41a85b7859318021a2a18a94eb8156

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 195aa64b04aa7f188bb795f5504f2008c1714d17b83fd17387b87b60d3a21372
MD5 7ff45d0902c771b8f8204037976bf86a
BLAKE2b-256 d112e3f4fac86b91d69b63e9272b7d5636989281fb1e153c45d3653053b0ee0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 593f1d3eff68e207969624bdc2be19b8ee4463ebccfef18479ce695e5e2efcce
MD5 d0fa935c46d044dcd08742e01fe2b23c
BLAKE2b-256 d879139623158b9cce84f67b5ed98a2bb2e04ef78fdab9c94922e4f8955bfdf7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60812938fa0e6531927577055896772ca8881cd7d3195cce65e7f012bf76dfd5
MD5 86a2a64de411ccee0b7b833d041a1ab7
BLAKE2b-256 b99a9c191f63d829c7e195f1e7b099a4d7a10cfdf9561517ab43a27fc24aff73

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.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.1.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.1.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dfa81a0faff6fd4755a76f65834a677e31b7a5bd85ea672780d84f010a7e08ea
MD5 b47898c5c587f394e5593c1ee6b5b8cb
BLAKE2b-256 d8f74084a3b99d3aef2fcaa8cef3820f1a1d02901eb78f789708d33c630000b6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b056bd268ca71bbd1fa2bb059ff2a4e6e35248379da4888b6669b93fe9848e35
MD5 d92c16510d796f3b00a32b74a97f3c02
BLAKE2b-256 5fa8313b0d79044abac082dfb4c426b7b97e07a31f8a13a50f71989cdde024c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 58507120378a02a31a9cac20959313b91ce61045a7afcaa184047593e03c7093
MD5 0c8c0dc5bcb62c441ec963e379bd4265
BLAKE2b-256 dcc0f54966b7ee2a7a1e5c57ff4887ca89f4275a82b6d98a80ed711ebfcb99c3

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rebound-5.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 417b1342bd7de2a26ab2bb037a0ab85bf71c1c9fa41aaba8692d3d21da5bd8f1
MD5 46a0fddb89252bdfe2a936b4def8a4b5
BLAKE2b-256 02ed34a17a3c9eecb8db1bf8c87f5d250b8457c957a69945ec3f4ba59caf6e6d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rebound-5.1.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0a1abffdf8a444567de8a2dd5beb585627c045c2b8806db2b192f6da8716429c
MD5 b01f6b447092d2c3c5c7b667cfa17033
BLAKE2b-256 26a7c49608aba56efdf5d75bc5c4db267c763c696e8908ae7faf5c036faa1a8a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3a503d5cd283bccd3aaea708c78cb3d45f3633dd2ea9d42e648e183e74d3c8cb
MD5 57aae627d2a2c9adc43a8954c94054e9
BLAKE2b-256 2706e9acbbaa7a92921e72a7db3f9465ccdbd321a6c6ad06a44d5449238047e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4a5809039a8643292e3d479e7503f87964c049c79ce98c467bc3de550a66fb27
MD5 eedd2d7c7c0d01652dc52f9badb80007
BLAKE2b-256 520588894a8e9360574207fd4ef3c292a82b86668a167b7dab36f94cd48f74b0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0b520e617919d01580661950412e9c2f917efcde077163c5ad014e30c3fc7bb
MD5 8f66d55722a6a9bce577e8b398e87d8a
BLAKE2b-256 848609305d791d95f16c467e7d87345b0e5ed14ee1fd64c07a4f4c2d18fecaf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 bd931b4b9b090da08c144087918079c1a7f3c289a6c4aec55b0799bd05b13332
MD5 f87aa40c8a9cdfbf2e383c80da31f177
BLAKE2b-256 918f4ac3b42bb4223aa1b3c131b82e87cf3dd1d7b035f43379164abf10074c31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9452277a2521db7873b09792446646eea39fdd097effa4b3569bb745b7705ae3
MD5 c5516d39bd2ea143034a77254cc59307
BLAKE2b-256 7a1c86152e0e1f232e4e81ae0d27f59dafc7f2fe6570bec3195fadef165aedf5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5f315b7415e98c7a5d400280a42942d2ef93b51d16b0570686f9ebc25fa94d6b
MD5 594ba78f7ccbbe6c8fc96c4467a00571
BLAKE2b-256 d0f8e94e6855331d4f2143ba922e7f6187756b2114f5c8629057f4be439609ed

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rebound-5.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 42f554f7a4d4636aa1e33460ae1d4a80cb1ad262b823acb9d88f0a56f85eaa3c
MD5 1f6ba155198351c964c04d7983776093
BLAKE2b-256 55967ded78a4488d1b3a29aee050aa92b5dc0f06531db09b0cdd993a2b2b5fe8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rebound-5.1.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8cb1eaf07f5cfc8a2b084fd7d5ee9ed60c931aa36e72602871fd3dbdcee36f3a
MD5 79e10c13204b7bef8ffcf13202a18c51
BLAKE2b-256 ef21ae72d6a4b10852bc2f299a6ee8db60e4b684d515b0c059a3575c630c03fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 345e6e0e4846a222deaae5add5b3cec750624d7ce538d89a2aa516fbfec1b7d9
MD5 5b0e9868fb25ca9675014008d15bd1a2
BLAKE2b-256 1e26af1dd5b4a0c118070d2b15eaacd0bbe1c7359f9c47216f3edfc9cd79f632

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 913fb2b58dc4a4f3699ecdb65630216eb4b64639044b4c8f8d5abb2be13967e5
MD5 afaf96b0ea388cef3e5940d099b6ba6e
BLAKE2b-256 e6b2026b71d475319c49bc1e0ef2a32f99591652ab408bd7a7e47f39d81d2b0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41bc07a953d24ed6f56e3a10ad748dab3ba91d7eb3e3c40366ef333393422d8e
MD5 453aa8212545863708582d92da7cf682
BLAKE2b-256 3f4c577d73ae77d8c3c89112d9260511a16987add6bec04823f2a642e5c534fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0e1e8ef1caa0f5c770bb02cf484ce348fd573eacf8442197e88869f7b06390c4
MD5 17697b231fd11f20c939248ced536869
BLAKE2b-256 72ee1d2e5071887b296af4e16b8451fca89eba8e029d49dde832c75362b78596

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 927f08a19f2c4f4edd1b8e7fc9c4eac86c687b27d7f8d77adf13c264868883c0
MD5 8d493fd6e2d6c4dcd05bbffc4891c98a
BLAKE2b-256 a7c6adc7a2dc2d07069bb4d9fcb79e89a497f610029f431e48a752e8df6a0021

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 196692a211840652b8a79aa9b4228897b2b4a532a656e29e028b5dd4f59d89a6
MD5 43f7ce50c668d883ba3de8d25389b179
BLAKE2b-256 d61018f2a1cd7d038ce28c53116327419db177340fca87a256f49e171517e043

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rebound-5.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4fc85de5d189947d72ee810ebcb246574bf85684b6aea88a79e5915d5516ea67
MD5 23080054d9b9e60def8b53d03f2e7edf
BLAKE2b-256 0ae3bc2a3da93d818d1e0109d87d15874ad6ae8b9724f327376e442be47ad4da

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rebound-5.1.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 76806809bfb10cdc77842c760d3c213ef3e6a84b8de16ad66946aa65f2de56c9
MD5 6893044548c98a0052ed13f25e13d06e
BLAKE2b-256 aab88482f5111f96e05e20fc34c5f5dd766d5da90b7d7e26ed2b4da1f26ae119

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9dd929a37e305fd78be0dffcaa2c39b25c364515f38c3dad499566301779e385
MD5 b68ce020f89bd5a68d9a85932c40f0a2
BLAKE2b-256 9a8be9d6b482b069335886169324b79892effe950562711e7b6ebfcb17ab4207

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e88d4672174c3bf94d3162eb64eece66d0baaae32b127338cb45571f3099c725
MD5 9c08ea470b9ae42670b47f8fe5752091
BLAKE2b-256 5f7073e2dcac6d356f860b7c2846ea261b9cef0ef12820c6cd2ba4ea36266a08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6563d8ca26a60e49a52ccfcda10026ca9b5726edd2329ebc24f14edc4e3ac9ad
MD5 a0c6c478b1c95280c93307269b479710
BLAKE2b-256 86231f8db82a7fcc9a69d7bfccb96f3bfb7d5c9ddcb1ce1bdd0609bab46018d7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f7208a6b8b4febf98d15d6c1586768266b0c5b23560b8767f27a488aaf09e82a
MD5 81ebab78f04cb73f62b1a88dc62455ec
BLAKE2b-256 8bd92d7ac523daee2e124d989ee3bf8a8b0f261f43d823b2cd0b2fa82bb675cb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b48d9839d7150b52e2a647d06a95ed3e843fb6366d99a80fc974005888cef029
MD5 0d71a59e1933f48aa4a694b4d290be1d
BLAKE2b-256 f02afb1fbc518483813db69719729128e641ecf7d0c889b8c23af9dcefc65655

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 36c22b07ac20b7dcf9888d50f30245dcc00d844b0f90db3660b6bbf3e7fab8ab
MD5 6d10aea1b80174999e9219fa6d1588e5
BLAKE2b-256 c9d78c5f4c8ff9f7e85383a1ed59651634c210ffc87732fc735ea1158aead126

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rebound-5.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 0e1ebbb4bec1c0e015ae36ea8987a64a0eb20730c3fa023a6f3494b782bc7f57
MD5 1811d2fc60bd4b8a7d272c6615d6cbd4
BLAKE2b-256 e1a0cf2f6d7f09f34a459e8a1ab58c73afb63e3ddb79bd0cf3e73c9d670c0211

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rebound-5.1.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 22fa59008966adbc1ee7741a3227849a740e19a0fec69d72d24757a355f1f1d9
MD5 7fceddee439e0cc45dd069fe74748715
BLAKE2b-256 f08bf7a66e43648e27ab69428b613d77277734c8905ff024b44c50754b5fa64a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c1e6f16f6464b683f96a656f326ee9f39bfca05e636e9a662da0018a0caffd6b
MD5 aca7bace45fd5ebdbe03708c878aad66
BLAKE2b-256 329dc4697d579203d30fa83bc6e5dd8917588ddb551b3b76e2b061c0e78776ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e85741181e7d098df57c4c06bec8626ba5abc504512e871e0cedda02a38de1fa
MD5 3df4e42ba4897d0a267e6e79ddc9fc8c
BLAKE2b-256 3dc60fefc3cfc23d72e2734641c5157e60b28d5862886f37c56e05751112a403

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7faac9c06ffd29a81f13a51a317aec044916e3e11f8c7f973da456c6934a7e9
MD5 692ea36f7948362824908ec0525014bd
BLAKE2b-256 168a2635bdf3c263d4ed6c2039882819668013ffcfbcf54d64fc7c4c65a9d396

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 839750ac183b17f1f2e88a4e0de38938fb7a90722f8c4c1a16d724c470783701
MD5 e8e802eede1311737791e9cb6b0f5e61
BLAKE2b-256 273361d79cfbce8b2c2acd4b27c0e6aeb57434cdf24e53da6b7e3279b1c70052

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cde745817f07f941861b45b2a795f3bf0c8187a5771f0fbc3592673b26f0254e
MD5 6eff44513dd9847c6b40da4c10b64a0e
BLAKE2b-256 d26f40e5bb9732fd4d4a26004271d68faf789de9b3cea7f6b47cacd85d76281b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ccae7c8f653bf3d2316f7f8dd6ee0173be069a7fd0e84227ea8150eac091c3fa
MD5 a076abc77754f01a455a1e443dab91af
BLAKE2b-256 7a5b2e78ad1fbdcac2d932115525f762bb26a507a8bc577b4fa75589740382c5

See more details on using hashes here.

Provenance

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