Skip to main content

PHOEBE 2.5

PHOEBE logo

  pip install phoebe


Console Animation

INTRODUCTION

PHOEBE stands for PHysics Of Eclipsing BinariEs. PHOEBE is pronounced fee-bee.

PHOEBE 2 is a rewrite of the original PHOEBE code. For most up-to-date information please refer to the PHOEBE project webpage: https://phoebe-project.org

PHOEBE 2.0 is described by the release paper published in the Astrophysical Journal Supplement, Prša et al. (2016, ApJS 227, 29). The addition of support for misaligned stars in version 2.1 is described in Horvat et al. (2018, ApJS 237, 26). Interstellar extinction and support for Python 3 was added in version 2.2 and described in Jones et al. (2020, ApJS 247, 63). Inclusion of a general framework for solving the inverse problem as well as support for the web and desktop clients was introduced in version 2.3 as described in Conroy et al. (2020, ApJS 250, 34), which also removes support for Python 2. PHOEBE 2.4 improved on the geometry and ebai estimators, updates gaussian processes to use either scikit-learn or celerite2, and adds support for submitting compute or solver runs on external servers. PHOEBE 2.5 introduces atmospheres for hot, compact stars (TMAP and Tremblay atmospheres), support to extrapolate atmospheres and blend into blackbody, as well as define custom features that hook into PHOEBE's logic for advanced, flexible custom science cases.

PHOEBE 2 is released under the GNU General Public License v3.

The source code is available for download from the PHOEBE project homepage and from github.

The development of PHOEBE 2 is funded in part by NSF grant #1517474, NSF grant #1909109 and NASA 17-ADAP17-68.

DOWNLOAD AND INSTALLATION

The easiest way to download and install PHOEBE 2 is by using pip (make sure you're using the correct command for pip that points to your python3 installation - if in doubt use something like python3 -m pip install phoebe):

pip install phoebe

To install it site-wide, prefix the pip command with sudo or run it as root.

To download the PHOEBE 2 source code, use git:

git clone https://github.com/phoebe-project/phoebe2.git

To install PHOEBE 2 from the source locally, go to the phoebe2/ directory and issue:

pip install .

Note that as of the 2.5 release, PHOEBE requires Python 3.10 or later. For further details on pre-requisites consult the PHOEBE project webpage.

GETTING STARTED

PHOEBE 2 has a fairly steep learning curve. To start PHOEBE from python, issue:

python
>>> import phoebe
>>>

To understand how to use PHOEBE, please consult the tutorials, scripts and manuals hosted on the PHOEBE webpage.

CHANGELOG

2.5.4

  • Fix bug setting all sigmas to nan when a bin with <=1 point was encountered. Now it also handles cases of bins with zero scatter. These sigmas are evaluated as median of other bins or default to 1.0 if that is not possible. [#1169]
  • Fix bug where solvers would raise an error if the lnpriors calculation fails (due to parameter out of bounds or failed constraints). This now correctly returns an lnprior of -inf. [#1171]
  • Fixes bug where passbands would not automatically download missing blackbody tables when blending is enabled. [#1168]
  • Fixes calculate_lnlikelihood when mesh datasets are included in the referenced model. [#1172]
  • Fixes a segfault when distortion_method='none' for both components. [#1170]

2.5.3

  • Fix bug in estimators where numpy would raise an error saying setting an array element with a sequence. The requested array has an inhomogeneous shape after 1 dimensions. [#1162]
  • Fix bug with automatic detection of available cpus for multiprocessing and related errors. Instead of returning all cores in the node, it now checks for actually available for the process and correctly raises errors. [#1163]

2.5.2

  • Fix bug preventing computing a spot on the secondary component of a contact system. [#1157]

2.5.1

  • Updates ndpolator version to 1.3.1 which improves support for building on windows. [#1153]

2.5.0

  • Adds blending/TMAP atmosphere support and the related passband and intensity infrastructure. [#1132]

  • Adds new infrastructure for user-defined features. [#902]

2.4.23

  • Fixes differential corrections on SB1 RV data. [#1113]

2.4.22

  • Fixes bug where LS periodogram was returning frequency instead of period [#1089]
  • Fixes passband luminosity computation for the dataset-scaled mode. [#1091]
  • Fixes third light computation when multiple passbands are used. [#1091]
  • Argument order for compute_l3s() changed to explicitly provide the model as it is required for correct scaling. [#1091]
  • Fixes support for newer releases of scipy. [#1102]

2.4.21

  • Add a PHOEBE_TABLES_SERVER environment variable to allow overriding the URL of the queried tables server. [#1060]
  • Improved description for fti_oversample parameter. [#1061]
  • Updated all http links to https. [#1062]
  • Catch ellc OSError. [#1063]
  • Fixes parse_solver_times regression introduced in 2.4.20. [#1067]
  • Fixes differential_corrections solver when multiple compute options exist. [#1069]
  • Fixes crimpl issue with scp files from remote server. [#1074]

2.4.20

  • Fix parse_solver_times compatibility with numpy > 1.24. [#1056]

  • Update crimpl to allow custom MPI paths on the server and to use conda-forge as the default conda channel to avoid the need to agree to terms of the default channel. [#1055]

2.4.19

  • Remove unused passband files [#1045]

2.4.18

  • Fix handling of spots in single star rotstar case where spots were not co-rotating properly [#1017]
  • Fix misaligned spots bug that caused size of spot to change across the rotation period [#1017]
  • Fix animation bug which prevented passing times as a numpy array [#1018]
  • Fix continue_from support for scipy optimizers [#1041]
  • Fix support for astropy 7.x units [#1043]

2.4.17

  • Fix support for numpy 2.0. [#982]

2.4.16

  • Fix handling of floating-point precision near the aligned case that used to result in error from libphoebe. [#965]
  • Updates to phoebe-server to be compatible with modern browser requirements. [#959]
  • Fix support for python 3.13, remove official support for python 3.7. [#968]

2.4.15

  • Fix handling of include_times for RVs with compute_times/phases. [#889]
  • GPs on models computed in phase-space will be properly computed based on residuals in time space. [#899]
  • Fix units of requivfrac. [#894]
  • Fix adopting mask_phases from lc_geometry. [#896]
  • Fix population of wavelength array in load function for passbands. [#914]
  • Temporarily cap numpy dependency < 2.0. [#930]
  • Fix installation of phoebe-server CLI script to launch from UI. [#929]
  • Fix passing compute to export_solver with features attached. [#922]
  • sigmas_lnf: change handling of noise-nuissance parameter for RVs to no longer depend on the RV amplitude. [#901]
  • Remove duplicated phoebe-server code. [#940]
  • Fix python 3.12+ support by updating invalid escape sequences. [#948]
  • Improved precision in calculation of constraints. [#945]

2.4.14

  • Fix MPI off to not broadcast if never enabled
  • Fix warning message in dynesty solver
  • Fix multi-compute with enabled/disabled datasets
  • Fix error message in compute_ld_coeffs
  • Fix segfaults in macos-14
  • Now requires C++14-compatible compiler

2.4.13

  • optimization: dynamical RVs avoid unnecessary meshing
  • run_checks no longer requires ck2004 atmosphere tables if no datasets use ck2004
  • fix treatment of distance for alternate backends (ellc, jktebop)

2.4.12 - build system update

  • upgrade the build system to pyproject.toml with setuptools as backend and pip as frontend.
  • drop the dependency on the obsolete distutils module.
  • swap nosetests for pytest.
  • small build-related bugfixes throughout the code.

2.4.11

  • fix jktebop backend handling of mass-ratio and eccentricity for RVs.
  • bumps version requirements in pip for numpy, scipy, astropy.
  • allows sma@star and asini@star to flip to solve for q
  • fixes handling of spots on rotating single stars.
  • fixes constraint migration for 2.3 -> 2.4

2.4.10

  • fixes implementation of gravitational redshift.
  • fixes an unitialized value problem in gradients resulting in nans for effective temperatures.
  • minor updates to passband exporting to support upcoming 2.5 release on the passbands server.
  • allows setting SelectParameter to an array or tuple (in addition to a list).

2.4.9 - asynchronous spots bugfix

  • fixes bug introduced in 2.4.8 and ensures that temperatures are recomputed for spots when the star is rotating asynchronously.

2.4.8 - spots optimization bugfix

  • spots no longer force the mesh to be recomputed at each timepoint.
  • updates for numpy compatibility and wider test matrix.

2.4.7 - line profile bugfix

  • fix bug where wavelength arrays that did not include the central wavelength were returning nans for fluxes.

2.4.6 - potential to requiv TypeError bugfix

  • fix bug where libphoebe was incorrectly raising an error suggesting the potential was out of bounds.

2.4.5 - negative mass bugfix

  • fix bug where mass could be set to a negative value causing constraints to resolve to nans.

2.4.4 - constraint flipping bugfix

  • fix bug where flipping Kepler's third law constraint multiple times would fail.
  • fix bug when flipping requivsumfrac and requivratio constraints.

2.4.3 - use_server with features bugfix

  • fix typo that raised error when using use_server with features attached
  • added new addl_slurm_kwargs parameter to pass any options to slurm scheduler

2.4.2 - l3 handling distance in absolute pblum_mode bugfix

  • fix conversion between l3 and l3_frac to account for distance when pblum_mode is absolute
  • fix tagged phoebe version in cached bundles to avoid import warning

2.4.1 - solver filtering and plotting bugfix

  • fix filtering error when not explicitly passing solver to run_solver
  • fix exposing analytic model from lc geometry estimator
  • fix phase-sorting when plotting solution from ebai estimator

2.4.0 - solver and gaussian process improvements release

  • add support for differential evolution optimizer solver
  • add support for differential corrections optimizer solver
  • optimizers: ability to continue runs from previous solutions (for most optimizers)
  • improvements to geometry and ebai estimators to use ligeor as a new built-in dependency
  • gaussian processes now use celerite2 or scikit-learn instead of celerite
  • emcee sampler: additional plotting styles to check for convergence, checks to ensure starting sample is physical, and added ability to continue a previous run from any arbitrary iteration in a previous run
  • new support for running jobs on external servers via crimpl
  • clarified distinction between chi2 and mle

2.3.63 - constraint feature bugfix

  • fix bug where creating a custom constraint for parameters within features was not correctly identifying the constrained parameter and was raising an error when attempting to set the value of the constraining parameter.

2.3.62 - attach_job ferr bugfix

  • fix bug where error file was not properly loaded when retrieving error from external job

2.3.61 - M1 compiler optimization bugfix

  • remove compiler optimizations that are not portable to ARM architectures

2.3.60 - passband timestamp bugfix

  • compare version strings instead of datetime to avoid some systems throwing an error when looking for passband updates.
  • see also 2.3.13 release.

2.3.59 - extinction constraint bugfix

  • fixes extinction constraint when flipping to solve for Av

2.3.58 - astropy 5.0 units bugfix

  • fixes support for astropy 5.0 changes to unit physical types (see also 2.3.51).
  • b.save now requires delayed and failed constraints to run before saving.

2.3.57 - remove inadvertent typo while sampling distributions

  • introduced in 2.3.55

2.3.56 - setup without m2r bugfix

  • fixes installation (on some machines) where m2r is not installed

2.3.55 - sample_distribution_collection index bugfix

  • fixes handling distributions on array parameters within sample_distribution_collection and run_compute(sample_from).

2.3.54 - distribution bugfix

  • updates distl to convert units with recent changes to astropy. See also the changes in 2.3.51 and 2.3.52.
  • fixes median introduced in 2.3.52 to act on distribution object instead of just arrays.

2.3.53 - adopt_solution adopt_values bugfix

  • adopting a solution with adopt_values=True for a sampler solver will now adopt the median from the samples rather than the mean, to be consistent with the central values reported by the distributions themselves.

2.3.52 - run_all_constraints support for array parameters bugfix

  • fixes new run_all_constraints (new in 2.3.51) method to work on array parameters (compute_times/compute_phases).

2.3.51 - units physical type astropy update bugfix

  • fixes parsing the physical type of a unit in latest releases of astropy. Without this fix, some constraints may fail to run.
  • implements a new b.run_all_constraints, which is now automatically called when importing from a file in case any constraints were in the failed state.

2.3.50 - contact binary estimators bugfix

  • rv_geometry: explicitly look for RVs attached to stars (not envelopes, which raised a lookup error).
  • run_checks_solver: run compatibility checks between solver and hierarchies. Contact binaries are not supported by lc_geometry or ebai, single stars are not supported by lc_geometry, ebai, or rv_geometry.

2.3.49 - requivsumfrac flipping bugfix

  • fix remaining cases for flipping requivsumfrac constraint (see 2.3.45 bugfix release for the partial fix for some, but not all, cases)
  • migrate from Travis CI to GitHub actions for CI testing

2.3.48 - mu atm out-of-bounds bugfix

  • fixes atmosphere out-of-bounds error caused by mu that should be exactly 0 or 1, but numerically out-of-bounds.

2.3.47 - calculate_lnp bugfix

  • fixes calculate_lnp to more robustly handle parameter matching for both the constrained and unconstrained case
  • fixes default_binary constructor when overriding label of the 'binary' orbit
  • fixes typo in ellc backend for the period==1 case

2.3.46 - rvperiodogram SB1 bugfix

  • fixes handling of SB1s (RVs with a single component) in the rv_periodogram estimator
  • adds checks to forbid zeros in dataset sigmas

2.3.45 - requivsumfrac constraint flipping bugfix

  • fixes bug in flipping requivsumfrac constraint for requivratio when requiv of the secondary star is already constrained

2.3.44 - add_component/figure bugfix

  • fixes bug in assigning parameter tags when passing function (as kind) to add_component or add_figure.

2.3.43 - RV SB1 residuals bugfix

  • fixes silently ignoring component (while calculating residuals, chi2, etc) in an RV dataset in which times are provided, but observational RVs are not.
  • improves error messages in calculate_residuals when resulting in no or more than one matches.

2.3.42 - RV plotting bugfix

  • fixes plotting RVs when compute_times is provided instead of times. Previously would raise an error that the 'rvs' parameter could not be found as it is hidden in the dataset.

2.3.41 - estimators missing sigmas bugfix

  • fixes handling of default sigmas within LC estimators when no sigmas are provided in the dataset.

2.3.40 - custom lnprobability bugfix

  • fixes handling of custom_lnprobability_callable when passed to run_solver. Previously an error was raised stating it was not a supported keyword argument and was not passed to the script correctly during export_solver.

2.3.39 - optimizer progressbar and sample_from infinite failed samples bugfix

  • fixes bug in increment size in progressbar for optimizers that appears to go past 100% before completion
  • when running a forward model sampling from a distribution (or a solution), only allow 10 failed samples per draw before raising an error to prevent getting stuck in an infinite loop if the parameter space is unphysical
  • add_compute(overwrite=True) now allows the existing tag to already exist in solutions (in addition to models)

2.3.38 - mvgaussian uncertainties bugfix

  • updates distl to 0.3.1 which includes a fix to treat mvgaussian uncertainties from percentiles like other distribution types
  • forces updating kepler's third law constraint when importing a bundle from before 2.3.25 bugfix

2.3.37 - add_distribution allow_multiple_matches bugfix

  • fixes bug where tags on distributions were improperly applied when passing allow_multiple_matches=True
  • disables run_compute progressbar within solvers
  • fixes typo in description of progress parameter

2.3.36 - MPI passband directory bugfix

  • fixes bug where running phoebe for the first time within MPI crashes due to each processor attempting to create the passband directory.

2.3.35 - rotstar bugfix

  • bugfix in equation for converting rotation period/frequency to potential that affects the shapes of rapidly rotating stars with distortion_method of 'rotstar'.
  • single stars: implements the missing constraint for requiv_max for single star systems.

2.3.34 - ebai and continue_from bugfix

  • ebai: map phases onto -0.5,0.5 interval after computing phase-shift and sending to ebai
  • emcee: cast fitted_uniqueids to list when applying wrap indices for continue_from

2.3.33 - constrained and multivariate priors bugfix

  • fixes handling of multivariate distributions as priors
  • run_compute sample_from: use serial mode when sample_num is 1
  • run_compute when passing solution instead of sample_from, default to sample_num=1 if adopt_distributions is False
  • export_solver: exclude unneeded distributions/solutions from the exported script to optimize filesize
  • export_solver: adds (undocumented until 2.4 release) support for autocontinue
  • export_compute: do not require explicitly passing compute if only one exists matching the filter
  • calculate_lnp: include_constrained now defaults to True

2.3.32 - phoebe-server bugfix

  • fixes version of flask-socketio dependency to remain compatible with desktop client
  • ensures path and query string are cast to string

2.3.31 - SB1 with compute_times bugfix

  • fixes fitting radial velocities where only one component has observations (SB1 system) and compute_times are provided.
  • compute_residuals now returns an empty array when the corresponding times_array is empty, instead of raising an error

2.3.30 - ld_coeffs fitting bugfix

  • all fitting ld_coeffs. Each coefficient is referenced by index and can be fit or have distributions attached independently. See tutorial for more details.
  • also fixes support for custom constraints which can be used to link ld_coeffs between datasets of the same passband, for example.

2.3.29 - adopt_solution bugfix

  • do not require passing solution to adopt_solution (when adopting distributions) if only one solution exists
  • fix distribution_overwrite_all not defined error

2.3.28 - solver checks bugfix

  • excludes datasets not supported in fitting (mesh, orb, lp, etc) from forward-model within inverse solvers.
  • run_checks_solver now checks for nans in dataset arrays.

2.3.27 - add_compute/solver overwrite bugfix

  • fixes bug where passing overwrite to add_compute or add_solver raised an error if run_compute/run_solver already created a model/solution tagged with that same label.

2.3.26 - multiprocessing bugfix

  • allows disabling multiprocessing (or lowering the number of available processors). Multiprocessing is used by default when not within MPI and when calling run_compute with sample_from or run_solver with solvers that support parallelization. Some installations of multiprocessing on Mac may cause issues, in which case you can now for PHOEBE to run in serial mode.
  • this introduces new phoebe.multiprocessing_off(), phoebe.multiprocessing_on(), phoebe.multiprocessing_get_nprocs(), and phoebe.multiprocessing_set_nprocs(n) functions, but the default behavior remains unchanged.

2.3.25 - distribution propagation bugfix

  • updates distl to 0.2.0 release which includes support for retaining simultaneous sampling between copies of the same underyling distribution, increased precision on latex formatting of uncertainties, and maintaining labels during unit conversion.
  • fix propagating distl distribution objects through constraints to arbitrary depth.
  • update Kepler's third law constraint to be distl-friendly (1+q becomes q+1).
  • parameter.get_distribution: new argument delta_if_none to allow returning a delta function. This is now the default behavior from within b.get/plot_distribution_collection
  • b.sample_distribution_collection: rename N argument to sample_size (but with backwards compatibility support for N).
  • run_checks_solver now includes a warning if priors contain "around" distributions.

2.3.24 - emcee continue_from bugfix

  • skip nwalkers vs number of parameters check when continue_from is set
  • fallback on twigs when original uniqueids not available (when attempting to continue from a solution loaded into a new bundle, for example)
  • wrapping rules for angle parameters fallback on median of last iteration in the available chain when uniqueids do not match as the initializing distribution likely does not exist anymore

2.3.23 - ellc flux-weighted RV vsini bugfix

  • compute vsini from syncpar and pass to RV to enable Rossiter-McLaughlin effect when rv_method='flux-weighted'.

2.3.22 - trace plotting nanslice bugfix

  • fix bug in plotting MCMC trace plots when any given chain is all nans.

2.3.21 - estimators phase-bin bugfix

  • fix bug resulting in a nanslice error when phase_bin is enabled within estimators resulting in a single entry in any given bin. Now, sigmas will be ignored within the estimator in these cases with a warning in the logger.

2.3.20 - legacy passband bugfix

  • now correctly maps passbands when using the legacy backend (only affects TESS and Tycho)
  • falls back on PHOEBE atmospheres when needing to compute pblums internally for flux scaling prior to calling legacy backend
  • from_legacy bugfix in parsing linear limb-darkening coefficients
  • export_compute/export_solver: add commment warning against manually editing script
  • fixes typo which raised error when rescaling passband-dependent mesh columns

2.3.19 - passbands update available datetime string parsing bugfix

  • some systems fail to parse common datetime strings, resulting in inability to import phoebe when checking for available passband updates. This now prints and logs an error message, but does not prevent import.
  • checking for available passband updates on import now correctly respects the PHOEBE_ENABLE_ONLINE_PASSBANDS environment variable.
  • failed online passbands connection error messages are now only included in the log once (per processor) to avoid spamming the log (but are shown by default when manually calling phoebe.list_online_passbands).

2.3.18 - estimator.ebai with wide eclipse bugfix (attempt 2)

  • actually fixes bug (see 2.3.13) that raised internal error when running ebai on an eclipse with width larger than 0.25 in phase. Note that these systems will still return nans as ebai is not well-suited to these systems, but the internal error will no longer occur.

2.3.17 - optimizer MPI bugfix

  • enables parallelization (per-time or per-dataset) for optimizers.

2.3.16 - rv_geometry with different lengths bugfix

  • fixes estimator.rv_geometry when primary and secondary component have different times.

2.3.15 - alternate backends with l3_frac and dataset-scaled bugfix

  • fix bug in applying l3_frac within dataset scaling (pblum_mode='dataset-scaled') when using alternate backends.

2.3.14 - import_solution with uniqueid mismatch bugfix

  • fix bug where falling back on twigs when importing a solution on a different bundle failed. It is still suggested to save the bundle and import solutions on the bundle used when calling export_solver.

2.3.13 - estimator.ebai with wide eclipse bugfix

  • fix bug (but not really - see 2.3.18) that raised internal error when running ebai on an eclipse with width larger than 0.25 in phase. Note that these systems will still return nans as ebai is not well-suited to these systems, but the internal error will no longer occur.

2.3.12 - plot univariate distributions latex label bugfix

  • fix bug in the latex labels on plots when converting from multivariate to univariate distributions.

2.3.11 - continue_from run_checks bugfix

  • fix bug where run_checks raised an error for an empty init_from if continue_from was set.

2.3.10 - alternate backend atm bugfix

  • fix bug where atm parameter was ignored during passband luminosity scaling while using an alternate backend, resulting in an atmosphere out-of-bounds error in some situations.

2.3.9 - online passbands bugfix

  • stop attempting to query online passbands after three failed attempts to avoid significant time cost otherwise.

2.3.8 - plotting exclusion bugfix

  • fix bug where datasets were excluded from plotting if not in any models
  • fix syntax error in run_checks

2.3.7 - kwargs errors bugfix

  • fix small bugs that could raise errors when passing some filter kwargs to run_solver or sample_distribution_collection

2.3.6 - GP run_checks bugfix

  • fix check for presence of observational data during run_checks to only consider datasets with attached gaussian processes (GPs)

2.3.5 - lp run_checks bugfix

  • fix length comparison of flux_densities and wavelengths during run_checks

2.3.4 - passband/extinction bugfix

  • fixed Gordon extinction coefficient calculation in line with erratum http://dx.doi.org/10.1088/0004-637X/705/2/1320.
  • added check to require updating affected-passbands (versions at tables.phoebe-project.org have been updated)
  • removed duplicate Passband methods causing ld/ldint passband computations to fail

2.3.3 - latex representation bugfix

  • fix the latex representation string for fillout_factor, pot, pot_min, and pot_max parameters in a contact binary.

2.3.2 - manifest to include readme bugfix

  • manually include README.md in MANIFEST.in to avoid build errors from pip

2.3.1 - pip install bugfix

  • removes m2r as an (unlisted) build-dependency. m2r is only required to build the submission to submit to pypi, but is not required to install or run phoebe locally.

2.3.0 - inverse problem feature release

  • Add support for inverse problem solvers, including "estimators", "optimizers", and "samplers"
  • Add support for attaching distributions (as distl objects) to parameters, including priors and posteriors.
  • Add support for web and desktop clients via a light-weight built in phoebe-server.
  • Removed support for Python 2 (now requires Python 3.6+)
  • Implement optional gaussian processes for light curves
  • Implement phase-masking
  • Added official support for ellc and jktebop alternate backends
  • Per-component and per-dataset RV offsets
  • Fixed phasing in time-dependent systems
  • Distinction between anomalous and sidereal period in apsidal motion cases
  • Extinction parameters moved from per-dataset to the system-level
  • Added several new optional constraints
  • Overhaul of the run_checks framework
  • Updated scipy dependency to 1.7+
  • Numerous small bugfixes and enhancements

2.2.2 - kwargs bugfix

  • fix overriding mesh_init_phi as kwarg to run_compute
  • fix pblum computation to not require irrad_method kwarg
  • fix bundle representation to exclude hidden parameters

2.2.1 - g++/gcc version check bugfix

  • Improves the detection of g++/gcc version to compare against requirements during setup.

2.2.0 - extinction feature release

  • Add support for interstellar extinction/reddening.
  • Support for Python 3.6+ in addition to Python 2.7+.
  • Overhaul of limb-darkening with new ld_mode and ld_coeffs_source parameters.
  • Overhaul of passband luminosity and flux scaling with new pblum_mode parameter, including support for maintaining color relations between multiple passbands.
  • Ability to provide third light in either flux or percentage units, via the new l3_mode and l3_frac parameters.
  • Support for computing a model at different times than the observations, via the new compute_times or computes_phases parameter.
  • Transition from pickled to FITS passband files, with automatic detection for available updates. The tables can now also be accessed via tables.phoebe-project.org.
  • DISABLED support for beaming/boosting.
  • Allow flipping Kepler's thrid law constraint to solve for q.
  • Require overwrite=True during add_* or run_* methods that would result in overwriting an existing label.
  • Constraint for logg.
  • Account for time-dependence (dpdt/dperdt) in t0 constraints.

2.1.17 - ignore fits passbands bugfix

  • Future-proof to ignore for passband files with extensions other than ".pb" which may be introduced in future versions of PHOEBE.

2.1.16 - eccentric/misaligned irradiation bugfix

  • Fixes bug where irradiation was over-optimized and not recomputed as needed for eccentric or misaligned orbits. Introduced in the optimizations in 2.1.6.

2.1.15 - spots bugfix

  • Fixes 'long' location of spots on single stars.
  • Fixes treatment of spots on secondary 'half' of contact systems.
  • Fixes loading legacy files with a spot that has source of 0 due to a bug in legacy.
  • Fixes overriding 'ntriangles' by passing keyword argument to run_compute.

2.1.14 - contacts inclination RVs bugfix

  • Fixes the polar rotation axis for RVs in contact systems with non-90 inclinations by re-enabling the alignment (pitch, yaw) constraints and enforcing them to be 0.

2.1.13 - constraint flip loop bugfix

  • Fixes infinite loop when trying to flip esinw AND ecosw
  • Adds ability to flip mass (Kepler's third law) to solve for q
  • Fixes bug introduced in 2.1.9 in which out-of-limits constrained parameters in an envelope were being raised before all constraints could resolve successfully.

2.1.12 - legacy ephemeris and kwargs checks bugfix

  • Fixes applying t0 when importing legacy dataset which use phase.
  • Fixes ignoring other compute options when running checks on kwargs during run_compute.

2.1.11 - legacy dataset import bugfix

  • Fixes loading legacy datasets which use phase (by translating to time with the current ephemeris).
  • Fixes loading legacy datasets with errors in magnitudes (by converting to errors in flux units).
  • Fixes plotting RV datasets in which only one component has times (which is often the case when importing from a legacy file).

2.1.10 - ldint bugfix

  • Removes ldint from the weights in the computations of RVs and LPs.

2.1.9 - limits bugfix

  • Fixes a bug where parameter limits were not being checked and out-of-limits errors not raised correctly.

2.1.8 - mesh convergence bugfix

  • Fixes a bug where certain parameters would cause the meshing algorithm to fail to converge. With this fix, up to 4 additional attempts will be made with random initial starting locations which should converge for most cases.

2.1.7 - comparison operators bugfix

  • Fixes a bug where comparisons between Parameters/ParameterSets and values were returning nonsensical values.
  • Comparing ParameterSets with any object will now return a NotImplementedError
  • Comparing Parameters will compare against the value or quantity, with default units when applicable.
  • Comparing equivalence between two Parameter objects will compare the uniqueids of the Parameters, NOT the values.

2.1.6 - optimization bugfix

  • Fixes a bug where automatic detection of eclipses was failing to properly fallback on only detecting the horizon.
  • Introduces several other significant optimizations, particularly in run_compute.

2.1.5 - single star get_orbits and line-profile bugfix

  • Fixes a bug in hierarchy.get_orbits() for a single star hierarchy which resulted in an error being raised while computing line-profiles.

2.1.4 - freq constraint bugfix

  • This fixes the inversion of the frequency constraint when flipping to solve for period.

2.1.3 - overflow error for semidetached systems bugfix

  • Semi-detached systems could raise an error in the backend caused by the volume being slightly over the critical value when translating between requiv in solar units to volume in unitless/roche units. When this numerical discrepancy is detected, the critical value is now adopted and a warning is sent via the logger.

2.1.2 - constraints in solar units bugfix

  • All constraints are now executed (by default) in solar units instead of SI. The Kepler's third law constraint (constraining mass by default) failed to have sufficient precision in SI, resulting in inaccurate masses. Furthermore, if the constraint was flipped, inaccurate values of sma could be passed to the backend, resulting in overflow in the semi-detached case.
  • Bundles created before 2.1.2 and imported into 2.1.2+ will continue to use SI units for constraints and should function fine, but will not benefit from this update and will be incapable of changing the system hierarchy.

2.1.1 - MPI detection bugfix

  • PHOEBE now detects if its within MPI on various different MPI installations (previously only worked for openmpi).

2.1.0 - misalignment feature release

  • Add support for spin-orbit misalignment
  • Add support for line profile (LP) datasets
  • Switch parameterization from rpole/pot to requiv (including new semi-detached and contact constraints)
  • Significant rewrite to plotting infrastructure to use autofig
  • Introduction of nparray support within parameters
  • Significant rewrite to mesh dataset infrastructure to allow choosing which columns are exposed
  • Distinguish Roche (xyz) from Plane-of-Sky (uvw) coordinates
  • Ability to toggle interactive constraints and interactive system checks independently
  • Implementation of ParameterSet.tags and Parameter.tags
  • General support for renaming tags/labels
  • Expose pblum for contacts
  • Expose per-component r and rprojs for contacts (used to be based on primary frame of reference only)
  • Fix definition of vgamma (see note in 2.0.4 release below)
  • Remove phshift parameter (see note in 2.0.3 release below)
  • Permanently rename 'long' parameter for spots (see note in 2.0.2 release below)
  • Numerous other minor bug fixes and improvements

2.0.11 - astropy version dependency bugfix

  • Set astropy dependency to be >=1.0 and < 3.0 (as astropy 3.0 requires python 3)

2.0.10 - legacy import extraneous spaces bugfix

  • Handle ignoring extraneous spaces when importing a PHOEBE legacy file.

2.0.9 - _default Parameters bugfix

  • Previously, after loading from a JSON file, new datasets were ignored by run_compute because the _default Parameters (such as 'enabled') were not stored and loaded correctly. This has now been fixed.
  • PS.datasets/components now hides the (somewhat confusing) _default entries.
  • unicode handling in filtering is improved to make sure the copying rules from JSON are followed correctly when loaded as unicodes instead of strings.

2.0.8 - contacts bugfix

  • Remove unused Parameters from the Bundle
  • Improvement in finding the boundary between the two components of a contact system

2.0.7 - legacy import/export bugfix

  • Handle missing parameters when importing/exporting so that a Bundle exported to a PHOEBE legacy file can successfully be reimported
  • Handle importing standard weight from datasets and converting to sigma

2.0.6 - unit conversion bugfix

  • When requesting unit conversion from the frontend, astropy will now raise an error if the units are not compatible.

2.0.5 - semi-detached bugfix

  • Fixed bug in which importing a PHOEBE legacy file of a semi-detached system failed to set the correct potential for the star filling its roche lobe. This only affects the importer itself.
  • Implemented 'critical_rpole' and 'critical_potential' constraints.

2.0.4 - vgamma temporary bugfix

  • The definition of vgamma in 2.0.* is in the direction of positive z rather than positive RV. For the sake of maintaining backwards-compatibility, this will remain unchanged for 2.0.* releases but will be fixed in the 2.1 release to be in the direction of positive RV. Until then, this bugfix handles converting to and from PHOEBE legacy correctly so that running the PHOEBE 2 and legacy backends gives consistent results.

2.0.3 - t0_supconj/t0_perpass bugfix

  • Fixed constraint that defines the relation between t0_perpass and t0_supconj.
  • Implement new 't0_ref' parameter which corresponds to legacy's 'HJD0'.
  • Phasing now accepts t0='t0_supconj', 't0_perpass', 't0_ref', or a float representing the zero-point. The 'phshift' parameter will still be supported until 2.1, at which point it will be removed.
  • Inclination parameter ('incl') is now limited to the [0-180] range to maintain conventions on superior conjunction and ascending/descending nodes.
  • Fixed error message in ldint.
  • Fixed the ability for multiple spots to be attached to the same component.
  • Raise an error if attempting to attach spots to an unsupported component. Note: spots are currently not supported for contact systems.

2.0.2 - spots bugfix

  • If using spots, it is important that you use 2.0.2 or later as there were several important bug fixes in this release.
  • 'colon' parameter for spots has been renamed to 'long' (as its not actually colongitude). For 2.0.X releases, the 'colon' parameter will remain as a constrained parameter to avoid breaking any existing scripts, but will be removed with the 2.1.0 release.
  • Features (including spots) have been fixed to correctly save and load to file.
  • Corotation of spots is now enabled: if the 'syncpar' parameter is not unity, the spots will correctly corotate with the star. The location of the spot (defined by 'colat' and 'long' parameters) is defined such that the long=0 points to the companion star at t0. That coordinate system then rotates with the star according to 'syncpar'.

2.0.1 - ptfarea/pbspan bugfix

  • Definition of flux and luminosity now use ptfarea instead of pbspan. In the bolometric case, these give the same quantity. This discrepancy was absorbed entirely by pblum scaling, so relative fluxes should not be affected, but the underlying absolute luminosities were incorrect for passbands (non-bolometric). In addition to under-the-hood changes, the exposed mesh column for 'pbspan' is now removed and replaced with 'ptfarea', but as this is not yet a documented column, should not cause backwards-compatibility issues.

2.0.0 - official release of PHOEBE 2.0

  • PHOEBE 2.0 is not backwards compatible with PHOEBE 2.0-beta (although the interface has not changed appreciably) or with PHOEBE 2.0-alpha (substantial rewrite). Going forward with incremental releases, every effort will be put into backwards compatibility. The changes and important considerations of the new version will be detailed in the ChangeLog.

  • If upgrading from PHOEBE 2.0-beta or PHOEBE 2.0-alpha, it is necessary to do a clean re-install (clear your build and installation directories), as the passband file format has changed and will not automatically reset unless these directories are manually cleared. Contact us with any problems.

QUESTIONS? SUGGESTIONS? CONCERNS?

Contact us! Issues and feature requests should be submitted directly through GitHub's issue tracker. Additional questions or feature requests should be submitted via GitHub PHOEBE2 discussions or GitHub PHOEBE2-UI discussions. We are eager to hear from you, so do not hesitate to contact us!

Download files

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

Source Distribution

phoebe-2.5.4.tar.gz (66.8 MB view details)

Uploaded Source

Built Distributions

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

phoebe-2.5.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (67.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

phoebe-2.5.4-cp313-cp313-musllinux_1_2_x86_64.whl (70.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

phoebe-2.5.4-cp313-cp313-musllinux_1_2_i686.whl (70.9 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

phoebe-2.5.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (70.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

phoebe-2.5.4-cp313-cp313-macosx_11_0_arm64.whl (67.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

phoebe-2.5.4-cp313-cp313-macosx_10_13_x86_64.whl (67.2 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

phoebe-2.5.4-cp312-cp312-musllinux_1_2_x86_64.whl (70.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

phoebe-2.5.4-cp312-cp312-musllinux_1_2_i686.whl (70.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

phoebe-2.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (70.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

phoebe-2.5.4-cp312-cp312-macosx_11_0_arm64.whl (67.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

phoebe-2.5.4-cp312-cp312-macosx_10_13_x86_64.whl (67.2 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

phoebe-2.5.4-cp311-cp311-musllinux_1_2_x86_64.whl (70.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

phoebe-2.5.4-cp311-cp311-musllinux_1_2_i686.whl (70.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

phoebe-2.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (70.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

phoebe-2.5.4-cp311-cp311-macosx_11_0_arm64.whl (67.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

phoebe-2.5.4-cp311-cp311-macosx_10_9_x86_64.whl (67.2 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

phoebe-2.5.4-cp310-cp310-musllinux_1_2_x86_64.whl (70.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

phoebe-2.5.4-cp310-cp310-musllinux_1_2_i686.whl (70.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

phoebe-2.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (70.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

phoebe-2.5.4-cp310-cp310-macosx_11_0_arm64.whl (67.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

phoebe-2.5.4-cp310-cp310-macosx_10_9_x86_64.whl (67.2 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file phoebe-2.5.4.tar.gz.

File metadata

  • Download URL: phoebe-2.5.4.tar.gz
  • Upload date:
  • Size: 66.8 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for phoebe-2.5.4.tar.gz
Algorithm Hash digest
SHA256 b9c7e29d91fd3298b2c31b9481c4f85aa840a29877485a7f6a33644b545e243f
MD5 b4f46d23486b9ebd76af512693b4f447
BLAKE2b-256 12652322b3dcaa0b05f6e3a36ee93a6ff0079eeeba5ec4ebb105bc4f4fa120e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4.tar.gz:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff9f03ad73d7ac1ae3b720ee18547dcc2282b12909ec61c89f316b3bbe011306
MD5 eebc499d0aa0ef0de360797e7cbefc6d
BLAKE2b-256 20651f3a65b8c6d663fa233fe2fb095c4db2cd19b79895b66f7dfd252e31a907

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f720641c8d48bda89d8909a6a156c6226b4ba55c09764391e360fde6d3fa7f3d
MD5 fee68e09102761656647839c3088d5f4
BLAKE2b-256 55dbb00c8e3a3dd141b70535c2dad495b315bf8b4d0a9a10969102efb1edcdd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 111caef2a89f1feffd00bb6f42dde2daf46d061e13879233b2f0de6956685f86
MD5 a972fb84541acb1af8d71f0423eeed7c
BLAKE2b-256 080a1e8a81dcaa4fec90bf9fdb8f591a1991d4af141d17103835c9987f2d913f

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5e497207761fe38a1e4546eb0f993ebbe94e1b1e0b6ce4fc4f29372a2b77df6a
MD5 74f63a7f734304efbeb8fcba6ccf7a60
BLAKE2b-256 9d0783cc4471e1bde617771e0fd4e836c7a1e3fc1802d57e679199d616bda5eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b07d6169cf10977cf6782e2f77a40413399fc33e2dfd21c8b3972bd84bd823f
MD5 792e608fc34ff56b53103aa48d4f6555
BLAKE2b-256 4419a01607a6b5dbe23705882892c11ca89bdf0cdb480ce122d572d04dbb9c31

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4edcc1fc028450a23fda35bfaef3e6f4416e66040c098c44c6dbbe2c127cb551
MD5 3fc216d8fde495b450d1b35ae49eb0dd
BLAKE2b-256 399ad5cd58fe74b4b8d718fb70fa0413ace5f38b5235c3d087a0c8f9f95186e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 840b95acfe140b6c5b0aab11b15352d6b9c57a7c17ab06d93445f1593f2b175b
MD5 ce9e7257e9db63a1d87bf187303d7300
BLAKE2b-256 45d1e530583532b9b38d3ecb04f2fe9dbdd12abb15a59e368f4307a3a5bcfa94

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 28b1834f24d3fb4ac4432845b3de2d39cfc938bb3d6259e8e266de3d5bc30716
MD5 48ef2d7871950664630a1a2c54410119
BLAKE2b-256 d3205905cf2ed362a7a237f0d4b9be1e357b96d36a1e0322451d6d264f50bcd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6f2010107a6946d97b0206c423ee2b21f9e61b1356be8819ceac96605570b1b
MD5 822e0ea225fc60fe5d9c8801eeab74a7
BLAKE2b-256 89aa1389e225e150ac1b887569104179f3087304b7dac60de0b0c6731ae3d9aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7849af136f87c0c5e6e963741f1e15b7c0771aa401575fa6d7bbd229979ee458
MD5 cb5e8c998d85ae0c1d8393ace840638d
BLAKE2b-256 350c87c01bf6309c27874533f6b0046d3270558b44f3aa251272dd046f18dcd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e8447bd61655d72cf758180a04c729054b2a56e2db60b1e404b36997dc38d618
MD5 94c2d40dc6497186317fb4b87afc818d
BLAKE2b-256 e6f681cda1d1df8e2a5b4ad5a67619759a470987e31419e30da371efd7633216

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 57b2e65c70cc4409a02a8f6908234b44e0150473f972ad9393a74955cf0e3dd6
MD5 902499f82d780efd8591611a68e33bc4
BLAKE2b-256 dafb504fe90a2d42c90bb5acac6ba2f1e8664cac778a3264ca5f65e5b2539344

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 889f6be7c18f59416a2cd7d4c69ff879044c9ae2a643e40abca7c42b1840cb66
MD5 eefcab60615e4171841ec06d5e706c99
BLAKE2b-256 fe6583089d83788d0cc76d58dc136ebd388af0d9b9d81835326dd751f7d91b8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2d6da0a17ada9724beeb81800e7de659776b14bf7acca4c3dd8d0d4f31b64fb
MD5 f035aa68df9b45350c6c9d020634d356
BLAKE2b-256 b6c04c04e432a05f927fb08c617fb62f14513078fdcc8185ca09c545198c7f3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1a3462b1767e33e8470a35d331e73ce2eea8a4959827169fdb37aa8fbee24b1
MD5 a59ba20242916d40556d72d127a2cf85
BLAKE2b-256 89fbd516d4bb28c42414090d34ac2de6fd3163252578a445528e81548718529b

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e19cc9283a9c76d4a25f36b10f2ec886c0df92500bf10a8c23beb104163bd5b8
MD5 3c0bc12c217fcf638e771886bcac212e
BLAKE2b-256 19ed25f86c8c35bb4eaf62a03d5eb6df71f822511559531f8fefbb5e839c6026

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eee28c9e6a24fa7e83c544b7ad3178e0ec2b7c4d1ac292fc708b51d9e6872175
MD5 e94f7c27bbca942c6c59f13a65215531
BLAKE2b-256 cf23ec31787c6d67c254a358054d030f2fe31f9c3c1a002ac46a8a2c9496174a

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b1529cb66d7bfd93a24e0e71a24985ca4b377c2108d1f5518d2ce494dfc1ed0e
MD5 3ca3f7643056d0a184f61a6f2359d759
BLAKE2b-256 dc9b3cc01aea0da1031586947faad010ce2d9dbc782a0ed290522b0fe35f2057

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c9f26b5f7eafc91f588ea7313a12f6208e0b49269297f7f9db784a6642d0f14
MD5 9f2a5823ad7b30cdd9c08c5a9cfafa7b
BLAKE2b-256 aec5a2ba68ce1fc96f361ebc3df9f8e75d0ca1ca98e68f68c7d9b99ff0568346

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a033e4fb2c803a1242154d96e4953fbce56429663fd657f472ed1beb844f860
MD5 96643795382f496a787706436efcd252
BLAKE2b-256 73e456c12344ed888184e0a20d19867cafb12f9a93663fa92b09a0ab6289a5b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

File details

Details for the file phoebe-2.5.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for phoebe-2.5.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d87cb20d896c207b3311c1e56de481f40c4fc16fd0c99c73c4ded3f856be3647
MD5 e01e65439a6370d8a73c58d57ed31086
BLAKE2b-256 13873d5652960924b482b206e971d48e2e392a3d130f06d677f013cba448aef3

See more details on using hashes here.

Provenance

The following attestation bundles were made for phoebe-2.5.4-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: publish.yml on phoebe-project/phoebe2

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

2.5.4 This release

22 files

2.5.3

22 files

2.5.2

22 files

2.5.1

22 files

2.5.0

22 files

2.4.23

32 files

2.4.22

32 files

2.4.21

32 files

2.4.20

32 files

2.4.19

1 file

2.4.18

2 files

2.4.17

18 files

2.4.16

1 file

2.4.15

1 file

2.4.14

1 file

2.4.13

1 file

2.4.12

1 file

2.4.11

1 file

2.4.10

1 file

2.4.9

1 file

2.4.8

1 file

2.4.7

1 file

2.4.6

1 file

2.4.5

1 file

2.4.4

1 file

2.4.3

1 file

2.4.2

1 file

2.4.1

1 file

2.4.0

1 file

2.3.63

1 file

2.3.62

1 file

2.3.61

1 file

2.3.60

1 file

2.3.59

1 file

2.3.58

1 file

2.3.57

1 file

2.3.56

1 file

2.3.55

1 file

2.3.54

1 file

2.3.53

1 file

2.3.52

1 file

2.3.51

1 file

2.3.50

1 file

2.3.49

1 file

2.3.48

1 file

2.3.47

1 file

2.3.46

1 file

2.3.45

1 file

2.3.44

1 file

2.3.43

1 file

2.3.42

1 file

2.3.41

1 file

2.3.40

1 file

2.3.39

1 file

2.3.38

1 file

2.3.37

1 file

2.3.36

1 file

2.3.35

1 file

2.3.34

1 file

2.3.33

1 file

2.3.32

1 file

2.3.31

1 file

2.3.30

1 file

2.3.29

1 file

2.3.28

1 file

2.3.27

1 file

2.3.26

1 file

2.3.25

1 file

2.3.24

1 file

2.3.23

1 file

2.3.22

1 file

2.3.21

1 file

2.3.20

1 file

2.3.19

1 file

2.3.18

1 file

2.3.17

1 file

2.3.16

1 file

2.3.15

1 file

2.3.14

1 file

2.3.13

1 file

2.3.12

1 file

2.3.11

1 file

2.3.10

1 file

2.3.9

1 file

2.3.8

1 file

2.3.7

1 file

2.3.6

1 file

2.3.5

1 file

2.3.4

1 file

2.3.3

1 file

2.3.2

1 file

2.3.1

1 file

2.3.0

1 file

2.2.2

1 file

2.2.1

1 file

2.2.0

1 file

2.1.17

1 file

2.1.16

1 file

2.1.15

1 file

2.1.14

1 file

2.1.13

1 file

2.1.12

1 file

2.1.11

1 file

2.1.10

1 file

2.1.9

1 file

2.1.8

1 file

2.1.7

1 file

2.1.6

1 file

2.1.5

1 file

2.1.4

1 file

2.1.3

1 file

2.1.2

1 file

2.1.1

1 file

2.1.0

1 file

2.0.11

1 file

2.0.10

1 file

2.0.9

1 file

2.0.8

1 file

2.0.7

1 file

2.0.6

1 file

2.0.5

1 file

2.0.4

1 file

2.0.3

1 file

2.0.2

1 file

2.0.1

1 file

2.0.0

1 file

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