Package: python-parsl / 2025.01.13+ds-1

Metadata

Package Version Patches format
python-parsl 2025.01.13+ds-1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
shebang.patch | (download)

parsl/executors/workqueue/exec_parsl_function.py | 1 1 + 0 - 0 !
1 file changed, 1 insertion(+)

 fix missing shebang to script flagged for installation.
privacy breaches.patch | (download)

parsl/monitoring/visualization/templates/layout.html | 16 8 + 8 - 0 !
1 file changed, 8 insertions(+), 8 deletions(-)

 fix privacy breaches in html template file.
offline documentation.patch | (download)

docs/conf.py | 8 0 + 8 - 0 !
docs/index.rst | 1 0 + 1 - 0 !
docs/userguide/configuration/examples.rst | 31 0 + 31 - 0 !
3 files changed, 40 deletions(-)

 remove steps requirering internet for the documentation.
sphinx autodoc preserve argdefaults.patch | (download)

docs/conf.py | 1 1 + 0 - 0 !
1 file changed, 1 insertion(+)

 improve sphinx documentation reproducibility by preserving argument defaults
 The TaskVineManagerConfig dataclass includes an 'address' attribute that
 is set to the value of socket.gethostname() when the class is loaded.
 .
 Meanwhile, the TaskVineExecutor.__init__ method 'manager_config' argument
 has a default value of a no-args constructed TaskVineManagerConfig instance.
 .
 When Sphinx builds documentation, by default it will emit a Python repr() of
 the manager_config argument, causing the hostname of the build host to be
 included.
 .
 We can solve that by instructing the Sphinx autodoc extension to retain the
 textual representation of argument lists as they are found in the source
 code, instead of evaluated and repr'd equivalents.