-
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.
legacy ephemeris and kwargs checks hotfix (2.1.12 release) (#337)
* Fixes applying t0 when importing legacy dataset which use phase. * Fixes ignoring other compute options when running checks on kwargs during run_compute.
- Loading branch information
Showing
5 changed files
with
38 additions
and
24 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 |
---|---|---|
|
@@ -10,7 +10,7 @@ | |
""" | ||
|
||
__version__ = '2.1.11' | ||
__version__ = '2.1.12' | ||
|
||
import 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 |
---|---|---|
|
@@ -308,12 +308,12 @@ def run(self): | |
# Main setup | ||
# | ||
setup (name = 'phoebe', | ||
version = '2.1.11', | ||
description = 'PHOEBE 2.1.11', | ||
version = '2.1.12', | ||
description = 'PHOEBE 2.1.12', | ||
author = 'PHOEBE development team', | ||
author_email = '[email protected]', | ||
url = 'http://github.com/phoebe-project/phoebe2', | ||
download_url = 'https://github.com/phoebe-project/phoebe2/tarball/2.1.11', | ||
download_url = 'https://github.com/phoebe-project/phoebe2/tarball/2.1.12', | ||
packages = ['phoebe', 'phoebe.parameters', 'phoebe.frontend', 'phoebe.constraints', 'phoebe.dynamics', 'phoebe.distortions', 'phoebe.algorithms', 'phoebe.atmospheres', 'phoebe.backend', 'phoebe.utils', 'phoebe.dependencies', 'phoebe.dependencies.autofig', 'phoebe.dependencies.nparray', 'phoebe.dependencies.unitsiau2015'], | ||
install_requires=['numpy>=1.10','scipy>=0.17','astropy>=1.0,<3.0'], | ||
package_data={'phoebe.atmospheres':['tables/wd/*', 'tables/passbands/*'], | ||
|