Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

phoebe

Package Overview
Dependencies
Maintainers
2
Versions
120
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

phoebe - npm Package Compare versions

Comparing version
2.4.14
to
2.4.15
+29
-1
phoebe.egg-info/PKG-INFO
Metadata-Version: 2.1
Name: phoebe
Version: 2.4.14
Version: 2.4.15
Summary: PHOEBE: modeling and analysis of eclipsing binary stars

@@ -32,2 +32,15 @@ Author-email: Andrej Prša <aprsa@villanova.edu>, Kyle Conroy <kyle.conroy@villanova.edu>, Angela Kochoska <angela.kochoska@villanova.edu>, Martin Horvat <martin.horvat@fmf.uni-lj.si>, Dave Jones <djones@iac.es>, Michael Abdul-Masih <michael.abdul-masih@eso.org>, Bert Pablo <hpablo@aavso.org>, Joe Giammarco <giammarc@eastern.edu>

License-File: LICENSE.md
Requires-Dist: numpy<2.0.0
Requires-Dist: scipy
Requires-Dist: astropy
Requires-Dist: pytest
Requires-Dist: tqdm
Requires-Dist: corner
Requires-Dist: requests
Requires-Dist: python-socketio
Requires-Dist: flask
Requires-Dist: flask-cors
Requires-Dist: flask-socketio
Requires-Dist: gevent
Requires-Dist: gevent-websocket

@@ -121,2 +134,17 @@ PHOEBE 2.4

### 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

@@ -123,0 +151,0 @@

+1
-1

@@ -1,2 +0,2 @@

numpy
numpy<2.0.0
scipy

@@ -3,0 +3,0 @@ astropy

@@ -149,5 +149,2 @@ LICENSE.md

phoebe/solverbackends/solverbackends.py
phoebe/solverbackends/__pycache__/__init__.cpython-311.pyc
phoebe/solverbackends/__pycache__/rv_geometry.cpython-311.pyc
phoebe/solverbackends/__pycache__/solverbackends.cpython-311.pyc
phoebe/solverbackends/ebai/__init__.py

@@ -157,3 +154,2 @@ phoebe/solverbackends/ebai/bounds.data

phoebe/solverbackends/ebai/i2h.weights
phoebe/solverbackends/ebai/__pycache__/__init__.cpython-311.pyc
phoebe/solverbackends/knn/__init__.py

@@ -160,0 +156,0 @@ phoebe/solverbackends/knn/contact.2g.knn

@@ -20,3 +20,3 @@ """

__version__ = '2.4.14'
__version__ = '2.4.15'

@@ -23,0 +23,0 @@ import os as _os

@@ -397,3 +397,3 @@ from datetime import datetime as _datetime

# TODO: use job subdirectory for server_path
scp_cmd = self.scp_cmd_to.format(local_path=" ".join([script_fname]+[_os.path.normpath(f).replace(' ', '\ ') for f in files]), server_path=directory+"/")
scp_cmd = self.scp_cmd_to.format(local_path=" ".join([script_fname]+[_os.path.normpath(f).replace(' ', r'\ ') for f in files]), server_path=directory+"/")

@@ -400,0 +400,0 @@ if use_scheduler:

@@ -159,3 +159,3 @@ import numpy as np

def ellipsoidal(phi, Aell, phi0):
'''
r'''
Ellipsoidal model, defined as $y = (1/2) A_{ell} \cos (4 \pi (\phi - \phi_0))$

@@ -182,3 +182,3 @@

def gaussian(phi, mu, d, sigma):
'''
r'''
Gaussian model, defined as $y = d \exp(-(\phi-\mu)^2/(2\sigma^2))$

@@ -436,3 +436,3 @@

def lnlike(y, yerr, ymodel):
'''
r'''
Computes the loglikelihood of a model.

@@ -448,3 +448,3 @@

def bic(self, ymodel, nparams):
'''
r'''
Computes the Bayesian Information Criterion (BIC) value of a model.

@@ -451,0 +451,0 @@

Metadata-Version: 2.1
Name: phoebe
Version: 2.4.14
Version: 2.4.15
Summary: PHOEBE: modeling and analysis of eclipsing binary stars

@@ -32,2 +32,15 @@ Author-email: Andrej Prša <aprsa@villanova.edu>, Kyle Conroy <kyle.conroy@villanova.edu>, Angela Kochoska <angela.kochoska@villanova.edu>, Martin Horvat <martin.horvat@fmf.uni-lj.si>, Dave Jones <djones@iac.es>, Michael Abdul-Masih <michael.abdul-masih@eso.org>, Bert Pablo <hpablo@aavso.org>, Joe Giammarco <giammarc@eastern.edu>

License-File: LICENSE.md
Requires-Dist: numpy<2.0.0
Requires-Dist: scipy
Requires-Dist: astropy
Requires-Dist: pytest
Requires-Dist: tqdm
Requires-Dist: corner
Requires-Dist: requests
Requires-Dist: python-socketio
Requires-Dist: flask
Requires-Dist: flask-cors
Requires-Dist: flask-socketio
Requires-Dist: gevent
Requires-Dist: gevent-websocket

@@ -121,2 +134,17 @@ PHOEBE 2.4

### 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

@@ -123,0 +151,0 @@

@@ -14,3 +14,3 @@ # PHOEBE build specification

name = "phoebe"
version = "2.4.14"
version = "2.4.15"
description = "PHOEBE: modeling and analysis of eclipsing binary stars"

@@ -62,3 +62,3 @@ readme = "README.md"

dependencies = [
"numpy",
"numpy < 2.0.0",
"scipy",

@@ -84,3 +84,3 @@ "astropy",

[build-system]
requires = ["setuptools", "numpy", "wheel"]
requires = ["setuptools", "numpy < 2.0.0", "wheel"]
build-backend = "setuptools.build_meta"

@@ -95,2 +95,3 @@

"phoebe.frontend",
"phoebe.frontend.default_bundles",
"phoebe.constraints",

@@ -101,2 +102,6 @@ "phoebe.dynamics",

"phoebe.atmospheres",
"phoebe.atmospheres.tables.extinction",
"phoebe.atmospheres.tables.passbands",
"phoebe.atmospheres.tables.wd",
"phoebe.lib",
"phoebe.backend",

@@ -122,1 +127,5 @@ "phoebe.solverbackends",

]
script-files = [
"client-server/phoebe-server",
"client-server/phoebe-autofig",
]

@@ -88,2 +88,17 @@ PHOEBE 2.4

### 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

@@ -90,0 +105,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display