-
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.
passbands update available datetime string parsing bugfix (2.3.19 rel…
…ease) (#411) * 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).
- Loading branch information
Showing
4 changed files
with
47 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
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.18', | ||
description = 'PHOEBE 2.3.18', | ||
version = '2.3.19', | ||
description = 'PHOEBE 2.3.19', | ||
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.18', | ||
download_url = 'https://github.com/phoebe-project/phoebe2/tarball/2.3.19', | ||
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/*'], | ||
|