Skip to content

Commit

Permalink
Merge pull request #1734 from globus/bump_parsl_11_25
Browse files Browse the repository at this point in the history
Bump parsl 11 25 and remove reference to removed method
  • Loading branch information
LeiGlobus authored Nov 26, 2024
2 parents 3733a12 + 1cb3591 commit f0ba5e0
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
9 changes: 9 additions & 0 deletions changelog.d/20241126_104747_LeiGlobus_bump_parsl_11_25.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
New Functionality
^^^^^^^^^^^^^^^^

- Added ipv6 support for GlobusComputeEngine by upgrading Parsl

Changed
^^^^^^^

- Bumped ``parsl`` dependency version to `2024.11.25 <https://pypi.org/project/parsl/2024.11.25/>`_.
Original file line number Diff line number Diff line change
Expand Up @@ -356,9 +356,7 @@ def load_config(self):
self.provider.channel.script_dir = os.path.join(
working_dir, "submit_scripts"
)
self.provider.channel.makedirs(
self.provider.channel.script_dir, exist_ok=True
)
os.makedirs(self.provider.channel.script_dir, mode=0o700, exist_ok=True)
os.makedirs(self.provider.script_dir, exist_ok=True)

debug_opts = "--debug" if self.worker_debug else ""
Expand Down
2 changes: 1 addition & 1 deletion compute_endpoint/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,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==2024.10.21",
"parsl==2024.11.25",
"pika>=1.2.0",
"pyprctl<0.2.0",
"setproctitle>=1.3.2,<1.4",
Expand Down

0 comments on commit f0ba5e0

Please sign in to comment.