Skip to content

Commit

Permalink
Bump versions and collect changelog for release
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-janidlo committed Dec 15, 2023
1 parent 259a691 commit a582948
Show file tree
Hide file tree
Showing 7 changed files with 33 additions and 25 deletions.
14 changes: 0 additions & 14 deletions changelog.d/20231031_230517_yadudoc1729_task_retries_1.rst

This file was deleted.

4 changes: 0 additions & 4 deletions changelog.d/20231204_155243_chris_remove_funcx_client.rst

This file was deleted.

This file was deleted.

2 changes: 1 addition & 1 deletion compute_endpoint/globus_compute_endpoint/version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# single source of truth for package version,
# see https://packaging.python.org/en/latest/single_source_version/
__version__ = "2.8.0"
__version__ = "2.9.0"

# TODO: remove after a `globus-compute-sdk` release
# this is needed because it's imported by `globus-compute-sdk` to do the version check
Expand Down
2 changes: 1 addition & 1 deletion compute_endpoint/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
REQUIRES = [
"requests>=2.31.0,<3",
"globus-sdk", # version will be bounded by `globus-compute-sdk`
"globus-compute-sdk==2.8.0",
"globus-compute-sdk==2.9.0",
"globus-compute-common==0.3.0",
"globus-identity-mapping==0.1.0",
# table printing used in list-endpoints
Expand Down
2 changes: 1 addition & 1 deletion compute_sdk/globus_compute_sdk/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# single source of truth for package version,
# see https://packaging.python.org/en/latest/single_source_version/
__version__ = "2.8.0"
__version__ = "2.9.0"


def compare_versions(
Expand Down
30 changes: 30 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,36 @@ Changelog

.. scriv-insert-here
.. _changelog-2.9.0:

globus-compute-sdk & globus-compute-endpoint v2.9.0
---------------------------------------------------

New Functionality
^^^^^^^^^^^^^^^^^

- ``GlobusComputeEngine`` can now be configured to automatically retry task failures when
node failures (e.g nodes are lost due to batch job reaching walltime) occur. This option
is set to 0 by default to avoid unintentional resource wastage from retrying tasks.
Traceback history from all prior attempts is supplied if the last retry attempt fails.
Here's a snippet from config.yaml:

.. code-block:: yaml
engine:
type: GlobusComputeEngine
max_retries_on_system_failure: 2
Deprecated
^^^^^^^^^^

- The ``funcx_client`` argument to the ``Executor`` has been deprecated and replaced with ``client``.

Changed
^^^^^^^

- Parsl version requirements updated from ``2023.7.3`` to ``2023.12.4``

.. _changelog-2.7.0:

globus-compute-sdk & globus-compute-endpoint v2.7.0
Expand Down

0 comments on commit a582948

Please sign in to comment.