-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
alternate backends with l3_frac and dataset-scaled fix (2.3.15 releas…
…e) (#402) * fix bug in applying l3_frac within dataset scaling (pblum_mode='dataset-scaled') when using alternate backends.
- Loading branch information
Showing
5 changed files
with
25 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,7 +16,7 @@ | |
""" | ||
|
||
__version__ = '2.3.14' | ||
__version__ = '2.3.15' | ||
|
||
import os as _os | ||
import sys as _sys | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -346,8 +346,8 @@ def _env_variable_bool(key, default): | |
long_description = "\n".join(long_description_s[long_description_s.index("INTRODUCTION"):]) | ||
|
||
setup (name = 'phoebe', | ||
version = '2.3.14', | ||
description = 'PHOEBE 2.3.14', | ||
version = '2.3.15', | ||
description = 'PHOEBE 2.3.15', | ||
long_description=long_description, | ||
author = 'PHOEBE development team', | ||
author_email = '[email protected]', | ||
|
@@ -367,7 +367,7 @@ def _env_variable_bool(key, default): | |
'Programming Language :: Python :: 3 :: Only', | ||
], | ||
python_requires='>=3.6, <4', | ||
download_url = 'https://github.com/phoebe-project/phoebe2/tarball/2.3.14', | ||
download_url = 'https://github.com/phoebe-project/phoebe2/tarball/2.3.15', | ||
packages = ['phoebe', 'phoebe.parameters', 'phoebe.parameters.solver', 'phoebe.parameters.figure', 'phoebe.frontend', 'phoebe.constraints', 'phoebe.dynamics', 'phoebe.distortions', 'phoebe.algorithms', 'phoebe.atmospheres', 'phoebe.backend', 'phoebe.solverbackends', 'phoebe.solverbackends.ebai', 'phoebe.utils', 'phoebe.helpers', 'phoebe.pool', 'phoebe.dependencies', 'phoebe.dependencies.autofig', 'phoebe.dependencies.nparray', 'phoebe.dependencies.distl', 'phoebe.dependencies.unitsiau2015'], | ||
install_requires=['numpy>=1.12','scipy>=1.2','astropy>=1.0', 'corner', 'pytest', 'requests', 'python-socketio[client]']+['flask', 'flask-cors', 'flask-socketio', 'gevent-websocket'], | ||
package_data={'phoebe.atmospheres':['tables/wd/*', 'tables/passbands/*'], | ||
|