Skip to content

Commit

Permalink
Update parsl pin to 2023.12.4 (#1385)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
yadudoc authored Dec 12, 2023
1 parent 63b009c commit 1ebceb2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Changed
^^^^^^^

- Parsl version requirements updated from ``2023.7.3`` to ``2023.12.4``
Original file line number Diff line number Diff line change
Expand Up @@ -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__)

Expand Down
2 changes: 1 addition & 1 deletion compute_endpoint/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 1ebceb2

Please sign in to comment.