Skip to main content

Testing Status Building Documentation Status ArXiV preprint

GalaPy is an open source, extensible API for modelling and fitting the Spectral Energy Distribution (SED) of galaxies from the X-ray to the radio band, as well as the evolution of their components and dust attenuation/reradiation. It provides functions, classes and terminal commands for Bayesian inference of galaxy properties from panchromatic photometric data, as well as for the analysis and simulation of galaxies spectral properties.

If the image is not directly shown in the text, it can be found in the subdirectory `logo/GalaPy_Example.png`

GalaPy provides an easy-to-use Python user interface while the number-crunching is done with compiled, high-performance, object-oriented C++.

The library is currently optimized for fitting photometric datasets, nevertheless, its simulation capabilities are way more flexible than this, as it allows for the extraction of many other physical properties of galaxies, such as attenuation curves, matter content evolution histories (divided by component), metallicity evolution, star formation histories and more.

Galapy enables instantiating multi-component parameterized galaxy objects with a high level of customization. It produces SEDs in a matter of milliseconds on a single core with a minimal memory consumption. It has been developed with the aim of providing a fast SED simulator and, thus, to aid research in Galaxy Formation and Evolution, both from the perspective of observational Astrophysics and Cosmology (thanks to its Bayesian statistical framework) as well as from the perspective of theoretical and computational researchers interested in a modern modelling tool.

Free software

GPLv3 license

GitHub repository

https://github.com/TommasoRonconi/galapy

Python versions

>=3.8

Dependencies

setuptools, numpy, scipy, emcee, dynesty, nautilus-sampler, matplotlib, getdist, requests

TL;DR

Galaxies are extremely complex astrophysical objects resulting from the interaction of baryonic matter which has collapsed within a Dark Matter halo. Their formation and evolution strongly depend on the interplay of several factors, including their matter reservoir and accretion history, the environment they reside and the interactions with their neighbouring objects and, ultimately, the large scale structure of the Universe and the physics regulating it on cosmological scales. By studying the properties of individual galaxies, such as their luminosity, chemical composition, and star formation rate, we can learn about how galaxies form and evolve over time as well as the cosmological conditions that lead to their assembly.

The Spectral Energy Distribution (SED) of a galaxy describes the distribution of its light across different wavelengths, from gamma rays to radio waves, literally shedding light over the baryonic components and processes that contribute to the overall emission. Modelling this emission is one of the primary tools of extra-galactic astronomy to constrain models of galaxy formation and evolution, which are an essential part of our understanding of the Universe as a whole.

Install

The preferred method to install the package is through pip as it will install the most recent stable release:

$ pip install galapy-fit

for further details, please refer to the installation guide.

Fitting through terminal commands

Sampling the parameter space can be done from the command line in a terminal. The steps required for running the sampling are just two:

  1. first we will have to generate a parameter file, this can be done by running the utility command

    $ galapy-genparams [--name/-n NAME | --SFH_model/-sfh MODEL_NAME ]

    The generated file should be self-explanatory and has to be modified according to the fit the user has to perform. A detailed guide to the generation and modification of the parameter file can be found in param_file.

  2. Once the parameter file has been generated and properly modified, we can run

    $ galapy-fit parameter_file.py [--serial/-s | --multiprocessing/-mp NCPU]

    which will run the sampling and authomatically store the results, as specified by the user in the parameter file. NOTE THAT the two optional arguments regulate whether to run the sampling serially or using shared-memory parallelism. The default behaviour is to run parallely on all the available CPUs. More details are provided in photometric_fit.

Quick API hands-on

The GalaPy API allows to directly access methods and classes modelling the different components that contribute to the overall emission of a galaxy. By the interplay of these components the final Spectral Energy Distribution (SED) emerges and travels towards the observer.

In order to control the aforementioned interplay of components the module galapy.Galaxy implements classes of type GXY, from which the intrinsic luminosity and the flux at given distance can be retrieved. An object of type GXY is built as follows

import galapy as gp
gxy = gp.Galaxy.GXY( age = 1.e+9, redshift = 1.0 )

We have built a galaxy \(1 \text{Gyr}\) old at redshift \(z = 1\). We can always change the parameters of the galaxy we have built by calling the method

gxy.set_parameters( age = 5.e+9 )

For a complete list of the tunable parameters check the relative documentation page: Free parameters. To get the intrinsic emission from the galaxy and its flux as arriving at the observer we can call the following two functions

# Intrinsic luminosity:
L = gxy.get_emission()

# Flux:
F = gxy.SED()

Note that the function gxy.wl( obs = True/False ) returns the wavelength grid in the observer’s frame (obs = True) and at rest frame (obs = False).

If, instead of the full spectrum, we want just the flux integrated within some transmission bands, we will build a photometric galaxy object, and obtain the photo-SED

pgxy = gp.Galaxy.PhotoGXY( age = 5.e+9, redshift = 1.0 )
pgxy.build_photometric_system( 'filter1', 'filter2', 'filter3', ... )
pF = pgxy.photoSED()

Further details on the usage of functions and classes of the API are provided in the tutorials and in the API documentation.

Download files

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

Source Distribution

galapy_fit-0.6.2.tar.gz (182.4 kB view details)

Uploaded Source

Built Distributions

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

galapy_fit-0.6.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (966.5 kB view details)

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

galapy_fit-0.6.2-cp314-cp314t-macosx_11_0_arm64.whl (834.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

galapy_fit-0.6.2-cp314-cp314t-macosx_10_15_x86_64.whl (871.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

galapy_fit-0.6.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (954.4 kB view details)

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

galapy_fit-0.6.2-cp314-cp314-macosx_11_0_arm64.whl (792.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

galapy_fit-0.6.2-cp314-cp314-macosx_10_15_x86_64.whl (829.3 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

galapy_fit-0.6.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (953.6 kB view details)

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

galapy_fit-0.6.2-cp313-cp313-macosx_11_0_arm64.whl (791.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

galapy_fit-0.6.2-cp313-cp313-macosx_10_13_x86_64.whl (828.5 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

galapy_fit-0.6.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (953.0 kB view details)

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

galapy_fit-0.6.2-cp312-cp312-macosx_11_0_arm64.whl (791.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

galapy_fit-0.6.2-cp312-cp312-macosx_10_13_x86_64.whl (828.1 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

galapy_fit-0.6.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (938.7 kB view details)

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

galapy_fit-0.6.2-cp311-cp311-macosx_11_0_arm64.whl (783.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

galapy_fit-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl (815.0 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

galapy_fit-0.6.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (931.4 kB view details)

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

galapy_fit-0.6.2-cp310-cp310-macosx_11_0_arm64.whl (776.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

galapy_fit-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl (807.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

galapy_fit-0.6.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (934.5 kB view details)

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

galapy_fit-0.6.2-cp39-cp39-macosx_11_0_arm64.whl (777.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

galapy_fit-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl (808.0 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

galapy_fit-0.6.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl (921.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.27+ x86-64manylinux: glibc 2.28+ x86-64

galapy_fit-0.6.2-cp38-cp38-macosx_11_0_arm64.whl (769.7 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

galapy_fit-0.6.2-cp38-cp38-macosx_10_9_x86_64.whl (799.9 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file galapy_fit-0.6.2.tar.gz.

File metadata

  • Download URL: galapy_fit-0.6.2.tar.gz
  • Upload date:
  • Size: 182.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for galapy_fit-0.6.2.tar.gz
Algorithm Hash digest
SHA256 db643216166fa6d6bed377984e4e5ac81b2a3660fb313ba7b9100f6382beef21
MD5 c6dfb6e6201dc0489c553b019dafe746
BLAKE2b-256 0ade5ca2096d246f584213846ee38391f1756ae945457d7c72030b184996fc99

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2.tar.gz:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5fff63d3c4e0c5f99a1235a2a3b4798abe6678b207ac001a3f7b7a5a116bb318
MD5 67cf6dcd9ccf99a292599b6ed170eb88
BLAKE2b-256 c37205c84d9ce4018eb9854228b864ce5964d3db653af60825f158d222c26949

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp314-cp314t-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12dc8d3c6570fc3d3009c146182b51b92b6a3175dcf46c1c3f70a5bfc95ed298
MD5 2333f506a36b99fc582a3d1305205172
BLAKE2b-256 9293b399f56e1c905664dd5c8cda5f9c88ee9e431a62f3c2d3652aa6cdab3137

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ca9dbd1367c7086e0aa59944f94cf0fa850adbf4fd7dabaa9e7dd9ba8175cf73
MD5 9a778e5ec2aba4b1084ad169e717ecc6
BLAKE2b-256 33d8078e0df85834b0c53f89730ca0e442214964c0a1d777db2d0e0f9e2e5238

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9752a64a0e68793fac895f141522104263899cc6a7294b26e8d50730faba372a
MD5 83685c5a908aa75e4ed3d4d196b386fa
BLAKE2b-256 af3a0d18375a45bcd67c2c3c5e4b80c2e0d7eb0444f24017a40d895fba1d0df5

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp314-cp314-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c93990e13fbafdbf712d4f0a19ece3a3222c6228f5ecad31dfb3de6764633642
MD5 ea5d1b9600b1c507c49c9b94268b04a9
BLAKE2b-256 f62c3588daff002a32ea0d9674c3d581b8b42d4fe9df47d9e67a580d4d2878c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 45775ab7dbe9fd8d8f4323d19d29495e860a3c6b7dd80159de01d71f58e73fd7
MD5 8b4762b62a848e3b537d2f3c9eaa7195
BLAKE2b-256 20ecc304dbd02d26342273118399fbcd00d98967f5ee37bbf580a62eefa49909

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 fe2453720135c5f8589479acec1df0a64cc30b48053a8e4a44ad33e26eeafa72
MD5 a0b01a714cc36acf6142301764a3bfc3
BLAKE2b-256 b7891aaa138cd9c72b30ab39427cf61069c0ea653e18b89ce7fd9d2bf4c072c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cce3570bc82af5f200fcf1d173b4f6dbd9bd0b5c501831542868e5dd30bcd7bc
MD5 2289df59a3efd26ac40c689a2d64eacc
BLAKE2b-256 ac7df4cb4b0268a7e5fd2c3b7070027b7758558643cc144ce95d8fcd36eeb480

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b3f4812957e48ee2f0eb7862ec87770916ce067b408a441bad7338575cac63af
MD5 7f3479a14425518bcd1ae740b8f43078
BLAKE2b-256 7936b142e7f0a4b89d9cfeb50984f8271e377845000fe2163352380e1ee9baff

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 20f43c57a60f7b84fc7c6f80faf549673edd6077a2192af21cf38eee73de9b54
MD5 2cedb9e22bfebc106d8935d1a155d170
BLAKE2b-256 19c67c3837e180b32d781a0ca859d0c83b6785f2a21248f45e12ff3758b5a8cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp312-cp312-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d61eb9147be148f5e372e14c3aa7d180b83ba35206319315b7cf8024eeec82e9
MD5 221929159a9d502d1366bd253c96ae47
BLAKE2b-256 d6e3d7fecce6e0f0b5666b79a6ea2693022c5ff854d303609326cbebb056990f

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6278a6545103a966b4cf3e76847bcfdf682717bfe0f67ef12d8931419cc3771d
MD5 11d8ec91b1f61994a1b18f51f448436f
BLAKE2b-256 fe72fcc4438590f69e7d7d6d2840ea2c309a7fd63596a35d2eab93ab08ab4fcc

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bffe7335046e760fd712c20a94a5621857fa402e3de628b7a86ade77a340535b
MD5 c63196a3dab61752bb4e63292d02e48f
BLAKE2b-256 6284bb8a78d5c99f28e485f8efb57f47fdf6e72d41356b744ffdfac9d0ef4fee

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp311-cp311-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12dcd53d7504d4032b8569e70f346078e9bf8e891766eaca3ae0c093ff320f30
MD5 f3e06f993ee190a50ecaa2754b9f60a4
BLAKE2b-256 828b1db930518716704b5c9644e2590567b75927af516bc2d3bac8dde0ce122d

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5aa6324b54ed0631d25a3409547e5e14811aaef06eefb0a97d1026cb013aadcc
MD5 af52934975c8c2ba65841856960365d5
BLAKE2b-256 7d619d150071cfcadf2302fc242fee9d1bc5940854348a4053693232a6c28f6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1c43dcd6aadc4e781ce7558bff46fd130c8a2492c97017ac1d14a801a382bc8
MD5 2563d48a6459a28c3f63b197587489dc
BLAKE2b-256 f429d911f3b2f589731e2f10fc9f435e356738109f587a56982f45b7d1e48ad3

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp310-cp310-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09f4964389575406c7dffe055c41965254037aba14cf2855048c802b1aede4d0
MD5 1f37604d10d93d6bbdd075045d9f19e5
BLAKE2b-256 a4a6349b855c074cc5d81bdebbfc7916e1c766908bbc1c143956e9fb628bfd9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 97ce52bdd64ae9934f60913b3991a9eb1d357ea87cd9156c27d1ef24b7a9c393
MD5 0cb97595f510af82bb392a46f28c72ad
BLAKE2b-256 2faa53464a465259cdd74004e2182f1b09bc48e1d0e244503ad2700d3cf335dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c029d1d4f32f6346a33aef67737e4c432d601876a45028afa0d88a6ce675ca80
MD5 152c57e1774f65b6980e44a14f026f75
BLAKE2b-256 12704f967efae6218c72ca7d2ae3ef3c6d72d39dc89017e6445f1de3db17957c

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp39-cp39-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3fbfa15b7ac6d00dde99c92886dfb560e24e4fe916c1f10ee8e5de006994007c
MD5 3d2fb5506736052f26df749844b10abe
BLAKE2b-256 54707adbec99332e4697c2b222910a5582e889d1e49b5ac283e6854883fdfe95

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6d079d176cea855da6425b7508051fc0ca631ee489e0205736c85b319a4fe8ca
MD5 ba840644238f76cb17bb35b962f7db72
BLAKE2b-256 d6d71fa7c351a5db206ebec7ad6c6917dde879f94881825df292821a8f161e9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 afc5478b7a399cce14c521d0a565f634939b3adecc407c4d2a5dfd10632ac2ea
MD5 67b7c383e1b5014f89f27344b18107df
BLAKE2b-256 fa9124011da9ec7d298da63bd94cbbe2c6395e5799655da86a26c670cd182046

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp38-cp38-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9ea44ba42fb79dedcdb432893672f05cebf83cdcc9246c0413101dab5b051d51
MD5 c513a1126b9ad0843d4d993edbd7eb8c
BLAKE2b-256 5adb7e685c8ba5924fc92da372ae792a100bb9e3797c04ab7b8da03b61ab5592

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

File details

Details for the file galapy_fit-0.6.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for galapy_fit-0.6.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e872978abdf7558b6b6c434f7f1d95b0d4fc33a4a8c6f3384c605258707abb4a
MD5 69f9e1c8e80f7018c67b13f1eb05e932
BLAKE2b-256 d93ee966487130fdb268db258ffefe1de58bd736728889537c35d0e2379eac00

See more details on using hashes here.

Provenance

The following attestation bundles were made for galapy_fit-0.6.2-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: build-wheels.yml on TommasoRonconi/galapy

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

Release history Release notifications | RSS feed

This release

0.6.2 This release

25 files

0.6.1

21 files

0.6.0

21 files

0.5.7

14 files

0.5.6

12 files

0.5.5

12 files

0.5.3

13 files

0.5.2

13 files

0.5.1

13 files

0.5.0

13 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page