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.1.tar.gz (384.9 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.1-cp314-cp314t-win_amd64.whl (447.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

rebound-5.1.1-cp314-cp314t-win32.whl (384.5 kB view details)

Uploaded CPython 3.14tWindows x86

rebound-5.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl (907.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

rebound-5.1.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (904.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

rebound-5.1.1-cp314-cp314t-macosx_11_0_arm64.whl (389.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

rebound-5.1.1-cp314-cp314t-macosx_10_15_x86_64.whl (426.8 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

rebound-5.1.1-cp314-cp314-win_amd64.whl (447.7 kB view details)

Uploaded CPython 3.14Windows x86-64

rebound-5.1.1-cp314-cp314-win32.whl (384.5 kB view details)

Uploaded CPython 3.14Windows x86

rebound-5.1.1-cp314-cp314-musllinux_1_2_x86_64.whl (907.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

rebound-5.1.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (904.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

rebound-5.1.1-cp314-cp314-macosx_11_0_arm64.whl (389.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

rebound-5.1.1-cp314-cp314-macosx_10_15_x86_64.whl (426.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

rebound-5.1.1-cp313-cp313-win_amd64.whl (444.3 kB view details)

Uploaded CPython 3.13Windows x86-64

rebound-5.1.1-cp313-cp313-win32.whl (381.6 kB view details)

Uploaded CPython 3.13Windows x86

rebound-5.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (907.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

rebound-5.1.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (904.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

rebound-5.1.1-cp313-cp313-macosx_11_0_arm64.whl (389.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

rebound-5.1.1-cp313-cp313-macosx_10_13_x86_64.whl (426.6 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

rebound-5.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (907.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

rebound-5.1.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (904.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

rebound-5.1.1-cp312-cp312-macosx_10_13_x86_64.whl (426.6 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

rebound-5.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (907.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

rebound-5.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (904.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

rebound-5.1.1-cp311-cp311-macosx_11_0_arm64.whl (389.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

rebound-5.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (907.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

rebound-5.1.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (904.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

rebound-5.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (907.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

rebound-5.1.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (904.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

rebound-5.1.1-cp39-cp39-macosx_11_0_arm64.whl (389.7 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

rebound-5.1.1-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.1.tar.gz.

File metadata

  • Download URL: rebound-5.1.1.tar.gz
  • Upload date:
  • Size: 384.9 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.1.tar.gz
Algorithm Hash digest
SHA256 dd97b95bfc050d8f4db51a3667b8894c261ae9d844622bbb7756428909f58a86
MD5 00defa5fe165e3e9044fa26e252733c6
BLAKE2b-256 7bf1e04ee8c67ecc1a2675e64c80c2e6c7f4d9d69a3b9eafc0797fe55f325648

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.1.1-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: rebound-5.1.1-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 447.7 kB
  • Tags: CPython 3.14t, 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.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a3c686fe6812134dc98f5a8ae6c33271f2eb80bcf505239e4281def6e23d0344
MD5 a30b807f73b562fe9a07c48f9992f6b2
BLAKE2b-256 fbd7ce92e243f19c97cf1fb87c0390ddda0732544f5f0b1c3eca0db8d9753d95

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp314-cp314t-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.1-cp314-cp314t-win32.whl.

File metadata

  • Download URL: rebound-5.1.1-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 384.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for rebound-5.1.1-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e18295f4638642b9d2cd7f8ec3fd1690dbe678360ac6530e07e479cdac5938e3
MD5 067194987f740c9ce119596871112d1e
BLAKE2b-256 bd4831dfb6f946494a924dc828601404d059cd5cf322bb11b1edb2b43af1d58e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp314-cp314t-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.1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 21d63996ca0d1ff4ba17812fe6e4cb5489e5f4881fcecde4ce44287fb10c2883
MD5 a0826168a22dfd0e4631bae6ea199eb3
BLAKE2b-256 128a2ee0b971d42d9cb65181d8cabdf62933dea7a6f4fc4df75b2afeb4cba340

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp314-cp314t-musllinux_1_2_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.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5a2f2294c86e51fd988b204096ca253170261dcaace334d2e8585ab5c998dce7
MD5 25a4a36d35c309777ed277eb7c76b2c9
BLAKE2b-256 4f7ac7b8b08843c4242fd9ba6fe7049aec950882574dece4b56831bd81f0e10a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_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.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c168abc021c81d7b4fec2ced6185aeef7e667724feb0c330b3036960155531d1
MD5 3fe97ba8506ea3af1fd85d2cdd94b576
BLAKE2b-256 66c4fae5dc8dc99d9b38590eeeda8cf20636f6fad8178b4088a6bd5ea234d764

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp314-cp314t-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.1-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 eb2a8ade3a133b1edcf3dcb945c118a9f59a9b8b32af4dd39e6921a56cf09d83
MD5 23dc6c5bdd2cccd6316bd0272b92d2dc
BLAKE2b-256 28264c0365f715ca16805ce7a7c9ce02a8d276430f343429848f210288100ce1

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp314-cp314t-macosx_10_15_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.1-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: rebound-5.1.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 447.7 kB
  • Tags: CPython 3.14, 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.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8674173ffdf842bedefaa2bcca5b276f566af3ea97a2126f115e8d6f2e666a54
MD5 fdf5a3931a0774c0aa7cd4f282ccafda
BLAKE2b-256 a1e6043763dcf05c894ccfdff56da17ae2046d87dcf98355d20c9f72bd7131cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp314-cp314-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.1-cp314-cp314-win32.whl.

File metadata

  • Download URL: rebound-5.1.1-cp314-cp314-win32.whl
  • Upload date:
  • Size: 384.5 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for rebound-5.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 ce1db6dd5f437eece97a99d6c2c12e4184f4324bf55dc3c42c211c1c662cbff1
MD5 5602df0cb439873762144d59755bc56d
BLAKE2b-256 4be2dee53d84de9e5b723cde1a923eb01a57ea9f22ef05b71352b5d6d50d2942

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp314-cp314-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.1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3a0b7c6962345bb16894407672f9ed79d6c3ed2ae4358245db398d0b7ab42ea1
MD5 3fa716a3a09c070404ad53aa4cb5515d
BLAKE2b-256 d1252d64f88a6e544cc842c48f7ec01b909eba7b90167fa56bf11d28fec29506

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp314-cp314-musllinux_1_2_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.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3dbef0d7cad0d70606c6c7abe87a059c154e55ee854bc3fa212b01a244dabd19
MD5 08acf65d4353906efd349705f5ba0bc6
BLAKE2b-256 884d05156081999a8a9312b70922ba9a1e91522738603667ae805ffa7e556d51

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_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.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0adaddf57f708e3e4bf30f7ca41e942cd950bacee2e91141bc888a79f7caadd
MD5 3f39bf4f3c660deeb870055a1f9b1b63
BLAKE2b-256 4b3bdac698b4c92d553f6141cc5081f05604831c15153e2cf2050f5f750f205e

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp314-cp314-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.1-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d4d099298e6436949bc1b67c90f36cf7668f0d38683c543d717ea6e395ac7f93
MD5 631d1ff1c76696e4ae19c11f9c7ba919
BLAKE2b-256 ad973f8ef4abed5f217214d3bd6284f72e226ab703b1fb8fdc34602d2ec70099

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp314-cp314-macosx_10_15_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.1-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: rebound-5.1.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 444.3 kB
  • Tags: CPython 3.13, 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.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2ba60fe9800d294312747bac7020e957fa1a1f0f85bb555b2843f7f6b5117221
MD5 81406764ab480c4c9ddc73e9c52b7979
BLAKE2b-256 072a3c3333aa3c78d79a009699aa1922ba0109de714baef016f390fc6a6b874d

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp313-cp313-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.1-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for rebound-5.1.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 dc87b0bff134946d31ece7bdeb8698b3f807d2b507135daf6a33a93477c21206
MD5 1bcf38bc459f2984f8d0052d1ac2c2ab
BLAKE2b-256 8f66d3858624f7b36655f72c66f973ac7eb2e638ef0fc2199ad55a4710103c07

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp313-cp313-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.1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7cdf8d8e20a399ba950559bcc9e9782ffe249c0d73ae4d51d64002b35f316f64
MD5 a2e1e9f93ef768f3503a2028a3d7e28e
BLAKE2b-256 f2c60ce11b27622a15fe76383d17736811eb909cc9199023c6a05e10abc4ddf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp313-cp313-musllinux_1_2_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.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe0347c4ab3194891c797785663c925c02179534164b53dbf0644fe07fe6671f
MD5 c4d11b1461ebc8cc2a0598428593b5ce
BLAKE2b-256 c97a1f84808da7383f7ecc55f9c4b158d6c79c38572d3d2f99f7088831e9aca4

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_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.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 612a93658880ad24955753c42b7bf7917e69d8bd27cab897b846ae08618a1d07
MD5 413eee610006ad79e50961228fc95064
BLAKE2b-256 5046ebf185c539d9e378532dbf816ea3d0da992309f92948fefac98cad467fa6

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp313-cp313-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.1-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 35d94a87d5b2f322fbca28bbd0bafc49e4fabb467584cde8df3ed77929810a25
MD5 a14db2078b21686ef6c1b0fd878d4740
BLAKE2b-256 261e3cfa05a38b990952c900cd74af1b3e9cf0ab2c038ad22dcad24701aa7106

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp313-cp313-macosx_10_13_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.1-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: rebound-5.1.1-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.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 88b1939af3dc2aa01bb5d2bc1d79bb4522ea682f9956f836461c4ea5e4e236e0
MD5 b6b17f4944ac03bab5af11306265901a
BLAKE2b-256 2e977bc25144ab309bd95796099a3b46325887d6c569dd1cc659559211c46cac

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on hannorein/rebound

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

File details

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

File metadata

  • Download URL: rebound-5.1.1-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.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 fadd93fd48f3a78d4c6749da5a14755fa3a61393c90df6dec62116baebfc7478
MD5 539aa63aabb347e607fdafb607f4cc63
BLAKE2b-256 55acaf43962ecbfdbe510d3fb3caf43024566d3894ab6df520ebe10a88e8828c

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.1.1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bcf97eed9ce8df83a05c5dfbb06c22ad573072fbf0ff057c387614df01f5eec4
MD5 c0afc621800d306f81dcf8dc2a5a1f6c
BLAKE2b-256 1684f35797b374988e8603739f1497c84b84af6dabf393225f4bf6c208e147fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp312-cp312-musllinux_1_2_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.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 31d38726c0b48ce1c4aa89b244650975267908cc13408236ce2a94ac83a9af0c
MD5 3863d3a4937dce64f3f311142dac86c5
BLAKE2b-256 50caf184b7f4519b3ae21d7f22ed6e9932c2090978fc8cd14f2454d7711cb20b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ab517017670d8679fdb62c12e89bb86cf85162b34e47dac3ad1df8b5f117894
MD5 380f6114226e4019512bb7f4b995e81e
BLAKE2b-256 042f9cbee2f40bd6c5f14a95e50bc21df8f01ce389ea165398ab40bf53792de2

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.1.1-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4643b820ac944bc25c57f0208684b0cb628985aa9f25260ac2881bc0a1ccab69
MD5 6095ce498dcb5fd854eff281dd3ab42f
BLAKE2b-256 ed5f343d204675fd0300ba54ededbf6228cf6c41e4336332d043a431bef1a85e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: rebound-5.1.1-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.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fd56a5dbc42449e31b610f29aa56aba4323d881449b02aa50ca5d4870c3071af
MD5 c6074ceeba49ad2ee8bbc2e8fb0395f8
BLAKE2b-256 7455046a821886edf302d109532be7a4fda786e81fb78a02d05662ee6a51bc6a

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on hannorein/rebound

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

File details

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

File metadata

  • Download URL: rebound-5.1.1-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.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d84ea250c1f5b5d04100f4beb1c7db9eed4be76dbd2c708595a2d8e18d485e8b
MD5 30dbde0f0964eba6bf9c3e06e05ba3e9
BLAKE2b-256 2d9a29e41f4b5643328fd08f84cf1abb37793559a70e3b231b4801b841071d99

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.1.1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c982c1883dbc16fe62c84758d14db940157eb048f2e04a27022b10b3e6150a7
MD5 ece3a91e44804b37f97b2723618baafb
BLAKE2b-256 6f72861c3b717e8192ebff16ea0b8df4dcc62fc3041a14570db7d3402f4c5c3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp311-cp311-musllinux_1_2_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.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bc9d71c7d80413d32c57a6001580365866b571a0be747dfe050c324985d1fe7f
MD5 f012a47df9d7177bbb2b0f6604b0dd84
BLAKE2b-256 b5fcf35970da2d02406a3ab0d05122e269b3096a2b0ba2f5b3e83670da2e0994

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d88bc8c828184ca26502e736d67555914cfbc08a6a4526af0f29f4559bcabfe
MD5 874a2ccfcd474171f737e4ad5b085800
BLAKE2b-256 2ad69333ea48693c3e243e17e4f278d617d9964b23c748df7dcfe6b897615fb5

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on hannorein/rebound

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

File details

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

File metadata

File hashes

Hashes for rebound-5.1.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b1a6b9e49faee6be7a9344f8d87bae0d722a734ed8d77d5b083c4f458c5b7abd
MD5 7f96ed12a564ccc36ae6ca5323a4e933
BLAKE2b-256 e75b8f1e27dfe6fa60e38862d432d59ac7887930b451f5acf9c234e43d8eccca

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on hannorein/rebound

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

File details

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

File metadata

  • Download URL: rebound-5.1.1-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.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9f13edd4c5d8c786187c98f5b343b87c52d7b707f4d4763f729ad2bad1d0abd7
MD5 6d11f44b412cb88a19d86655d192154b
BLAKE2b-256 593f1cb17191c48569fef64a3e360d7ef9710723021539b3e16e81c96500dc6d

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on hannorein/rebound

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

File details

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

File metadata

  • Download URL: rebound-5.1.1-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.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fb1ff0bb0f4b0bf040c80847ce7c3b1ae4653e9dcdb9f16e45de3c9680a59b4f
MD5 ff562d73c9c353b1218f9b316a6bf735
BLAKE2b-256 d38284e64920e73e8de4cd34757446a32918c7beee9df49cc032859ea8bf48ce

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.1.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 babda457ddba00f59ad52961a75f6caa7b15f25fd5376e410b50304a38befaf2
MD5 57bad7e96c76ce2ace9615befdd85482
BLAKE2b-256 99da697cefe614c48df19c1295a9a5610a41bf4ab2ab483e2556e9cc8a1d856a

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp310-cp310-musllinux_1_2_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.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68beacf58082f9dfd29a8c0483f733fb2d95682ea67f45e4b8eb11ddd775d90b
MD5 0811079ea68a72be0d9a3d33cfc52a6e
BLAKE2b-256 cdfbbd7baf4055995d1fd59a21652317496a1dc469ef1befe1fcbb0d524545a6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 220792168e571e8224fa2c046e60d55c2c2b1f120dc69d321b27f16daa2524fe
MD5 6475edc832536b2a28beca61bedbc9ab
BLAKE2b-256 236d2a859a06fa44bedbe43bf9fe8cffe2f692fe17557c2553ca70512bab67e5

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on hannorein/rebound

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

File details

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

File metadata

File hashes

Hashes for rebound-5.1.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 82b054ddd372822abdd08b6704bf595284f93cdb2cb6ea33044594301b6ce3f4
MD5 1cad4b5210092dc295cfeb351c03af71
BLAKE2b-256 c5eac707ef501ef69f3c682e3241b3edb9bdd0a8be55cca1bc2df251c42fd3ad

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on hannorein/rebound

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

File details

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

File metadata

  • Download URL: rebound-5.1.1-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.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 08451f03385667c705343811f3b197098473458a47b34a058eaf650741afc548
MD5 361be8c336d381deaf35b126faaeb33d
BLAKE2b-256 7ba19e8568b39d3a8dfd8634b1b556bfe8aa1a1820c2a111fc653796b68a4130

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on hannorein/rebound

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

File details

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

File metadata

  • Download URL: rebound-5.1.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2ff6095e9575734e94c8d0d6d54c5e6fef5d42d8884e152ae1b786565e493e0b
MD5 48cb772392f8785fbbe847315d57b46d
BLAKE2b-256 2499b9a028700cd43898bf25d781defb86d8ac56d3fea6068b44d6339e71a6dd

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on hannorein/rebound

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

File details

Details for the file rebound-5.1.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 590f14f1b412f1eadc5935bdf231f29846be926ef329a84985731df6551b0641
MD5 81a070049a3523b338907a2b066dc88d
BLAKE2b-256 a3358d623a86dc11196592fd6b91fc019690f696ec2e4770b6427e1a2e7199d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for rebound-5.1.1-cp39-cp39-musllinux_1_2_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.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for rebound-5.1.1-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20acba24e85811662c22f503ead38709bf06bdad1e61c50f6f458ea0db7a64c0
MD5 fd880fe509e5cb0784ef6f066cb1aeec
BLAKE2b-256 c78a953510febd50cc246aac6271f58929888e53024eb8ec7f0f9ee2ae4fca31

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for rebound-5.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 567b79fb877f5f59739418eb0b445a95c3c4f81e2f6f0199414f722f46e55434
MD5 9c86b4e36374e9029674d769a628b66a
BLAKE2b-256 02a0ef059d823a9003b25876098f71f9ab98aba6318d9d9a2eb7285c2dfced29

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on hannorein/rebound

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

File details

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

File metadata

File hashes

Hashes for rebound-5.1.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fb557935feaa3d1f906aff90ad5786ae5381254d74327558c1bc83b779c386bf
MD5 9e1b9a7ceb5d5dfef3fa19499522eb4d
BLAKE2b-256 f053db6b1c386f6ce4bdced9f3582d7ebb3bbca0634d25bd8496867b89a6d221

See more details on using hashes here.

Provenance

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

Publisher: build_wheels.yml on hannorein/rebound

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page