Skip to content

Commit

Permalink
Upgrade radical stack and fix #3429 with the latest release (#3454)
Browse files Browse the repository at this point in the history
Use the latest releases for RADICAL-Pilot and RADICAL-Utils - 1.60
  • Loading branch information
mtitov authored May 23, 2024
1 parent 1fc73aa commit 3e59eca
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
10 changes: 3 additions & 7 deletions parsl/executors/radical/rpex_resources.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,11 @@

from typing import List

_setup_paths: List[str]
_setup_paths: List[str] = []
try:
import radical.pilot as rp
import radical.utils as ru
except ImportError:
_setup_paths = []
else:
_setup_paths = [rp.sdist_path,
ru.sdist_path]
pass


MPI = "mpi"
Expand Down Expand Up @@ -77,7 +73,7 @@ class ResourceConfig:
pilot_env_setup : list
List of setup commands/packages for the pilot environment.
Default setup includes "parsl", rp.sdist_path, and ru.sdist_path.
Default is an empty list.
python_v : str
The Python version to be used in the pilot environment.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
'workqueue': ['work_queue'],
'flux': ['pyyaml', 'cffi', 'jsonschema'],
'proxystore': ['proxystore'],
'radical-pilot': ['radical.pilot==1.52.1', 'radical.utils==1.52'],
'radical-pilot': ['radical.pilot==1.60', 'radical.utils==1.60'],
# Disabling psi-j since github direct links are not allowed by pypi
# 'psij': ['psi-j-parsl@git+https://github.com/ExaWorks/psi-j-parsl']
}
Expand Down

0 comments on commit 3e59eca

Please sign in to comment.