From 1ebceb2cf2a1b58677162e7ebb79a3500ae6fdfb Mon Sep 17 00:00:00 2001 From: Yadu Nand Babuji Date: Tue, 12 Dec 2023 15:13:35 -0600 Subject: [PATCH] Update parsl pin to 2023.12.4 (#1385) There are a bunch of fixes and updates to the HighThroughputExecutor on the Parsl side that we are not using because the endpoint is pinned to parsl==2023.7.3. This PR updates the Parsl version requirements to parsl==2023.12.4, and makes adds a minor fix to an updated import path on the parsl side. --- .../20231212_095641_yadudoc1729_update_to_parsl_2023_12_4.rst | 4 ++++ compute_endpoint/globus_compute_endpoint/strategies/simple.py | 2 +- compute_endpoint/setup.py | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 changelog.d/20231212_095641_yadudoc1729_update_to_parsl_2023_12_4.rst diff --git a/changelog.d/20231212_095641_yadudoc1729_update_to_parsl_2023_12_4.rst b/changelog.d/20231212_095641_yadudoc1729_update_to_parsl_2023_12_4.rst new file mode 100644 index 000000000..dc73a3d41 --- /dev/null +++ b/changelog.d/20231212_095641_yadudoc1729_update_to_parsl_2023_12_4.rst @@ -0,0 +1,4 @@ +Changed +^^^^^^^ + +- Parsl version requirements updated from ``2023.7.3`` to ``2023.12.4`` diff --git a/compute_endpoint/globus_compute_endpoint/strategies/simple.py b/compute_endpoint/globus_compute_endpoint/strategies/simple.py index cafcb3041..746c783ff 100644 --- a/compute_endpoint/globus_compute_endpoint/strategies/simple.py +++ b/compute_endpoint/globus_compute_endpoint/strategies/simple.py @@ -5,7 +5,7 @@ import time from globus_compute_endpoint.strategies.base import BaseStrategy -from parsl.providers.base import JobState +from parsl.jobs.states import JobState log = logging.getLogger(__name__) diff --git a/compute_endpoint/setup.py b/compute_endpoint/setup.py index ec5d22246..704e01809 100644 --- a/compute_endpoint/setup.py +++ b/compute_endpoint/setup.py @@ -34,7 +34,7 @@ # 'parsl' is a core requirement of the globus-compute-endpoint, essential to a range # of different features and functions # pin exact versions because it does not use semver - "parsl==2023.7.3", + "parsl==2023.12.4", "pika>=1.2.0", "pyprctl<0.2.0", "setproctitle>=1.3.2,<1.4",