Skip to main content

An open-source multi-purpose N-body code

Project description

Version codecov PyPI GPL Paper Paper Paper Paper Paper Paper Paper Paper Docs Binder REBOUND (C) REBOUND (python)

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 readthedocs.org. 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.readthedocs.org

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/

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()

Contributors

REBOUND is open source and you are invited to contribute to this project!

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-4.4.10.tar.gz (329.0 kB view details)

Uploaded Source

Built Distributions

rebound-4.4.10-pp310-pypy310_pp73-win_amd64.whl (305.8 kB view details)

Uploaded PyPyWindows x86-64

rebound-4.4.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rebound-4.4.10-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (304.8 kB view details)

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

rebound-4.4.10-pp310-pypy310_pp73-macosx_11_0_arm64.whl (253.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rebound-4.4.10-pp310-pypy310_pp73-macosx_10_9_x86_64.whl (280.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

rebound-4.4.10-pp39-pypy39_pp73-win_amd64.whl (305.8 kB view details)

Uploaded PyPyWindows x86-64

rebound-4.4.10-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rebound-4.4.10-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (304.8 kB view details)

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

rebound-4.4.10-pp39-pypy39_pp73-macosx_11_0_arm64.whl (253.1 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rebound-4.4.10-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (280.3 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

rebound-4.4.10-pp38-pypy38_pp73-win_amd64.whl (305.7 kB view details)

Uploaded PyPyWindows x86-64

rebound-4.4.10-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rebound-4.4.10-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (304.6 kB view details)

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

rebound-4.4.10-pp38-pypy38_pp73-macosx_11_0_arm64.whl (252.9 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

rebound-4.4.10-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (280.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

rebound-4.4.10-pp37-pypy37_pp73-win_amd64.whl (305.7 kB view details)

Uploaded PyPyWindows x86-64

rebound-4.4.10-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (329.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

rebound-4.4.10-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (306.8 kB view details)

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

rebound-4.4.10-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (280.0 kB view details)

Uploaded PyPymacOS 10.9+ x86-64

rebound-4.4.10-cp312-cp312-win_amd64.whl (305.8 kB view details)

Uploaded CPython 3.12Windows x86-64

rebound-4.4.10-cp312-cp312-win32.whl (260.3 kB view details)

Uploaded CPython 3.12Windows x86

rebound-4.4.10-cp312-cp312-musllinux_1_1_x86_64.whl (738.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

rebound-4.4.10-cp312-cp312-musllinux_1_1_i686.whl (665.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ i686

rebound-4.4.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (793.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

rebound-4.4.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (716.7 kB view details)

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

rebound-4.4.10-cp312-cp312-macosx_11_0_arm64.whl (260.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

rebound-4.4.10-cp312-cp312-macosx_10_9_x86_64.whl (287.0 kB view details)

Uploaded CPython 3.12macOS 10.9+ x86-64

rebound-4.4.10-cp311-cp311-win_amd64.whl (305.8 kB view details)

Uploaded CPython 3.11Windows x86-64

rebound-4.4.10-cp311-cp311-win32.whl (260.3 kB view details)

Uploaded CPython 3.11Windows x86

rebound-4.4.10-cp311-cp311-musllinux_1_1_x86_64.whl (738.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

rebound-4.4.10-cp311-cp311-musllinux_1_1_i686.whl (665.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ i686

rebound-4.4.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (793.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

rebound-4.4.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (716.6 kB view details)

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

rebound-4.4.10-cp311-cp311-macosx_11_0_arm64.whl (260.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

rebound-4.4.10-cp311-cp311-macosx_10_9_x86_64.whl (287.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

rebound-4.4.10-cp310-cp310-win_amd64.whl (305.8 kB view details)

Uploaded CPython 3.10Windows x86-64

rebound-4.4.10-cp310-cp310-win32.whl (260.3 kB view details)

Uploaded CPython 3.10Windows x86

rebound-4.4.10-cp310-cp310-musllinux_1_1_x86_64.whl (738.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

rebound-4.4.10-cp310-cp310-musllinux_1_1_i686.whl (665.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ i686

rebound-4.4.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (793.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

rebound-4.4.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (716.6 kB view details)

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

rebound-4.4.10-cp310-cp310-macosx_11_0_arm64.whl (260.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

rebound-4.4.10-cp310-cp310-macosx_10_9_x86_64.whl (287.0 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

rebound-4.4.10-cp39-cp39-win_amd64.whl (305.8 kB view details)

Uploaded CPython 3.9Windows x86-64

rebound-4.4.10-cp39-cp39-win32.whl (260.3 kB view details)

Uploaded CPython 3.9Windows x86

rebound-4.4.10-cp39-cp39-musllinux_1_1_x86_64.whl (738.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

rebound-4.4.10-cp39-cp39-musllinux_1_1_i686.whl (665.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ i686

rebound-4.4.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (793.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

rebound-4.4.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (716.6 kB view details)

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

rebound-4.4.10-cp39-cp39-macosx_11_0_arm64.whl (260.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rebound-4.4.10-cp39-cp39-macosx_10_9_x86_64.whl (287.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

rebound-4.4.10-cp38-cp38-win_amd64.whl (305.7 kB view details)

Uploaded CPython 3.8Windows x86-64

rebound-4.4.10-cp38-cp38-win32.whl (260.2 kB view details)

Uploaded CPython 3.8Windows x86

rebound-4.4.10-cp38-cp38-musllinux_1_1_x86_64.whl (738.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

rebound-4.4.10-cp38-cp38-musllinux_1_1_i686.whl (665.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ i686

rebound-4.4.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (793.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

rebound-4.4.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (716.3 kB view details)

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

rebound-4.4.10-cp38-cp38-macosx_11_0_arm64.whl (260.0 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

rebound-4.4.10-cp38-cp38-macosx_10_9_x86_64.whl (286.8 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

rebound-4.4.10-cp37-cp37m-win_amd64.whl (305.7 kB view details)

Uploaded CPython 3.7mWindows x86-64

rebound-4.4.10-cp37-cp37m-win32.whl (260.2 kB view details)

Uploaded CPython 3.7mWindows x86

rebound-4.4.10-cp37-cp37m-musllinux_1_1_x86_64.whl (738.0 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

rebound-4.4.10-cp37-cp37m-musllinux_1_1_i686.whl (665.4 kB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ i686

rebound-4.4.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (793.0 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

rebound-4.4.10-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (716.3 kB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-4.4.10-cp37-cp37m-macosx_10_9_x86_64.whl (286.8 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

rebound-4.4.10-cp36-cp36m-win_amd64.whl (310.6 kB view details)

Uploaded CPython 3.6mWindows x86-64

rebound-4.4.10-cp36-cp36m-win32.whl (263.7 kB view details)

Uploaded CPython 3.6mWindows x86

rebound-4.4.10-cp36-cp36m-musllinux_1_1_x86_64.whl (738.1 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ x86-64

rebound-4.4.10-cp36-cp36m-musllinux_1_1_i686.whl (665.0 kB view details)

Uploaded CPython 3.6mmusllinux: musl 1.1+ i686

rebound-4.4.10-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (794.6 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ x86-64

rebound-4.4.10-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (718.0 kB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

rebound-4.4.10-cp36-cp36m-macosx_10_9_x86_64.whl (285.6 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for rebound-4.4.10.tar.gz
Algorithm Hash digest
SHA256 d8ed4ad8ae33e5a8454be4965033b8a154602cd09776ed17c193aa7c55c65819
MD5 b804a715cffda35539f1fb76a159133e
BLAKE2b-256 858d6fac961b4fc5303e362a07e74477e9fc41f62b419aa32250e2e7d3dc03f9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 372c967befc124f2b6df55ed0f0942e3e552085aa96a55abd9839da2a2333a7c
MD5 ca5126d60ac8e698372c380a6fddd9ce
BLAKE2b-256 a2c36c374b0ff13e3632947f0bbe8d635a10ed58358895e09612aaa4ae052fc6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fcabb693245942e84945638ac8ef4de1d0d1418f3bfedea5b3d2208b64bc4c3
MD5 42fbe2f22b5d5cf41b043ecb490e9787
BLAKE2b-256 c328f0b0f1a758b9d15bdb6fbea876a5fee6aaa41690e10a006d48e27929c97a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-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-4.4.10-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4aa1344d0ca372cff433acde300dff8ad7ef49ba8a2b005ad9184aaeea6a0c81
MD5 729485c3ffa2ccaa85d419293c704cf4
BLAKE2b-256 51018de462c3a6642d9db908c1e015ce405ad6f1bb478296bc3a36a5a14ec906

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 814a8d36fb943a58222744eef9f2f25dc4ccaf251c5e27f6f64568fa09836438
MD5 4b6112483671c3794b01af5f8f90597f
BLAKE2b-256 aca5431830beb9f5eb338b67d2d2a2bfd11af1d8b21ec027057497b54b382a12

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-pp310-pypy310_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f0e541849d8669d3ae9b1c59011401bb713ff93c68292bce53e02df20d121dcf
MD5 f20240b5cffe0b471aa2d09ffa08a04e
BLAKE2b-256 fb72972a91fe19cb46a166621ba145173b5b26c6c557bb4de981643d40ccd928

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b9d9ed723035f77e0c73d6b701080929898c4a861dc0301111a24fe4224e2a08
MD5 3d129d954799426cbc053496eef2e725
BLAKE2b-256 b5b17056d293efa9068321e58286b72fdc8d73c6630d238bcd511f1f0539f31e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6c455d6b723454eec3902f3853f8890164f147787702af9be3d661c17f9926b
MD5 8083c501c8ce4cb0e43adc6fdc4dd4d7
BLAKE2b-256 9c246a672396c1b94d2c56ac021982c0f982deb42829868c15a449ef925b899b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-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-4.4.10-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 ac9c3fd8e0e4b9d02bb4c47f5625856d2a67855412d640814cc01b6457b12262
MD5 0b58158193bb8db63b615406b20eb00f
BLAKE2b-256 ef46b26b86f993e41cd2b1320a838e797fa3e8b19da9aa8707ddc93a701af572

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 618b50569a60be0ce4c7e9c8138ba47e4797bcddbaf171889a830c0a7e2a19a5
MD5 144ea9690b1163e85143f7bed866457f
BLAKE2b-256 5fd072dd83972992dacc44de1e1f19303c3eebd6426cf6f5179f89e69b04a38e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4b02fe5f320f4caf9b44f9c5161fba7c078a47c3032a3a58deb74f9959902622
MD5 f5dde7f0489e1012369bb3b4e6fef7db
BLAKE2b-256 2aa6223992ac192c49b753eb942811f45b29d6fff10728579c4f72893e054361

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-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-4.4.10-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a0afe402fd04889ab84a686707f4111ffb6e9cc91c39aec96e0293dc75c45168
MD5 91e303622985e6ec57701b7905214958
BLAKE2b-256 a64946cac3e9622485085bffcd0671f73dc56df0fc07078105eba2dbba95f6c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-pp38-pypy38_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-4.4.10-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fc0cff5ca464c03af349744626931a31eeb269b3cf642939de54feed236abbd
MD5 4493f691c6a2310af385c077fead1260
BLAKE2b-256 0bd716c66bc5a9ffb170af9d23cc2f738c3d8cfe7fde2f5c2dbf3c9b2ea6bfcd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-pp38-pypy38_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-4.4.10-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 a0d591a5669dba94b39df648a68d4b89ed5f229590f75575060fd3fe45644a97
MD5 3038634a4eb9343ef37ef7d8721da821
BLAKE2b-256 91c2cea4b7d1689f36fd3bf46542cea9ae0569a3dbdabaf6ee8f0582c7fd7174

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-pp38-pypy38_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-4.4.10-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7e98d83297ed275fbed94368f714ae66aa5e05eb92fb3eea8b83dafc770d3fa
MD5 a31ca31091d178df2ea980e0763c3f3c
BLAKE2b-256 c37e986c1b3e11605ab89100d6e5d8b214f7a799738c4768392747fe9b239f2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-pp38-pypy38_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-4.4.10-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f60e45d1c8cf5295347843c4c693fae1a4c4a5595200c93969e6bb1786d0ca91
MD5 fe9f03eb61bf0aa1046eed509082d008
BLAKE2b-256 a71cacb473d23f509caf427189a3a39464b419f066db3db844d458916d2ad455

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-pp38-pypy38_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-4.4.10-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ce350cc9036e274cb7530666ddac3198604763a8f64a6c1b543a7329895aeddb
MD5 eb5623430ba5be4e623f2a6c4c23789e
BLAKE2b-256 e428815b47fdbe5fa397d08b25efb8554bca639fc0720f21e0adefa78b7c8d3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-pp37-pypy37_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-4.4.10-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b4089db7c9168b3064bdc1a118b04a7d91c00d25366bf0f0cace1574217dcb9
MD5 a0b537c00a036d1b4bb2848fe5ff487e
BLAKE2b-256 34b4964e490aec9e53afa4f2e44b11bff793cde579d757e23b6a885234726e43

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-pp37-pypy37_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-4.4.10-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 25e564e2952c13adfd47480f269d2bb110fca2991bcdf45ad894657d93ecadf2
MD5 5238fe49f972917becdb779a04222146
BLAKE2b-256 0e34a3a7411ee41bf25639a5138674cff20a51f1cddb6fae2360500fe7f687d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-pp37-pypy37_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-4.4.10-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 08623bf53add1dafdd1fe6e14ed867c281a1ac99850c8f0f0e1c3ababa420f3a
MD5 788e1ec5b6e2c2b3b5ecc22493f7ec58
BLAKE2b-256 dfab7c827e9bbc9652ddafc7ab6eafa5f2d6b5ba1bd7d7c3e6bdaa7e85f41536

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rebound-4.4.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d47c0cac7a7eae11c44b427a1f067fe35b3603eaae49c99c3f5e861c31bbffe6
MD5 e8589bd03ab42d01538b2828f3f7cb09
BLAKE2b-256 23308974e75ab77e0ae02060173b6d28936f7b35e452bdee4be431ae5c3309a7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rebound-4.4.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 46e3be81879319f1e57a43d74b807e1d54ca157e31e34c6076a21101e96d69f8
MD5 613a6c2086a18cbf45261bb10542c5ef
BLAKE2b-256 862693dd86acb0c391871b0a772d5400124914da50f693ea84573a0dedcd4490

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 08b8827746800dd2f999596e989b0c4a766be4f7601d9e4de8e9e82c701615a1
MD5 5ca6410884b7049645baa799da943fc0
BLAKE2b-256 45165f8e9239c2ff29044e6b27a3fbf6a6c413186baeb0dc5e3767e925a48e47

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp312-cp312-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c51bf4d43c9c6bdb11ba5cfc1cd9dc0166246b72ee05244bb29f8cce455a5070
MD5 0dc6ffd867395f958af854e8c891efee
BLAKE2b-256 023e8ab4cb2f1eed31fae3d55cbb6fb61b385e13228ab23d41bd169cd025d478

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5baacb5120ab614d6efea56dd8f07905818729ebaaf7ffab6a67344b214cec3
MD5 62cc0ae67af044ab2b47bc242b94d4d1
BLAKE2b-256 6a6d2fc249a9009e8e991dad80c8a9e8b7e4f399b6d16055e11b31d7216bec48

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 8bfb8e10887d519641e6da45a1e7b2ba8a8656d9b4eed2c9e918a63d1941f165
MD5 098fc9235c49b16f71147ba552afe83a
BLAKE2b-256 f8694fd586d7cad0ce81fdf853b9d7c72245c94d70343b6cee10b0641226388c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66bd4b8915aeb9bf5f81146ba99d680f5d25fc9ce7b5399ca79de58b8b590bdb
MD5 c6b51c6dff8879495aea9c917246603a
BLAKE2b-256 6b46fa00274b08922fc7c6469bb2385098f31c08e597af02259fd7d9acf01aed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp312-cp312-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c73763a217fd71513ecf489b71a2e57a98db1eb829fe000b7a95096a5b5b1d32
MD5 b54372f2190fc86d5ef2da9f13ada0d4
BLAKE2b-256 62fdb8f2f5716d359c5f420198fdf5b3a8006d4dfa46d952485e2ddc5331c5af

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rebound-4.4.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 61d8283326104fb44f87df44d00687241a1f2e074553e303224cba55d6bb45f3
MD5 e1a18da2fa570ee62b5f052078706ffc
BLAKE2b-256 cd908f0333b8bc24c80f32e322e4c6df31ba0538d432c1fb528230a16370032a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rebound-4.4.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6c20dd51bd09c02bfa53f187714e408724b3c3e32be6672f4539f4da7410afee
MD5 4c9c0269aba7148d3bf73c3a886bf747
BLAKE2b-256 c56ed4efd4e684c72899b9b30a7c816d4d493c7131eb0911ae685214e79995dd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1105211c19ddc685b3d6e329fc0af3c53e512a8552e0d9924c83f941852c7045
MD5 4c791e5e98480e34d774d28a3a810d85
BLAKE2b-256 b466250ed66b1fab26977ca10eb1f8eed880833de57dafeb45f3ab9cbbfc9cab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 c6234f4705ad48a255de8b8e08fe476dec57ba4c25306be10c893d59922a45f6
MD5 ca0a59a7ab622df4922642610f7903e2
BLAKE2b-256 c6b423a9f1e59bcc92c61c2098fba7fc27876ff7829384dec821c22a362104aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dfaa952e62eb76aabf405a133a4a79531aa41d34ab29e7f72dabf211a1549857
MD5 9a972cf76b9f5fea070fa3084f0de35c
BLAKE2b-256 0148e6fbdd84c37da5ca95e5439ee21ea7078ef567ef51219ac70fe6ead502b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 154b36f837cf7b31940330af73d415c6386e25e0548cf0f753b7a7974364f6df
MD5 ffdf8acb4a4995e188e8b3bc9a7d0e5e
BLAKE2b-256 1048ae174ab2b1c5340b0df831f1edbb42c35a093b55a9c2ba47b1149449a270

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf44546af670ce21a18a1c3feb77846cdb9ca817ed7a2b58a0afe6375edee852
MD5 5bb062662df6b47369a3f45b83cc589e
BLAKE2b-256 af986177d4c9a1eb3618fed79af1637c3648216ba833ad823231fb2e8200fcea

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 980fc2f4f43aaea1e24cef89abef23e8b58d4d79b727d41fc9f8551bca4ea498
MD5 f374b35281e4cbf18d6be05799434001
BLAKE2b-256 f05dc63934772ac75f81356c3f7bd744325dd677c80c9671b71329f7fd01c09c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rebound-4.4.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4248ec8817c0062c9e2a2bc82738c0720e6c0e3993fcd366b52423e34230d6b6
MD5 8a9c1952d45120f275f1a6375bf29aec
BLAKE2b-256 6eb0f7354ec875bf25ace033155751e6170c10d92c86ef659e241daaa8e9a09e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rebound-4.4.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5d442d8d43365872b1c111250a8c5138279fe8dbaff42acce3b96abdefc03289
MD5 6bab3034f2e72bd8f4bbe0ac6b37873d
BLAKE2b-256 f49e37ab856835e0dc466cd8d09450372e52ba601072c349a1d1141cbd8f53ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d13a08e9bfaae90cc0622e07bab8d590edcc37f7123a862dc4b113ec132a7a08
MD5 167af2f2af583477465bf1430713a6a0
BLAKE2b-256 d4b922a2466413ee18ed73936259abaacbf852aee7a639968fb339850fd03f10

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 940410e565b8340ff5fe1d9743796d0f8fb7b45da559a4dfcc0f59068e59b893
MD5 9f3f219b4b823939b30accd0f73c6aa1
BLAKE2b-256 58ce5aefd2bfcba601001dfd1d3c2fb7e8e9eab4d403b208984072a05f5dc7f1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b24bf83306e96e6353da2764aabb0ccfd8127e1d9cb2c08eeef10400ab700bf
MD5 c66be871ee52c1c4bd8b3bbb124bbf35
BLAKE2b-256 9e1ec8e1ffeb9954b6578ea7a71619359ffcac17c2c1c345b7bd85ef46325cc0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 677bd5ca9418f9250dee31b78d2f6f473afdd106aa2b45be0449e58f8769b27d
MD5 1efe810fdb4ffcc1a6a51f3cbed0d0d9
BLAKE2b-256 db9568a5ea84749980616e848a316a7d11bda44b82f59af1dc551796aa5a3b3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f35df03164eb368db0da903dc99ee60d612b4e0c1b2690beb9087c12260d4082
MD5 70e97c0ed610d009f6fede1995d9d533
BLAKE2b-256 98446c98dab02bb323e36d45067ed76aa2bef4989dd15095caaa8c431e39daa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2deec97f2fdbf579bef82dbeafa21cafb9a5f6e110ebb10e29b88fa330e8b7d1
MD5 78c24250066029a57c7b6f95d2ef422b
BLAKE2b-256 535baa4a50b81aca70dc219f19e31fcf895b748d02ff1fb3acc1bf5982aa11aa

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rebound-4.4.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5aff4f0e158bde41da8e10827df70fea4b7933da1e548bcfba58f34ba9260fd9
MD5 3e17ee61e5b8bc44b6abe9a49d644c9e
BLAKE2b-256 1635c327c06389d7be108c148935b0ac1824e5f1d19a965eb35198894c7178c9

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for rebound-4.4.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d171c0cb2ef8f61545e27dfc09698b73413c730b946febcb05bae67f33603b44
MD5 4985807073de50966d3a2f01475d00b3
BLAKE2b-256 c4addfc11f2658d9864762e67df390a0db6269d1eaa64057a1ba5ea62bb37840

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 98301c47c7a3177ba409b134e9753c57ea1307ba3fbdd0a795ff30106e34596e
MD5 4a65c47416fa0b95c8d7ddfbf7469bc1
BLAKE2b-256 1ebcefbf4419f9d7321fe9a5d5602b12a55ce144ac65c6fec9f07f0d864bc98b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 4017e764157b362c96d3e4ebdc39df4edc2a63d37c2922a81892586edd88d24d
MD5 b9b1fb245bcff79305f58e4402016dc6
BLAKE2b-256 6a7f6b6cd4f610116c1f6763d9065cbb26321e24bd119335982143d6b85b168d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 878d4379508eef26ae59ae6ffc6ff1bd9f26f34e49fa7caa96c5cc5d89b2f066
MD5 6ada72361f7db5a3b95e4df2ca49136a
BLAKE2b-256 af3aecfbf37699448d00e37f23aa61340d67e46b52e02b154e540a68b1d92708

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 33bafa59a02627d6d40dfc77376540c9ad4711dfed1b9778153d38cb8f8de042
MD5 426b83f5981232ba2cee4dbb2c42e4c5
BLAKE2b-256 e4d3874a1a993b41c0dd6feeb14bf0da26f16238edb78c41764009f4902ef7e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa0a5d057407e1f9eac77b697dfad432bcd19b2baa1ec704ddce0cfa0c139735
MD5 eb696af6aaf764d2c7200acf67d511e9
BLAKE2b-256 865ae4e6bf5caa4acd925315ff609f6036765fdfc459e2a5827d7fa3019264fb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f4b7cc8a93291ea96ed960672313e27d54f651f5c61f644a039be3f840666e0a
MD5 2ebe5c538c2c299d84fc5abb59902964
BLAKE2b-256 5258701924ce3b6ba0dbdaa78ccfa87b90070b5bf15629012f9baa726e42544b

See more details on using hashes here.

Provenance

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

File details

Details for the file rebound-4.4.10-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: rebound-4.4.10-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 305.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rebound-4.4.10-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 053fdd2957ac0aada3514d3b7887487b8418a8bef0f3d0dd46b7edac339cf8ff
MD5 4e461a0ab71371730b49a99566efbd82
BLAKE2b-256 301e6f79526c11cc7c105b22094dbe9829623e5738c4786efd4887256ad1d1da

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp38-cp38-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-4.4.10-cp38-cp38-win32.whl.

File metadata

  • Download URL: rebound-4.4.10-cp38-cp38-win32.whl
  • Upload date:
  • Size: 260.2 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rebound-4.4.10-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 35c3234cd3be94aa81d87192b8413f0812f8f4e374a30e2f2946cfe1a02afc9f
MD5 25f9e37a6e71726c3b9ce070ba519aee
BLAKE2b-256 6a223b30839132702008122599f921056b9ce1af530ccc05b692e7b158b74c16

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp38-cp38-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-4.4.10-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c24431e19cc0200807f133aa3fc3bdeca09751f911d0ae183a73172234cb346a
MD5 f3a318912ab971186f87367001a4e517
BLAKE2b-256 3be489bfe8808fe501f26bb1014f0ad5b880b7a92fb0cf261148402d901e152f

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp38-cp38-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-4.4.10-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 bd00e25ddffcf3682455df11cf9624e9887575dd1551f7771a7f26fe2609d828
MD5 2d6edaa57852ec2af51b0de31afa3cb8
BLAKE2b-256 5cea61882032ed31647421c22656bcea5e2978beb69c20460ec0cc2a0633decf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 52744c660db175ad7c0de44ad6a273dc88c1b8641c85f277ff10ed2328d838d2
MD5 e345fff302f2927074c3fb3503977582
BLAKE2b-256 01287f390dbdfbdf34945718b0030e4c7917c4364bcdc2ac4e30db7cd09c377f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-4.4.10-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 37554ca90bc18432c8d20f552c19de82f317852dfc1c78f93495af7f931ca58f
MD5 9810575d9466c6728accee550cd0cc0d
BLAKE2b-256 f8219f503c346833afb92215a638bc34a3b395848255e6e373455c1d6b20048c

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp38-cp38-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-4.4.10-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1202d05c7ed9e119b6fabbbfd51e15c35846d50cc51580dddb55aa80c0b40474
MD5 9705ce29eaab9bca7982c1cf0d0cd51a
BLAKE2b-256 84b3709805aeb000a68aeae83fb02c67e4ab9560a3579d4c461ce2067dacd5ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp38-cp38-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-4.4.10-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fc3b844ecb444c09a88df72293add099883878dffe47eddbf8ba4636d985bbee
MD5 0ad56e0df7f7ed35d2c6867886188544
BLAKE2b-256 0e53e222ed4ccf9e6c866a6185dfa3ea4254bb10d7d5039704c3c795d56a8713

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp38-cp38-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-4.4.10-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: rebound-4.4.10-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 305.7 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rebound-4.4.10-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 f2b63ba28ff2fda98902e5892aaa08596c92561a24c8ae98be7f9aabe2136e2c
MD5 ae2e75a24c2b9ffb4e9d6d444cab620e
BLAKE2b-256 4e4fe64df7f5b86d2407e499ed7748089bd86cfc6e5542ef71d179e4c5ee2913

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp37-cp37m-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-4.4.10-cp37-cp37m-win32.whl.

File metadata

  • Download URL: rebound-4.4.10-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 260.2 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rebound-4.4.10-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 decdb6852da84a1f61c514629303bccda49f144950b8ee9e07ccdda71a1e1036
MD5 c8d9ca65a9026ac2bc360dde3cfd46ba
BLAKE2b-256 fc5f7b01000ac02c842a876f55efe55e491855a8ab6a76eb85541b56deb273a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp37-cp37m-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-4.4.10-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7cd7c66b785618e4853629a34d9a4cb1411995be7460b518796cd8f80d44b4ac
MD5 4cb123d860c4763f7b170eb46a2a2129
BLAKE2b-256 0d02cc5ca909bec3fac50e4ec5ff87cd7264f58c52c16497aada045102e6b80a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp37-cp37m-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-4.4.10-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 ecbb89bcf8a782cbf608e85c711da17b01aae1eaf4608aeafbc9a25c1ab56dd0
MD5 4331502dc44f972c325a5b32dae458c2
BLAKE2b-256 8149eb61da01524dd6d4dcd4a0c661804af525b641eb50905082246d778217b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp37-cp37m-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-4.4.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 905d88ca904d9a26ab386994701414cce9993fe1f032313852ac7f7ba8a2d92a
MD5 9bb64acde6a1104c9e43ef76edf2b5ae
BLAKE2b-256 9d879d896b481492fd32a3dbb62ad4b5798f41bf5a167657b0a29291acf94a7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp37-cp37m-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-4.4.10-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1df79fbe297a924f903226d5211056ea0789b780ccbaa566bd0a0f094bf14e5b
MD5 3ba46dec7116cd500d60a5e07a17407c
BLAKE2b-256 2ca238d8ba0cd2da5c40b46dec95e26499a8c6e250c2c39241154cfb7a111cfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp37-cp37m-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-4.4.10-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0a5daa174b01d1f397a51b14b822beb6e08ef194906796aaef5e06b6132a3266
MD5 5e64216c3e01a134a1ee999b989160b9
BLAKE2b-256 79bf0288189228e383f665b618209486181a9818d52e3fa52d37da041371c77a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp37-cp37m-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-4.4.10-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: rebound-4.4.10-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 310.6 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rebound-4.4.10-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5a7fed2a7de9c18413d268bb45798fe69e01fa85f85dfc42a0ca7f2d2bea9a2d
MD5 a6da737580f60e72c232444b474d901e
BLAKE2b-256 74860140e5f8ba5cb0cafe4a6f5e394f39d2c96c2d405374de9b93adc0a9449e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp36-cp36m-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-4.4.10-cp36-cp36m-win32.whl.

File metadata

  • Download URL: rebound-4.4.10-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 263.7 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for rebound-4.4.10-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 6458562ecc29d1b44a34bb6593eadb47e59757acf2d8c4eaf6f524220d3db9f0
MD5 a91b9f3f51c8958c818a3dc0f91cc894
BLAKE2b-256 d5e2fd419f8be2ba2e90211a47370f038b3d0aea70989bb6589989805ab6d93d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp36-cp36m-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-4.4.10-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 409fad18a44f3f07d4cb266c0b246d4c0013a32e23ea1bed39431e97996652fc
MD5 ad7a47ed789a6472a4b17c9ea485a100
BLAKE2b-256 98566b6beb5242a928ea92e6047a8d53edb201a3335453b9d1ac3444fb1f0438

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp36-cp36m-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-4.4.10-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 120019047d5c852e12ceaf41600a0ede447a7e7a90b4c72c27ab78e49f6370e9
MD5 1c043318e0844db0ffd922fbba33db59
BLAKE2b-256 9b12cb1ebdb905b0785b79ca00c496bb91d186ece7fbd59fe62111811372f5fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp36-cp36m-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-4.4.10-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5872b9e4714110ca55968143fde4b151cda95ad64dfabfc3f6654869e35d6afc
MD5 faad4b65e7d1b7e03dcc65e7035c3771
BLAKE2b-256 f457e8890b98a9e20a43218ddfe1a31d4f1b28a81fb3ffef78b265f40fb791ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp36-cp36m-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-4.4.10-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 1b3e321e0bd7549c1df5530acf52b980a24414bcd4e5a0e40fe4a646458679c4
MD5 f4ba3c6b96e662ed936728fa499b5c93
BLAKE2b-256 92a12cf53234d77bfc550178356e0728212167c6e5fd5f0c52b20a6aed5d39c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp36-cp36m-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-4.4.10-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for rebound-4.4.10-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3bc9d082fd7277bb23f686cabd397ba9e506aba914f0e47c755be719a5474363
MD5 1bd0d767cf11dd4ad0aaf1d24b91db51
BLAKE2b-256 344721e30e1c02f63098e36507c3d3baff136deacf41ed9753bfe8a1eb8a0f41

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-4.4.10-cp36-cp36m-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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page