Skip to content

Commit a525907

Browse files
authored
attach_job ferr bugfix (2.3.62 release) (#592)
* fix bug where error file was not properly loaded when retrieving error from external job
1 parent 2c4ccc4 commit a525907

File tree

4 files changed

+9
-4
lines changed

4 files changed

+9
-4
lines changed

README.md

+4
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ To understand how to use PHOEBE, please consult the [tutorials, scripts and manu
8484
CHANGELOG
8585
----------
8686

87+
### 2.3.62 - attach_job ferr bugfix
88+
89+
* fix bug where error file was not properly loaded when retrieving error from external job
90+
8791
### 2.3.61 - M1 compiler optimization bugfix
8892

8993
* remove compiler optimizations that are not portable to ARM architectures

phoebe/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
1818
"""
1919

20-
__version__ = '2.3.61'
20+
__version__ = '2.3.62'
2121

2222
import os as _os
2323
import sys as _sys

phoebe/parameters/parameters.py

+1
Original file line numberDiff line numberDiff line change
@@ -12170,6 +12170,7 @@ def attach(self, wait=True, sleep=5, cleanup=True, return_changes=False):
1217012170
# self._bundle._attach_param_from_server(newparams)
1217112171

1217212172
elif self.status == 'error':
12173+
ferr = open(self._err_fname, 'r')
1217312174
lines = ferr.readlines()
1217412175
ferr.close()
1217512176

setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -405,8 +405,8 @@ def _env_variable_bool(key, default):
405405
long_description = "\n".join(long_description_s[long_description_s.index("INTRODUCTION"):])
406406

407407
setup (name = 'phoebe',
408-
version = '2.3.61',
409-
description = 'PHOEBE 2.3.61',
408+
version = '2.3.62',
409+
description = 'PHOEBE 2.3.62',
410410
long_description=long_description,
411411
author = 'PHOEBE development team',
412412
author_email = 'phoebe-devel@lists.sourceforge.net',
@@ -426,7 +426,7 @@ def _env_variable_bool(key, default):
426426
'Programming Language :: Python :: 3 :: Only',
427427
],
428428
python_requires='>=3.6, <4',
429-
download_url = 'https://github.com/phoebe-project/phoebe2/tarball/2.3.61',
429+
download_url = 'https://github.com/phoebe-project/phoebe2/tarball/2.3.62',
430430
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'],
431431
install_requires=['numpy>=1.12','scipy>=1.2','astropy>=1.0', 'corner', 'pytest', 'requests', 'python-socketio[client]']+['flask', 'flask-cors', 'flask-socketio==4.3.*', 'gevent-websocket'],
432432
package_data={'phoebe.atmospheres':['tables/wd/*', 'tables/passbands/*'],

0 commit comments

Comments
 (0)